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/os_session.cpp | |
parent | 46a3afadb9fbb78e96222cf7d4e494dbcbf66c44 (diff) |
_()ify Command::SetDesc
Diffstat (limited to 'modules/core/os_session.cpp')
-rw-r--r-- | modules/core/os_session.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/os_session.cpp b/modules/core/os_session.cpp index 7dd41b769..2ea7e8242 100644 --- a/modules/core/os_session.cpp +++ b/modules/core/os_session.cpp @@ -169,7 +169,7 @@ class CommandOSSession : public Command public: CommandOSSession() : Command("SESSION", 2, 2, "operserv/session") { - this->SetDesc("View the list of host sessions"); + this->SetDesc(_("View the list of host sessions")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) @@ -434,7 +434,7 @@ class CommandOSException : public Command public: CommandOSException() : Command("EXCEPTION", 1, 5) { - this->SetDesc("Modify the session-limit exception list"); + this->SetDesc(_("Modify the session-limit exception list")); } CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) |