From 1329101794b26e3a626a87685a8ba3728992b9a8 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Wed, 14 Jul 2010 01:46:32 +0200 Subject: [PATCH] POLISH: add notice about long time to recreate dialogue --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 1afec904..6482a8c1 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -393,7 +393,7 @@ class fpdb: dia_confirm = gtk.MessageDialog(parent=self.window, flags=gtk.DIALOG_DESTROY_WITH_PARENT, type=gtk.MESSAGE_WARNING, buttons=(gtk.BUTTONS_YES_NO), message_format="Confirm deleting and recreating tables") diastring = "Please confirm that you want to (re-)create the tables. If there already are tables in the database " \ - +self.db.database+" on "+self.db.host+" they will be deleted." + +self.db.database+" on "+self.db.host+" they will be deleted.\nThis may take a while." dia_confirm.format_secondary_text(diastring)#todo: make above string with bold for db, host and deleted # disable windowclose, do not want the the underlying processing interrupted mid-process dia_confirm.set_deletable(False)