diff options
author | dartraiden <wowemuh@gmail.com> | 2024-08-21 01:53:11 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2024-08-21 01:53:11 +0300 |
commit | 879d7dd938007902de8f0c0007010615269ba2b7 (patch) | |
tree | b26ce5e01850dbc7a6a1e2f5717829e6eab24f13 /plugins/New_GPG | |
parent | aafdcb6859403d1786b9435322336e1a6e7cfcea (diff) |
New_GPG: remove MRA support
Diffstat (limited to 'plugins/New_GPG')
-rw-r--r-- | plugins/New_GPG/src/utilities.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/New_GPG/src/utilities.cpp b/plugins/New_GPG/src/utilities.cpp index b5fb7a4372..100221b89f 100644 --- a/plugins/New_GPG/src/utilities.cpp +++ b/plugins/New_GPG/src/utilities.cpp @@ -431,7 +431,7 @@ INT_PTR onSendFile(WPARAM w, LPARAM l) return Proto_ChainSend(w, ccs);
}
if (!supported_proto) {
- if (MessageBox(nullptr, TranslateT("Unable to check encryption support on other side.\nRecipient may be unable to decrypt file(s).\nCurrently capability check supported only for Jabber and MRA 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)
+ if (MessageBox(nullptr, TranslateT("Unable to check encryption support on other side.\nRecipient may be unable to decrypt file(s).\nCurrently capability check supported only for Jabber protocol.\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 Proto_ChainSend(w, ccs);
}
HistoryLog(ccs->hContact, TranslateU("encrypting file for transfer"), DBEF_SENT);
|