From: Consus Date: Fri, 9 Jun 2017 18:31:06 +0000 (-0700) Subject: Rename 'sign as' to 'Sign as'; makes compose menu more consistent. X-Git-Tag: mutt-1-9-rel~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b5febe386ee689aefbb0e12f3daa3fbacd7c492;p=mutt Rename 'sign as' to 'Sign as'; makes compose menu more consistent. --- diff --git a/compose.c b/compose.c index b3de5578..2746b627 100644 --- 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 : _("")); } @@ -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 : _("")); }