commit 596d44ce3ca6eaa3c74ec943f43103e8d25bb441
parent cf9cab50cbf40ac76f6db206573c0bf03624a2d0
Author: wwp <wwp@free.fr>
Date: Wed, 21 Dec 2016 10:08:13 +0100
Fix wrong string split and list of arguments.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/prefs_folder_item.c b/src/prefs_folder_item.c
@@ -942,8 +942,7 @@ static void prefs_folder_item_compose_create_widget_func(PrefsPage * page_,
rowcount++;
/* Default address to reply to */
- text = g_strdup_printf(_("Default %s"), prefs_common_translated_header_name("To:"),
- _(" for replies"));
+ text = g_strdup_printf(_("Default %s for replies"), prefs_common_translated_header_name("To:"));
checkbtn_default_reply_to = gtk_check_button_new_with_label(text);
gtk_table_attach(GTK_TABLE(table), checkbtn_default_reply_to, 0, 1,
rowcount, rowcount + 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 0, 0);