diff options
Diffstat (limited to 'modules/nickserv/ns_set_protect.cpp')
-rw-r--r-- | modules/nickserv/ns_set_protect.cpp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/modules/nickserv/ns_set_protect.cpp b/modules/nickserv/ns_set_protect.cpp index af4f37e0a..5d3bd8c5b 100644 --- a/modules/nickserv/ns_set_protect.cpp +++ b/modules/nickserv/ns_set_protect.cpp @@ -99,10 +99,13 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Turns automatic protection for your account on or off. With\n" - "protection on if another user tries to use a nickname from\n" - "your group they will be given some time to change their nick\n" - "after which %s will forcibly change their nick."), source.service->nick.c_str()); + source.Reply(_( + "Turns automatic protection for your account on or off. With " + "protection on if another user tries to use a nickname from " + "your group they will be given some time to change their nick " + "after which %s will forcibly change their nick." + ), + source.service->nick.c_str()); return true; } }; @@ -127,10 +130,13 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Turns automatic protection for the nick on or off. With\n" - "protection on if a user tries to use a nickname from the\n" - "nick's group they will be given some time to change their\n" - "nick after which %s will forcibly change their nick."), source.service->nick.c_str()); + source.Reply(_( + "Turns automatic protection for the nick on or off. With " + "protection on if a user tries to use a nickname from the " + "nick's group they will be given some time to change their " + "nick after which %s will forcibly change their nick." + ), + source.service->nick.c_str()); return true; } }; |