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 /src/commands.cpp | |
parent | 01b901eba19ba5cf5e4220634f705a13c81acce8 (diff) |
replaced all %R with %s in the language strings
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 91b4787fd..01f8eb45b 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -57,7 +57,7 @@ void mod_run_cmd(BotInfo *bi, User *u, ChannelInfo *ci, Command *c, const Anope: if (!c) { - u->SendMessage(bi, _("Unknown command \002%s\002. \"%R%s HELP\" for help."), command.c_str(), bi->nick.c_str()); + u->SendMessage(bi, _("Unknown command \002%s\002. \"%s%s HELP\" for help."), command.c_str(), Config->UseStrictPrivMsgString.c_str(), bi->nick.c_str()); PopLanguage(); return; } |