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:
@@ -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"));
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user