mirror of
https://github.com/anope/anope.git
synced 2026-07-07 04:43:13 +02:00
ns_cert, ns_set: Make strings equal for one translation instance
This commit is contained in:
@@ -1305,7 +1305,7 @@ class CSSet : public Module
|
||||
if (restricted.HasExt(ci))
|
||||
info.AddOption(_("Restricted Access"));
|
||||
if (secure.HasExt(ci))
|
||||
info.AddOption(_("Secure"));
|
||||
info.AddOption(_("Security"));
|
||||
if (securefounder.HasExt(ci))
|
||||
info.AddOption(_("Secure Founder"));
|
||||
if (secureops.HasExt(ci))
|
||||
|
||||
@@ -345,7 +345,7 @@ class NSCert : public Module
|
||||
return;
|
||||
|
||||
u->Identify(na);
|
||||
u->SendMessage(NickServ, _("SSL Fingerprint accepted. You are now identified."));
|
||||
u->SendMessage(NickServ, _("SSL certificate fingerprint accepted, you are now identified."));
|
||||
Log(u) << "automatically identified for account " << na->nc->display << " via SSL certificate fingerprint";
|
||||
}
|
||||
|
||||
@@ -355,8 +355,8 @@ class NSCert : public Module
|
||||
if (!u->fingerprint.empty() && cl && cl->FindCert(u->fingerprint))
|
||||
{
|
||||
u->Identify(na);
|
||||
u->SendMessage(Config->GetClient("NickServ"), _("SSL fingerprint accepted, you are now identified."));
|
||||
Log(u) << "automatically identified for account " << na->nc->display << " via SSL fingerprint.";
|
||||
u->SendMessage(Config->GetClient("NickServ"), _("SSL certificate fingerprint accepted, you are now identified."));
|
||||
Log(u) << "automatically identified for account " << na->nc->display << " via SSL certificate fingerprint";
|
||||
return EVENT_ALLOW;
|
||||
}
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ class CommandNSSet : public Command
|
||||
{
|
||||
this->SendSyntax(source);
|
||||
source.Reply(" ");
|
||||
source.Reply(_("Sets various nickname options. \037option\037 can be one of:"));
|
||||
source.Reply(_("Sets various nickname options. \037option\037 can be one of:"));
|
||||
|
||||
Anope::string this_name = source.command;
|
||||
for (CommandInfo::map::const_iterator it = source.service->commands.begin(), it_end = source.service->commands.end(); it != it_end; ++it)
|
||||
|
||||
Reference in New Issue
Block a user