summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorPavel Vomacka <pvomacka@redhat.com>2016-04-26 12:28:45 +0200
committerPetr Vobornik <pvoborni@redhat.com>2016-06-29 15:41:58 +0200
commit55a0baf1c32e1c472efe2ce81870e05abccb5a4a (patch)
tree74642b9bebf94a327af9c6067e79ebe8fe808c67 /ipaserver
parent6d3622c600a82f889e77809c982d996974335e62 (diff)
downloadfreeipa-55a0baf1c32e1c472efe2ce81870e05abccb5a4a.tar.gz
freeipa-55a0baf1c32e1c472efe2ce81870e05abccb5a4a.tar.xz
freeipa-55a0baf1c32e1c472efe2ce81870e05abccb5a4a.zip
Add certificate widget
The certificate widget is used for each certificate in certs_widget. It allows to view, get, download, revoke and restore certificate. https://fedorahosted.org/freeipa/ticket/5108 https://fedorahosted.org/freeipa/ticket/5381 Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/plugins/internal.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/ipaserver/plugins/internal.py b/ipaserver/plugins/internal.py
index 8552f63d6..5b0a3db37 100644
--- a/ipaserver/plugins/internal.py
+++ b/ipaserver/plugins/internal.py
@@ -211,6 +211,8 @@ class i18n_messages(Command):
"cancel": _("Cancel"),
"close": _("Close"),
"disable": _("Disable"),
+ "download": _("Download"),
+ "download_title": _("Download certificate as PEM formatted file."),
"edit": _("Edit"),
"enable": _("Enable"),
"filter": _("Filter"),
@@ -411,6 +413,7 @@ class i18n_messages(Command):
"md5_fingerprint": _("MD5 Fingerprint"),
"missing": _("No Valid Certificate"),
"new_certificate": _("New Certificate"),
+ "new_cert_format": _("Certificate in base64 or PEM format"),
"note": _("Note"),
"organization": _("Organization"),
"organizational_unit": _("Organizational Unit"),
@@ -430,6 +433,7 @@ class i18n_messages(Command):
"revoke_certificate_simple": _("Revoke Certificate"),
"revoke_confirmation": _("To confirm your intention to revoke this certificate, select a reason from the pull-down list, and click the \"Revoke\" button."),
"revoked": _("Certificate Revoked"),
+ "revoked_status": _("REVOKED"),
"serial_number": _("Serial Number"),
"serial_number_hex": _("Serial Number (hex)"),
"sha1_fingerprint": _("SHA1 Fingerprint"),
@@ -438,6 +442,8 @@ class i18n_messages(Command):
"superseded": _("Superseded"),
"unspecified": _("Unspecified"),
"valid": _("Valid Certificate Present"),
+ "valid_from": _("Valid from"),
+ "valid_to": _("Valid to"),
"validity": _("Validity"),
"view_certificate": _("Certificate for ${entity} ${primary_key}"),
"view_certificate_btn": _("View Certificate"),