1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 16:13:13 +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
+3 -3
View File
@@ -75,11 +75,11 @@ class CommandNSSet : public Command
for (subcommand_map::iterator it = this->subcommands.begin(), it_end = this->subcommands.end(); it != it_end; ++it)
it->second->OnServHelp(source);
source.Reply(_("In order to use this command, you must first identify\n"
"with your password (\002%R%s HELP IDENTIFY\002 for more\n"
"with your password (\002%s%s HELP IDENTIFY\002 for more\n"
"information).\n"
" \n"
"Type \002%R%s HELP SET \037option\037\002 for more information\n"
"on a specific option."), NickServ->nick.c_str(), NickServ->nick.c_str());
"Type \002%s%s HELP SET \037option\037\002 for more information\n"
"on a specific option."), Config->UseStrictPrivMsgString.c_str(), NickServ->nick.c_str(), (Config->UseStrictPrivMsg ? "/msg " : "/"), NickServ->nick.c_str());
return true;
}
else