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_secure.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_secure.cpp')
-rw-r--r-- | modules/core/cs_set_secure.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/cs_set_secure.cpp b/modules/core/cs_set_secure.cpp index a84e91958..1aea9f887 100644 --- a/modules/core/cs_set_secure.cpp +++ b/modules/core/cs_set_secure.cpp @@ -46,11 +46,11 @@ class CommandCSSetSecure : public Command { source.Reply(_("Syntax: \002%s \037channel\037 SECURE {ON | OFF}\002\n" " \n" - "Enables or disables %S's security features for a\n" + "Enables or disables %s's security features for a\n" "channel. When \002SECURE\002 is set, only users who have\n" "registered their nicknames with %s and IDENTIFY'd\n" "with their password will be given access to the channel\n" - "as controlled by the access list."), this->name.c_str(), Config->s_NickServ.c_str()); + "as controlled by the access list."), this->name.c_str(), NickServ->nick.c_str(), NickServ->nick.c_str()); return true; } @@ -61,7 +61,7 @@ class CommandCSSetSecure : public Command void OnServHelp(CommandSource &source) { - source.Reply(_(" SECURE Activate %S security features")); + source.Reply(_(" SECURE Activate %s security features"), ChanServ->nick.c_str()); } }; |