diff options
author | George Hazan <ghazan@miranda.im> | 2020-05-04 16:32:06 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-05-04 16:32:06 +0300 |
commit | af5b19827156bab74e209689b895a9e268e9b803 (patch) | |
tree | 53b237a7951c8c5cee3953d7675c15769e6a8aff /plugins/NewStory | |
parent | fa125faeee5c0021bb7f6ec9d182e7612561ff34 (diff) |
fixes #2379 (NewStory: не переводится строка "Unknown event" в предпросмотре шаблона)
Diffstat (limited to 'plugins/NewStory')
-rw-r--r-- | plugins/NewStory/src/templates.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/templates.cpp b/plugins/NewStory/src/templates.cpp index 02f2523201..adb6ee94be 100644 --- a/plugins/NewStory/src/templates.cpp +++ b/plugins/NewStory/src/templates.cpp @@ -296,7 +296,7 @@ void vfDeleted(int, TemplateVars *vars, MCONTACT, ItemData *item) void vfOther(int, TemplateVars *vars, MCONTACT, ItemData *) { // %M: the message string itself - vars->SetVar('M', LPGENW("Unknown event"), false); + vars->SetVar('M', TranslateT("Unknown event"), false); } ///////////////////////////////////////////////////////////////////////////////////////// |