summaryrefslogtreecommitdiffstats
path: root/compose.c
diff options
context:
space:
mode:
authorConsus <consus@gmx.com>2017-06-09 11:31:06 -0700
committerConsus <consus@gmx.com>2017-06-09 11:31:06 -0700
commit4b5febe386ee689aefbb0e12f3daa3fbacd7c492 (patch)
tree978e1e64be42fc65764938a7ee86757301b8e87f /compose.c
parent8f329bccb0885344aa29bd652b76ca9dc43c66b1 (diff)
Rename 'sign as' to 'Sign as'; makes compose menu more consistent.
Diffstat (limited to 'compose.c')
-rw-r--r--compose.c7
1 files changed, 3 insertions, 4 deletions
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 : _("<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>"));
}