From: Kaj-Michael Lang Date: Mon, 3 Mar 2008 13:33:27 +0000 (+0200) Subject: Don't be too technical in error messages. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22254f994b335347d0d3321a6b8f4682f044675d;p=mapper Don't be too technical in error messages. --- diff --git a/src/import-gui.c b/src/import-gui.c index a0bc5c2..f64ac88 100644 --- a/src/import-gui.c +++ b/src/import-gui.c @@ -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!")); }