diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-12-15 20:05:29 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-12-15 20:05:29 +0000 |
commit | 910bba980705d0660947e7197ab8df50a34a9ec3 (patch) | |
tree | 9755d1e47db2693a0e7a9677ebf50dc3736598b9 /plugins/StopSpamMod | |
parent | 86177252bd1f0fe27ad236dce08328915bbd47a5 (diff) |
Antispam answer should not be translated
git-svn-id: http://svn.miranda-ng.org/main/trunk@7235 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StopSpamMod')
-rwxr-xr-x | plugins/StopSpamMod/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/StopSpamMod/src/options.cpp b/plugins/StopSpamMod/src/options.cpp index 4a19cddff5..240b00a28e 100755 --- a/plugins/StopSpamMod/src/options.cpp +++ b/plugins/StopSpamMod/src/options.cpp @@ -107,7 +107,7 @@ INT_PTR CALLBACK MessagesDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPar }
case ID_RESTOREDEFAULTS:
SetDlgItemText(hwnd, ID_QUESTION, defQuestion);
- SetDlgItemText(hwnd, ID_ANSWER, TranslateT("nospam"));
+ SetDlgItemText(hwnd, ID_ANSWER, _T("nospam"));
SetDlgItemText(hwnd, ID_AUTHREPL, TranslateT("StopSpam: send a message and reply to a anti-spam bot question."));
SetDlgItemText(hwnd, ID_CONGRATULATION, TranslateT("Congratulations! You just passed human/robot test. Now you can write me a message."));
SendMessage(GetParent(hwnd), PSM_CHANGED, 0, 0);
|