summaryrefslogtreecommitdiff
path: root/modules/commands/ns_cert.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/ns_cert.cpp')
-rw-r--r--modules/commands/ns_cert.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/commands/ns_cert.cpp b/modules/commands/ns_cert.cpp
index 2c623ce5b..c8274f4d6 100644
--- a/modules/commands/ns_cert.cpp
+++ b/modules/commands/ns_cert.cpp
@@ -151,7 +151,7 @@ class CommandNSCert : public Command
}
ListFormatter list(source.GetAccount());
- list.AddColumn("Certificate");
+ list.AddColumn(_("Certificate"));
for (unsigned i = 0; i < cl->GetCertCount(); ++i)
{
@@ -241,7 +241,7 @@ class CommandNSCert : public Command
}
ListFormatter list(source.GetAccount());
- list.AddColumn("Certificate");
+ list.AddColumn(_("Certificate"));
for (unsigned i = 0; i < cl->GetCertCount(); ++i)
{
@@ -260,9 +260,9 @@ class CommandNSCert : public Command
public:
CommandNSCert(Module *creator) : Command(creator, "nickserv/cert", 1, 2)
{
- this->SetDesc("Modify the nickname client certificate list");
- this->SetSyntax("ADD \037fingerprint\037");
- this->SetSyntax("DEL \037fingerprint\037");
+ this->SetDesc(_("Modify the nickname client certificate list"));
+ this->SetSyntax(_("ADD \037fingerprint\037"));
+ this->SetSyntax(_("DEL \037fingerprint\037"));
this->SetSyntax("LIST");
}