summaryrefslogtreecommitdiff
path: root/protocols/ICQ-WIM
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2021-05-28 16:13:09 +0300
committerdartraiden <wowemuh@gmail.com>2021-05-28 16:13:09 +0300
commit211e1869f026d7180c8d7cdbcd7618f3ff00462d (patch)
tree9a03607ace916bc36f9954380b7480efa6f8caa4 /protocols/ICQ-WIM
parent5f808b96f55aeb36a82e4b7f6a7089b6b1f9e80c (diff)
ICQ and MRA logins can be not only numbers
Diffstat (limited to 'protocols/ICQ-WIM')
-rw-r--r--protocols/ICQ-WIM/src/server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/ICQ-WIM/src/server.cpp b/protocols/ICQ-WIM/src/server.cpp
index 2ca8ed1d54..b6eb594f6a 100644
--- a/protocols/ICQ-WIM/src/server.cpp
+++ b/protocols/ICQ-WIM/src/server.cpp
@@ -189,10 +189,10 @@ void CIcqProto::ConnectionFailed(int iReason, int iErrorCode)
wcscpy_s(Popup.lpwzContactName, m_tszUserName);
switch (iReason) {
case LOGINERR_BADUSERID:
- mir_snwprintf(Popup.lpwzText, TranslateT("You have not entered an ICQ number or password.\nConfigure this in Options -> Network -> ICQ and try again."));
+ mir_snwprintf(Popup.lpwzText, TranslateT("You have not entered a login or password.\nConfigure this in Options -> Network -> ICQ and try again."));
break;
case LOGINERR_WRONGPASSWORD:
- mir_snwprintf(Popup.lpwzText, TranslateT("Connection failed.\nYour ICQ number or password was rejected (%d)."), iErrorCode);
+ mir_snwprintf(Popup.lpwzText, TranslateT("Connection failed.\nYour login or password was rejected (%d)."), iErrorCode);
break;
case LOGINERR_NONETWORK:
case LOGINERR_NOSERVER: