diff options
author | Adam <adam@sigterm.info> | 2013-02-02 10:51:08 -0800 |
---|---|---|
committer | Adam <adam@sigterm.info> | 2013-02-02 10:51:08 -0800 |
commit | 8902c1f03881b7053a2b6b526e23d89054824d2c (patch) | |
tree | 46b48dadef226a981f39eca567b0cb57ca8f6321 /modules/commands/cs_list.cpp | |
parent | dccb0ee3138359559d3a984d4708b53154aa7082 (diff) | |
parent | 6c43bcc3e0a474319b4b5ecf53d01eb9c84cce79 (diff) |
Merge pull request #8 from Robby-/1.9
Some more typo and help text fixes, missing privileges, settings corrections, and cs_enforce changes
Diffstat (limited to 'modules/commands/cs_list.cpp')
-rw-r--r-- | modules/commands/cs_list.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/modules/commands/cs_list.cpp b/modules/commands/cs_list.cpp index 09e89c219..d762a54ba 100644 --- a/modules/commands/cs_list.cpp +++ b/modules/commands/cs_list.cpp @@ -144,11 +144,15 @@ class CommandCSList : public Command " Lists all registered channels which have been set to not expire.\n" " \n" " \002LIST #51-100\002\n" - " Lists all registered channels within the given range (51-100).\n")); + " Lists all registered channels within the given range (51-100).")); + if (!Config->RegexEngine.empty()) - source.Reply(" \n" - "Regex matches are also supported using the %s engine.\n" - "Enclose your pattern in // if this desired.", Config->RegexEngine.c_str()); + { + source.Reply(" "); + source.Reply(_("Regex matches are also supported using the %s engine.\n" + "Enclose your pattern in // if this is desired."), Config->RegexEngine.c_str()); + } + return true; } }; |