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
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"
"\n<b>BACKUP</b> 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"
"<b>BACKUP</b> 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))