change warning message to be generic 3.x-trunk version, and not 3.0.0-beta

svn: r10663
This commit is contained in:
Stéphane Charette 2008-05-05 04:52:51 +00:00
parent 450ff36dfc
commit a9bc9784d8

View File

@ -198,19 +198,21 @@ def _display_welcome_message():
from QuestionDialog import WarningDialog from QuestionDialog import WarningDialog
WarningDialog( WarningDialog(
_('Danger: This is unstable code!'), _('Danger: This is unstable code!'),
_("This GRAMPS 3.0 Beta release is an early, experimental " _("This GRAMPS 3.x-trunk is a development release. "
"peek at the future 3.0 release. This version is " "This version is not meant for normal usage. Use "
"not meant for normal usage. Use at your own risk.\n\n" "at your own risk.\n"
"\n"
"This version may:\n" "This version may:\n"
"1) Work differently than you expect.\n" "1) Work differently than you expect.\n"
"2) Fail to run at all.\n" "2) Fail to run at all.\n"
"3) Crash often.\n" "3) Crash often.\n"
"4) Corrupt your data.\n" "4) Corrupt your data.\n"
"5) Save data in a format that is incompatible with the " "5) Save data in a format that is incompatible with the "
"official release.\n" "official release.\n"
"\n<b>BACKUP</b> your existing databases " "\n"
"before opening them with this version, and make " "<b>BACKUP</b> your existing databases before opening "
"sure to export your data to XML every now and then.")) "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.AUTOLOAD, False)
# Config.set(Config.BETAWARN, True) # Config.set(Config.BETAWARN, True)
Config.set(Config.BETAWARN, Config.get(Config.BETAWARN)) Config.set(Config.BETAWARN, Config.get(Config.BETAWARN))