aboutsummaryrefslogtreecommitdiffstats
path: root/common/audit.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2009-01-19 16:15:30 +0000
committerWerner Koch <[email protected]>2009-01-19 16:15:30 +0000
commit68fd14b144d44cc94c84fc5a4fb05a488eb06b4f (patch)
tree61fb8474e5968f1d6d2d96fd07edd3e4aca861ec /common/audit.c
parentAdd a sample key. (diff)
downloadgnupg-68fd14b144d44cc94c84fc5a4fb05a488eb06b4f.tar.gz
gnupg-68fd14b144d44cc94c84fc5a4fb05a488eb06b4f.zip
Add a few translations to the audit-log.
Diffstat (limited to 'common/audit.c')
-rw-r--r--common/audit.c28
1 files changed, 26 insertions, 2 deletions
diff --git a/common/audit.c b/common/audit.c
index 3bb128d51..a3c5b80d5 100644
--- a/common/audit.c
+++ b/common/audit.c
@@ -451,18 +451,42 @@ writeout_li (audit_ctx_t ctx, const char *oktext, const char *format, ...)
if (ctx->use_html && format && oktext)
{
- if (!strcmp (oktext, "Yes"))
+ if (!strcmp (oktext, "Yes")
+ || !strcmp (oktext, "good") )
color = "green";
- else if (!strcmp (oktext, "No"))
+ else if (!strcmp (oktext, "No")
+ || !strcmp (oktext, "bad") )
color = "red";
}
if (format && oktext)
{
+ const char *s = NULL;
+
if (!strcmp (oktext, "Yes"))
oktext = _("Yes");
else if (!strcmp (oktext, "No"))
oktext = _("No");
+ else if (!strcmp (oktext, "good"))
+ {
+ /* TRANSLATORS: Copy the prefix between the vertical bars
+ verbatim. It will not be printed. */
+ oktext = _("|audit-log-result|Good");
+ }
+ else if (!strcmp (oktext, "bad"))
+ oktext = _("|audit-log-result|Bad");
+ else if (!strcmp (oktext, "unsupported"))
+ oktext = _("|audit-log-result|Not supported");
+ else if (!strcmp (oktext, "no-cert"))
+ oktext = _("|audit-log-result|No certificate");
+ else if (!strcmp (oktext, "error"))
+ oktext = _("|audit-log-result|Error");
+ else
+ s = "";
+
+ /* If we have set a prefix, skip it. */
+ if (!s && *oktext == '|' && (s=strchr (oktext+1,'|')))
+ oktext = s+1;
}
if (ctx->use_html)