commit 5b06e357b4b029a01ec245b75689e5789324ac36
parent ce5f9414ad3a45c2ceddf957d82aac13b0167031
Author: Paul <paul@claws-mail.org>
Date: Mon, 9 Jun 2014 17:01:22 +0100
be a little more verbose with revoked key and expired signature notices
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/plugins/pgpcore/sgpgme.c b/src/plugins/pgpcore/sgpgme.c
@@ -227,10 +227,10 @@ gchar *sgpgme_sigstat_info_short(gpgme_ctx_t ctx, gpgme_verify_result_t status)
result = g_strdup_printf(_("Expired signature from %s."), uname);
break;
case GPG_ERR_KEY_EXPIRED:
- result = g_strdup_printf(_("Expired key from %s."), uname);
+ result = g_strdup_printf(_("Good signature from %s, but the key has expired."), uname);
break;
case GPG_ERR_CERT_REVOKED:
- result = g_strdup_printf(_("Revoked key from %s."), uname);
+ result = g_strdup_printf(_("Good signature from %s, but the key has been revoked."), uname);
break;
case GPG_ERR_BAD_SIGNATURE:
result = g_strdup_printf(_("Bad signature from %s."), uname);