1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* README: Mentioned --enable-selinux-support.

* status.h (STATUS_NEED_PASSPHRASE_PIN): New.
* status.c (get_status_string): Added.
* passphrase.c (ask_passphrase): Moved status printing to ..
* cardglue.c (pin_cb): .. here and issue new status message.

* keyedit.c (sign_uids): Don't include the leading LF in the
translatable string but print them separately.

* apdu.c (apdu_open_remote_reader) [_WIN32]: We don't have ENOSYS.
This commit is contained in:
Werner Koch 2004-10-15 13:16:58 +00:00
parent e170c54cf8
commit c3a51cd17d
13 changed files with 69 additions and 21 deletions

View file

@ -921,40 +921,56 @@ sign_uids( KBNODE keyblock, STRLIST locusr, int *ret_modified,
if(selfsig)
{
tty_printf(_("\nThis will be a self-signature.\n"));
tty_printf("\n");
tty_printf(_("This will be a self-signature.\n"));
if( local )
tty_printf(
_("\nWARNING: the signature will not be marked "
{
tty_printf("\n");
tty_printf(
_("WARNING: the signature will not be marked "
"as non-exportable.\n"));
}
if( nonrevocable )
tty_printf(
_("\nWARNING: the signature will not be marked "
{
tty_printf("\n");
tty_printf(
_("WARNING: the signature will not be marked "
"as non-revocable.\n"));
}
}
else
{
if( local )
tty_printf(
_("\nThe signature will be marked as non-exportable.\n"));
{
tty_printf("\n");
tty_printf(
_("The signature will be marked as non-exportable.\n"));
}
if( nonrevocable )
tty_printf(
_("\nThe signature will be marked as non-revocable.\n"));
{
tty_printf("\n");
tty_printf(
_("The signature will be marked as non-revocable.\n"));
}
switch(class)
{
case 0x11:
tty_printf(_("\nI have not checked this key at all.\n"));
tty_printf("\n");
tty_printf(_("I have not checked this key at all.\n"));
break;
case 0x12:
tty_printf(_("\nI have checked this key casually.\n"));
tty_printf("\n");
tty_printf(_("I have checked this key casually.\n"));
break;
case 0x13:
tty_printf(_("\nI have checked this key very carefully.\n"));
tty_printf("\n");
tty_printf(_("I have checked this key very carefully.\n"));
break;
}
}