1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 18:36:39 +02:00

Remove hardcoded command names from most messages.

This commit is contained in:
Sadie Powell
2025-04-22 18:14:46 +01:00
parent 0c155e0c05
commit f3743cd37d
10 changed files with 315 additions and 252 deletions
+21 -18
View File
@@ -348,24 +348,27 @@ public:
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
"Allows Services Operators to create, modify, and delete "
"bots that users will be able to use on their own "
"channels."
"\n\n"
"\002BOT\032ADD\002 adds a bot with the given nickname, username, "
"hostname and realname. Since no integrity checks are done "
"for these settings, be really careful."
"\n\n"
"\002BOT\032CHANGE\002 allows you to change the nickname, username, hostname "
"or realname of a bot without deleting it (and "
"all the data associated with it)."
"\n\n"
"\002BOT\032DEL\002 removes the given bot from the bot list."
"\n\n"
"\002Note\002: You cannot create a bot with a nick that is "
"currently registered. If an unregistered user is currently "
"using the nick, they will be killed."
));
"Allows Services Operators to create, modify, and delete "
"bots that users will be able to use on their own "
"channels."
"\n\n"
"\002%s\032ADD\002 adds a bot with the given nickname, username, "
"hostname and realname. Since no integrity checks are done "
"for these settings, be really careful."
"\n\n"
"\002%s\032CHANGE\002 allows you to change the nickname, username, hostname "
"or realname of a bot without deleting it (and "
"all the data associated with it)."
"\n\n"
"\002%s\032DEL\002 removes the given bot from the bot list."
"\n\n"
"\002Note\002: You cannot create a bot with a nick that is "
"currently registered. If an unregistered user is currently "
"using the nick, they will be killed."
),
source.command.nobreak().c_str(),
source.command.nobreak().c_str(),
source.command.nobreak().c_str());
return true;
}
};