New event role type: 'Informant' (UK, FR)

svn: r16191
This commit is contained in:
Jérôme Rapinat 2010-11-14 12:58:40 +00:00
parent cb37e3d7ce
commit bb5ad700e3

View File

@ -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):