diff options
author | dartraiden <wowemuh@gmail.com> | 2020-03-18 16:48:05 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2020-03-18 17:07:32 +0300 |
commit | 3ef77b40f926008cac2d3f13e832710a226d8bf2 (patch) | |
tree | 89794371f92efaa342c1424faa9dd0ca71141b9d /protocols | |
parent | 024facecf1fd58f8cf959b73deb415b0858b56cb (diff) |
Proper spelling of UTF-8 and SHA-1
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/IRCG/res/IRC.rc | 2 | ||||
-rw-r--r-- | protocols/MSN/src/msn_proto.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/protocols/IRCG/res/IRC.rc b/protocols/IRCG/res/IRC.rc index 9dc719003b..d601b3d127 100644 --- a/protocols/IRCG/res/IRC.rc +++ b/protocols/IRCG/res/IRC.rc @@ -189,7 +189,7 @@ BEGIN EDITTEXT IDC_QUITMESSAGE,10,176,287,12,ES_AUTOHSCROLL
COMBOBOX IDC_CODEPAGE,151,192,146,79,CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
RTEXT "Server code page:",IDC_STATIC,12,194,133,8
- CONTROL "Enable UTF8 autodetection",IDC_UTF_AUTODETECT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,208,287,10
+ CONTROL "Enable UTF-8 autodetection",IDC_UTF_AUTODETECT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,208,287,10
END
IDD_ADDSERVER DIALOGEX 0, 0, 182, 136
diff --git a/protocols/MSN/src/msn_proto.cpp b/protocols/MSN/src/msn_proto.cpp index 0f22c2e977..a6a9e80d24 100644 --- a/protocols/MSN/src/msn_proto.cpp +++ b/protocols/MSN/src/msn_proto.cpp @@ -733,7 +733,7 @@ int CMsnProto::SendMsg(MCONTACT hContact, int flags, const char* pszSrc) case NETID_MOB:
if (mir_strlen(msg) > 133) {
seq = 999997;
- ProtoBroadcastAsync(hContact, ACKTYPE_MESSAGE, ACKRESULT_FAILED, (HANDLE)seq, (LPARAM)Translate("Message is too long: SMS page limited to 133 UTF8 chars"));
+ ProtoBroadcastAsync(hContact, ACKTYPE_MESSAGE, ACKRESULT_FAILED, (HANDLE)seq, (LPARAM)Translate("Message is too long: SMS page limited to 133 UTF-8 chars"));
}
else {
seq = msnNsThread->sendMessage('1', tEmail, netId, msg, rtlFlag);
@@ -744,7 +744,7 @@ int CMsnProto::SendMsg(MCONTACT hContact, int flags, const char* pszSrc) case NETID_YAHOO:
if (mir_strlen(msg) > 1202) {
seq = 999996;
- ProtoBroadcastAsync(hContact, ACKTYPE_MESSAGE, ACKRESULT_FAILED, (HANDLE)seq, (LPARAM)Translate("Message is too long: MSN messages are limited by 1202 UTF8 chars"));
+ ProtoBroadcastAsync(hContact, ACKTYPE_MESSAGE, ACKRESULT_FAILED, (HANDLE)seq, (LPARAM)Translate("Message is too long: MSN messages are limited by 1202 UTF-8 chars"));
}
else {
seq = msnNsThread->sendMessage('1', tEmail, netId, msg, rtlFlag);
@@ -755,7 +755,7 @@ int CMsnProto::SendMsg(MCONTACT hContact, int flags, const char* pszSrc) default:
if (mir_strlen(msg) > 1202) {
seq = 999996;
- ProtoBroadcastAsync(hContact, ACKTYPE_MESSAGE, ACKRESULT_FAILED, (HANDLE)seq, (LPARAM)Translate("Message is too long: MSN messages are limited by 1202 UTF8 chars"));
+ ProtoBroadcastAsync(hContact, ACKTYPE_MESSAGE, ACKRESULT_FAILED, (HANDLE)seq, (LPARAM)Translate("Message is too long: MSN messages are limited by 1202 UTF-8 chars"));
}
else {
if (netId != NETID_LCS) {
|