1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 17:23:14 +02:00

replaced all %R with %s in the language strings

This commit is contained in:
DukePyrolator
2011-03-26 08:20:05 +01:00
parent 01b901eba1
commit 365769d14c
32 changed files with 110 additions and 120 deletions
+1 -1
View File
@@ -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;
}