Remove the word GEDCOM from the importer unicode error message. It is

an error message for all importers, not just GEDCOM.
	src/DbLoader.py


svn: r10621
This commit is contained in:
Kees Bakker 2008-04-22 07:08:39 +00:00
parent 26cdcd680e
commit 3c4aa8e060

View File

@ -302,7 +302,7 @@ class DbLoader:
except UnicodeError, msg:
ErrorDialog(
_("Could not import file: %s") % filename,
_("This GEDCOM file incorrectly identifies its character "
_("This file incorrectly identifies its character "
"set, so it cannot be accurately imported. Please fix the "
"encoding, and import again") + "\n\n %s" % msg)
except Exception: