char buf2[LONG_STRING];
if (key_table[menu->current]->flags & KEYFLAG_CANTUSE)
- warn_s = _("ID is expired/disabled/revoked.");
+ warn_s = _("ID is expired/disabled/revoked. Do you really want to use the key?");
else
{
warn_s = "??";
switch (key_table[menu->current]->validity)
{
case GPGME_VALIDITY_NEVER:
- warn_s = _("ID is not valid.");
+ warn_s = _("ID is not valid. Do you really want to use the key?");
break;
case GPGME_VALIDITY_MARGINAL:
- warn_s = _("ID is only marginally valid.");
+ warn_s = _("ID is only marginally valid. Do you really want to use the key?");
break;
case GPGME_VALIDITY_FULL:
case GPGME_VALIDITY_ULTIMATE:
break;
case GPGME_VALIDITY_UNKNOWN:
case GPGME_VALIDITY_UNDEFINED:
- warn_s = _("ID has undefined validity.");
+ warn_s = _("ID has undefined validity. Do you really want to use the key?");
break;
}
}
- snprintf(buf2, sizeof(buf2),
- _("%s Do you really want to use the key?"), warn_s);
+ snprintf(buf2, sizeof(buf2), "%s", warn_s);
if (mutt_yesorno(buf2, 0) != MUTT_YES)
{
char buf2[LONG_STRING];
if (KeyTable[menu->current]->flags & KEYFLAG_CANTUSE)
- str = _("ID is expired/disabled/revoked.");
+ str = _("ID is expired/disabled/revoked. Do you really want to use the key?");
else
switch (KeyTable[menu->current]->trust & 0x03)
{
case 0:
- str = _("ID has undefined validity.");
+ str = _("ID has undefined validity. Do you really want to use the key?");
break;
case 1:
- str = _("ID is not valid.");
+ str = _("ID is not valid. Do you really want to use the key?");
break;
case 2:
- str = _("ID is only marginally valid.");
+ str = _("ID is only marginally valid. Do you really want to use the key?");
break;
}
- snprintf(buf2, sizeof(buf2), _("%s Do you really want to use the key?"), str);
+ snprintf(buf2, sizeof(buf2), "%s", str);
if (mutt_yesorno(buf2, MUTT_NO) != MUTT_YES)
{
case 'e':
case 'i':
case 'r':
- s = _("ID is expired/disabled/revoked.");
+ s = _("ID is expired/disabled/revoked. Do you really want to use the key?");
break;
case 'u':
- s = _("ID has undefined validity.");
+ s = _("ID has undefined validity. Do you really want to use the key?");
break;
case 'v':
- s = _("ID is not trusted.");
+ s = _("ID is not trusted. Do you really want to use the key?");
break;
}
- snprintf(buf, sizeof(buf), _("%s Do you really want to use the key?"), s);
+ snprintf(buf, sizeof(buf), "%s", s);
if (mutt_yesorno(buf, MUTT_NO) != MUTT_YES)
{