diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/web-view.c | 8 |
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); |