1
0
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:
Adam
2010-09-26 02:33:01 -04:00
parent 05e6815d91
commit d646d455e2
239 changed files with 168730 additions and 90259 deletions
+5 -16
View File
@@ -23,32 +23,21 @@ class CommandNSHelp : public Command
CommandReturn Execute(User *u, const std::vector<Anope::string> &params)
{
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);
}
};