2006-06-13 Don Allingham <don@gramps-project.org>

* src/Editors/_EditLdsOrd.py: LDS confirmation support
	* src/GrampsDb/_ReadGedcom.py: LDS confirmation support
	* src/GrampsDb/_WriteGedcom.py: LDS confirmation support
	* src/GrampsDb/_GedTokens.py: LDS confirmation support
	* src/GrampsDb/_LdsOrdd.py: LDS confirmation support



svn: r6887
This commit is contained in:
Don Allingham
2006-06-13 23:51:24 +00:00
parent e858a54456
commit cb2cebd7e9
6 changed files with 32 additions and 0 deletions

View File

@@ -63,6 +63,7 @@ class LdsOrd(SecondaryObject,SourceBase,NoteBase,
ENDOWMENT = 1
SEAL_TO_PARENTS = 2
SEAL_TO_SPOUSE = 3
CONFIRMATION = 4
DEFAULT_TYPE = BAPTISM
@@ -88,6 +89,7 @@ class LdsOrd(SecondaryObject,SourceBase,NoteBase,
_TYPE_MAP = [
(BAPTISM, _('Baptism'), 'baptism'),
(ENDOWMENT, _('Endowment'), 'endowment'),
(CONFIRMATION, _('Confirmation'), 'confirmation'),
(SEAL_TO_PARENTS, _('Sealed to Parents'), 'sealed_to_parents'),
(SEAL_TO_SPOUSE, _('Sealed to Spouse'), 'sealed_to_spouse' ),
]