diff options
Diffstat (limited to 'modules/nickserv/ns_set_language.cpp')
-rw-r--r-- | modules/nickserv/ns_set_language.cpp | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/modules/nickserv/ns_set_language.cpp b/modules/nickserv/ns_set_language.cpp index 07f31d8b0..7ac553bef 100644 --- a/modules/nickserv/ns_set_language.cpp +++ b/modules/nickserv/ns_set_language.cpp @@ -87,10 +87,12 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Changes the language services uses when sending messages to\n" - "you (for example, when responding to a command you send).\n" - "\037language\037 should be chosen from the following list of\n" - "supported languages:")); + source.Reply(_( + "Changes the language services uses when sending messages to " + "you (for example, when responding to a command you send). " + "\037language\037 should be chosen from the following list of " + "supported languages:" + )); for (const auto &[langcode, langname] : languages) source.Reply(" %s (%s)", langcode.c_str(), langname.c_str()); @@ -119,10 +121,12 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Changes the language services uses when sending messages to\n" - "the given user (for example, when responding to a command they send).\n" - "\037language\037 should be chosen from the following list of\n" - "supported languages:")); + source.Reply(_( + "Changes the language services uses when sending messages to " + "the given user (for example, when responding to a command they send). " + "\037language\037 should be chosen from the following list of " + "supported languages:" + )); for (const auto &[langcode, langname] : languages) source.Reply(" %s (%s)", langcode.c_str(), langname.c_str()); |