From 6c61820160db1bf0b35dfd8f503e1d1fcf0aa94c Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 5 Aug 2022 18:58:55 +0300 Subject: fix for chinese in error message --- protocols/JabberG/src/jabber_voip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3