From 941ce0a439115ff970f934a6a6ee2056c53193d9 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 29 Oct 2017 00:39:27 -0400 Subject: mq_web_view_save(): Clarify file type combo box choices and label --- (limited to 'src') diff --git a/src/web-view.c b/src/web-view.c index a4126c8..8acb939 100644 --- a/src/web-view.c +++ b/src/web-view.c @@ -1090,17 +1090,17 @@ mq_web_view_save(MqWebView *web_view) gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(type_combo_box), "detect", "By extension"); gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(type_combo_box), - "html", "HTML"); + "html", "HTML document only"); gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(type_combo_box), - "mhtml", "MHTML"); + "mhtml", "MHTML archive with associated resources"); gtk_combo_box_set_active(GTK_COMBO_BOX(type_combo_box), 0); g_signal_connect(type_combo_box, "changed", G_CALLBACK(save_type_changed_cb), chooser); web_view->save_type_combo_box = GTK_COMBO_BOX(type_combo_box); type_box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0); - gtk_box_pack_start(GTK_BOX(type_box), gtk_label_new("File type:"), - FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(type_box), + gtk_label_new("Save as file type:"), FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(type_box), type_combo_box, FALSE, FALSE, 0); gtk_file_chooser_set_extra_widget(chooser, type_box); -- cgit v0.9.1