Fix wrong string split and list of arguments.
authorwwp <wwp@free.fr>
Wed, 21 Dec 2016 09:08:13 +0000 (10:08 +0100)
committerwwp <wwp@free.fr>
Wed, 21 Dec 2016 09:08:13 +0000 (10:08 +0100)
src/prefs_folder_item.c

index f407efb11bf1b25e22b890e1f665352c3d8217ae..dab8eb3e873040bc88ad603c69c233d21dd27882 100644 (file)
@@ -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);