aboutsummaryrefslogtreecommitdiffstats
path: root/g10/tofu.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2017-05-15 13:56:46 +0000
committerWerner Koch <[email protected]>2017-05-15 13:56:46 +0000
commit2d381b0f0ba97657e9fb2971eca6648bb77dd2cc (patch)
tree3b45f25995235c9d339e2dc9c811c5ac625fbb42 /g10/tofu.c
parentdirmngr,w32: Fix ldap crl read on windows (diff)
downloadgnupg-2d381b0f0ba97657e9fb2971eca6648bb77dd2cc.tar.gz
gnupg-2d381b0f0ba97657e9fb2971eca6648bb77dd2cc.zip
gpg: Do not mark ", " translatable.
* g10/tofu.c (ask_about_binding): Remove useless translation markers. -- Translation and in particular punctuation marks can only be translated with context. Thus making a sole comma translatable is useless. Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'g10/tofu.c')
-rw-r--r--g10/tofu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/tofu.c b/g10/tofu.c
index 1c1c3967f..ba46244b0 100644
--- a/g10/tofu.c
+++ b/g10/tofu.c
@@ -1786,12 +1786,12 @@ ask_about_binding (ctrl_t ctrl,
if ((binding->flags & BINDING_REVOKED))
{
es_fprintf (fp, _("revoked"));
- es_fprintf (fp, _(", "));
+ es_fprintf (fp, ", ");
}
else if ((binding->flags & BINDING_EXPIRED))
{
es_fprintf (fp, _("expired"));
- es_fprintf (fp, _(", "));
+ es_fprintf (fp, ", ");
}
if (this_key)