diff options
author | Robby- <robby@chat.be> | 2013-09-19 11:35:01 +0200 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-09-27 19:11:02 -0400 |
commit | 45702992ac8c0d36bd0a7eba1580d9cf8a364d74 (patch) | |
tree | e67e62992af62242a788d8667cbe8429eb31c906 | |
parent | 9756f96b8526c150cec5893a157313a1421146f5 (diff) |
ns_cert, ns_set: Make strings equal for one translation instance
-rw-r--r-- | modules/commands/cs_set.cpp | 2 | ||||
-rw-r--r-- | modules/commands/ns_cert.cpp | 6 | ||||
-rw-r--r-- | modules/commands/ns_set.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/modules/commands/cs_set.cpp b/modules/commands/cs_set.cpp index 251089f9c..2998a850a 100644 --- a/modules/commands/cs_set.cpp +++ b/modules/commands/cs_set.cpp @@ -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)) diff --git a/modules/commands/ns_cert.cpp b/modules/commands/ns_cert.cpp index fb2901754..71d99426e 100644 --- a/modules/commands/ns_cert.cpp +++ b/modules/commands/ns_cert.cpp @@ -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; } diff --git a/modules/commands/ns_set.cpp b/modules/commands/ns_set.cpp index bad5fc940..11b6fd9d1 100644 --- a/modules/commands/ns_set.cpp +++ b/modules/commands/ns_set.cpp @@ -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) |