summaryrefslogtreecommitdiff
path: root/plugins/New_GPG
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2014-05-24 20:46:22 +0000
committerDart Raiden <wowemuh@gmail.com>2014-05-24 20:46:22 +0000
commitf8212d9142f383fb4d4a0e6fb1a383828132c770 (patch)
tree28167a7246c5016c3c84130c949bebb82dfaffcd /plugins/New_GPG
parent30fe5b5f8ae6b66f0f83c12d0f3a2fc22c8728e8 (diff)
spelling correction
git-svn-id: http://svn.miranda-ng.org/main/trunk@9301 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/New_GPG')
-rwxr-xr-xplugins/New_GPG/src/utilities.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/New_GPG/src/utilities.cpp b/plugins/New_GPG/src/utilities.cpp
index ae46d01671..90b6e79118 100755
--- a/plugins/New_GPG/src/utilities.cpp
+++ b/plugins/New_GPG/src/utilities.cpp
@@ -587,12 +587,12 @@ INT_PTR onSendFile(WPARAM w, LPARAM l)
}
if(supported_proto && !cap_found)
{
- if(MessageBox(0, TranslateT("Capability to decrypt file not found on other side.\nRecipient may be unable to decrypt file(s).\nDo you want to encrypt file(s) anyway?"), TranslateT("Filetransfer warning"), MB_YESNO) == IDNO)
+ if(MessageBox(0, TranslateT("Capability to decrypt file not found on other side.\nRecipient may be unable to decrypt file(s).\nDo you want to encrypt file(s) anyway?"), TranslateT("File transfer warning"), MB_YESNO) == IDNO)
return CallService(MS_PROTO_CHAINSEND, w, l);
}
if(!supported_proto)
{
- if(MessageBox(0, TranslateT("Unable to check encryption support on other side.\nRecipient may be unable to decrypt file(s).\nCurrently capability check supported only for ICQ and Jabber protocols.\nIt will work for any other proto if Miranda with New_GPG is used on other side.\nDo you want to encrypt file(s) anyway?"), TranslateT("Filetransfer warning"), MB_YESNO) == IDNO)
+ if(MessageBox(0, TranslateT("Unable to check encryption support on other side.\nRecipient may be unable to decrypt file(s).\nCurrently capability check supported only for ICQ and Jabber protocols.\nIt will work for any other proto if Miranda with New_GPG is used on other side.\nDo you want to encrypt file(s) anyway?"), TranslateT("File transfer warning"), MB_YESNO) == IDNO)
return CallService(MS_PROTO_CHAINSEND, w, l);
}
HistoryLog(ccs->hContact, db_event(Translate("encrypting file for transfer"), 0, 0, DBEF_SENT));