summaryrefslogtreecommitdiff
path: root/modules/commands/help.cpp
diff options
context:
space:
mode:
authorRobby- <robby@chat.be>2013-02-02 07:30:53 +0100
committerRobby- <robby@chat.be>2013-02-02 07:30:53 +0100
commit15b37c1e38b20a3f6244af179dfdb395ee929800 (patch)
tree5ce51a5ecb759c472d3f44a322e9fb61a2bbd7ab /modules/commands/help.cpp
parentdccb0ee3138359559d3a984d4708b53154aa7082 (diff)
Some more typo and help text fixes, proper formatting of control codes, missing privileges, and settings corrections.
Diffstat (limited to 'modules/commands/help.cpp')
-rw-r--r--modules/commands/help.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/help.cpp b/modules/commands/help.cpp
index 890964fc9..fcac6863c 100644
--- a/modules/commands/help.cpp
+++ b/modules/commands/help.cpp
@@ -54,7 +54,7 @@ class CommandHelp : public Command
GroupInfo groups;
if (all)
- source.Reply(_("All available commands for \2%s\2:"), source.service->nick.c_str());
+ source.Reply(_("All available commands for \002%s\002:"), source.service->nick.c_str());
for (CommandInfo::map::const_iterator it = map.begin(), it_end = map.end(); it != it_end; ++it)
{
@@ -124,7 +124,7 @@ class CommandHelp : public Command
if (!groups.empty())
{
source.Reply(" ");
- source.Reply(_("Use the \2%s ALL\2 command to list all command descriptions."), source_command.c_str());
+ source.Reply(_("Use the \002%s ALL\002 command to list all commands and their descriptions."), source_command.c_str());
}
}
else