diff options
author | Robby- <robby@chat.be> | 2013-02-02 07:30:53 +0100 |
---|---|---|
committer | Robby- <robby@chat.be> | 2013-02-02 07:30:53 +0100 |
commit | 15b37c1e38b20a3f6244af179dfdb395ee929800 (patch) | |
tree | 5ce51a5ecb759c472d3f44a322e9fb61a2bbd7ab /modules/commands/cs_suspend.cpp | |
parent | dccb0ee3138359559d3a984d4708b53154aa7082 (diff) |
Some more typo and help text fixes, proper formatting of control codes, missing privileges, and settings corrections.
Diffstat (limited to 'modules/commands/cs_suspend.cpp')
-rw-r--r-- | modules/commands/cs_suspend.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_suspend.cpp b/modules/commands/cs_suspend.cpp index 594d72772..fdfd2d55a 100644 --- a/modules/commands/cs_suspend.cpp +++ b/modules/commands/cs_suspend.cpp @@ -92,7 +92,7 @@ class CommandCSSuspend : public Command this->SendSyntax(source); source.Reply(" "); source.Reply(_("Disallows anyone from using the given channel.\n" - "May be cancelled by using the UNSUSPEND\n" + "May be cancelled by using the \002UNSUSPEND\002\n" "command to preserve all previous channel data/settings.\n" "If an expiry is given the channel will be unsuspended after\n" "that period of time, else the default expiry from the" @@ -128,7 +128,7 @@ class CommandCSUnSuspend : public Command /* Only UNSUSPEND already suspended channels */ if (!ci->HasExt("SUSPENDED")) { - source.Reply(_("Channel \2%s\2 isn't suspended."), ci->name.c_str()); + source.Reply(_("Channel \002%s\002 isn't suspended."), ci->name.c_str()); return; } |