diff options
author | Robby- <robby@chat.be> | 2013-09-14 14:40:17 +0200 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-09-27 19:11:02 -0400 |
commit | 4f820a7d41dbdf83b27005dcfb02507206708d6b (patch) | |
tree | df34793df95dff47106a84c55980354cf02b05b4 /modules/commands/os_news.cpp | |
parent | 5f7127dd92ec9b86b64ea0bbc385e5c06be77fff (diff) |
Fix typos, remove dead language defines.
os_set: Add missing debug text in help output.
Diffstat (limited to 'modules/commands/os_news.cpp')
-rw-r--r-- | modules/commands/os_news.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/os_news.cpp b/modules/commands/os_news.cpp index c71d7ed27..ddfc3c3f9 100644 --- a/modules/commands/os_news.cpp +++ b/modules/commands/os_news.cpp @@ -266,7 +266,7 @@ class CommandOSLogonNews : public NewsBase source.Reply(" "); source.Reply(_("Edits or displays the list of logon news messages. When a\n" "user connects to the network, these messages will be sent\n" - "to them. (However, no more than \002%d\002 messages will be\n" + "to them. However, no more than \002%d\002 messages will be\n" "sent in order to avoid flooding the user. If there are\n" "more news messages, only the most recent will be sent."), Config->GetModule(this->owner)->Get<unsigned>("newscount", "3")); @@ -293,7 +293,7 @@ class CommandOSOperNews : public NewsBase source.Reply(" "); source.Reply(_("Edits or displays the list of oper news messages. When a\n" "user opers up (with the /OPER command), these messages will\n" - "be sent to them. (However, no more than \002%d\002 messages will\n" + "be sent to them. However, no more than \002%d\002 messages will\n" "be sent in order to avoid flooding the user. If there are\n" "more news messages, only the most recent will be sent."), Config->GetModule(this->owner)->Get<unsigned>("newscount", "3")); @@ -320,7 +320,7 @@ class CommandOSRandomNews : public NewsBase source.Reply(" "); source.Reply(_("Edits or displays the list of random news messages. When a\n" "user connects to the network, one (and only one) of the\n" - "random news will be randomly chosen and sent to them.\n")); + "random news will be randomly chosen and sent to them.")); return true; } }; |