diff options
Diffstat (limited to 'modules/chanserv/cs_updown.cpp')
-rw-r--r-- | modules/chanserv/cs_updown.cpp | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/modules/chanserv/cs_updown.cpp b/modules/chanserv/cs_updown.cpp index 28c35042d..3562daf9c 100644 --- a/modules/chanserv/cs_updown.cpp +++ b/modules/chanserv/cs_updown.cpp @@ -123,9 +123,11 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Updates a selected nicks status modes on a channel. If \037nick\037 is\n" - "omitted then your status is updated. If \037channel\037 is omitted then\n" - "your channel status is updated on every channel you are in.")); + source.Reply(_( + "Updates a selected nicks status modes on a channel. If \037nick\037 is " + "omitted then your status is updated. If \037channel\037 is omitted then " + "your channel status is updated on every channel you are in." + )); return true; } }; @@ -221,9 +223,11 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Removes a selected nicks status modes on a channel. If \037nick\037 is\n" - "omitted then your status is removed. If \037channel\037 is omitted then\n" - "your channel status is removed on every channel you are in.")); + source.Reply(_( + "Removes a selected nicks status modes on a channel. If \037nick\037 is " + "omitted then your status is removed. If \037channel\037 is omitted then " + "your channel status is removed on every channel you are in." + )); return true; } }; |