svn: r10760
This commit is contained in:
Zsolt Foldvari 2008-05-25 13:20:38 +00:00
parent 198d57738a
commit 62b6250d2f

View File

@ -58,22 +58,22 @@ def importData(database, dirname, callback=None, cl=0, use_trans=True):
other_database.load(name, callback) other_database.load(name, callback)
except: except:
if cl: if cl:
print "Error: %s could not be opened. Exiting." % filename print "Error: %s could not be opened. Exiting." % name
else: else:
ErrorDialog(_("%s could not be opened") % filename) ErrorDialog(_("%s could not be opened") % name)
return return
if not other_database.version_supported(): if not other_database.version_supported():
if cl: if cl:
print "Error: %s could not be opened.\n%s Exiting." \ print "Error: %s could not be opened.\n%s Exiting." \
% (filename, % (name,
_("The database version is not supported " _("The database version is not supported "
"by this version of GRAMPS.\n"\ "by this version of GRAMPS.\n"\
"Please upgrade to the corresponding version " "Please upgrade to the corresponding version "
"or use XML for porting data between different " "or use XML for porting data between different "
"database versions.")) "database versions."))
else: else:
ErrorDialog(_("%s could not be opened") % filename, ErrorDialog(_("%s could not be opened") % name,
_("The Database version is not supported " _("The Database version is not supported "
"by this version of GRAMPS.")) "by this version of GRAMPS."))
return return