diff options
author | Dart Raiden <wowemuh@gmail.com> | 2013-12-21 19:58:46 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2013-12-21 19:58:46 +0000 |
commit | af6723b842a9c8db23b1d78ef5e0db97c2df7d2e (patch) | |
tree | 89cc86e85227510c9c9fdd0f4551bddfc1491ee4 /protocols/IcqOscarJ | |
parent | 376d04aedd69e3f86fa6674b74d9162e3a65510c (diff) |
spelling correction (patch from RMN)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7321 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ')
-rw-r--r-- | protocols/IcqOscarJ/res/resources.rc | 2 | ||||
-rw-r--r-- | protocols/IcqOscarJ/src/icq_proto.cpp | 2 | ||||
-rw-r--r-- | protocols/IcqOscarJ/src/oscar_filetransfer.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/protocols/IcqOscarJ/res/resources.rc b/protocols/IcqOscarJ/res/resources.rc index 89e2c30ce5..cf7351b5d9 100644 --- a/protocols/IcqOscarJ/res/resources.rc +++ b/protocols/IcqOscarJ/res/resources.rc @@ -89,7 +89,7 @@ BEGIN LTEXT "Port:",IDC_STATIC,182,108,25,8
EDITTEXT IDC_ICQPORT,208,106,29,12,ES_AUTOHSCROLL | ES_NUMBER
PUSHBUTTON "Default",IDC_RESETSERVER,241,106,56,12
- LTEXT "Hint: Use port 0 to connect on a random port. Try port 80 or port 443 if you are having problems connecting through a http proxy server.",IDC_STATIC,12,120,286,18
+ LTEXT "Hint: Use port 0 to connect on a random port. Try port 80 or port 443 if you are having problems connecting through an http proxy server.",IDC_STATIC,12,120,286,18
CONTROL "Secure Connection (SSL)",IDC_SSL,"Button",BS_AUTOCHECKBOX | BS_TOP | WS_TABSTOP,12,138,290,10
CONTROL "Secure (MD5) login",IDC_MD5LOGIN,"Button",BS_AUTOCHECKBOX | BS_TOP | WS_TABSTOP,12,150,290,10
CONTROL "Legacy fix (for ICQ Groupware or IServerD only)",IDC_LEGACY,
diff --git a/protocols/IcqOscarJ/src/icq_proto.cpp b/protocols/IcqOscarJ/src/icq_proto.cpp index da558cf76e..1d81751d16 100644 --- a/protocols/IcqOscarJ/src/icq_proto.cpp +++ b/protocols/IcqOscarJ/src/icq_proto.cpp @@ -1924,7 +1924,7 @@ int __cdecl CIcqProto::SetStatus(int iNewStatus) {
SetCurrentStatus(ID_STATUS_OFFLINE);
ProtoBroadcastAck(NULL, ACKTYPE_LOGIN, ACKRESULT_FAILED, NULL, LOGINERR_BADUSERID);
- icq_LogMessage(LOG_FATAL, LPGEN("You have not entered a ICQ number.\nConfigure this in Options->Network->ICQ and try again."));
+ icq_LogMessage(LOG_FATAL, LPGEN("You have not entered an ICQ number.\nConfigure this in Options->Network->ICQ and try again."));
return 0;
}
diff --git a/protocols/IcqOscarJ/src/oscar_filetransfer.cpp b/protocols/IcqOscarJ/src/oscar_filetransfer.cpp index c2ee0077cd..bb764f6efa 100644 --- a/protocols/IcqOscarJ/src/oscar_filetransfer.cpp +++ b/protocols/IcqOscarJ/src/oscar_filetransfer.cpp @@ -898,7 +898,7 @@ HANDLE CIcqProto::oftInitTransfer(HANDLE hContact, DWORD dwUin, char* szUid, con #endif
if (ft->qwTotalSize >= OSCAR_MAX_SIZE && ft->wFilesCount > 1)
{ // file larger than 4GB can be send only as single
- icq_LogMessage(LOG_ERROR, LPGEN("The files are too big to be sent at once. Files bigger than 4GB can be sent only separately."));
+ icq_LogMessage(LOG_ERROR, LPGEN("The files are too big to be sent at once. Files bigger than 4 GB can be sent only separately."));
// Notify UI
ProtoBroadcastAck(ft->hContact, ACKTYPE_FILE, ACKRESULT_FAILED, (HANDLE)ft, 0);
// Release transfer
|