* src/MergePeople.py: Corrected gender display (closes #1190203)

svn: r4428
This commit is contained in:
Martin Hawlisch
2005-04-26 12:42:00 +00:00
parent 0ae13453d4
commit 4e155a5e7b
2 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
2005-04-26 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/EditPerson.py (on_apply_person_clicked): Fix crash when
changing gender caused by a family handle/object mismatch
* src/MergePeople.py: Corrected gender display (closes #1190203)
2005-04-25 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/FamilyView.py: Dont crash on empty database

View File

@@ -40,7 +40,7 @@ import const
import gtk
import pango
sex = ( _("male"), _("female"), _("unknown"))
sex = ( _("female"), _("male"), _("unknown"))
class Compare: