]> granicus.if.org Git - neomutt/commitdiff
Rename 'sign as' to 'Sign as'; makes compose menu more consistent.
authorConsus <consus@gmx.com>
Fri, 9 Jun 2017 18:31:06 +0000 (11:31 -0700)
committerConsus <consus@gmx.com>
Fri, 9 Jun 2017 18:31:06 +0000 (11:31 -0700)
compose.c

index b3de55783696541e130ef4a1c2b7a41c9857aadf..2746b62778fd6db590000cdefbe55b989952568d 100644 (file)
--- a/compose.c
+++ b/compose.c
@@ -136,11 +136,10 @@ static void init_header_padding (void)
   /* TODO: mark for translation */
   calc_header_width_padding (HDR_CRYPT, "Security: ", 1);
 
-  /* TODO: convert to "Sign as: " */
   /* L10N:
    * This string is used by the compose menu.  It is suggested that it not
    * be wider than 20 character cells, if possible. */
-  calc_header_width_padding (HDR_CRYPTINFO, _("sign as: "), 0);
+  calc_header_width_padding (HDR_CRYPTINFO, _("Sign as: "), 0);
 
   for (i = 0; i <= HDR_CRYPTINFO; i++)
   {
@@ -221,7 +220,7 @@ static void redraw_crypt_lines (HEADER *msg)
       && (msg->security & APPLICATION_PGP) && (msg->security & SIGN))
   {
     SETCOLOR (MT_COLOR_COMPOSE_HEADER);
-    printw ("%*s", HeaderPadding[HDR_CRYPTINFO], _("sign as: "));
+    printw ("%*s", HeaderPadding[HDR_CRYPTINFO], _("Sign as: "));
     NORMAL_COLOR;
     printw ("%s", PgpSignAs ? PgpSignAs : _("<default>"));
   }
@@ -230,7 +229,7 @@ static void redraw_crypt_lines (HEADER *msg)
       && (msg->security & APPLICATION_SMIME) && (msg->security & SIGN))
   {
     SETCOLOR (MT_COLOR_COMPOSE_HEADER);
-    printw ("%*s", HeaderPadding[HDR_CRYPTINFO], _("sign as: "));
+    printw ("%*s", HeaderPadding[HDR_CRYPTINFO], _("Sign as: "));
     NORMAL_COLOR;
     printw ("%s", SmimeDefaultKey ? SmimeDefaultKey : _("<default>"));
   }