diff options
author | Adam <Adam@anope.org> | 2011-02-04 18:32:04 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-02-04 18:32:04 -0500 |
commit | a53a797271fe1c68296a5c4848f827670518a309 (patch) | |
tree | 5cfe69af11752937cfc8b6e2445eb11d23cb1557 /modules/core/cs_topic.cpp | |
parent | 08583dc107974252312fb7c87532c9deb68e7f63 (diff) |
Replaced all of the old %S's in the language strings that were used for service nicks
Diffstat (limited to 'modules/core/cs_topic.cpp')
-rw-r--r-- | modules/core/cs_topic.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/cs_topic.cpp b/modules/core/cs_topic.cpp index 20005b07b..47c2b4aae 100644 --- a/modules/core/cs_topic.cpp +++ b/modules/core/cs_topic.cpp @@ -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; } |