From 4f96497e64a0fabad05344ec3cfe184eeca220f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?syst=C3=A8me?= Date: Sat, 14 Jan 2017 10:22:37 +0100 Subject: [PATCH] Revert "9899: tweak adjustement where one could switch locations for both parents" This reverts commit 0633930667fe3422f08683dbf5289cfd4c041d09. --- gramps/gen/plug/report/utils.py | 2 +- gramps/gui/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/gen/plug/report/utils.py b/gramps/gen/plug/report/utils.py index 656bc6ed0..8f4282553 100644 --- a/gramps/gen/plug/report/utils.py +++ b/gramps/gen/plug/report/utils.py @@ -411,7 +411,7 @@ def parents_labels(db, family, glocale): if father.gender == 0: rel_father = rel_mother if mother.gender == 1: - rel_mother = _('Father') + rel_mother = rel_father else: rc = get_relationship_calculator(True, glocale) rel_father = rc.get_one_relationship(db, mother, father) diff --git a/gramps/gui/utils.py b/gramps/gui/utils.py index db95a02b1..f3c2e89da 100644 --- a/gramps/gui/utils.py +++ b/gramps/gui/utils.py @@ -703,7 +703,7 @@ def parents_labels(db, family): if father.gender == 0: rel_father = rel_mother if mother.gender == 1: - rel_mother = _('Father') + rel_mother = rel_father else: rc = RelationshipCalculator() rel_father = rc.get_one_relationship(db, mother, father)