diff options
author | David Shaw <[email protected]> | 2004-09-29 17:41:58 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-09-29 17:41:58 +0000 |
commit | 742682bf955b5e192fd49670ba5e9d54c8d3e174 (patch) | |
tree | 4de4a15f1560ed8187b6c7857c595832b9572e7d /g10/mainproc.c | |
parent | * keyedit.c (print_and_check_one_sig): Account for the extra space that (diff) | |
download | gnupg-742682bf955b5e192fd49670ba5e9d54c8d3e174.tar.gz gnupg-742682bf955b5e192fd49670ba5e9d54c8d3e174.zip |
* keyedit.c, keylist.c, keyserver.c, mainproc.c: Reduce the many
variations of "revoked" ("revoked", "[revoked]", " [revoked]", "[revoked]
") "and" expired down to two to simplify translation.
Diffstat (limited to 'g10/mainproc.c')
-rw-r--r-- | g10/mainproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/mainproc.c b/g10/mainproc.c index f373de788..b28895866 100644 --- a/g10/mainproc.c +++ b/g10/mainproc.c @@ -927,9 +927,9 @@ list_node( CTX c, KBNODE node ) { /* of subkey */ if( pk->is_revoked ) - printf(" %s",_("[revoked] ")); + printf(" [%s]",_("revoked")); else if( pk->expiredate ) - printf(_(" [expires: %s]"), expirestr_from_pk( pk ) ); + printf(" [%s:%s]",_("expires"), expirestr_from_pk( pk ) ); } if( !any ) |