1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 00:03: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
+2 -2
View File
@@ -48,8 +48,8 @@ class CommandCSSetPrivate : public Command
source.Reply(_("Syntax: \002%s \037channel\037 PRIVATE {ON | OFF}\002\n"
" \n"
"Enables or disables the \002private\002 option for a channel.\n"
"When \002private\002 is set, a \002%R%s LIST\002 will not\n"
"include the channel in any lists."), this->name.c_str(), ChanServ->nick.c_str());
"When \002private\002 is set, a \002%s%s LIST\002 will not\n"
"include the channel in any lists."), this->name.c_str(), Config->UseStrictPrivMsgString.c_str(), ChanServ->nick.c_str());
return true;
}