diff options
-rw-r--r-- | langpacks/russian/Plugins/Spamotron.txt | 10 | ||||
-rw-r--r-- | plugins/Spamotron/src/Version.h | 4 | ||||
-rw-r--r-- | plugins/Spamotron/src/popups.cpp | 6 |
3 files changed, 15 insertions, 5 deletions
diff --git a/langpacks/russian/Plugins/Spamotron.txt b/langpacks/russian/Plugins/Spamotron.txt index 453d298130..547fa2bec3 100644 --- a/langpacks/russian/Plugins/Spamotron.txt +++ b/langpacks/russian/Plugins/Spamotron.txt @@ -160,6 +160,16 @@ Cообщение временно заблокировано. Напишите [Sending plain challenge to %s.]
Отправка контрольного вопроса %s.
[Sending math expression challenge to %s.]
+Отправка математического контрольного вопроса %s.
+[Sending round-robin challenge to %s.]
Отправка контрольного вопроса %s.
+[Sending random challenge to %s.]
+Отправка случайного контрольного вопроса %s.
[Their message was]
Сообщение было
+[Message blocked due to preview action]
+Сообщение заблокировано для примера
+[Contact approved due to preview action]
+Контакт подтвержден для примера
+[Challenge sent to preview contact]
+Отправка контрольного вопроса для примера
\ No newline at end of file diff --git a/plugins/Spamotron/src/Version.h b/plugins/Spamotron/src/Version.h index fb4145b9a0..e366f941cc 100644 --- a/plugins/Spamotron/src/Version.h +++ b/plugins/Spamotron/src/Version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 0
#define __RELEASE_NUM 4
-#define __BUILD_NUM 6
+#define __BUILD_NUM 7
#include <stdver.h>
@@ -11,4 +11,4 @@ #define __AUTHOR "vu1tur"
#define __AUTHOREMAIL "to@vu1tur.eu.org"
#define __AUTHORWEB "http://miranda-ng.org/p/Spamotron/"
-#define __COPYRIGHT " 2010-2013 vu1tur"
+#define __COPYRIGHT " 2010 vu1tur"
diff --git a/plugins/Spamotron/src/popups.cpp b/plugins/Spamotron/src/popups.cpp index 415bcc3517..43a5ee5655 100644 --- a/plugins/Spamotron/src/popups.cpp +++ b/plugins/Spamotron/src/popups.cpp @@ -108,9 +108,9 @@ INT_PTR CALLBACK DlgProcOptionsPopups(HWND optDlg, UINT msg, WPARAM wParam, LPAR return FALSE;
break;
case IDC_OPT_POPUPS_PREVIEW:
- ShowPopupPreview(optDlg, POPUP_BLOCKED, NULL, LPGENT("Message blocked due to preview action"));
- ShowPopupPreview(optDlg, POPUP_APPROVED, NULL, LPGENT("Message approved due to preview action"));
- ShowPopupPreview(optDlg, POPUP_CHALLENGE, NULL, LPGENT("Challenge sent to preview contact"));
+ ShowPopupPreview(optDlg, POPUP_BLOCKED, NULL, TranslateT("Message blocked due to preview action"));
+ ShowPopupPreview(optDlg, POPUP_APPROVED, NULL, TranslateT("Contact approved due to preview action"));
+ ShowPopupPreview(optDlg, POPUP_CHALLENGE, NULL, TranslateT("Challenge sent to preview contact"));
return FALSE;
}
SendMessage(GetParent(optDlg), PSM_CHANGED, 0, 0);
|