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

Search all domains for language strings, fixes the mess that we used to use to translate strings in 3rd party modules

This commit is contained in:
Adam
2011-06-17 19:57:43 -04:00
parent 48e995ddf2
commit a1b36ec0a5
63 changed files with 767 additions and 633 deletions
+3 -3
View File
@@ -87,9 +87,9 @@ class CommandCSAppendTopic : public Command
bool OnHelp(CommandSource &source, const Anope::string &subcommand)
{
me->SendMessage(source, _("Syntax: APPENDTOPIC channel text"));
source.Reply(_("Syntax: APPENDTOPIC channel text"));
source.Reply(" ");
me->SendMessage(source, _("This command allows users to append text to a currently set\n"
source.Reply(("This command allows users to append text to a currently set\n"
"channel topic. When TOPICLOCK is on, the topic is updated and\n"
"the new, updated topic is locked."));
@@ -98,7 +98,7 @@ class CommandCSAppendTopic : public Command
void OnSyntaxError(CommandSource &source, const Anope::string &subcommand)
{
me->SendMessage(source, _("Syntax: APPENDTOPIC channel text"));
source.Reply(_("Syntax: APPENDTOPIC channel text"));
}
};