diff options
author | George Hazan <ghazan@miranda.im> | 2022-06-10 19:51:35 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-06-10 19:51:35 +0300 |
commit | 2b716f5b831d86169c3c08585a8d79556a11fed3 (patch) | |
tree | 76f411baabea620f70b5a8857a75ba67d255cae7 | |
parent | a7ebec2c8597f4381ce22ae9933d5706107d1329 (diff) |
fixes #3101 (Jabber: не переводится состояние подписки в редакторе ростера)
-rw-r--r-- | protocols/JabberG/src/jabber_roster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_roster.cpp b/protocols/JabberG/src/jabber_roster.cpp index d198944436..2492795862 100644 --- a/protocols/JabberG/src/jabber_roster.cpp +++ b/protocols/JabberG/src/jabber_roster.cpp @@ -170,7 +170,7 @@ class CRosterEditorDlg : public CJabberDlgBase m_list.SetItemText(index, 1, Utf2T(nick)); m_list.SetItemText(index, 2, Utf2T(group)); - m_list.SetItemText(index, 3, Utf2T(subscr)); + m_list.SetItemText(index, 3, TranslateW(Utf2T(subscr))); return index; } |