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