diff options
author | dartraiden <wowemuh@gmail.com> | 2019-06-03 21:14:04 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2019-06-03 21:14:04 +0300 |
commit | 02ca95003d54869486a08eca4900ff04021a0867 (patch) | |
tree | 554f58171b9bf89a805631a12b056983da9535b7 | |
parent | 483f1a1db4b60c36020aee68a99666b24471f179 (diff) |
ICQ-WIM: this message is for cases of missing password too
-rw-r--r-- | protocols/ICQ-WIM/src/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/ICQ-WIM/src/server.cpp b/protocols/ICQ-WIM/src/server.cpp index 38801c8a83..f21860049e 100644 --- a/protocols/ICQ-WIM/src/server.cpp +++ b/protocols/ICQ-WIM/src/server.cpp @@ -132,7 +132,7 @@ 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.\nConfigure this in Options -> Network -> ICQ and try again.")); + mir_snwprintf(Popup.lpwzText, TranslateT("You have not entered an ICQ number 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); |