diff options
author | Robby- <robby@chat.be> | 2013-12-28 23:28:30 +0100 |
---|---|---|
committer | Robby- <robby@chat.be> | 2013-12-28 23:28:30 +0100 |
commit | 780bc7ca1479a334a1bea59db3ffd89da1a87800 (patch) | |
tree | 71d28bb1e185e891ef2e332a023053e43ea55518 /modules/commands/ns_info.cpp | |
parent | 3d12752655405ae75265622cbec565f9efa23be3 (diff) |
Do not translate command parameters that do not have translatable strings in them, or are not meant to be translated in the first place.
Diffstat (limited to 'modules/commands/ns_info.cpp')
-rw-r--r-- | modules/commands/ns_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_info.cpp b/modules/commands/ns_info.cpp index 21e0fab5d..c227cadc6 100644 --- a/modules/commands/ns_info.cpp +++ b/modules/commands/ns_info.cpp @@ -135,7 +135,7 @@ class CommandNSSetHide : public Command CommandNSSetHide(Module *creator, const Anope::string &sname = "nickserv/set/hide", size_t min = 2) : Command(creator, sname, min, min + 1) { this->SetDesc(_("Hide certain pieces of nickname information")); - this->SetSyntax(_("{EMAIL | STATUS | USERMASK | QUIT} {ON | OFF}")); + this->SetSyntax("{EMAIL | STATUS | USERMASK | QUIT} {ON | OFF}"); } void Run(CommandSource &source, const Anope::string &user, const Anope::string ¶m, const Anope::string &arg) |