diff options
author | George Hazan <ghazan@miranda.im> | 2022-08-05 18:58:55 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-08-05 18:58:55 +0300 |
commit | 6c61820160db1bf0b35dfd8f503e1d1fcf0aa94c (patch) | |
tree | 4be252c03f755f1f1516303447090d936de6c927 /protocols | |
parent | 1f3b7b5cfc7ca3bf335ed3fc062a0009e0a9dcb8 (diff) |
fix for chinese in error message
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/JabberG/src/jabber_voip.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_voip.cpp b/protocols/JabberG/src/jabber_voip.cpp index 2f45d61350..5f80c1c364 100644 --- a/protocols/JabberG/src/jabber_voip.cpp +++ b/protocols/JabberG/src/jabber_voip.cpp @@ -491,7 +491,7 @@ bool CJabberProto::VOIPCallAccept(const TiXmlElement *jingleNode, const char *fr if (!from || !jingleNode) return false; - CMStringW question(FORMAT, TranslateT("Accept call from %s?\r\nIt will disclose IP address to the peer and his server"), from); + CMStringW question(FORMAT, TranslateT("Accept call from %S?\r\nIt will disclose IP address to the peer and his server"), from); if (MessageBoxW(0, question, TranslateT("Incomig call"), MB_YESNO | MB_ICONQUESTION) != IDYES) return false; |