diff options
author | George Hazan <ghazan@miranda.im> | 2019-03-25 18:17:38 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-03-25 18:17:38 +0300 |
commit | acfe02b246ab39f97bf77a0f3a11fc97e3f7fb3d (patch) | |
tree | b8437976bf73981d20ed45f0ffc56b20ca20c7a9 /protocols/JabberG/src/jabber_thread.cpp | |
parent | b34afd8a8f6e35541f928c2f4879413fd1d28601 (diff) |
Jabber: error popup's title to carry account name
Diffstat (limited to 'protocols/JabberG/src/jabber_thread.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_thread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_thread.cpp b/protocols/JabberG/src/jabber_thread.cpp index 844ac3a1a1..0c0941c531 100755 --- a/protocols/JabberG/src/jabber_thread.cpp +++ b/protocols/JabberG/src/jabber_thread.cpp @@ -665,7 +665,7 @@ void CJabberProto::PerformAuthentication(ThreadData *info) char text[1024];
mir_snprintf(text, TranslateU("Authentication failed for %s@%s."), info->conn.username, info->conn.server);
- MsgPopup(0, Utf2T(text), TranslateT("Jabber Authentication"));
+ MsgPopup(0, Utf2T(text), TranslateT("Authentication"));
JLoginFailed(LOGINERR_WRONGPASSWORD);
info->send("</stream:stream>");
@@ -821,7 +821,7 @@ void CJabberProto::OnProcessError(const TiXmlElement *node, ThreadData *info) }
}
if (!skipMsg)
- MsgPopup(0, Utf2T(buff), TranslateT("Jabber Error"));
+ MsgPopup(0, Utf2T(buff), TranslateT("Error"));
if (m_bEnableStreamMgmt) //TODO: check if needed/work here
m_StrmMgmt.SendAck();
|