diff options
Diffstat (limited to 'modules/nickserv/ns_identify.cpp')
-rw-r--r-- | modules/nickserv/ns_identify.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/modules/nickserv/ns_identify.cpp b/modules/nickserv/ns_identify.cpp index 44e6bb840..94ca476ae 100644 --- a/modules/nickserv/ns_identify.cpp +++ b/modules/nickserv/ns_identify.cpp @@ -111,11 +111,14 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Tells %s that you are really the owner of this\n" - "nick. Many commands require you to authenticate yourself\n" - "with this command before you use them. The password\n" - "should be the same one you sent with the \002REGISTER\002\n" - "command."), source.service->nick.c_str()); + source.Reply(_( + "Tells %s that you are really the owner of this " + "nick. Many commands require you to authenticate yourself " + "with this command before you use them. The password " + "should be the same one you sent with the \002REGISTER\002 " + "command." + ), + source.service->nick.c_str()); return true; } }; |