diff options
author | Adam <Adam@anope.org> | 2011-03-11 17:26:27 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-11 17:26:27 -0500 |
commit | 9f46972f19060d2ede624bdec52b9091042e3735 (patch) | |
tree | 10e996859b3dd9435cf947742f5f261789cc2699 /modules/core/cs_xop.cpp | |
parent | 46a3afadb9fbb78e96222cf7d4e494dbcbf66c44 (diff) |
_()ify Command::SetDesc
Diffstat (limited to 'modules/core/cs_xop.cpp')
-rw-r--r-- | modules/core/cs_xop.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/core/cs_xop.cpp b/modules/core/cs_xop.cpp index a3e3937d1..b556e210e 100644 --- a/modules/core/cs_xop.cpp +++ b/modules/core/cs_xop.cpp @@ -403,7 +403,7 @@ class CommandCSQOP : public XOPBase public: CommandCSQOP() : XOPBase("QOP") { - this->SetDesc("Modify the list of QOP users"); + this->SetDesc(_("Modify the list of QOP users")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -464,7 +464,7 @@ class CommandCSAOP : public XOPBase public: CommandCSAOP() : XOPBase("AOP") { - this->SetDesc("Modify the list of AOP users"); + this->SetDesc(_("Modify the list of AOP users")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -526,7 +526,7 @@ class CommandCSHOP : public XOPBase public: CommandCSHOP() : XOPBase("HOP") { - this->SetDesc("Maintains the HOP (HalfOP) list for a channel"); + this->SetDesc(_("Maintains the HOP (HalfOP) list for a channel")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -586,7 +586,7 @@ class CommandCSSOP : public XOPBase public: CommandCSSOP() : XOPBase("SOP") { - this->SetDesc("Modify the list of SOP users"); + this->SetDesc(_("Modify the list of SOP users")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -647,7 +647,7 @@ class CommandCSVOP : public XOPBase public: CommandCSVOP() : XOPBase("VOP") { - this->SetDesc("Maintains the VOP (VOicePeople) list for a channel"); + this->SetDesc(_("Maintains the VOP (VOicePeople) list for a channel")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) |