GEDCOM fixes

svn: r393
This commit is contained in:
Don Allingham 2001-09-08 20:35:10 +00:00
parent 90677086b9
commit b8ef28451c

View File

@ -193,73 +193,75 @@ def save_fevent(st):
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
personalConstantEvents = { personalConstantEvents = {
"Adopted" : "ADOP", "Adopted" : "ADOP",
"Adult Christening" : "CHRA", "Adult Christening" : "CHRA",
"Alternate Birth" : "BIRT", "Alternate Birth" : "BIRT",
"Alternate Death" : "DEAT", "Alternate Death" : "DEAT",
"Baptism (LDS)" : "BAPL", "Baptism (LDS)" : "BAPL",
"Baptism" : "BAPM", "Baptism" : "BAPM",
"Bar Mitzvah" : "BARM", "Bar Mitzvah" : "BARM",
"Bas Mitzvah" : "BASM", "Bas Mitzvah" : "BASM",
"Burial" : "BURI", "Burial" : "BURI",
"Cause Of Death" : "CAUS", "Cause Of Death" : "CAUS",
"Ordination" : "ORID", "Ordination" : "ORID",
"Census" : "CENS", "Census" : "CENS",
"Christening" : "CHR" , "Christening" : "CHR" ,
"Confirmation" : "CONF", "Confirmation" : "CONF",
"Cremation" : "CREM", "Cremation" : "CREM",
"Degree" : "_DEG", "Degree" : "_DEG",
"Divorce Filing" : "DIVF", "Divorce Filing" : "DIVF",
"Education" : "EDUC", "Education" : "EDUC",
"Elected" : "_ELEC", "Elected" : "_ELEC",
"Emigration" : "EMIG", "Emigration" : "EMIG",
"First Communion" : "FCOM", "First Communion" : "FCOM",
"Graduation" : "GRAD", "Graduation" : "GRAD",
"Military Service" : "_MILT", "Medical Information" : "_MDCL",
"Naturalization" : "NATU", "Military Service" : "_MILT",
"Immigration" : "IMMI", "Naturalization" : "NATU",
"Occupation" : "OCCU", "Immigration" : "IMMI",
"Probate" : "PROB", "Occupation" : "OCCU",
"Property" : "PROP", "Probate" : "PROB",
"Religion" : "RELI", "Property" : "PROP",
"Residence" : "RESI", "Religion" : "RELI",
"Retirement" : "RETI", "Residence" : "RESI",
"Will" : "WILL" "Retirement" : "RETI",
"Will" : "WILL"
} }
_pe_e2l = { _pe_e2l = {
"Adopted" : _("Adopted"), "Adopted" : _("Adopted"),
"Alternate Birth" : _("Alternate Birth"), "Alternate Birth" : _("Alternate Birth"),
"Alternate Death" : _("Alternate Death"), "Alternate Death" : _("Alternate Death"),
"Adult Christening" : _("Adult Christening"), "Adult Christening" : _("Adult Christening"),
"Baptism (LDS)" : _("Baptism (LDS)"), "Baptism (LDS)" : _("Baptism (LDS)"),
"Baptism" : _("Baptism"), "Baptism" : _("Baptism"),
"Bar Mitzvah" : _("Bar Mitzvah"), "Bar Mitzvah" : _("Bar Mitzvah"),
"Bas Mitzvah" : _("Bas Mitzvah"), "Bas Mitzvah" : _("Bas Mitzvah"),
"Burial" : _("Burial"), "Burial" : _("Burial"),
"Cause Of Death" : _("Cause Of Death"), "Cause Of Death" : _("Cause Of Death"),
"Census" : _("Census"), "Census" : _("Census"),
"Christening" : _("Christening"), "Christening" : _("Christening"),
"Confirmation" : _("Confirmation"), "Confirmation" : _("Confirmation"),
"Cremation" : _("Cremation"), "Cremation" : _("Cremation"),
"Degree" : _("Degree"), "Degree" : _("Degree"),
"Divorce Filing" : _("Divorce Filing"), "Divorce Filing" : _("Divorce Filing"),
"Education" : _("Education"), "Education" : _("Education"),
"Elected" : _("Elected"), "Elected" : _("Elected"),
"Emigration" : _("Emigration"), "Emigration" : _("Emigration"),
"First Communion" : _("First Communion"), "First Communion" : _("First Communion"),
"Immigration" : _("Immigration"), "Immigration" : _("Immigration"),
"Graduation" : _("Graduation"), "Graduation" : _("Graduation"),
"Military Service" : _("Military Service"), "Medical Information" : _("Medical Information"),
"Naturalization" : _("Naturalization"), "Military Service" : _("Military Service"),
"Occupation" : _("Occupation"), "Naturalization" : _("Naturalization"),
"Ordination" : _("Ordination"), "Occupation" : _("Occupation"),
"Probate" : _("Probate"), "Ordination" : _("Ordination"),
"Property" : _("Property"), "Probate" : _("Probate"),
"Religion" : _("Religion"), "Property" : _("Property"),
"Residence" : _("Residence"), "Religion" : _("Religion"),
"Retirement" : _("Retirement"), "Residence" : _("Residence"),
"Will" : _("Will") "Retirement" : _("Retirement"),
"Will" : _("Will")
} }
_pe_l2e = {} _pe_l2e = {}