diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-04-03 08:54:40 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2011-04-03 08:54:40 +0200 |
commit | 73a944fb74c7094eb111bd153d17825a353f2723 (patch) | |
tree | a31139733c78966a73faf33bcdb31e2c0b2aa8d3 /modules/core/ns_cert.cpp | |
parent | d1328d876a988329b3bdeb94999cfd696e6aa7a5 (diff) |
fixed some duplicate messages and updated the german langfile (10% done)
Diffstat (limited to 'modules/core/ns_cert.cpp')
-rw-r--r-- | modules/core/ns_cert.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/ns_cert.cpp b/modules/core/ns_cert.cpp index 5604f680d..583502ba9 100644 --- a/modules/core/ns_cert.cpp +++ b/modules/core/ns_cert.cpp @@ -52,7 +52,7 @@ class CommandNSCert : public Command if (!source.u->fingerprint.empty() && !nc->FindCert(source.u->fingerprint)) { nc->AddCert(source.u->fingerprint); - source.Reply(_("\002%s\002 added to your certificate list"), source.u->fingerprint.c_str()); + source.Reply(_("\002%s\002 added to your certificate list."), source.u->fingerprint.c_str()); return MOD_CONT; } @@ -79,7 +79,7 @@ class CommandNSCert : public Command if (!source.u->fingerprint.empty() && nc->FindCert(source.u->fingerprint)) { nc->EraseCert(source.u->fingerprint); - source.Reply(_("\002%s\002 deleted from your certificate list"), source.u->fingerprint.c_str()); + source.Reply(_("\002%s\002 deleted from your certificate list."), source.u->fingerprint.c_str()); return MOD_CONT; } |