mirror of
https://github.com/anope/anope.git
synced 2026-07-01 07:36:38 +02:00
Changed the language system to use gettext
This commit is contained in:
@@ -23,32 +23,21 @@ class CommandNSHelp : public Command
|
||||
|
||||
CommandReturn Execute(User *u, const std::vector<Anope::string> ¶ms)
|
||||
{
|
||||
Anope::string cmd = params[0];
|
||||
|
||||
if (cmd.equals_ci("SET LANGUAGE"))
|
||||
{
|
||||
int i;
|
||||
notice_help(Config->s_NickServ, u, NICK_HELP_SET_LANGUAGE);
|
||||
for (i = 0; i < NUM_LANGS && langlist[i] >= 0; ++i)
|
||||
u->SendMessage(Config->s_NickServ, " %2d) %s", i + 1, langnames[langlist[i]]);
|
||||
}
|
||||
else
|
||||
mod_help_cmd(NickServ, u, cmd);
|
||||
|
||||
mod_help_cmd(NickServ, u, params[0]);
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
void OnSyntaxError(User *u, const Anope::string &subcommand)
|
||||
{
|
||||
notice_help(Config->s_NickServ, u, NICK_HELP);
|
||||
u->SendMessage(NickServ, NICK_HELP);
|
||||
for (CommandMap::const_iterator it = NickServ->Commands.begin(), it_end = NickServ->Commands.end(); it != it_end; ++it)
|
||||
if (!Config->HidePrivilegedCommands || it->second->permission.empty() || (u->Account() && u->Account()->HasCommand(it->second->permission)))
|
||||
it->second->OnServHelp(u);
|
||||
if (u->Account() && u->Account()->IsServicesOper())
|
||||
notice_help(Config->s_NickServ, u, NICK_SERVADMIN_HELP);
|
||||
u->SendMessage(NickServ, NICK_SERVADMIN_HELP);
|
||||
if (Config->NSExpire >= 86400)
|
||||
notice_help(Config->s_NickServ, u, NICK_HELP_EXPIRES, Config->NSExpire / 86400);
|
||||
notice_help(Config->s_NickServ, u, NICK_HELP_FOOTER);
|
||||
u->SendMessage(NickServ, NICK_HELP_EXPIRES, Config->NSExpire / 86400);
|
||||
u->SendMessage(NickServ, NICK_HELP_FOOTER);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user