From 0ed2605d735efc34ae46ca573f3ec37bc1fa1648 Mon Sep 17 00:00:00 2001 From: Consus Date: Fri, 9 Jun 2017 11:31:06 -0700 Subject: [PATCH] Rename 'sign as' to 'Sign as'; makes compose menu more consistent. --- compose.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/compose.c b/compose.c index 534b00ca0..3ac9a0b6a 100644 --- a/compose.c +++ b/compose.c @@ -179,11 +179,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_XCOMMENTTO; i++) { @@ -260,7 +259,7 @@ static void redraw_crypt_lines(struct Header *msg) (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 : _("")); } @@ -269,7 +268,7 @@ static void redraw_crypt_lines(struct Header *msg) (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 : _("")); } -- 2.40.0