1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 19:43:14 +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
@@ -50,14 +50,14 @@ class CommandCSTopic : public Command
{
source.Reply(_("Syntax: \002TOPIC \037channel\037 [\037topic\037]\002\n"
" \n"
"Causes %S to set the channel topic to the one\n"
"Causes %s to set the channel topic to the one\n"
"specified. If \002topic\002 is not given, then an empty topic\n"
"is set. This command is most useful in conjunction\n"
"with \002SET TOPICLOCK\002. See \002%R%S HELP SET TOPICLOCK\002\n"
"with \002SET TOPICLOCK\002. See \002%R%s HELP SET TOPICLOCK\002\n"
"for more information.\n"
" \n"
"By default, limited to those with founder access on the\n"
"channel."));
"channel."), ChanServ->nick.c_str(), ChanServ->nick.c_str());
return true;
}