blob: 5c7dc5d495d833ed52982b088b8281de6a7f60e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "stdafx.h"
/////////////////////////////////////////////////////////////////////////////////////////
const wchar_t* CMPlugin::getQuestion()
{
const wchar_t *res = Question;
return (res != nullptr) ? res : TranslateW(L"Spammers made me to install small anti-spam system you are now speaking with. Please reply \"nospam\" without quotes and spaces if you want to contact me.");
}
const wchar_t* CMPlugin::getReply()
{
const wchar_t *res = AuthRepl;
return (res != nullptr) ? res : TranslateW(L"StopSpam: send a message and reply to an anti-spam bot question.");
}
const wchar_t* CMPlugin::getCongrats()
{
const wchar_t *res = Congratulation;
return (res != nullptr) ? res : TranslateW(L"Congratulations! You just passed human/robot test. Now you can write me a message.");
}
|