]> err.no Git - mapper/commitdiff
Don't be too technical in error messages.
authorKaj-Michael Lang <milang@onion.tal.org>
Mon, 3 Mar 2008 13:33:27 +0000 (15:33 +0200)
committerKaj-Michael Lang <milang@onion.tal.org>
Mon, 3 Mar 2008 13:33:27 +0000 (15:33 +0200)
src/import-gui.c

index a0bc5c2fbd1b30d88437351f9302bbb8a659a689..f64ac88ef955efcb5fd968a557072831d9a6737a 100644 (file)
@@ -87,7 +87,7 @@ gtk_box_pack_start(GTK_BOX(vbox), entry_db, TRUE, TRUE, 0);
 
 gtk_widget_show_all(dialog);
 
-if (GTK_RESPONSE_ACCEPT == gtk_dialog_run(GTK_DIALOG(dialog))) {
+if (GTK_RESPONSE_ACCEPT==gtk_dialog_run(GTK_DIALOG(dialog))) {
        gchar *planet, *db;
 
        planet=gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(picker_planet));
@@ -100,7 +100,7 @@ if (GTK_RESPONSE_ACCEPT == gtk_dialog_run(GTK_DIALOG(dialog))) {
                if (osm_import_bg(planet, db, osm_import_progress_cb, osm_import_done_cb)==TRUE)
                        gtk_widget_destroy(dialog);
                else
-                       popup_error(dialog, _("Failed to start import thread."));
+                       popup_error(dialog, _("Failed to start import."));
        } else {
                popup_error(dialog, _("Missing file selection!"));
        }