From a9bc9784d833129526a6fcc204ad688c2adca064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Charette?= Date: Mon, 5 May 2008 04:52:51 +0000 Subject: [PATCH] change warning message to be generic 3.x-trunk version, and not 3.0.0-beta svn: r10663 --- src/gramps_main.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/gramps_main.py b/src/gramps_main.py index dffa64750..131fc33b3 100644 --- a/src/gramps_main.py +++ b/src/gramps_main.py @@ -198,19 +198,21 @@ def _display_welcome_message(): from QuestionDialog import WarningDialog WarningDialog( _('Danger: This is unstable code!'), - _("This GRAMPS 3.0 Beta release is an early, experimental " - "peek at the future 3.0 release. This version is " - "not meant for normal usage. Use at your own risk.\n\n" + _("This GRAMPS 3.x-trunk is a development release. " + "This version is not meant for normal usage. Use " + "at your own risk.\n" + "\n" "This version may:\n" "1) Work differently than you expect.\n" "2) Fail to run at all.\n" "3) Crash often.\n" "4) Corrupt your data.\n" "5) Save data in a format that is incompatible with the " - "official release.\n" - "\nBACKUP your existing databases " - "before opening them with this version, and make " - "sure to export your data to XML every now and then.")) + "official release.\n" + "\n" + "BACKUP your existing databases before opening " + "them with this version, and make sure to export your " + "data to XML every now and then.")) Config.set(Config.AUTOLOAD, False) # Config.set(Config.BETAWARN, True) Config.set(Config.BETAWARN, Config.get(Config.BETAWARN))