From 596d44ce3ca6eaa3c74ec943f43103e8d25bb441 Mon Sep 17 00:00:00 2001 From: wwp Date: Wed, 21 Dec 2016 10:08:13 +0100 Subject: [PATCH] Fix wrong string split and list of arguments. --- src/prefs_folder_item.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/prefs_folder_item.c b/src/prefs_folder_item.c index f407efb11..dab8eb3e8 100644 --- 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); -- 2.25.1