diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-03-26 08:20:05 +0100 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2011-03-26 08:20:05 +0100 |
commit | 365769d14cb953657fe81167674a4d2d155e4a7e (patch) | |
tree | d8221f2e8a3f3a7db2e0397b416bf9b9aea8252c /modules/core/cs_help.cpp | |
parent | 01b901eba19ba5cf5e4220634f705a13c81acce8 (diff) |
replaced all %R with %s in the language strings
Diffstat (limited to 'modules/core/cs_help.cpp')
-rw-r--r-- | modules/core/cs_help.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/cs_help.cpp b/modules/core/cs_help.cpp index 294a26b62..a13bf7829 100644 --- a/modules/core/cs_help.cpp +++ b/modules/core/cs_help.cpp @@ -38,9 +38,9 @@ class CommandCSHelp : public Command "malicious users from \"taking over\" channels by limiting\n" "who is allowed channel operator privileges. Available\n" "commands are listed below; to use them, type\n" - "\002%R%s \037command\037\002. For more information on a\n" - "specific command, type \002%R%s HELP \037command\037\002."), - ChanServ->nick.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str(), + "\002%s%s \037command\037\002. For more information on a\n" + "specific command, type \002%s%s HELP \037command\037\002."), + ChanServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str(), ChanServ->nick.c_str()); for (CommandMap::const_iterator it = ChanServ->Commands.begin(); it != ChanServ->Commands.end(); ++it) if (!Config->HidePrivilegedCommands || it->second->permission.empty() || u->HasCommand(it->second->permission)) |