From dbc999669b29a8a327353298eac819b478120b02 Mon Sep 17 00:00:00 2001 From: CWSchulze Date: Sat, 28 Mar 2020 22:20:36 +0100 Subject: [PATCH] Add Godparent as event role --- gramps/gen/lib/eventroletype.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gramps/gen/lib/eventroletype.py b/gramps/gen/lib/eventroletype.py index 2ab524ab0..5a97fe9f0 100644 --- a/gramps/gen/lib/eventroletype.py +++ b/gramps/gen/lib/eventroletype.py @@ -44,6 +44,7 @@ class EventRoleType(GrampsType): WITNESS = 7 FAMILY = 8 INFORMANT = 9 + GODPARENT = 10 _CUSTOM = CUSTOM _DEFAULT = PRIMARY @@ -60,6 +61,7 @@ class EventRoleType(GrampsType): (WITNESS, _("Witness"), "Witness"), (FAMILY, _("Family", "Role"), "Family"), (INFORMANT, _("Informant"), "Informant"), + (GODPARENT, _("Godparent"), "Godparent"), ] def __init__(self, value=None):