diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-06-25 04:17:14 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-06-25 04:17:14 +0000 |
commit | 2bb1470f306ab770edfbd2c8cc3b679f3c4b4ac8 (patch) | |
tree | c1cec622f25d86305edbe64c5cc2d50957718387 /plugins/PasteIt/src | |
parent | f6b47b62755c42b480a115b96ef1c99122cfa43b (diff) |
spelling corrections
git-svn-id: http://svn.miranda-ng.org/main/trunk@9574 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PasteIt/src')
-rw-r--r-- | plugins/PasteIt/src/PasteToWeb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PasteIt/src/PasteToWeb.cpp b/plugins/PasteIt/src/PasteToWeb.cpp index 42e42e4583..16ab8b45a0 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 %d KB, do you realy want to paste such a large file?"), fileSize.LowPart / 1024);
+ mir_sntprintf(bufErr, 1024, TranslateT("File size is %d KB, do you really 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);
|