diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 6ad5a9ef9..442992cdc 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,4 +1,5 @@ 2005-06-26 Don Allingham + * 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 diff --git a/gramps2/src/const.py.in b/gramps2/src/const.py.in index 2146d115e..5851fe36e 100644 --- a/gramps2/src/const.py.in +++ b/gramps2/src/const.py.in @@ -254,11 +254,11 @@ child_relations = TransTable( { # #------------------------------------------------------------------------- confidence = [ - _("Very High"), - _("High"), - _("Normal"), + _("Very Low"), _("Low"), - _("Very Low") + _("Normal"), + _("High"), + _("Very High"), ] #-------------------------------------------------------------------------