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_access.cpp | |
parent | 01b901eba19ba5cf5e4220634f705a13c81acce8 (diff) |
replaced all %R with %s in the language strings
Diffstat (limited to 'modules/core/cs_access.cpp')
-rw-r--r-- | modules/core/cs_access.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/core/cs_access.cpp b/modules/core/cs_access.cpp index e2e2a946e..fb6aa26db 100644 --- a/modules/core/cs_access.cpp +++ b/modules/core/cs_access.cpp @@ -434,11 +434,11 @@ class CommandCSAccess : public Command if (ModeManager::FindChannelModeByName(CMODE_HALFOP)) source.Reply(_("You can't use this command. \n" "Use the AOP, SOP, HOP and VOP commands instead.\n" - "Type \002%R%s HELP \037command\037\002 for more information."), Config->s_ChanServ.c_str()); + "Type \002%s%s HELP \037command\037\002 for more information."), Config->UseStrictPrivMsgString.c_str(), Config->s_ChanServ.c_str()); else source.Reply(_("You can't use this command. \n" "Use the AOP, SOP and VOP commands instead.\n" - "Type \002%R%s HELP \037command\037\002 for more information."), Config->s_ChanServ.c_str()); + "Type \002%s%s HELP \037command\037\002 for more information."), Config->UseStrictPrivMsgString.c_str(), Config->s_ChanServ.c_str()); } else if (readonly && !is_list) source.Reply(_("Sorry, channel access list modification is temporarily disabled.")); @@ -470,7 +470,7 @@ class CommandCSAccess : public Command "list specifies which users are allowed chanop status or\n" "access to %s commands on the channel. Different\n" "user levels allow for access to different subsets of\n" - "privileges; \002%R%s HELP ACCESS LEVELS\002 for more\n" + "privileges; \002%s%s HELP ACCESS LEVELS\002 for more\n" "specific information. Any nick not on the access list has\n" "a user level of 0.\n" " \n" @@ -504,7 +504,7 @@ class CommandCSAccess : public Command " \n" "The \002ACCESS CLEAR\002 command clears all entries of the\n" "access list."), - ChanServ->nick.c_str(), ChanServ->nick.c_str()); + ChanServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str()); source.Reply(_("\002User access levels\002\n" " \n" "By default, the following access levels are defined:\n" @@ -522,8 +522,8 @@ class CommandCSAccess : public Command " \002 <0\002 May not be opped.\n" " \n" "These levels may be changed, or new ones added, using the\n" - "\002LEVELS\002 command; type \002%R%s HELP LEVELS\002 for\n" - "information."), ChanServ->nick.c_str(), ChanServ->nick.c_str()); + "\002LEVELS\002 command; type \002%s%s HELP LEVELS\002 for\n" + "information."), ChanServ->nick.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str()); return true; } @@ -583,7 +583,7 @@ class CommandCSLevels : public Command } } - source.Reply(_("Setting \002%s\002 not known. Type \002%R%s HELP LEVELS \002 for a list of valid settings."), what.c_str(), Config->s_ChanServ.c_str()); + source.Reply(_("Setting \002%s\002 not known. Type \002%s%s HELP LEVELS \002 for a list of valid settings."), what.c_str(), Config->UseStrictPrivMsgString.c_str(), Config->s_ChanServ.c_str()); } return MOD_CONT; @@ -613,7 +613,7 @@ class CommandCSLevels : public Command } } - source.Reply(_("Setting \002%s\002 not known. Type \002%R%s HELP LEVELS \002 for a list of valid settings."), what.c_str(), Config->s_ChanServ.c_str()); + source.Reply(_("Setting \002%s\002 not known. Type \002%s%s HELP LEVELS \002 for a list of valid settings."), what.c_str(), Config->UseStrictPrivMsgString.c_str(), Config->s_ChanServ.c_str()); return MOD_CONT; } |