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/extra/hs_request.cpp | |
parent | 46a3afadb9fbb78e96222cf7d4e494dbcbf66c44 (diff) |
_()ify Command::SetDesc
Diffstat (limited to 'modules/extra/hs_request.cpp')
-rw-r--r-- | modules/extra/hs_request.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/extra/hs_request.cpp b/modules/extra/hs_request.cpp index 9a4eb8644..3b0a3c4cf 100644 --- a/modules/extra/hs_request.cpp +++ b/modules/extra/hs_request.cpp @@ -47,7 +47,7 @@ class CommandHSRequest : public Command public: CommandHSRequest() : Command("REQUEST", 1, 1) { - this->SetDesc("Request a vHost for your nick"); + this->SetDesc(_("Request a vHost for your nick")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -134,7 +134,7 @@ class CommandHSActivate : public Command public: CommandHSActivate() : Command("ACTIVATE", 1, 1, "hostserv/set") { - this->SetDesc("Approve the requested vHost of a user"); + this->SetDesc(_("Approve the requested vHost of a user")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -191,7 +191,7 @@ class CommandHSReject : public Command public: CommandHSReject() : Command("REJECT", 1, 2, "hostserv/set") { - this->SetDesc("Reject the requested vHost of a user"); + this->SetDesc(_("Reject the requested vHost of a user")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -281,7 +281,7 @@ class CommandHSWaiting : public HSListBase public: CommandHSWaiting() : HSListBase("WAITING", 0, 0) { - this->SetDesc("Convenience command for LIST +req"); + this->SetDesc(_("Convenience command for LIST +req")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) |