summaryrefslogtreecommitdiff
path: root/modules/commands/gl_global.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-06-23 07:12:41 -0400
committerAdam <Adam@anope.org>2014-06-23 07:12:41 -0400
commit148b26f687ce85dc01e852a2358b03d493757ada (patch)
treef81ea553d0384ec6063eff45cfaff5aa92aaa1c9 /modules/commands/gl_global.cpp
parent0dba0692f9f88275b7d89d511bf22124217bc4c6 (diff)
Mostly working language string rewrite with new format strings
Diffstat (limited to 'modules/commands/gl_global.cpp')
-rw-r--r--modules/commands/gl_global.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/commands/gl_global.cpp b/modules/commands/gl_global.cpp
index 5d2d6b61b..d6106b2be 100644
--- a/modules/commands/gl_global.cpp
+++ b/modules/commands/gl_global.cpp
@@ -37,10 +37,8 @@ class CommandGLGlobal : public Command
bool OnHelp(CommandSource &source, const Anope::string &subcommand) override
{
- this->SendSyntax(source);
- source.Reply(" ");
- source.Reply(_("Allows Administrators to send messages to all users on the\n"
- "network. The message will be sent from the nick \002%s\002."), source.service->nick.c_str());
+ source.Reply(_("Allows Services Operators to send a message to all users on the network."
+ " The message will be sent from \002{0}\002."), source.service->nick);
return true;
}
};