From d127992b0d8f625ede420778ad2947dd5648360c Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Wed, 12 Jan 2011 08:57:44 +0000 Subject: [PATCH] string change update svn: r16368 --- src/gen/db/exceptions.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/gen/db/exceptions.py b/src/gen/db/exceptions.py index f037cbf6c..842cc98f0 100644 --- a/src/gen/db/exceptions.py +++ b/src/gen/db/exceptions.py @@ -78,16 +78,17 @@ class DbEnvironmentError(Exception): def __str__(self): return (_("Gramps has detected an problem in opening the 'environment' " - "of the underlying Berkeley database. The most likely cause " + "of the underlying Berkeley database used to store this Family Tree. " + "The most likely cause " "is that the database was created with an old version " - "of the Berkeley database, and you are now using a new version. " + "of the Berkeley database program, and you are now using a new version. " "It is quite likely that your database has not been " - "changed by Gramps.\nIf possible, you could revert to your " + "changed by Gramps.\nIf possible, you should revert to your " "old version of Gramps and its support software; export " "your database to XML; close the database; then upgrade again " - "to this version " - "and import the XML file. Alternatively, it may be possible " - "to upgrade your database.") + "to this version of Gramps and import the XML file " + "in an empty Family Tree. Alternatively, it may be possible " + "to use the Berkeley database recovery tools.") + '\n\n' + str(self.msg)) class DbUpgradeRequiredError(Exception):