diff options
author | George Hazan <ghazan@miranda.im> | 2018-07-11 23:34:16 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-07-11 23:34:16 +0300 |
commit | 532150469a7739d3cf2e4309698f4ffd329389b4 (patch) | |
tree | 6983a261754adfb592c46e6ea837a219d308b90f /plugins/Nudge/src/main.cpp | |
parent | 3dbc9c87fa12904097c409fffcbb1017d573f820 (diff) |
fixes #1481 (Nudge: sound description cannot be translated)
Diffstat (limited to 'plugins/Nudge/src/main.cpp')
-rw-r--r-- | plugins/Nudge/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Nudge/src/main.cpp b/plugins/Nudge/src/main.cpp index 06e3590aa0..c39c7d0a17 100644 --- a/plugins/Nudge/src/main.cpp +++ b/plugins/Nudge/src/main.cpp @@ -353,7 +353,7 @@ void Nudge_AddAccount(PROTOACCOUNT *proto) p->hEvent = hevent;
wchar_t soundDesc[MAXMODULELABELLENGTH + 10];
- mir_snwprintf(soundDesc, LPGENW("Nudge for %s"), proto->tszAccountName);
+ mir_snwprintf(soundDesc, TranslateT("Nudge for %s"), proto->tszAccountName);
g_plugin.addSound(p->NudgeSoundname, LPGENW("Nudge"), soundDesc);
arNudges.insert(p);
|