From bb5ad700e37c4d80bbb5f4fe34421a5c202991e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sun, 14 Nov 2010 12:58:40 +0000 Subject: [PATCH] New event role type: 'Informant' (UK, FR) svn: r16191 --- src/gen/lib/eventroletype.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gen/lib/eventroletype.py b/src/gen/lib/eventroletype.py index b44a21b00..da979f8ba 100644 --- a/src/gen/lib/eventroletype.py +++ b/src/gen/lib/eventroletype.py @@ -49,6 +49,7 @@ class EventRoleType(GrampsType): GROOM = 6 WITNESS = 7 FAMILY = 8 + INFORMANT = 9 _CUSTOM = CUSTOM _DEFAULT = PRIMARY @@ -64,6 +65,7 @@ class EventRoleType(GrampsType): (GROOM, _("Groom"), "Groom"), (WITNESS, _("Witness"), "Witness"), (FAMILY, _("Family"), "Family"), + (INFORMANT, _("Informant"), "Informant"), ] def __init__(self, value=None):