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

Replaced all of the old %S's in the language strings that were used for service nicks

This commit is contained in:
Adam
2011-02-04 18:32:04 -05:00
parent 08583dc107
commit a53a797271
44 changed files with 162 additions and 146 deletions
+6 -4
View File
@@ -32,13 +32,15 @@ class CommandCSHelp : public Command
void OnSyntaxError(CommandSource &source, const Anope::string &subcommand)
{
User *u = source.u;
source.Reply(_("\002%S\002 allows you to register and control various\n"
"aspects of channels. %S can often prevent\n"
source.Reply(_("\002%s\002 allows you to register and control various\n"
"aspects of channels. %s can often prevent\n"
"malicious users from \"taking over\" channels by limiting\n"
"who is allowed channel operator privileges. Available\n"
"commands are listed below; to use them, type\n"
"\002%R%S \037command\037\002. For more information on a\n"
"specific command, type \002%R%S HELP \037command\037\002."));
"\002%R%s \037command\037\002. For more information on a\n"
"specific command, type \002%R%s HELP \037command\037\002."),
ChanServ->nick.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str(),
ChanServ->nick.c_str());
for (CommandMap::const_iterator it = ChanServ->Commands.begin(); it != ChanServ->Commands.end(); ++it)
if (!Config->HidePrivilegedCommands || it->second->permission.empty() || (u->Account() && u->Account()->HasCommand(it->second->permission)))
it->second->OnServHelp(source);