summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-05-06 12:31:24 +0200
committerSimon Josefsson <simon@josefsson.org>2008-05-06 12:31:24 +0200
commit4510c1390651daaead08d72e456bc3e53b224efe (patch)
tree840eb56f0417ea3182c3c95ad07558a1488ba796
parent4f007ec98349b9b05a64bd21942dabe95b41a3ef (diff)
downloadgnutls-4510c1390651daaead08d72e456bc3e53b224efe.tar.gz
More translation markups.
-rw-r--r--lib/openpgp/output.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/openpgp/output.c b/lib/openpgp/output.c
index 485cf7598f..4336a3cff9 100644
--- a/lib/openpgp/output.c
+++ b/lib/openpgp/output.c
@@ -162,9 +162,9 @@ print_key_revoked (gnutls_string * str, gnutls_openpgp_crt_t cert, int idx)
err = gnutls_openpgp_crt_get_subkey_revoked_status( cert, idx);
if (err != 0)
- addf (str, "\tRevoked: True\n");
+ addf (str, _("\tRevoked: True\n"));
else
- addf (str, "\tRevoked: False\n");
+ addf (str, _("\tRevoked: False\n"));
}
static void
@@ -227,7 +227,7 @@ print_key_info(gnutls_string * str, gnutls_openpgp_crt_t cert, int idx)
{
const char *name = gnutls_pk_algorithm_get_name (err);
if (name == NULL)
- name = "Unknown";
+ name = _("unknown");
addf (str, _("\tPublic Key Algorithm: %s\n"), name);
switch (err)