diff options
author | Sadie Powell <sadie@witchery.services> | 2025-04-16 00:04:30 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-04-16 00:04:30 +0100 |
commit | ce362854a39c35249f8d2c7bcf27e3d5f9aa9980 (patch) | |
tree | 6d4012d9579c2d56055d621768122cf5f3b658ba /modules/hostserv/hs_set.cpp | |
parent | a883b616a1360ba74254661cbd39280404d1753a (diff) |
Update as many messages as possible for automatic line wrapping.
Diffstat (limited to 'modules/hostserv/hs_set.cpp')
-rw-r--r-- | modules/hostserv/hs_set.cpp | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/modules/hostserv/hs_set.cpp b/modules/hostserv/hs_set.cpp index 740646a9c..1de34b5a3 100644 --- a/modules/hostserv/hs_set.cpp +++ b/modules/hostserv/hs_set.cpp @@ -94,10 +94,12 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Sets the vhost for the given nick to that of the given\n" - "hostmask. If your IRCD supports vidents, then using\n" - "SET <nick> <ident>@<hostmask> set idents for users as\n" - "well as vhosts.")); + source.Reply(_( + "Sets the vhost for the given nick to that of the given " + "hostmask. If your IRCD supports vidents, then using " + "SET <nick> <ident>@<hostmask> set idents for users as " + "well as vhosts." + )); return true; } }; @@ -198,12 +200,15 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Sets the vhost for all nicks in the same group as that\n" - "of the given nick. If your IRCD supports vidents, then\n" - "using SETALL <nick> <ident>@<hostmask> will set idents\n" - "for users as well as vhosts.\n" - "* NOTE, this will not update the vhost for any nicks\n" - "added to the group after this command was used.")); + source.Reply(_( + "Sets the vhost for all nicks in the same group as that " + "of the given nick. If your IRCD supports vidents, then " + "using SETALL <nick> <ident>@<hostmask> will set idents " + "for users as well as vhosts." + "\n\n" + "* NOTE, this will not update the vhost for any nicks " + "added to the group after this command was used." + )); return true; } }; |