1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 17:43: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 -2
View File
@@ -34,13 +34,19 @@ class CommandOSQuit : public Command
bool OnHelp(CommandSource &source, const Anope::string &subcommand)
{
source.Reply(OPER_HELP_QUIT);
source.Reply(_("Syntax: \002QUIT\002\n"
" \n"
"Causes Services to do an immediate shutdown; databases are\n"
"\002not\002 saved. This command should not be used unless\n"
"damage to the in-memory copies of the databases is feared\n"
"and they should not be saved. For normal shutdowns, use the\n"
"\002SHUTDOWN\002 command."));
return true;
}
void OnServHelp(CommandSource &source)
{
source.Reply(OPER_HELP_CMD_QUIT);
source.Reply(_(" QUIT Terminate the Services program with no save"));
}
};