1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* 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.
This commit is contained in:
David Shaw 2004-09-29 17:41:58 +00:00
parent c48d5ebbb7
commit 742682bf95
5 changed files with 33 additions and 24 deletions

View file

@ -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 )