summaryrefslogtreecommitdiff
path: root/modules/global/gl_queue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/global/gl_queue.cpp')
-rw-r--r--modules/global/gl_queue.cpp27
1 files changed, 16 insertions, 11 deletions
diff --git a/modules/global/gl_queue.cpp b/modules/global/gl_queue.cpp
index a66fb6b4b..6ad164b30 100644
--- a/modules/global/gl_queue.cpp
+++ b/modules/global/gl_queue.cpp
@@ -167,17 +167,22 @@ public:
this->SendSyntax(source);
source.Reply("");
source.Reply(_(
- "Allows queueing messages to send to users on the network."
- "\n\n"
- "The \002QUEUE\032ADD\002 command adds the given message to the message queue."
- "\n\n"
- "The \002QUEUE\032CLEAR\002 command clears the message queue."
- "\n\n"
- "The \002QUEUE\032DEL\002 command removes the specified message from the message queue. The "
- "message number can be obtained from the output of the \002QUEUE\032LIST\002 command."
- "\n\n"
- "The \002QUEUE\032LIST\002 command lists all messages that are currently in the message queue."
- ));
+ "Allows queueing messages to send to users on the network."
+ "\n\n"
+ "The \002%s\032ADD\002 command adds the given message to the message queue."
+ "\n\n"
+ "The \002%s\032CLEAR\002 command clears the message queue."
+ "\n\n"
+ "The \002%s\032DEL\002 command removes the specified message from the message queue. The "
+ "message number can be obtained from the output of the \002%s\032LIST\002 command."
+ "\n\n"
+ "The \002%s\032LIST\002 command lists all messages that are currently in the message queue."
+ ),
+ source.command.nobreak().c_str(),
+ source.command.nobreak().c_str(),
+ source.command.nobreak().c_str(),
+ source.command.nobreak().c_str(),
+ source.command.nobreak().c_str());
return true;
}
};