diff options
Diffstat (limited to 'modules/hostserv/hs_list.cpp')
-rw-r--r-- | modules/hostserv/hs_list.cpp | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/modules/hostserv/hs_list.cpp b/modules/hostserv/hs_list.cpp index 174f4baf1..3ff6fe39d 100644 --- a/modules/hostserv/hs_list.cpp +++ b/modules/hostserv/hs_list.cpp @@ -123,13 +123,15 @@ public: { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("This command lists registered vhosts to the operator.\n" - "If a \037key\037 is specified, only entries whose nick or vhost match\n" - "the pattern given in \037key\037 are displayed e.g. Rob* for all\n" - "entries beginning with \"Rob\"\n" - "If a \037#X-Y\037 style is used, only entries between the range of \002X\002\n" - "and \002Y\002 will be displayed, e.g. \002#1-3\002 will display the first 3\n" - "nick/vhost entries.")); + source.Reply(_( + "This command lists registered vhosts to the operator. " + "If a \037key\037 is specified, only entries whose nick or vhost match " + "the pattern given in \037key\037 are displayed e.g. Rob* for all " + "entries beginning with \"Rob\". " + "If a \037#X-Y\037 style is used, only entries between the range of \002X\002 " + "and \002Y\002 will be displayed, e.g. \002#1-3\002 will display the first 3 " + "nick/vhost entries." + )); return true; } }; |