summaryrefslogtreecommitdiffstats
path: root/src/web-view.c
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-29 00:39:27 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-29 00:39:27 (EDT)
commit941ce0a439115ff970f934a6a6ee2056c53193d9 (patch)
tree8bf6a726e3b4aeb30db9bfd01355793736f81fee /src/web-view.c
parent708eb5c22baccd2563e9b54a9c7c825485347d39 (diff)
downloadmarquee-941ce0a439115ff970f934a6a6ee2056c53193d9.zip
marquee-941ce0a439115ff970f934a6a6ee2056c53193d9.tar.gz
marquee-941ce0a439115ff970f934a6a6ee2056c53193d9.tar.bz2
mq_web_view_save(): Clarify file type combo box choices and label
Diffstat (limited to 'src/web-view.c')
-rw-r--r--src/web-view.c8
1 files changed, 4 insertions, 4 deletions
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);