* src/const.py.in: fix confidence display

svn: r4880
This commit is contained in:
Don Allingham 2005-06-26 22:43:05 +00:00
parent 53cc3c990d
commit a0daefea9a
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,5 @@
2005-06-26 Don Allingham <don@gramps-project.org>
* src/const.py.in: fix confidence display
* src/ReadXML.py: prevent duplicate place names on import
* src/ReadGedcom.py: prevent duplicate place names on import

View File

@ -254,11 +254,11 @@ child_relations = TransTable( {
#
#-------------------------------------------------------------------------
confidence = [
_("Very High"),
_("High"),
_("Normal"),
_("Very Low"),
_("Low"),
_("Very Low")
_("Normal"),
_("High"),
_("Very High"),
]
#-------------------------------------------------------------------------