diff options
author | Dart Raiden <wowemuh@gmail.com> | 2013-11-10 19:37:21 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2013-11-10 19:37:21 +0000 |
commit | ae33d0202eb87d29550e3d23fcf16d2304d2da0a (patch) | |
tree | 0470c2554f6cb5f7d9a629369d9a9bc53c6bb8fc /plugins/PasteIt | |
parent | b1fe987e9cb85f169c858e3f2305038a4aa5151a (diff) |
kB -> KB (patch from RMN)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6860 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PasteIt')
-rw-r--r-- | plugins/PasteIt/src/PasteToWeb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/PasteIt/src/PasteToWeb.cpp b/plugins/PasteIt/src/PasteToWeb.cpp index 308f4d4930..e2170e2add 100644 --- a/plugins/PasteIt/src/PasteToWeb.cpp +++ b/plugins/PasteIt/src/PasteToWeb.cpp @@ -386,7 +386,7 @@ void PasteToWeb::FromFile(std::wstring file) {
if(fileSize.QuadPart > 512000LL)
{
- mir_sntprintf(bufErr, 1024, TranslateT("File size is %dKB, do you realy want to paste such large file?"), fileSize.LowPart / 1024);
+ mir_sntprintf(bufErr, 1024, TranslateT("File size is %d KB, do you realy want to paste such a large file?"), fileSize.LowPart / 1024);
if(MessageBox(NULL, bufErr, TranslateT("Are You sure?"), MB_YESNO | MB_ICONQUESTION) != IDYES)
{
CloseHandle(hFile);
@@ -407,7 +407,7 @@ void PasteToWeb::FromFile(std::wstring file) }
else
{
- error = TranslateT("File size is larger then 10MB, cannot be send");
+ error = TranslateT("File size is larger then 10 MB, cannot be send");
}
}
|