diff options
author | David Prévot <[email protected]> | 2012-08-22 16:54:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2012-08-24 07:42:31 +0000 |
commit | 94e663885b35ff01f2bb848b6719043ff7fc612a (patch) | |
tree | 4844dcc3619269108c928b20e537dae59573ac0f /g10/trustdb.c | |
parent | Keep previous msgids of translated messages (diff) | |
download | gnupg-94e663885b35ff01f2bb848b6719043ff7fc612a.tar.gz gnupg-94e663885b35ff01f2bb848b6719043ff7fc612a.zip |
Actually show translators comments in PO files
--
Diffstat (limited to 'g10/trustdb.c')
-rw-r--r-- | g10/trustdb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c index 0f13dc159..6b228d209 100644 --- a/g10/trustdb.c +++ b/g10/trustdb.c @@ -507,7 +507,11 @@ trust_letter (unsigned int value) } } -/* NOTE TO TRANSLATOR: these strings are similar to those in +const char * +uid_trust_string_fixed(PKT_public_key *key,PKT_user_id *uid) +{ + if(!key && !uid) +/* TRANSLATORS: these strings are similar to those in trust_value_to_string(), but are a fixed length. This is needed to make attractive information listings where columns line up properly. The value "10" should be the length of the strings you @@ -515,10 +519,6 @@ trust_letter (unsigned int value) It gets passed to atoi() so everything after the number is essentially a comment and need not be translated. Either key and uid are both NULL, or neither are NULL. */ -const char * -uid_trust_string_fixed(PKT_public_key *key,PKT_user_id *uid) -{ - if(!key && !uid) return _("10 translator see trustdb.c:uid_trust_string_fixed"); else if(uid->is_revoked || (key && key->flags.revoked)) return _("[ revoked]"); |