1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 03:23: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
+3 -3
View File
@@ -44,12 +44,12 @@ class CommandCSSetTopicLock : public Command
bool OnHelp(CommandSource &source, const Anope::string &)
{
source.Reply(_("Syntax: \002SET \037%s\037 TOPICLOCK {ON | OFF}\002\n"
source.Reply(_("Syntax: \002%s \037channel\037 TOPICLOCK {ON | OFF}\002\n"
" \n"
"Enables or disables the \002topic lock\002 option for a channel.\n"
"When \002topic lock\002 is set, %S will not allow the\n"
"When \002topic lock\002 is set, %s will not allow the\n"
"channel topic to be changed except via the \002TOPIC\002\n"
"command."), this->name.c_str());
"command."), this->name.c_str(), ChanServ->nick.c_str());
return true;
}