From ebca378ce66672f95a52b2f3901365db5b427626 Mon Sep 17 00:00:00 2001 From: Stanislav Bolshakov Date: Sun, 30 May 2021 20:49:23 +0300 Subject: [PATCH] Add translation context to ChildRefType Needed for Russian. --- gramps/gen/lib/childreftype.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/gen/lib/childreftype.py b/gramps/gen/lib/childreftype.py index c4bcf170c..8feec0ba5 100644 --- a/gramps/gen/lib/childreftype.py +++ b/gramps/gen/lib/childreftype.py @@ -65,8 +65,8 @@ class ChildRefType(GrampsType): _DATAMAP = [ (NONE, _("None"), "None"), - (BIRTH, _("Birth"), "Birth"), - (ADOPTED, _("Adopted"), "Adopted"), + (BIRTH, _("Birth", 'relationship'), "Birth"), + (ADOPTED, _("Adopted", 'relationship'), "Adopted"), (STEPCHILD, _("Stepchild"), "Stepchild"), (SPONSORED, _("Sponsored"), "Sponsored"), (FOSTER, _("Foster"), "Foster"),