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_set_keeptopic.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_set_keeptopic.cpp')
-rw-r--r-- | modules/core/cs_set_keeptopic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/cs_set_keeptopic.cpp b/modules/core/cs_set_keeptopic.cpp index 5a7bbd334..3d697e499 100644 --- a/modules/core/cs_set_keeptopic.cpp +++ b/modules/core/cs_set_keeptopic.cpp @@ -48,9 +48,9 @@ class CommandCSSetKeepTopic : public Command " \n" "Enables or disables the \002topic retention\002 option for a \n" "channel. When \002topic retention\002 is set, the topic for the\n" - "channel will be remembered by %S even after the\n" + "channel will be remembered by %s even after the\n" "last user leaves the channel, and will be restored the\n" - "next time the channel is created."), this->name.c_str()); + "next time the channel is created."), this->name.c_str(), ChanServ->nick.c_str()); return true; } |