From ac06d1f693f8dfb9fb1a4616028118bfe9a48a88 Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Mon, 17 Sep 2012 01:37:09 +0300 Subject: [PATCH] Generalized the "Import" dialog title Renamed the title of the "Import" dialog to "Import", as there are a couple of supported operations. Removed the "Import:" text in the dialog body. Signed-off-by: Lubomir I. Ivanov Signed-off-by: Dirk Hohndel --- gtk-gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk-gui.c b/gtk-gui.c index 5cc701406..25fc55569 100644 --- a/gtk-gui.c +++ b/gtk-gui.c @@ -1402,7 +1402,7 @@ void import_dialog(GtkWidget *w, gpointer data) .devname = NULL, }; - dialog = gtk_dialog_new_with_buttons("Import from dive computer", + dialog = gtk_dialog_new_with_buttons("Import", GTK_WINDOW(main_window), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, @@ -1410,7 +1410,7 @@ void import_dialog(GtkWidget *w, gpointer data) NULL); vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog)); - label = gtk_label_new("Import: \nLoad XML file or import directly from dive computer"); + label = gtk_label_new("Load XML file or import directly from dive computer"); gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, TRUE, 3); xml_file_selector(vbox, dialog, &filenames); computer = dive_computer_selector(vbox);