diff options
author | Alexander Gluzsky <sss123next@list.ru> | 2013-10-07 19:39:19 +0000 |
---|---|---|
committer | Alexander Gluzsky <sss123next@list.ru> | 2013-10-07 19:39:19 +0000 |
commit | 039ae6e394089780b66d22e4c3c8e303599b0cc4 (patch) | |
tree | 8b27ede2948f3309da45c01da3fedd81e05ce011 /plugins/New_GPG/src/messages.cpp | |
parent | 467d647bc17911e4515c220075554af32b11cc5d (diff) |
translation fixes from RMN
git-svn-id: http://svn.miranda-ng.org/main/trunk@6399 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/New_GPG/src/messages.cpp')
-rwxr-xr-x | plugins/New_GPG/src/messages.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/New_GPG/src/messages.cpp b/plugins/New_GPG/src/messages.cpp index e9aa1ad45e..ea98e6acce 100755 --- a/plugins/New_GPG/src/messages.cpp +++ b/plugins/New_GPG/src/messages.cpp @@ -725,13 +725,13 @@ void SendMsgSvc_func(HANDLE hContact, char *msg, DWORD flags) if(result == pxSuccessExitCodeInvalid) { //mir_free(msg); - HistoryLog(hContact, db_event(Translate("failed o encrypt message, GPG returned error, turn on debug log for more details"), 0,0, DBEF_SENT)); + HistoryLog(hContact, db_event(Translate("failed to encrypt message, GPG returned error, turn on debug log for more details"), 0,0, DBEF_SENT)); boost::filesystem::remove(path); return; } if(out.find("usage: ") != string::npos) { - MessageBox(0, TranslateT("Something wrong, gpg does not understand us, aborting encryption."), TranslateT("Warning"), MB_OK); + MessageBox(0, TranslateT("Something is wrong, GPG does not understand us, aborting encryption."), TranslateT("Warning"), MB_OK); //mir_free(msg); CallContactService(hContact, PSS_MESSAGE, flags, (LPARAM)msg); boost::filesystem::remove(path); |