1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 02:13:12 +02:00

Moved the language strings which are only used once

out of the core and into the modules that use them.
This commit is contained in:
Adam
2011-02-04 15:30:31 -05:00
parent c362a1e077
commit 08583dc107
226 changed files with 42289 additions and 45412 deletions
+8 -3
View File
@@ -30,18 +30,23 @@ class CommandMSSend : public Command
bool OnHelp(CommandSource &source, const Anope::string &subcommand)
{
source.Reply(MEMO_HELP_SEND);
source.Reply(_("Syntax: \002SEND {\037nick\037 | \037channel\037} \037memo-text\037\002\n"
" \n"
"Sends the named \037nick\037 or \037channel\037 a memo containing\n"
"\037memo-text\037. When sending to a nickname, the recipient will\n"
"receive a notice that he/she has a new memo. The target\n"
"nickname/channel must be registered."));
return true;
}
void OnSyntaxError(CommandSource &source, const Anope::string &subcommand)
{
SyntaxError(source, "SEND", MEMO_SEND_SYNTAX);
SyntaxError(source, "SEND", LanguageString::MEMO_SEND_SYNTAX);
}
void OnServHelp(CommandSource &source)
{
source.Reply(MEMO_HELP_CMD_SEND);
source.Reply(_(" SEND Send a memo to a nick or channel"));
}
};