diff options
author | Adam <Adam@anope.org> | 2011-02-04 18:32:04 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-02-04 18:32:04 -0500 |
commit | a53a797271fe1c68296a5c4848f827670518a309 (patch) | |
tree | 5cfe69af11752937cfc8b6e2445eb11d23cb1557 /modules/core/os_help.cpp | |
parent | 08583dc107974252312fb7c87532c9deb68e7f63 (diff) |
Replaced all of the old %S's in the language strings that were used for service nicks
Diffstat (limited to 'modules/core/os_help.cpp')
-rw-r--r-- | modules/core/os_help.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/os_help.cpp b/modules/core/os_help.cpp index 31b62b349..f455b9079 100644 --- a/modules/core/os_help.cpp +++ b/modules/core/os_help.cpp @@ -29,11 +29,11 @@ class CommandOSHelp : public Command void OnSyntaxError(CommandSource &source, const Anope::string &subcommand) { User *u = source.u; - source.Reply(_("%S commands:")); + source.Reply(_("%s commands:"), OperServ->nick.c_str()); for (CommandMap::const_iterator it = OperServ->Commands.begin(), it_end = OperServ->Commands.end(); it != it_end; ++it) if (!Config->HidePrivilegedCommands || it->second->permission.empty() || (u->Account() && u->Account()->HasCommand(it->second->permission))) it->second->OnServHelp(source); - source.Reply(_("\002Notice:\002 All commands sent to %S are logged!")); + source.Reply(_("\002Notice:\002 All commands sent to %s are logged!"), OperServ->nick.c_str()); } }; |