summaryrefslogtreecommitdiffstats
path: root/gtk-gui.c
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2012-09-17 01:37:09 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-09-18 07:12:33 -0400
commitac06d1f693f8dfb9fb1a4616028118bfe9a48a88 (patch)
treea5bae039ca9e963f06614e36d5abd28e73307a6b /gtk-gui.c
parent21a8f3f325c55fa52281c7dc18bf12ea3bfe79f0 (diff)
downloadsubsurface-ac06d1f693f8dfb9fb1a4616028118bfe9a48a88.tar.gz
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 <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gtk-gui.c')
-rw-r--r--gtk-gui.c4
1 files 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);