summaryrefslogtreecommitdiff
path: root/modules/commands/ns_cert.cpp
diff options
context:
space:
mode:
authorRobby- <robby@chat.be>2013-09-19 11:35:01 +0200
committerAdam <Adam@anope.org>2013-09-27 19:11:02 -0400
commit45702992ac8c0d36bd0a7eba1580d9cf8a364d74 (patch)
treee67e62992af62242a788d8667cbe8429eb31c906 /modules/commands/ns_cert.cpp
parent9756f96b8526c150cec5893a157313a1421146f5 (diff)
ns_cert, ns_set: Make strings equal for one translation instance
Diffstat (limited to 'modules/commands/ns_cert.cpp')
-rw-r--r--modules/commands/ns_cert.cpp6
1 files changed, 3 insertions, 3 deletions
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;
}