]> granicus.if.org Git - neomutt/commitdiff
Add L10N comments to the GNUTLS certificate prompt.
authorKevin McCarthy <kevin@8t8.us>
Tue, 4 Jul 2017 02:22:18 +0000 (19:22 -0700)
committerKevin McCarthy <kevin@8t8.us>
Tue, 4 Jul 2017 02:22:18 +0000 (19:22 -0700)
The prompts are shared with OpenSSL, and so the prompts end up being
separate from the action key strings.

mutt_ssl_gnutls.c

index 5a799574ddda978cb79d8146e6e589ae9f8adbf3..5481e1cb267a6f3d3fd27b48aa88f377fcd5ba3e 100644 (file)
@@ -997,11 +997,23 @@ static int tls_check_one_certificate (const gnutls_datum_t *certdata,
                         | CERTERR_REVOKED)))
   {
     menu->prompt = _("(r)eject, accept (o)nce, (a)ccept always");
+  /* L10N:
+   * These three letters correspond to the choices in the string:
+   * (r)eject, accept (o)nce, (a)ccept always.
+   * This is an interactive certificate confirmation prompt for
+   * a GNUTLS connection.
+   */
     menu->keys = _("roa");
   }
   else
   {
     menu->prompt = _("(r)eject, accept (o)nce");
+  /* L10N:
+   * These two letters correspond to the choices in the string:
+   * (r)eject, accept (o)nce.
+   * These is an interactive certificate confirmation prompt for
+   * a GNUTLS connection.
+   */
     menu->keys = _("ro");
   }