diff options
author | George Hazan <ghazan@miranda.im> | 2018-07-11 23:54:31 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-07-11 23:54:31 +0300 |
commit | 4dc8a21aa2c70527112d852862c0d3a45d2bfb8a (patch) | |
tree | e9d3d55cd69236567c1b97dbc6b00fc853a93b06 /plugins/StopSpamPlus | |
parent | 532150469a7739d3cf2e4309698f4ffd329389b4 (diff) |
fixes #1478 (StopSpam: welcome message cannot be translated)
Diffstat (limited to 'plugins/StopSpamPlus')
-rw-r--r-- | plugins/StopSpamPlus/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/StopSpamPlus/src/options.cpp b/plugins/StopSpamPlus/src/options.cpp index 757369bb55..0773c23f4e 100644 --- a/plugins/StopSpamPlus/src/options.cpp +++ b/plugins/StopSpamPlus/src/options.cpp @@ -31,7 +31,7 @@ public: bool OnInitDialog() override
{
- edtDescr.SetText(pluginDescription);
+ edtDescr.SetText(TranslateW(pluginDescription));
return true;
}
};
|