diff options
Diffstat (limited to 'protocols')
-rwxr-xr-x | protocols/JabberG/src/jabber_opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_opt.cpp b/protocols/JabberG/src/jabber_opt.cpp index 006c19552f..1c71348145 100755 --- a/protocols/JabberG/src/jabber_opt.cpp +++ b/protocols/JabberG/src/jabber_opt.cpp @@ -434,7 +434,7 @@ protected: // fill MAM modes
wchar_t *szMamModes[] = { LPGENW("Never"), LPGENW("Roster"), LPGENW("Always") };
for (auto &it : szMamModes)
- m_cbMam.AddString(it, int(&it - szMamModes));
+ m_cbMam.AddString(TranslateW(it), int(&it - szMamModes));
m_cbMam.SetCurSel(m_proto->m_iMamMode);
m_cbMam.Enable(m_proto->m_bMamPrefsAvailable);
|