| Conditions | 1 |
| Paths | 1 |
| Total Lines | 469 |
| Code Lines | 467 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 978 | private function gedcom551(): array |
||
| 979 | { |
||
| 980 | return [ |
||
| 981 | 'FAM' => new FamilyRecord(I18N::translate('Family')), |
||
| 982 | 'FAM:*:ADDR' => new AddressLine(I18N::translate('Address')), |
||
| 983 | 'FAM:*:ADDR:ADR1' => new AddressLine1(I18N::translate('Address line 1')), |
||
| 984 | 'FAM:*:ADDR:ADR2' => new AddressLine2(I18N::translate('Address line 2')), |
||
| 985 | 'FAM:*:ADDR:ADR3' => new AddressLine3(I18N::translate('Address line 3')), |
||
| 986 | 'FAM:*:ADDR:CITY' => new AddressCity(I18N::translate('City')), |
||
| 987 | 'FAM:*:ADDR:CTRY' => new AddressCountry(I18N::translate('Country')), |
||
| 988 | 'FAM:*:ADDR:POST' => new AddressPostalCode(I18N::translate('Postal code')), |
||
| 989 | 'FAM:*:ADDR:STAE' => new AddressState(I18N::translate('State')), |
||
| 990 | 'FAM:*:AGNC' => new ResponsibleAgency(I18N::translate('Agency')), |
||
| 991 | 'FAM:*:CAUS' => new CauseOfEvent(I18N::translate('Cause')), |
||
| 992 | 'FAM:*:DATE' => new DateValue(I18N::translate('Date')), |
||
| 993 | 'FAM:*:EMAIL' => new AddressEmail(I18N::translate('Email address')), |
||
| 994 | 'FAM:*:FAX' => new AddressFax(I18N::translate('Fax')), |
||
| 995 | 'FAM:*:HUSB' => new EmptyElement(I18N::translate('Husband'), ['AGE' => '0:1']), |
||
| 996 | 'FAM:*:HUSB:AGE' => new AgeAtEvent(I18N::translate('Husband’s age')), |
||
| 997 | 'FAM:*:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 998 | 'FAM:*:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 999 | 'FAM:*:PHON' => new PhoneNumber(I18N::translate('Phone')), |
||
| 1000 | 'FAM:*:PLAC' => new PlaceName(I18N::translate('Place')), |
||
| 1001 | 'FAM:*:PLAC:FONE' => new PlacePhoneticVariation(I18N::translate('Phonetic place')), |
||
| 1002 | 'FAM:*:PLAC:FONE:TYPE' => new PhoneticType(I18N::translate('Type')), |
||
| 1003 | 'FAM:*:PLAC:FORM' => new PlaceHierarchy(I18N::translate('Format')), |
||
| 1004 | 'FAM:*:PLAC:MAP' => new EmptyElement(I18N::translate('Coordinates')), |
||
| 1005 | 'FAM:*:PLAC:MAP:LATI' => new PlaceLatitude(I18N::translate('Latitude')), |
||
| 1006 | 'FAM:*:PLAC:MAP:LONG' => new PlaceLongtitude(I18N::translate('Longitude')), |
||
| 1007 | 'FAM:*:PLAC:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1008 | 'FAM:*:PLAC:ROMN' => new PlaceRomanizedVariation(I18N::translate('Romanized place')), |
||
| 1009 | 'FAM:*:PLAC:ROMN:TYPE' => new RomanizedType(I18N::translate('Type')), |
||
| 1010 | 'FAM:*:RELI' => new ReligiousAffiliation(I18N::translate('Religion')), |
||
| 1011 | 'FAM:*:RESN' => new RestrictionNotice(I18N::translate('Restriction')), |
||
| 1012 | 'FAM:*:SOUR' => new XrefSource(I18N::translate('Source')), |
||
| 1013 | 'FAM:*:SOUR:DATA' => new SourceData(I18N::translate('Data')), |
||
| 1014 | 'FAM:*:SOUR:DATA:DATE' => new EntryRecordingDate(I18N::translate('Date of entry in original source')), |
||
| 1015 | 'FAM:*:SOUR:DATA:TEXT' => new TextFromSource(I18N::translate('Text')), |
||
| 1016 | 'FAM:*:SOUR:EVEN' => new EventTypeCitedFrom(I18N::translate('Event')), |
||
| 1017 | 'FAM:*:SOUR:EVEN:ROLE' => new RoleInEvent(I18N::translate('Role')), |
||
| 1018 | 'FAM:*:SOUR:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1019 | 'FAM:*:SOUR:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1020 | 'FAM:*:SOUR:PAGE' => new WhereWithinSource(I18N::translate('Citation details')), |
||
| 1021 | 'FAM:*:SOUR:QUAY' => new CertaintyAssessment(I18N::translate('Quality of data')), |
||
| 1022 | 'FAM:*:TYPE' => new EventOrFactClassification(I18N::translate('Type')), |
||
| 1023 | 'FAM:*:WIFE' => new EmptyElement(I18N::translate('Wife'), ['AGE' => '0:1']), |
||
| 1024 | 'FAM:*:WIFE:AGE' => new AgeAtEvent(I18N::translate('Wife’s age')), |
||
| 1025 | 'FAM:*:WWW' => new AddressWebPage(I18N::translate('URL')), |
||
| 1026 | 'FAM:ANUL' => new Annulment(I18N::translate('Annulment')), |
||
| 1027 | 'FAM:CENS' => new Census(I18N::translate('Census')), |
||
| 1028 | 'FAM:CHAN' => new Change(I18N::translate('Last change')), |
||
| 1029 | 'FAM:CHAN:DATE' => new ChangeDate(I18N::translate('Date of last change')), |
||
| 1030 | 'FAM:CHAN:DATE:TIME' => new TimeValue(I18N::translate('Time')), |
||
| 1031 | 'FAM:CHIL' => new XrefIndividual(I18N::translate('Child')), |
||
| 1032 | 'FAM:DIV' => new Divorce(I18N::translate('Divorce')), |
||
| 1033 | 'FAM:DIVF' => new DivorceFiled(I18N::translate('Divorce filed')), |
||
| 1034 | 'FAM:ENGA' => new Engagement(I18N::translate('Engagement')), |
||
| 1035 | 'FAM:ENGA:DATE' => new DateValue(I18N::translate('Date of engagement')), |
||
| 1036 | 'FAM:ENGA:PLACE' => new PlaceName(I18N::translate('Place of engagement')), |
||
| 1037 | 'FAM:EVEN' => new EventDescriptor(I18N::translate('Event')), |
||
| 1038 | 'FAM:EVEN:TYPE' => new EventAttributeType(I18N::translate('Type of event')), |
||
| 1039 | 'FAM:HUSB' => new XrefIndividual(I18N::translate('Husband')), |
||
| 1040 | 'FAM:MARB' => new MarriageBanns(I18N::translate('Marriage banns')), |
||
| 1041 | 'FAM:MARB:DATE' => new DateValue(I18N::translate('Date of marriage banns')), |
||
| 1042 | 'FAM:MARB:PLAC' => new PlaceName(I18N::translate('Place of marriage banns')), |
||
| 1043 | 'FAM:MARC' => new MarriageContract(I18N::translate('Marriage contract')), |
||
| 1044 | 'FAM:MARL' => new MarriageLicence(I18N::translate('Marriage license')), |
||
| 1045 | 'FAM:MARR' => new Marriage(I18N::translate('Marriage')), |
||
| 1046 | 'FAM:MARR:DATE' => new DateValue(I18N::translate('Date of marriage')), |
||
| 1047 | 'FAM:MARR:PLAC' => new PlaceName(I18N::translate('Place of marriage')), |
||
| 1048 | 'FAM:MARR:TYPE' => new MarriageType(I18N::translate('Type of marriage')), |
||
| 1049 | 'FAM:MARS' => new MarriageSettlement(I18N::translate('Marriage settlement')), |
||
| 1050 | 'FAM:NCHI' => new CountOfChildren(I18N::translate('Number of children')), |
||
| 1051 | 'FAM:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1052 | 'FAM:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1053 | 'FAM:REFN' => new UserReferenceNumber(I18N::translate('Reference number')), |
||
| 1054 | 'FAM:REFN:TYPE' => new UserReferenceType(I18N::translate('Type')), |
||
| 1055 | 'FAM:RESI' => new Residence(I18N::translate('Residence')), |
||
| 1056 | 'FAM:RESN' => new RestrictionNotice(I18N::translate('Restriction')), |
||
| 1057 | 'FAM:RIN' => new AutomatedRecordId(I18N::translate('Record ID number')), |
||
| 1058 | 'FAM:SLGS' => new LdsSpouseSealing(I18N::translate('LDS spouse sealing')), |
||
| 1059 | 'FAM:SLGS:DATE' => new DateLdsOrd(I18N::translate('Date')), |
||
| 1060 | 'FAM:SLGS:PLAC' => new PlaceLivingOrdinance(I18N::translate('Place')), |
||
| 1061 | 'FAM:SLGS:STAT' => new LdsSpouseSealingDateStatus(I18N::translate('Status')), |
||
| 1062 | 'FAM:SLGS:STAT:DATE' => new ChangeDate(I18N::translate('Status change date')), |
||
| 1063 | 'FAM:SLGS:TEMP' => new TempleCode(I18N::translate('Temple')), |
||
| 1064 | 'FAM:SOUR' => new XrefSource(I18N::translate('Source')), |
||
| 1065 | 'FAM:SOUR:DATA' => new SourceData(I18N::translate('Data')), |
||
| 1066 | 'FAM:SOUR:DATA:DATE' => new EntryRecordingDate(I18N::translate('Date of entry in original source')), |
||
| 1067 | 'FAM:SOUR:DATA:TEXT' => new TextFromSource(I18N::translate('Text')), |
||
| 1068 | 'FAM:SOUR:EVEN' => new EventTypeCitedFrom(I18N::translate('Event')), |
||
| 1069 | 'FAM:SOUR:EVEN:ROLE' => new RoleInEvent(I18N::translate('Role')), |
||
| 1070 | 'FAM:SOUR:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1071 | 'FAM:SOUR:PAGE' => new WhereWithinSource(I18N::translate('Citation details')), |
||
| 1072 | 'FAM:SOUR:QUAY' => new CertaintyAssessment(I18N::translate('Quality of data')), |
||
| 1073 | 'FAM:SUBM' => new XrefSubmitter(I18N::translate('Submitter')), |
||
| 1074 | 'FAM:WIFE' => new XrefIndividual(I18N::translate('Wife')), |
||
| 1075 | 'HEAD' => new HeaderRecord(I18N::translate('Header')), |
||
| 1076 | 'HEAD:CHAR' => new CharacterSet(I18N::translate('Character set')), |
||
| 1077 | 'HEAD:CHAR:VERS' => new VersionNumber(I18N::translate('Version')), |
||
| 1078 | 'HEAD:COPR' => new CopyrightFile(I18N::translate('Copyright')), |
||
| 1079 | 'HEAD:DATE' => new TransmissionDate(I18N::translate('Date')), |
||
| 1080 | 'HEAD:DATE:TIME' => new TimeValue(I18N::translate('Time')), |
||
| 1081 | 'HEAD:DEST' => new ReceivingSystemName(I18N::translate('Destination')), |
||
| 1082 | 'HEAD:FILE' => new FileName(I18N::translate('Filename')), |
||
| 1083 | 'HEAD:GEDC' => new GedcomElement(I18N::translate('GEDCOM')), |
||
| 1084 | 'HEAD:GEDC:FORM' => new Form(I18N::translate('Format')), |
||
| 1085 | 'HEAD:GEDC:VERS' => new VersionNumber(I18N::translate('Version')), |
||
| 1086 | 'HEAD:LANG' => new LanguageId(I18N::translate('Language')), |
||
| 1087 | 'HEAD:NOTE' => new ContentDescription(I18N::translate('Note')), |
||
| 1088 | 'HEAD:PLAC' => new EmptyElement(I18N::translate('Place hierarchy'), ['FORM' => '1:1']), |
||
| 1089 | 'HEAD:PLAC:FORM' => new PlaceHierarchy(I18N::translate('Format')), |
||
| 1090 | 'HEAD:SOUR' => new ApprovedSystemId('Genealogy software'), |
||
| 1091 | 'HEAD:SOUR:CORP' => new NameOfBusiness(I18N::translate('Corporation')), |
||
| 1092 | 'HEAD:SOUR:CORP:ADDR' => new AddressLine(I18N::translate('Address')), |
||
| 1093 | 'HEAD:SOUR:CORP:ADDR:ADR1' => new AddressLine1(I18N::translate('Address line 1')), |
||
| 1094 | 'HEAD:SOUR:CORP:ADDR:ADR2' => new AddressLine2(I18N::translate('Address line 2')), |
||
| 1095 | 'HEAD:SOUR:CORP:ADDR:ADR3' => new AddressLine3(I18N::translate('Address line 3')), |
||
| 1096 | 'HEAD:SOUR:CORP:ADDR:CITY' => new AddressCity(I18N::translate('City')), |
||
| 1097 | 'HEAD:SOUR:CORP:ADDR:CTRY' => new AddressCountry(I18N::translate('Country')), |
||
| 1098 | 'HEAD:SOUR:CORP:ADDR:POST' => new AddressPostalCode(I18N::translate('Postal code')), |
||
| 1099 | 'HEAD:SOUR:CORP:ADDR:STAE' => new AddressState(I18N::translate('State')), |
||
| 1100 | 'HEAD:SOUR:CORP:EMAIL' => new AddressEmail(I18N::translate('Email address')), |
||
| 1101 | 'HEAD:SOUR:CORP:FAX' => new AddressFax(I18N::translate('Fax')), |
||
| 1102 | 'HEAD:SOUR:CORP:PHON' => new PhoneNumber(I18N::translate('Phone')), |
||
| 1103 | 'HEAD:SOUR:CORP:WWW' => new AddressWebPage(I18N::translate('URL')), |
||
| 1104 | 'HEAD:SOUR:DATA' => new NameOfSourceData('Data'), |
||
| 1105 | 'HEAD:SOUR:DATA:COPR' => new CopyrightSourceData(I18N::translate('Copyright')), |
||
| 1106 | 'HEAD:SOUR:DATA:DATE' => new PublicationDate(I18N::translate('Date')), |
||
| 1107 | 'HEAD:SOUR:NAME' => new NameOfProduct('Software product'), |
||
| 1108 | 'HEAD:SOUR:VERS' => new VersionNumber(I18N::translate('Version')), |
||
| 1109 | 'HEAD:SUBM' => new XrefSubmitter(I18N::translate('Submitter')), |
||
| 1110 | 'HEAD:SUBN' => new XrefSubmission(I18N::translate('Submission')), |
||
| 1111 | 'INDI' => new IndividualRecord(I18N::translate('Individual')), |
||
| 1112 | 'INDI:*:ADDR' => new AddressLine(I18N::translate('Address')), |
||
| 1113 | 'INDI:*:ADDR:ADR1' => new AddressLine1(I18N::translate('Address line 1')), |
||
| 1114 | 'INDI:*:ADDR:ADR2' => new AddressLine2(I18N::translate('Address line 2')), |
||
| 1115 | 'INDI:*:ADDR:ADR3' => new AddressLine3(I18N::translate('Address line 3')), |
||
| 1116 | 'INDI:*:ADDR:CITY' => new AddressCity(I18N::translate('City')), |
||
| 1117 | 'INDI:*:ADDR:CTRY' => new AddressCountry(I18N::translate('Country')), |
||
| 1118 | 'INDI:*:ADDR:POST' => new AddressPostalCode(I18N::translate('Postal code')), |
||
| 1119 | 'INDI:*:ADDR:STAE' => new AddressState(I18N::translate('State')), |
||
| 1120 | 'INDI:*:AGE' => new AgeAtEvent(I18N::translate('Age')), |
||
| 1121 | 'INDI:*:AGNC' => new ResponsibleAgency(I18N::translate('Agency')), |
||
| 1122 | 'INDI:*:CAUS' => new CauseOfEvent(I18N::translate('Cause')), |
||
| 1123 | 'INDI:*:DATE' => new DateValue(I18N::translate('Date')), |
||
| 1124 | 'INDI:*:EMAIL' => new AddressEmail(I18N::translate('Email address')), |
||
| 1125 | 'INDI:*:FAX' => new AddressFax(I18N::translate('Fax')), |
||
| 1126 | 'INDI:*:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1127 | 'INDI:*:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1128 | 'INDI:*:PHON' => new PhoneNumber(I18N::translate('Phone')), |
||
| 1129 | 'INDI:*:PLAC' => new PlaceName(I18N::translate('Place')), |
||
| 1130 | 'INDI:*:PLAC:FONE' => new PlacePhoneticVariation(I18N::translate('Phonetic place')), |
||
| 1131 | 'INDI:*:PLAC:FONE:TYPE' => new PhoneticType(I18N::translate('Type')), |
||
| 1132 | 'INDI:*:PLAC:FORM' => new PlaceHierarchy(I18N::translate('Format')), |
||
| 1133 | 'INDI:*:PLAC:MAP' => new EmptyElement(I18N::translate('Coordinates')), |
||
| 1134 | 'INDI:*:PLAC:MAP:LATI' => new PlaceLatitude(I18N::translate('Latitude')), |
||
| 1135 | 'INDI:*:PLAC:MAP:LONG' => new PlaceLongtitude(I18N::translate('Longitude')), |
||
| 1136 | 'INDI:*:PLAC:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1137 | 'INDI:*:PLAC:ROMN' => new PlaceRomanizedVariation(I18N::translate('Romanized place')), |
||
| 1138 | 'INDI:*:PLAC:ROMN:TYPE' => new RomanizedType(I18N::translate('Type')), |
||
| 1139 | 'INDI:*:RELI' => new ReligiousAffiliation(I18N::translate('Religion')), |
||
| 1140 | 'INDI:*:RESN' => new RestrictionNotice(I18N::translate('Restriction')), |
||
| 1141 | 'INDI:*:SOUR' => new XrefSource(I18N::translate('Source')), |
||
| 1142 | 'INDI:*:SOUR:DATA' => new SourceData(I18N::translate('Data')), |
||
| 1143 | 'INDI:*:SOUR:DATA:DATE' => new EntryRecordingDate(I18N::translate('Date of entry in original source')), |
||
| 1144 | 'INDI:*:SOUR:DATA:TEXT' => new TextFromSource(I18N::translate('Text')), |
||
| 1145 | 'INDI:*:SOUR:EVEN' => new EventTypeCitedFrom(I18N::translate('Event')), |
||
| 1146 | 'INDI:*:SOUR:EVEN:ROLE' => new RoleInEvent(I18N::translate('Role')), |
||
| 1147 | 'INDI:*:SOUR:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1148 | 'INDI:*:SOUR:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1149 | 'INDI:*:SOUR:PAGE' => new WhereWithinSource(I18N::translate('Citation details')), |
||
| 1150 | 'INDI:*:SOUR:QUAY' => new CertaintyAssessment(I18N::translate('Quality of data')), |
||
| 1151 | 'INDI:*:TYPE' => new EventOrFactClassification(I18N::translate('Type')), |
||
| 1152 | 'INDI:*:WWW' => new AddressWebPage(I18N::translate('URL')), |
||
| 1153 | 'INDI:ADOP' => new Adoption(I18N::translate('Adoption')), |
||
| 1154 | 'INDI:ADOP:DATE' => new DateValue(I18N::translate('Date of adoption')), |
||
| 1155 | 'INDI:ADOP:FAMC' => new XrefFamily(I18N::translate('Adoptive parents')), |
||
| 1156 | 'INDI:ADOP:FAMC:ADOP' => new AdoptedByWhichParent(I18N::translate('Adoption')), |
||
| 1157 | 'INDI:ADOP:PLAC' => new PlaceName(I18N::translate('Place of adoption')), |
||
| 1158 | 'INDI:AFN' => new AncestralFileNumber(I18N::translate('Ancestral file number')), |
||
| 1159 | 'INDI:ALIA' => new XrefIndividual(I18N::translate('Alias')), |
||
| 1160 | 'INDI:ANCI' => new XrefSubmitter(I18N::translate('Ancestors interest')), |
||
| 1161 | 'INDI:ASSO' => new XrefAssociate(I18N::translate('Associate')), |
||
| 1162 | 'INDI:ASSO:RELA' => new RelationIsDescriptor(I18N::translate('Relationship')), |
||
| 1163 | 'INDI:BAPL' => new LdsBaptism(I18N::translate('LDS baptism')), |
||
| 1164 | 'INDI:BAPL:DATE' => new DateLdsOrd(I18N::translate('Date of LDS baptism')), |
||
| 1165 | 'INDI:BAPL:PLAC' => new PlaceLivingOrdinance(I18N::translate('Place of LDS baptism')), |
||
| 1166 | 'INDI:BAPL:STAT' => new LdsBaptismDateStatus(I18N::translate('Status')), |
||
| 1167 | 'INDI:BAPL:STAT:DATE' => new ChangeDate(I18N::translate('Status change date')), |
||
| 1168 | 'INDI:BAPL:TEMP' => new TempleCode(I18N::translate('Temple')), |
||
| 1169 | 'INDI:BAPM' => new Baptism(I18N::translate('Baptism')), |
||
| 1170 | 'INDI:BAPM:DATE' => new DateValue(I18N::translate('Date of baptism')), |
||
| 1171 | 'INDI:BAPM:PLAC' => new PlaceName(I18N::translate('Place of baptism')), |
||
| 1172 | 'INDI:BARM' => new PlaceName(I18N::translate('Bar mitzvah')), |
||
| 1173 | 'INDI:BARM:DATE' => new DateValue(I18N::translate('Date of bar mitzvah')), |
||
| 1174 | 'INDI:BARM:PLAC' => new PlaceName(I18N::translate('Place of bar mitzvah')), |
||
| 1175 | 'INDI:BASM' => new BasMitzvah(I18N::translate('Bat mitzvah')), |
||
| 1176 | 'INDI:BASM:DATE' => new BasMitzvah(I18N::translate('Date of bat mitzvah')), |
||
| 1177 | 'INDI:BASM:PLAC' => new DateValue(I18N::translate('Place of bat mitzvah')), |
||
| 1178 | 'INDI:BIRT' => new Birth(I18N::translate('Birth')), |
||
| 1179 | 'INDI:BIRT:DATE' => new DateValue(I18N::translate('Date of birth')), |
||
| 1180 | 'INDI:BIRT:FAMC' => new XrefFamily(I18N::translate('Birth parents')), |
||
| 1181 | 'INDI:BIRT:PLAC' => new PlaceName(I18N::translate('Place of birth')), |
||
| 1182 | 'INDI:BLES' => new Blessing(I18N::translate('Blessing')), |
||
| 1183 | 'INDI:BLES:DATE' => new DateValue(I18N::translate('Date of blessing')), |
||
| 1184 | 'INDI:BLES:PLAC' => new PlaceName(I18N::translate('Place of blessing')), |
||
| 1185 | 'INDI:BURI' => new Burial(I18N::translate('Burial')), |
||
| 1186 | 'INDI:BURI:DATE' => new DateValue(I18N::translate('Date of burial')), |
||
| 1187 | 'INDI:BURI:PLAC' => new PlaceName(I18N::translate('Place of burial')), |
||
| 1188 | 'INDI:CAST' => new CasteName(I18N::translate('Caste')), |
||
| 1189 | 'INDI:CENS' => new Census(I18N::translate('Census')), |
||
| 1190 | 'INDI:CENS:DATE' => new DateValue(I18N::translate('Census date')), |
||
| 1191 | 'INDI:CENS:PLAC' => new PlaceName(I18N::translate('Census place')), |
||
| 1192 | 'INDI:CHAN' => new Change(I18N::translate('Last change')), |
||
| 1193 | 'INDI:CHAN:DATE' => new ChangeDate(I18N::translate('Date of last change')), |
||
| 1194 | 'INDI:CHAN:DATE:TIME' => new TimeValue(I18N::translate('Time')), |
||
| 1195 | 'INDI:CHR' => new Christening(I18N::translate('Christening')), |
||
| 1196 | 'INDI:CHR:DATE' => new DateValue(I18N::translate('Date of christening')), |
||
| 1197 | 'INDI:CHR:FAMC' => new XrefFamily(I18N::translate('Godparents')), |
||
| 1198 | 'INDI:CHR:PLAC' => new PlaceName(I18N::translate('Place of christening')), |
||
| 1199 | 'INDI:CHRA' => new AdultChristening(I18N::translate('Adult christening')), |
||
| 1200 | 'INDI:CONF' => new Confirmation(I18N::translate('Confirmation')), |
||
| 1201 | 'INDI:CONF:DATE' => new DateValue(I18N::translate('Date of confirmation')), |
||
| 1202 | 'INDI:CONF:PLAC' => new PlaceName(I18N::translate('Place of confirmation')), |
||
| 1203 | 'INDI:CONL' => new LdsConfirmation(I18N::translate('LDS confirmation')), |
||
| 1204 | 'INDI:CONL:DATE' => new DateLdsOrd(I18N::translate('Date of LDS confirmation')), |
||
| 1205 | 'INDI:CONL:PLAC' => new PlaceLivingOrdinance(I18N::translate('Place of LDS confirmation')), |
||
| 1206 | 'INDI:CONL:STAT' => new LdsSpouseSealingDateStatus(I18N::translate('Status')), |
||
| 1207 | 'INDI:CONL:STAT:DATE' => new ChangeDate(I18N::translate('Status change date')), |
||
| 1208 | 'INDI:CONL:TEMP' => new TempleCode(I18N::translate('Temple')), |
||
| 1209 | 'INDI:CREM' => new Cremation(I18N::translate('Cremation')), |
||
| 1210 | 'INDI:CREM:DATE' => new Cremation(I18N::translate('Date of cremation')), |
||
| 1211 | 'INDI:CREM:PLAC' => new Cremation(I18N::translate('Place of cremation')), |
||
| 1212 | 'INDI:DEAT' => new Death(I18N::translate('Death')), |
||
| 1213 | 'INDI:DEAT:CAUS' => new CauseOfEvent(I18N::translate('Cause of death')), |
||
| 1214 | 'INDI:DEAT:DATE' => new DateValue(I18N::translate('Date of death')), |
||
| 1215 | 'INDI:DEAT:PLAC' => new PlaceName(I18N::translate('Place of death')), |
||
| 1216 | 'INDI:DESI' => new XrefSubmitter(I18N::translate('Descendants interest')), |
||
| 1217 | 'INDI:DSCR' => new PhysicalDescription(I18N::translate('Description')), |
||
| 1218 | 'INDI:EDUC' => new ScholasticAchievement(I18N::translate('Education')), |
||
| 1219 | 'INDI:EDUC:AGNC' => new ResponsibleAgency(I18N::translate('School or college')), |
||
| 1220 | 'INDI:EMIG' => new Emigration(I18N::translate('Emigration')), |
||
| 1221 | 'INDI:EMIG:DATE' => new DateValue(I18N::translate('Date of emigration')), |
||
| 1222 | 'INDI:EMIG:PLAC' => new PlaceName(I18N::translate('Place of emigration')), |
||
| 1223 | 'INDI:ENDL' => new LdsEndowment(I18N::translate('LDS endowment')), |
||
| 1224 | 'INDI:ENDL:DATE' => new DateLdsOrd(I18N::translate('Date of LDS endowment')), |
||
| 1225 | 'INDI:ENDL:PLAC' => new PlaceLivingOrdinance(I18N::translate('Place of LDS endowment')), |
||
| 1226 | 'INDI:ENDL:STAT' => new LdsEndowmentDateStatus(I18N::translate('Status')), |
||
| 1227 | 'INDI:ENDL:STAT:DATE' => new ChangeDate(I18N::translate('Status change date')), |
||
| 1228 | 'INDI:ENDL:TEMP' => new TempleCode(I18N::translate('Temple')), |
||
| 1229 | 'INDI:EVEN' => new EventDescriptor(I18N::translate('Event')), |
||
| 1230 | 'INDI:EVEN:DATE' => new DateValue(I18N::translate('Date of event')), |
||
| 1231 | 'INDI:EVEN:PLAC' => new PlaceName(I18N::translate('Place of event')), |
||
| 1232 | 'INDI:EVEN:TYPE' => new EventAttributeType(I18N::translate('Type of event')), |
||
| 1233 | 'INDI:FACT' => new AttributeDescriptor(I18N::translate('Fact')), |
||
| 1234 | 'INDI:FACT:TYPE' => new EventAttributeType(I18N::translate('Type of fact')), |
||
| 1235 | 'INDI:FAMC' => new XrefFamily(I18N::translate('Family as a child'), ['NOTE' => '0:1', 'PEDI' => '0:1', 'STAT' => '0:1']), |
||
| 1236 | 'INDI:FAMC:PEDI' => new PedigreeLinkageType(I18N::translate('Relationship to parents')), |
||
| 1237 | 'INDI:FAMC:STAT' => new ChildLinkageStatus(I18N::translate('Status')), |
||
| 1238 | 'INDI:FAMS' => new XrefFamily(I18N::translate('Family as a spouse')), |
||
| 1239 | 'INDI:FCOM' => new FirstCommunion(I18N::translate('First communion')), |
||
| 1240 | 'INDI:FCOM:DATE' => new DateValue(I18N::translate('Date of first communion')), |
||
| 1241 | 'INDI:FCOM:PLAC' => new PlaceName(I18N::translate('Place of first communion')), |
||
| 1242 | 'INDI:GRAD' => new Graduation(I18N::translate('Graduation')), |
||
| 1243 | 'INDI:GRAD:AGNC' => new ResponsibleAgency(I18N::translate('School or college')), |
||
| 1244 | 'INDI:IDNO' => new NationalIdNumber(I18N::translate('Identification number')), |
||
| 1245 | 'INDI:IMMI' => new Immigration(I18N::translate('Immigration')), |
||
| 1246 | 'INDI:IMMI:DATE' => new DateValue(I18N::translate('Date of immigration')), |
||
| 1247 | 'INDI:IMMI:PLAC' => new PlaceName(I18N::translate('Place of immigration')), |
||
| 1248 | 'INDI:NAME' => new NamePersonal(I18N::translate('Name')), |
||
| 1249 | 'INDI:NAME:FONE' => new NamePhoneticVariation(I18N::translate('Phonetic name'), ['TYPE' => '0,1']), |
||
| 1250 | 'INDI:NAME:FONE:GIVN' => new NamePieceGiven(I18N::translate('Given names')), |
||
| 1251 | 'INDI:NAME:FONE:NICK' => new NamePieceNickname(I18N::translate('Nickname')), |
||
| 1252 | 'INDI:NAME:FONE:NPFX' => new NamePiecePrefix(I18N::translate('Name prefix')), |
||
| 1253 | 'INDI:NAME:FONE:NSFX' => new NamePieceSuffix(I18N::translate('Name suffix')), |
||
| 1254 | 'INDI:NAME:FONE:SPFX' => new NamePieceSurnamePrefix(I18N::translate('Surname prefix')), |
||
| 1255 | 'INDI:NAME:FONE:SURN' => new NamePieceSurname(I18N::translate('Surname')), |
||
| 1256 | 'INDI:NAME:FONE:TYPE' => new PhoneticType(I18N::translate('Phonetic type')), |
||
| 1257 | 'INDI:NAME:GIVN' => new NamePieceGiven(I18N::translate('Given names')), |
||
| 1258 | 'INDI:NAME:NICK' => new NamePieceNickname(I18N::translate('Nickname')), |
||
| 1259 | 'INDI:NAME:NPFX' => new NamePiecePrefix(I18N::translate('Name prefix')), |
||
| 1260 | 'INDI:NAME:NSFX' => new NamePieceSuffix(I18N::translate('Name suffix')), |
||
| 1261 | 'INDI:NAME:ROMN' => new NameRomanizedVariation(I18N::translate('Romanized name'), ['TYPE' => '0,1']), |
||
| 1262 | 'INDI:NAME:ROMN:GIVN' => new NamePieceGiven(I18N::translate('Given names')), |
||
| 1263 | 'INDI:NAME:ROMN:NICK' => new NamePieceNickname(I18N::translate('Nickname')), |
||
| 1264 | 'INDI:NAME:ROMN:NPFX' => new NamePiecePrefix(I18N::translate('Name prefix')), |
||
| 1265 | 'INDI:NAME:ROMN:NSFX' => new NamePieceSuffix(I18N::translate('Name suffix')), |
||
| 1266 | 'INDI:NAME:ROMN:SPFX' => new NamePieceSurnamePrefix(I18N::translate('Surname prefix')), |
||
| 1267 | 'INDI:NAME:ROMN:SURN' => new NamePieceSurname(I18N::translate('Surname')), |
||
| 1268 | 'INDI:NAME:ROMN:TYPE' => new RomanizedType(I18N::translate('Romanized type')), |
||
| 1269 | 'INDI:NAME:SPFX' => new NamePieceSurnamePrefix(I18N::translate('Surname prefix')), |
||
| 1270 | 'INDI:NAME:SURN' => new NamePieceSurname(I18N::translate('Surname')), |
||
| 1271 | 'INDI:NAME:TYPE' => new NameType(I18N::translate('Type of name')), |
||
| 1272 | 'INDI:NATI' => new NationOrTribalOrigin(I18N::translate('Nationality')), |
||
| 1273 | 'INDI:NATU' => new Naturalization(I18N::translate('Naturalization')), |
||
| 1274 | 'INDI:NATU:DATE' => new DateValue(I18N::translate('Date of naturalization')), |
||
| 1275 | 'INDI:NATU:PLAC' => new PlaceName(I18N::translate('Place of naturalization')), |
||
| 1276 | 'INDI:NCHI' => new CountOfChildren(I18N::translate('Number of children')), |
||
| 1277 | 'INDI:NMR' => new CountOfMarriages(I18N::translate('Number of marriages')), |
||
| 1278 | 'INDI:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1279 | 'INDI:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1280 | 'INDI:OCCU' => new Occupation(I18N::translate('Occupation')), |
||
| 1281 | 'INDI:OCCU:AGNC' => new ResponsibleAgency(I18N::translate('Employer')), |
||
| 1282 | 'INDI:ORDN' => new Ordination(I18N::translate('Ordination')), |
||
| 1283 | 'INDI:ORDN:AGNC' => new Ordination(I18N::translate('Religious institution')), |
||
| 1284 | 'INDI:ORDN:DATE' => new Ordination(I18N::translate('Date of ordination')), |
||
| 1285 | 'INDI:ORDN:PLAC' => new Ordination(I18N::translate('Place of ordination')), |
||
| 1286 | 'INDI:PROB' => new Probate(I18N::translate('Probate')), |
||
| 1287 | 'INDI:PROP' => new Possessions(I18N::translate('Property')), |
||
| 1288 | 'INDI:REFN' => new UserReferenceNumber(I18N::translate('Reference number')), |
||
| 1289 | 'INDI:REFN:TYPE' => new UserReferenceType(I18N::translate('Type')), |
||
| 1290 | 'INDI:RELI' => new ReligiousAffiliation(I18N::translate('Religion')), |
||
| 1291 | 'INDI:RESI' => new Residence(I18N::translate('Residence')), |
||
| 1292 | 'INDI:RESI:DATE' => new DateValue(I18N::translate('Date of residence')), |
||
| 1293 | 'INDI:RESI:PLAC' => new PlaceName(I18N::translate('Place of residence')), |
||
| 1294 | 'INDI:RESN' => new RestrictionNotice(I18N::translate('Restriction')), |
||
| 1295 | 'INDI:RETI' => new Retirement(I18N::translate('Retirement')), |
||
| 1296 | 'INDI:RETI:AGNC' => new ResponsibleAgency(I18N::translate('Employer')), |
||
| 1297 | 'INDI:RFN' => new PermanentRecordFileNumber(I18N::translate('Record file number')), |
||
| 1298 | 'INDI:RIN' => new AutomatedRecordId(I18N::translate('Record ID number')), |
||
| 1299 | 'INDI:SEX' => new SexValue(I18N::translate('Gender')), |
||
| 1300 | 'INDI:SLGC' => new LdsChildSealing(I18N::translate('LDS child sealing')), |
||
| 1301 | 'INDI:SLGC:DATE' => new DateLdsOrd(I18N::translate('Date of LDS child sealing')), |
||
| 1302 | 'INDI:SLGC:FAMC' => new XrefFamily(I18N::translate('Parents')), |
||
| 1303 | 'INDI:SLGC:PLAC' => new PlaceLivingOrdinance(I18N::translate('Place of LDS child sealing')), |
||
| 1304 | 'INDI:SLGC:STAT' => new LdsChildSealingDateStatus(I18N::translate('Status')), |
||
| 1305 | 'INDI:SLGC:STAT:DATE' => new ChangeDate(I18N::translate('Status change date')), |
||
| 1306 | 'INDI:SLGC:TEMP' => new TempleCode(I18N::translate('Temple')), |
||
| 1307 | 'INDI:SOUR' => new XrefSource(I18N::translate('Source')), |
||
| 1308 | 'INDI:SOUR:DATA' => new SourceData(I18N::translate('Data')), |
||
| 1309 | 'INDI:SOUR:DATA:DATE' => new EntryRecordingDate(I18N::translate('Date of entry in original source')), |
||
| 1310 | 'INDI:SOUR:DATA:TEXT' => new TextFromSource(I18N::translate('Text')), |
||
| 1311 | 'INDI:SOUR:EVEN' => new EventTypeCitedFrom(I18N::translate('Event')), |
||
| 1312 | 'INDI:SOUR:EVEN:ROLE' => new RoleInEvent(I18N::translate('Role')), |
||
| 1313 | 'INDI:SOUR:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1314 | 'INDI:SOUR:PAGE' => new WhereWithinSource(I18N::translate('Citation details')), |
||
| 1315 | 'INDI:SOUR:QUAY' => new CertaintyAssessment(I18N::translate('Quality of data')), |
||
| 1316 | 'INDI:SSN' => new SocialSecurityNumber(I18N::translate('Social security number')), |
||
| 1317 | 'INDI:SUBM' => new XrefSubmitter(I18N::translate('Submitter')), |
||
| 1318 | 'INDI:TITL' => new NobilityTypeTitle(I18N::translate('Title')), |
||
| 1319 | 'INDI:WILL' => new Will(I18N::translate('Will')), |
||
| 1320 | 'NOTE' => new NoteRecord(I18N::translate('Note')), |
||
| 1321 | 'NOTE:CHAN' => new Change(I18N::translate('Last change')), |
||
| 1322 | 'NOTE:CHAN:DATE' => new ChangeDate(I18N::translate('Date of last change')), |
||
| 1323 | 'NOTE:CHAN:DATE:TIME' => new TimeValue(I18N::translate('Time')), |
||
| 1324 | 'NOTE:CHAN:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1325 | 'NOTE:CONC' => new SubmitterText(I18N::translate('Note')), |
||
| 1326 | 'NOTE:CONT' => new SubmitterText(I18N::translate('Continued')), |
||
| 1327 | 'NOTE:REFN' => new UserReferenceNumber(I18N::translate('Reference number')), |
||
| 1328 | 'NOTE:REFN:TYPE' => new UserReferenceType(I18N::translate('Type')), |
||
| 1329 | 'NOTE:RIN' => new AutomatedRecordId(I18N::translate('Record ID number')), |
||
| 1330 | 'NOTE:SOUR' => new XrefSource(I18N::translate('Source')), |
||
| 1331 | 'NOTE:SOUR:DATA' => new SourceData(I18N::translate('Data')), |
||
| 1332 | 'NOTE:SOUR:DATA:DATE' => new EntryRecordingDate(I18N::translate('Date of entry in original source')), |
||
| 1333 | 'NOTE:SOUR:DATA:TEXT' => new TextFromSource(I18N::translate('Text')), |
||
| 1334 | 'NOTE:SOUR:EVEN' => new EventTypeCitedFrom(I18N::translate('Event')), |
||
| 1335 | 'NOTE:SOUR:EVEN:ROLE' => new RoleInEvent(I18N::translate('Role')), |
||
| 1336 | 'NOTE:SOUR:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1337 | 'NOTE:SOUR:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1338 | 'NOTE:SOUR:PAGE' => new WhereWithinSource(I18N::translate('Citation details')), |
||
| 1339 | 'NOTE:SOUR:QUAY' => new CertaintyAssessment(I18N::translate('Quality of data')), |
||
| 1340 | 'OBJE' => new MediaRecord(I18N::translate('Media object')), |
||
| 1341 | 'OBJE:CHAN' => new Change(I18N::translate('Last change')), |
||
| 1342 | 'OBJE:CHAN:DATE' => new ChangeDate(I18N::translate('Date of last change')), |
||
| 1343 | 'OBJE:CHAN:DATE:TIME' => new TimeValue(I18N::translate('Time')), |
||
| 1344 | 'OBJE:CHAN:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1345 | 'OBJE:FILE' => new MultimediaFileReference(I18N::translate('Filename')), |
||
| 1346 | 'OBJE:FILE:FORM' => new MultimediaFormat(I18N::translate('Format')), |
||
| 1347 | 'OBJE:FILE:FORM:TYPE' => new SourceMediaType(I18N::translate('Media type')), |
||
| 1348 | 'OBJE:FILE:TITL' => new DescriptiveTitle(I18N::translate('Title')), |
||
| 1349 | 'OBJE:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1350 | 'OBJE:REFN' => new UserReferenceNumber(I18N::translate('Reference number')), |
||
| 1351 | 'OBJE:REFN:TYPE' => new UserReferenceType(I18N::translate('Type')), |
||
| 1352 | 'OBJE:RIN' => new AutomatedRecordId(I18N::translate('Record ID number')), |
||
| 1353 | 'OBJE:SOUR' => new XrefSource(I18N::translate('Source')), |
||
| 1354 | 'OBJE:SOUR:DATA' => new SourceData(I18N::translate('Data')), |
||
| 1355 | 'OBJE:SOUR:DATA:DATE' => new EntryRecordingDate(I18N::translate('Date of entry in original source')), |
||
| 1356 | 'OBJE:SOUR:DATA:TEXT' => new TextFromSource(I18N::translate('Text')), |
||
| 1357 | 'OBJE:SOUR:EVEN' => new EventTypeCitedFrom(I18N::translate('Event')), |
||
| 1358 | 'OBJE:SOUR:EVEN:ROLE' => new RoleInEvent(I18N::translate('Role')), |
||
| 1359 | 'OBJE:SOUR:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1360 | 'OBJE:SOUR:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1361 | 'OBJE:SOUR:PAGE' => new WhereWithinSource(I18N::translate('Citation details')), |
||
| 1362 | 'OBJE:SOUR:QUAY' => new CertaintyAssessment(I18N::translate('Quality of data')), |
||
| 1363 | 'REPO' => new RepositoryRecord(I18N::translate('Repository')), |
||
| 1364 | 'REPO:ADDR' => new AddressLine(I18N::translate('Address')), |
||
| 1365 | 'REPO:ADDR:ADR1' => new AddressLine1(I18N::translate('Address line 1')), |
||
| 1366 | 'REPO:ADDR:ADR2' => new AddressLine2(I18N::translate('Address line 2')), |
||
| 1367 | 'REPO:ADDR:ADR3' => new AddressLine3(I18N::translate('Address line 3')), |
||
| 1368 | 'REPO:ADDR:CITY' => new AddressCity(I18N::translate('City')), |
||
| 1369 | 'REPO:ADDR:CTRY' => new AddressCountry(I18N::translate('Country')), |
||
| 1370 | 'REPO:ADDR:POST' => new AddressPostalCode(I18N::translate('Postal code')), |
||
| 1371 | 'REPO:ADDR:STAE' => new AddressState(I18N::translate('State')), |
||
| 1372 | 'REPO:CHAN' => new Change(I18N::translate('Last change')), |
||
| 1373 | 'REPO:CHAN:DATE' => new ChangeDate(I18N::translate('Date of last change')), |
||
| 1374 | 'REPO:CHAN:DATE:TIME' => new TimeValue(I18N::translate('Time')), |
||
| 1375 | 'REPO:CHAN:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1376 | 'REPO:EMAIL' => new AddressEmail(I18N::translate('Email address')), |
||
| 1377 | 'REPO:FAX' => new AddressFax(I18N::translate('Fax')), |
||
| 1378 | 'REPO:NAME' => new NameOfRepository(I18N::translateContext('Repository', 'Name')), |
||
| 1379 | 'REPO:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1380 | 'REPO:PHON' => new PhoneNumber(I18N::translate('Phone')), |
||
| 1381 | 'REPO:REFN' => new UserReferenceNumber(I18N::translate('Reference number')), |
||
| 1382 | 'REPO:REFN:TYPE' => new UserReferenceType(I18N::translate('Type')), |
||
| 1383 | 'REPO:RIN' => new AutomatedRecordId(I18N::translate('Record ID number')), |
||
| 1384 | 'REPO:WWW' => new AddressWebPage(I18N::translate('URL')), |
||
| 1385 | 'SOUR' => new SourceRecord(I18N::translate('Source')), |
||
| 1386 | 'SOUR:ABBR' => new SourceFiledByEntry(I18N::translate('Abbreviation')), |
||
| 1387 | 'SOUR:AUTH' => new SourceOriginator(I18N::translate('Author')), |
||
| 1388 | 'SOUR:CHAN' => new Change(I18N::translate('Last change')), |
||
| 1389 | 'SOUR:CHAN:DATE' => new ChangeDate(I18N::translate('Date of last change')), |
||
| 1390 | 'SOUR:CHAN:DATE:TIME' => new TimeValue(I18N::translate('Time')), |
||
| 1391 | 'SOUR:CHAN:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1392 | 'SOUR:DATA' => new EmptyElement(I18N::translate('Data'), ['EVEN' => '0:M', 'AGNC' => '0:1', 'NOTE' => '0:M']), |
||
| 1393 | 'SOUR:DATA:AGNC' => new ResponsibleAgency(I18N::translate('Agency')), |
||
| 1394 | 'SOUR:DATA:EVEN' => new EventsRecorded(I18N::translate('Events')), |
||
| 1395 | 'SOUR:DATA:EVEN:DATE' => new DateValue(I18N::translate('Date range')), |
||
| 1396 | 'SOUR:DATA:EVEN:PLAC' => new SourceJurisdictionPlace(I18N::translate('Place')), |
||
| 1397 | 'SOUR:DATA:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1398 | 'SOUR:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1399 | 'SOUR:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1400 | 'SOUR:PUBL' => new SourcePublicationFacts(I18N::translate('Publication')), |
||
| 1401 | 'SOUR:REFN' => new UserReferenceNumber(I18N::translate('Reference number')), |
||
| 1402 | 'SOUR:REFN:TYPE' => new UserReferenceType(I18N::translate('Type')), |
||
| 1403 | 'SOUR:REPO' => new XrefRepository(I18N::translate('Repository')), |
||
| 1404 | 'SOUR:REPO:CALN' => new SourceCallNumber(I18N::translate('Call number')), |
||
| 1405 | 'SOUR:REPO:CALN:MEDI' => new SourceMediaType(I18N::translate('Media type')), |
||
| 1406 | 'SOUR:REPO:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1407 | 'SOUR:RIN' => new AutomatedRecordId(I18N::translate('Record ID number')), |
||
| 1408 | 'SOUR:TEXT' => new TextFromSource(I18N::translate('Text')), |
||
| 1409 | 'SOUR:TITL' => new DescriptiveTitle(I18N::translate('Title')), |
||
| 1410 | 'SUBM' => new SubmitterRecord(I18N::translate('Submitter')), |
||
| 1411 | 'SUBM:ADDR' => new AddressLine(I18N::translate('Address')), |
||
| 1412 | 'SUBM:ADDR:ADR1' => new AddressLine1(I18N::translate('Address line 1')), |
||
| 1413 | 'SUBM:ADDR:ADR2' => new AddressLine2(I18N::translate('Address line 2')), |
||
| 1414 | 'SUBM:ADDR:ADR3' => new AddressLine3(I18N::translate('Address line 3')), |
||
| 1415 | 'SUBM:ADDR:CITY' => new AddressCity(I18N::translate('City')), |
||
| 1416 | 'SUBM:ADDR:CTRY' => new AddressCountry(I18N::translate('Country')), |
||
| 1417 | 'SUBM:ADDR:POST' => new AddressPostalCode(I18N::translate('Postal code')), |
||
| 1418 | 'SUBM:ADDR:STAE' => new AddressState(I18N::translate('State')), |
||
| 1419 | 'SUBM:CHAN' => new Change(I18N::translate('Last change')), |
||
| 1420 | 'SUBM:CHAN:DATE' => new ChangeDate(I18N::translate('Date of last change')), |
||
| 1421 | 'SUBM:CHAN:DATE:TIME' => new TimeValue(I18N::translate('Time')), |
||
| 1422 | 'SUBM:CHAN:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1423 | 'SUBM:EMAIL' => new AddressEmail(I18N::translate('Email address')), |
||
| 1424 | 'SUBM:FAX' => new AddressFax(I18N::translate('Fax')), |
||
| 1425 | 'SUBM:LANG' => new LanguageId(I18N::translate('Language')), |
||
| 1426 | 'SUBM:NAME' => new SubmitterName(I18N::translate('Name')), |
||
| 1427 | 'SUBM:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1428 | 'SUBM:OBJE' => new XrefMedia(I18N::translate('Media object')), |
||
| 1429 | 'SUBM:PHON' => new PhoneNumber(I18N::translate('Phone')), |
||
| 1430 | 'SUBM:RFN' => new SubmitterRegisteredRfn(I18N::translate('Record file number')), |
||
| 1431 | 'SUBM:RIN' => new AutomatedRecordId(I18N::translate('Record ID number')), |
||
| 1432 | 'SUBM:WWW' => new AddressWebPage(I18N::translate('URL')), |
||
| 1433 | 'SUBN' => new SubmissionRecord(I18N::translate('Submission')), |
||
| 1434 | 'SUBN:ANCE' => new GenerationsOfAncestors(I18N::translate('Generations of ancestors')), |
||
| 1435 | 'SUBN:CHAN' => new Change(I18N::translate('Last change')), |
||
| 1436 | 'SUBN:CHAN:DATE' => new ChangeDate(I18N::translate('Date of last change')), |
||
| 1437 | 'SUBN:CHAN:DATE:TIME' => new TimeValue(I18N::translate('Time')), |
||
| 1438 | 'SUBN:CHAN:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1439 | 'SUBN:DESC' => new GenerationsOfDescendants(I18N::translate('Generations of descendants')), |
||
| 1440 | 'SUBN:FAMF' => new NameOfFamilyFile(I18N::translate('Family file')), |
||
| 1441 | 'SUBN:NOTE' => new NoteStructure(I18N::translate('Note')), |
||
| 1442 | 'SUBN:ORDI' => new OrdinanceProcessFlag(I18N::translate('Ordinance')), |
||
| 1443 | 'SUBN:RIN' => new AutomatedRecordId(I18N::translate('Record ID number')), |
||
| 1444 | 'SUBN:SUBM' => new XrefSubmitter(I18N::translate('Submitter')), |
||
| 1445 | 'SUBN:TEMP' => new TempleCode(/* I18N: https://en.wikipedia.org/wiki/Temple_(LDS_Church)*/ I18N::translate('Temple')), |
||
| 1446 | 'TRLR' => new EmptyElement(I18N::translate('Trailer')), |
||
| 1447 | ]; |
||
| 1450 |