diff --git a/data/evidencestyle/evidencefieldgenerator.py b/data/evidencestyle/evidencefieldgenerator.py index 753ad5dc2..5a66461cf 100644 --- a/data/evidencestyle/evidencefieldgenerator.py +++ b/data/evidencestyle/evidencefieldgenerator.py @@ -78,22 +78,22 @@ with open(csvfilename, 'rb') as csvfile: if row[CATCOL]: cat = row[CATCOL].strip() cattype = row[CATTYPECOL].strip() - type = row[TYPECOL].strip() + types = row[TYPECOL].strip() descr = row[DESCRCOL].strip() source_type = row[IDENTCOL].strip() if descr: - source_descr = '%s - %s - %s (%s)' % (type, cattype, cat, descr) + source_descr = '%s - %s - %s (%s)' % (cat, cattype, types, descr) source_descr_code = "_('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { "\ - " 'first': _('" + type + "'),"\ + " 'first': _('" + cat + "'),"\ " 'sec': _('" + cattype + "'),"\ - " 'third': _('" + cat + "'),"\ + " 'third': _('" + types + "'),"\ " 'fourth': _('" + descr + "')}" else: - source_descr = '%s - %s - %s' % (type, cattype, cat) + source_descr = '%s - %s - %s' % (cat, cattype, types) source_descr_code = "_('%(first)s - %(sec)s - %(third)s') % { "\ - " 'first': _('" + type + "'),"\ + " 'first': _('" + cat + "'),"\ " 'sec': _('" + cattype + "'),"\ - " 'third': _('" + cat + "')}" + " 'third': _('" + types + "')}" if source_type in TYPE2CITEMAP: assert TYPE2CITEMAP[source_type] ['descr'] == source_descr, source_type + ' ' + TYPE2CITEMAP[source_type] ['descr'] + ' NOT ' + source_descr else: @@ -162,7 +162,10 @@ for source_type in allkeys: code += '\n # Localization of the different source types\n'\ + datamap + ' ]\n' -code += "\n #templates for the source types defined\n" +code += "\n #templates for the source types defined\n"\ + " # F: Full reference\n"\ + " # S: Short reference (if F used once, use S afterwards)\n" \ + " # L: List reference (for in bibliography list)\n" code += ' EVIDENCETEMPLATES = {\n' for source_type in allkeys: code += " '" + source_type + "': {\n" diff --git a/gramps/gen/lib/srcattrtype.py b/gramps/gen/lib/srcattrtype.py index 344dee9e3..0ca604cef 100644 --- a/gramps/gen/lib/srcattrtype.py +++ b/gramps/gen/lib/srcattrtype.py @@ -1407,179 +1407,182 @@ class SrcAttributeType(GrampsType): # Localization of the different source types _SRCTYPEVAL_MAP = [ - (ESM100, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Research Report'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts')}, "Research Report - Archived Material - Archives & Artifacts"), - (ESM101, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Unpublished narrative'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts')}, "Unpublished narrative - Archived Material - Archives & Artifacts"), - (ESM102, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Vertical file'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts')}, "Vertical file - Archived Material - Archives & Artifacts"), - (ESM103, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('FHL-GSU film'), 'sec': _('Preservation Film'), 'third': _('Archives & Artifacts')}, "FHL-GSU film - Preservation Film - Archives & Artifacts"), - (ESM104, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('In-house film'), 'sec': _('Preservation Film'), 'third': _('Archives & Artifacts')}, "In-house film - Preservation Film - Archives & Artifacts"), - (ESM105, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Artifact'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Artifact - Private Holdings - Archives & Artifacts"), - (ESM106, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Diary or journal, etc.'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Diary or journal, etc. - Private Holdings - Archives & Artifacts"), - (ESM107, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Family Bible Records'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Family Bible Records - Private Holdings - Archives & Artifacts"), - (ESM108, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Family Chart or Group Sheet'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Family Chart or Group Sheet - Private Holdings - Archives & Artifacts"), - (ESM109, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Historic letter'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Historic letter - Private Holdings - Archives & Artifacts"), - (ESM110, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Interview tape & transcript'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Interview tape & transcript - Private Holdings - Archives & Artifacts"), - (ESM111, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Legal document, unrecorded'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Legal document, unrecorded - Private Holdings - Archives & Artifacts"), - (ESM112, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Personal correspondence'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Personal correspondence - Private Holdings - Archives & Artifacts"), - (ESM113, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Personal e-mail'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Personal e-mail - Private Holdings - Archives & Artifacts"), - (ESM114, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Research Report'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Research Report - Private Holdings - Archives & Artifacts"), - (ESM115, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Tradition, recorded'), 'sec': _('Private Holdings'), 'third': _('Archives & Artifacts')}, "Tradition, recorded - Private Holdings - Archives & Artifacts"), - (ESM161, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Bound volume'), 'sec': _('Corporate Records'), 'third': _('Business & institutional Records')}, "Bound volume - Corporate Records - Business & institutional Records"), - (ESM162, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Document (loose record)'), 'sec': _('Corporate Records'), 'third': _('Business & institutional Records')}, "Document (loose record) - Corporate Records - Business & institutional Records"), - (ESM163, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Extract supplied by staff'), 'sec': _('Corporate Records'), 'third': _('Business & institutional Records')}, "Extract supplied by staff - Corporate Records - Business & institutional Records"), - (ESM164, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Microfilm'), 'sec': _('Corporate Records'), 'third': _('Business & institutional Records')}, "Microfilm - Corporate Records - Business & institutional Records"), - (ESM165, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Online database'), 'sec': _('Corporate Records'), 'third': _('Business & institutional Records')}, "Online database - Corporate Records - Business & institutional Records"), - (ESM166, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Online image'), 'sec': _('Corporate Records'), 'third': _('Business & institutional Records')}, "Online image - Corporate Records - Business & institutional Records"), - (ESM167, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Application file'), 'sec': _('Lineage-society Records'), 'third': _('Business & institutional Records')}, "Application file - Lineage-society Records - Business & institutional Records"), - (ESM168, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Online database'), 'sec': _('Lineage-society Records'), 'third': _('Business & institutional Records')}, "Online database - Lineage-society Records - Business & institutional Records"), - (ESM169, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archived in-house'), 'sec': _('Organizational Records'), 'third': _('Business & institutional Records')}, "Archived in-house - Organizational Records - Business & institutional Records"), - (ESM170, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archived off-site'), 'sec': _('Organizational Records'), 'third': _('Business & institutional Records')}, "Archived off-site - Organizational Records - Business & institutional Records"), - (ESM171, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Genetic testing'), 'sec': _('Professional Reports'), 'third': _('Business & institutional Records')}, "Genetic testing - Professional Reports - Business & institutional Records"), - (ESM172, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Historical research: corporate'), 'sec': _('Professional Reports'), 'third': _('Business & institutional Records')}, "Historical research: corporate - Professional Reports - Business & institutional Records"), - (ESM173, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Historical research: online'), 'sec': _('Professional Reports'), 'third': _('Business & institutional Records')}, "Historical research: online - Professional Reports - Business & institutional Records"), - (ESM174, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Administrative material'), 'sec': _('School Records'), 'third': _('Business & institutional Records')}, "Administrative material - School Records - Business & institutional Records"), - (ESM175, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Student transcript'), 'sec': _('School Records'), 'third': _('Business & institutional Records')}, "Student transcript - School Records - Business & institutional Records"), - (ESM209, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Office records'), 'sec': _('Cemetery Office Records'), 'third': _('Cemetery Records'), 'fourth': _('personally used')}, "Office records - Cemetery Office Records - Cemetery Records (personally used)"), - (ESM210, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Office records'), 'sec': _('Cemetery Office Records'), 'third': _('Cemetery Records'), 'fourth': _('supplied by staff')}, "Office records - Cemetery Office Records - Cemetery Records (supplied by staff)"), - (ESM211, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Online images'), 'sec': _('Cemetery Office Records'), 'third': _('Cemetery Records')}, "Online images - Cemetery Office Records - Cemetery Records"), - (ESM212, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Preservation film, FHL-GSU'), 'sec': _('Cemetery Office Records'), 'third': _('Cemetery Records')}, "Preservation film, FHL-GSU - Cemetery Office Records - Cemetery Records"), - (ESM213, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Grave markers'), 'sec': _('Markers & Memorials (Originals)'), 'third': _('Cemetery Records'), 'fourth': _('rural')}, "Grave markers - Markers & Memorials (Originals) - Cemetery Records (rural)"), - (ESM214, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Grave markers'), 'sec': _('Markers & Memorials (Originals)'), 'third': _('Cemetery Records'), 'fourth': _('urban')}, "Grave markers - Markers & Memorials (Originals) - Cemetery Records (urban)"), - (ESM215, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Images online'), 'sec': _('Markers & Memorials (Originals)'), 'third': _('Cemetery Records')}, "Images online - Markers & Memorials (Originals) - Cemetery Records"), - (ESM216, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Memorial plaques'), 'sec': _('Markers & Memorials (Originals)'), 'third': _('Cemetery Records')}, "Memorial plaques - Markers & Memorials (Originals) - Cemetery Records"), - (ESM217, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Cemetery abstracts'), 'sec': _('Derivatives'), 'third': _('Cemetery Records'), 'fourth': _('vertical file')}, "Cemetery abstracts - Derivatives - Cemetery Records (vertical file)"), - (ESM218, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Cemetery abstracts'), 'sec': _('Derivatives'), 'third': _('Cemetery Records'), 'fourth': _('card file')}, "Cemetery abstracts - Derivatives - Cemetery Records (card file)"), - (ESM219, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Database online'), 'sec': _('Derivatives'), 'third': _('Cemetery Records')}, "Database online - Derivatives - Cemetery Records"), - (ESM237, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local copy'), 'sec': _('Original manuscripts (U.S.)'), 'third': _('Census Records'), 'fourth': _('federal census')}, "Local copy - Original manuscripts (U.S.) - Census Records (federal census)"), - (ESM238, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('National Archives copy'), 'sec': _('Original manuscripts (U.S.)'), 'third': _('Census Records')}, "National Archives copy - Original manuscripts (U.S.) - Census Records"), - (ESM239, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('CD/DVD'), 'sec': _('Digital Images'), 'third': _('Census Records')}, "CD/DVD - Digital Images - Census Records"), - (ESM240, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Online commercial site'), 'sec': _('Digital Images'), 'third': _('Census Records')}, "Online commercial site - Digital Images - Census Records"), - (ESM241, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Online archives'), 'sec': _('Digital Images'), 'third': _('Census Records'), 'fourth': _('France')}, "Online archives - Digital Images - Census Records (France)"), - (ESM242, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Online commercial site'), 'sec': _('Digital Images'), 'third': _('Census Records'), 'fourth': _('U.K. Wales')}, "Online commercial site - Digital Images - Census Records (U.K. Wales)"), - (ESM243, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Native-American tribal census'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records')}, "Native-American tribal census - Microfilm (U.S.) - Census Records"), - (ESM244, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('“Nonpopulation” schedules'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records'), 'fourth': _('NARA film')}, "“Nonpopulation” schedules - Microfilm (U.S.) - Census Records (NARA film)"), - (ESM245, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('“Nonpopulation” schedules'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records'), 'fourth': _('FHL-GSU preservation film')}, "“Nonpopulation” schedules - Microfilm (U.S.) - Census Records (FHL-GSU preservation film)"), - (ESM246, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('“Nonpopulation” schedules'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records'), 'fourth': _('UNC microfilm publication')}, "“Nonpopulation” schedules - Microfilm (U.S.) - Census Records (UNC microfilm publication)"), - (ESM247, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Population schedules'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records'), 'fourth': _('1790-1840')}, "Population schedules - Microfilm (U.S.) - Census Records (1790-1840)"), - (ESM248, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Population schedules'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records'), 'fourth': _('1850-1870')}, "Population schedules - Microfilm (U.S.) - Census Records (1850-1870)"), - (ESM249, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Population schedules'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records'), 'fourth': _('1850-1860: slaves')}, "Population schedules - Microfilm (U.S.) - Census Records (1850-1860: slaves)"), - (ESM250, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Population schedules'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records'), 'fourth': _('1880-1930')}, "Population schedules - Microfilm (U.S.) - Census Records (1880-1930)"), - (ESM251, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Population schedules'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records'), 'fourth': _('State-level copies')}, "Population schedules - Microfilm (U.S.) - Census Records (State-level copies)"), - (ESM252, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('State-sponsored censuses'), 'sec': _('Microfilm (U.S.)'), 'third': _('Census Records')}, "State-sponsored censuses - Microfilm (U.S.) - Census Records"), - (ESM253, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Database'), 'sec': _('Derivatives'), 'third': _('Census Records'), 'fourth': _('CD/DVD')}, "Database - Derivatives - Census Records (CD/DVD)"), - (ESM254, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Database'), 'sec': _('Derivatives'), 'third': _('Census Records'), 'fourth': _('online')}, "Database - Derivatives - Census Records (online)"), - (ESM255, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Soundex & Miracode, microfilm'), 'sec': _('Derivatives'), 'third': _('Census Records')}, "Soundex & Miracode, microfilm - Derivatives - Census Records"), - (ESM256, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Statistical database'), 'sec': _('Derivatives'), 'third': _('Census Records'), 'fourth': _('online')}, "Statistical database - Derivatives - Census Records (online)"), - (ESM311, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Named volume'), 'sec': _('Church Books'), 'third': _('Church Records'), 'fourth': _('held by church')}, "Named volume - Church Books - Church Records (held by church)"), - (ESM312, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Named volume'), 'sec': _('Church Books'), 'third': _('Church Records'), 'fourth': _('archived off-site')}, "Named volume - Church Books - Church Records (archived off-site)"), - (ESM313, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Numbered volume'), 'sec': _('Church Books'), 'third': _('Church Records'), 'fourth': _('archived off-site')}, "Numbered volume - Church Books - Church Records (archived off-site)"), - (ESM314, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Digitized online'), 'sec': _('Image Copies'), 'third': _('Church Records')}, "Digitized online - Image Copies - Church Records"), - (ESM315, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Microfilm'), 'sec': _('Image Copies'), 'third': _('Church Records'), 'fourth': _('FHL-GSU preservation')}, "Microfilm - Image Copies - Church Records (FHL-GSU preservation)"), - (ESM316, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Microfilm'), 'sec': _('Image Copies'), 'third': _('Church Records'), 'fourth': _('LDS records at FHL')}, "Microfilm - Image Copies - Church Records (LDS records at FHL)"), - (ESM317, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Microfilm publication'), 'sec': _('Image Copies'), 'third': _('Church Records')}, "Microfilm publication - Image Copies - Church Records"), - (ESM318, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Church-issued certificate'), 'sec': _('Derivatives'), 'third': _('Church Records')}, "Church-issued certificate - Derivatives - Church Records"), - (ESM319, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Church record book, recopied'), 'sec': _('Derivatives'), 'third': _('Church Records')}, "Church record book, recopied - Derivatives - Church Records"), - (ESM320, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Church-records database'), 'sec': _('Derivatives'), 'third': _('Church Records'), 'fourth': _('online')}, "Church-records database - Derivatives - Church Records (online)"), - (ESM373, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local'), 'sec': _('Original Records'), 'third': _('Local & State Records: Courts & Governance'), 'fourth': _('Case files')}, "Local - Original Records - Local & State Records: Courts & Governance (Case files)"), - (ESM374, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local'), 'sec': _('Original Records'), 'third': _('Local & State Records: Courts & Governance'), 'fourth': _('Record Books')}, "Local - Original Records - Local & State Records: Courts & Governance (Record Books)"), - (ESM375, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local'), 'sec': _('Original Records'), 'third': _('Local & State Records: Courts & Governance'), 'fourth': _('Record Books, archived off-site')}, "Local - Original Records - Local & State Records: Courts & Governance (Record Books, archived off-site)"), - (ESM376, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('State-level'), 'sec': _('Original Records'), 'third': _('Local & State Records: Courts & Governance'), 'fourth': _('Appeals court record books')}, "State-level - Original Records - Local & State Records: Courts & Governance (Appeals court record books)"), - (ESM377, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('State-level'), 'sec': _('Original Records'), 'third': _('Local & State Records: Courts & Governance'), 'fourth': _('Legislative petitions & files')}, "State-level - Original Records - Local & State Records: Courts & Governance (Legislative petitions & files)"), - (ESM378, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('CD/DVD'), 'sec': _('Image Copies'), 'third': _('Local & State Records: Courts & Governance')}, "CD/DVD - Image Copies - Local & State Records: Courts & Governance"), - (ESM379, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Microfilm'), 'sec': _('Image Copies'), 'third': _('Local & State Records: Courts & Governance'), 'fourth': _('Archival preservation copy')}, "Microfilm - Image Copies - Local & State Records: Courts & Governance (Archival preservation copy)"), - (ESM380, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Microfilm'), 'sec': _('Image Copies'), 'third': _('Local & State Records: Courts & Governance'), 'fourth': _('FHL-GSU preservation copy')}, "Microfilm - Image Copies - Local & State Records: Courts & Governance (FHL-GSU preservation copy)"), - (ESM381, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Online'), 'sec': _('Image Copies'), 'third': _('Local & State Records: Courts & Governance')}, "Online - Image Copies - Local & State Records: Courts & Governance"), - (ESM382, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Databases'), 'sec': _('Derivatives'), 'third': _('Local & State Records: Courts & Governance'), 'fourth': _('online')}, "Databases - Derivatives - Local & State Records: Courts & Governance (online)"), - (ESM421, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('File items'), 'sec': _('Local Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "File items - Local Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM422, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Files moved to state archives'), 'sec': _('Local Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "Files moved to state archives - Local Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM423, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Registers'), 'sec': _('Local Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'fourth': _('Named volume')}, "Registers - Local Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records (Named volume)"), - (ESM424, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Registers'), 'sec': _('Local Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'fourth': _('Numbered volume')}, "Registers - Local Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records (Numbered volume)"), - (ESM425, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Vital-records certificate'), 'sec': _('Local Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "Vital-records certificate - Local Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM426, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Vital-records register'), 'sec': _('Local Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "Vital-records register - Local Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM427, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Vital records, amended'), 'sec': _('Local Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "Vital records, amended - Local Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM428, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Vital records, delayed'), 'sec': _('Local Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "Vital records, delayed - Local Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM429, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Miscellaneous file'), 'sec': _('State-level Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "Miscellaneous file - State-level Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM430, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Vital-records certificate'), 'sec': _('State-level Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "Vital-records certificate - State-level Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM431, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Vital-records register'), 'sec': _('State-level Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "Vital-records register - State-level Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM432, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Vital records, amended'), 'sec': _('State-level Records'), 'third': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records')}, "Vital records, amended - State-level Records - Local & State Records: Licenses, Registrations, Rolls & Vital Records"), - (ESM487, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local'), 'sec': _('Original Records'), 'third': _('Local & State Records: Property & Probates'), 'fourth': _('Case files')}, "Local - Original Records - Local & State Records: Property & Probates (Case files)"), - (ESM488, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local'), 'sec': _('Original Records'), 'third': _('Local & State Records: Property & Probates'), 'fourth': _('Registers')}, "Local - Original Records - Local & State Records: Property & Probates (Registers)"), - (ESM489, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local'), 'sec': _('Original Records'), 'third': _('Local & State Records: Property & Probates'), 'fourth': _('Tract book')}, "Local - Original Records - Local & State Records: Property & Probates (Tract book)"), - (ESM490, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('State level'), 'sec': _('Original Records'), 'third': _('Local & State Records: Property & Probates'), 'fourth': _('Land-grant register')}, "State level - Original Records - Local & State Records: Property & Probates (Land-grant register)"), - (ESM491, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('State level'), 'sec': _('Original Records'), 'third': _('Local & State Records: Property & Probates'), 'fourth': _('Land warrants: loose')}, "State level - Original Records - Local & State Records: Property & Probates (Land warrants: loose)"), - (ESM492, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('CD/DVD'), 'sec': _('Image Copies'), 'third': _('Local & State Records: Property & Probates')}, "CD/DVD - Image Copies - Local & State Records: Property & Probates"), - (ESM493, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Microfilm'), 'sec': _('Image Copies'), 'third': _('Local & State Records: Property & Probates')}, "Microfilm - Image Copies - Local & State Records: Property & Probates"), - (ESM494, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Online'), 'sec': _('Image Copies'), 'third': _('Local & State Records: Property & Probates')}, "Online - Image Copies - Local & State Records: Property & Probates"), - (ESM495, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Abstracts'), 'sec': _('Derivatives'), 'third': _('Local & State Records: Property & Probates'), 'fourth': _('online')}, "Abstracts - Derivatives - Local & State Records: Property & Probates (online)"), - (ESM496, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Database'), 'sec': _('Derivatives'), 'third': _('Local & State Records: Property & Probates'), 'fourth': _('online')}, "Database - Derivatives - Local & State Records: Property & Probates (online)"), - (ESM539, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Audio recordings'), 'sec': _('Original Materials (U.S.)'), 'third': _('National Government Records'), 'fourth': _('National Archives')}, "Audio recordings - Original Materials (U.S.) - National Government Records (National Archives)"), - (ESM540, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Manuscripts'), 'sec': _('Original Materials (U.S.)'), 'third': _('National Government Records'), 'fourth': _('Library of Congress')}, "Manuscripts - Original Materials (U.S.) - National Government Records (Library of Congress)"), - (ESM541, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Manuscripts'), 'sec': _('Original Materials (U.S.)'), 'third': _('National Government Records'), 'fourth': _('National Archives')}, "Manuscripts - Original Materials (U.S.) - National Government Records (National Archives)"), - (ESM542, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Manuscripts'), 'sec': _('Original Materials (U.S.)'), 'third': _('National Government Records'), 'fourth': _('National Archives-Regional')}, "Manuscripts - Original Materials (U.S.) - National Government Records (National Archives-Regional)"), - (ESM543, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Maps'), 'sec': _('Original Materials (U.S.)'), 'third': _('National Government Records'), 'fourth': _('National Archives')}, "Maps - Original Materials (U.S.) - National Government Records (National Archives)"), - (ESM544, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Photographs'), 'sec': _('Original Materials (U.S.)'), 'third': _('National Government Records'), 'fourth': _('Library of Congress')}, "Photographs - Original Materials (U.S.) - National Government Records (Library of Congress)"), - (ESM545, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Railroad Retirement Board'), 'sec': _('Original Materials (U.S.)'), 'third': _('National Government Records')}, "Railroad Retirement Board - Original Materials (U.S.) - National Government Records"), - (ESM546, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Social Security Administration'), 'sec': _('Original Materials (U.S.)'), 'third': _('National Government Records')}, "Social Security Administration - Original Materials (U.S.) - National Government Records"), - (ESM547, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('CD-ROM publication'), 'sec': _('Databases'), 'third': _('National Government Records')}, "CD-ROM publication - Databases - National Government Records"), - (ESM548, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Online'), 'sec': _('Databases'), 'third': _('National Government Records'), 'fourth': _('National Archives (Australia)')}, "Online - Databases - National Government Records (National Archives (Australia))"), - (ESM549, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Online'), 'sec': _('Databases'), 'third': _('National Government Records'), 'fourth': _('National Archives (Canada)')}, "Online - Databases - National Government Records (National Archives (Canada))"), - (ESM550, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Online'), 'sec': _('Databases'), 'third': _('National Government Records'), 'fourth': _('National Archives (U.K.)')}, "Online - Databases - National Government Records (National Archives (U.K.))"), - (ESM551, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Online'), 'sec': _('Databases'), 'third': _('National Government Records'), 'fourth': _('National Archives (U.S.)')}, "Online - Databases - National Government Records (National Archives (U.S.))"), - (ESM552, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Archives microfilm'), 'sec': _('Image Copies'), 'third': _('National Government Records'), 'fourth': _('NARA Style citation')}, "National Archives microfilm - Image Copies - National Government Records (NARA Style citation)"), - (ESM553, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Archives microfilm'), 'sec': _('Image Copies'), 'third': _('National Government Records'), 'fourth': _('Publications Style citation')}, "National Archives microfilm - Image Copies - National Government Records (Publications Style citation)"), - (ESM554, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Online:'), 'sec': _('Image Copies'), 'third': _('National Government Records'), 'fourth': _('Library of Congress')}, "Online: - Image Copies - National Government Records (Library of Congress)"), - (ESM555, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Online:'), 'sec': _('Image Copies'), 'third': _('National Government Records'), 'fourth': _('National Archives (U.S.)')}, "Online: - Image Copies - National Government Records (National Archives (U.S.))"), - (ESM556, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Online:'), 'sec': _('Image Copies'), 'third': _('National Government Records'), 'fourth': _('Patent & Trademark Office (U.S.)')}, "Online: - Image Copies - National Government Records (Patent & Trademark Office (U.S.))"), - (ESM646, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Book'), 'sec': _('Print Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'fourth': _('basic format')}, "Book - Print Publications - Publications: Books, CDs, Maps, Leaflets & Videos (basic format)"), - (ESM647, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Book'), 'sec': _('Print Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'fourth': _('chapter')}, "Book - Print Publications - Publications: Books, CDs, Maps, Leaflets & Videos (chapter)"), - (ESM648, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Book'), 'sec': _('Print Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'fourth': _('edited')}, "Book - Print Publications - Publications: Books, CDs, Maps, Leaflets & Videos (edited)"), - (ESM649, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Book'), 'sec': _('Print Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'fourth': _('multivolume set')}, "Book - Print Publications - Publications: Books, CDs, Maps, Leaflets & Videos (multivolume set)"), - (ESM650, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Book'), 'sec': _('Print Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'fourth': _('reprint')}, "Book - Print Publications - Publications: Books, CDs, Maps, Leaflets & Videos (reprint)"), - (ESM651, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Book'), 'sec': _('Print Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'fourth': _('revised edition')}, "Book - Print Publications - Publications: Books, CDs, Maps, Leaflets & Videos (revised edition)"), - (ESM652, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Leaflet'), 'sec': _('Print Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos')}, "Leaflet - Print Publications - Publications: Books, CDs, Maps, Leaflets & Videos"), - (ESM653, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Map'), 'sec': _('Print Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos')}, "Map - Print Publications - Publications: Books, CDs, Maps, Leaflets & Videos"), - (ESM654, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Audio book'), 'sec': _('Electronic Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos')}, "Audio book - Electronic Publications - Publications: Books, CDs, Maps, Leaflets & Videos"), - (ESM655, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('CD/DVD book (text)'), 'sec': _('Electronic Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos')}, "CD/DVD book (text) - Electronic Publications - Publications: Books, CDs, Maps, Leaflets & Videos"), - (ESM656, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Video'), 'sec': _('Electronic Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos')}, "Video - Electronic Publications - Publications: Books, CDs, Maps, Leaflets & Videos"), - (ESM657, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Website as “book”'), 'sec': _('Electronic Publications'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos')}, "Website as “book” - Electronic Publications - Publications: Books, CDs, Maps, Leaflets & Videos"), - (ESM658, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('CD/DVD publication'), 'sec': _('Image Copies'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos')}, "CD/DVD publication - Image Copies - Publications: Books, CDs, Maps, Leaflets & Videos"), - (ESM659, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Microfilm'), 'sec': _('Image Copies'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'fourth': _('FHL-GSU preservation')}, "Microfilm - Image Copies - Publications: Books, CDs, Maps, Leaflets & Videos (FHL-GSU preservation)"), - (ESM660, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Microfilm publication'), 'sec': _('Image Copies'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos')}, "Microfilm publication - Image Copies - Publications: Books, CDs, Maps, Leaflets & Videos"), - (ESM661, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Online publication'), 'sec': _('Image Copies'), 'third': _('Publications: Books, CDs, Maps, Leaflets & Videos')}, "Online publication - Image Copies - Publications: Books, CDs, Maps, Leaflets & Videos"), - (ESM727, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Basic Format'), 'sec': _('Book:'), 'third': _('Publications: Legal Works & Government Documents')}, "Basic Format - Book: - Publications: Legal Works & Government Documents"), - (ESM728, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Case Reporters'), 'sec': _('Legal Reference Works'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('Series named for editor')}, "Case Reporters - Legal Reference Works - Publications: Legal Works & Government Documents (Series named for editor)"), - (ESM729, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Case Reporters'), 'sec': _('Legal Reference Works'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('Standardized series')}, "Case Reporters - Legal Reference Works - Publications: Legal Works & Government Documents (Standardized series)"), - (ESM730, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Codes & statutes, online'), 'sec': _('Legal Reference Works'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('State database')}, "Codes & statutes, online - Legal Reference Works - Publications: Legal Works & Government Documents (State database)"), - (ESM731, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Codes & statutes, online'), 'sec': _('Legal Reference Works'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('U.S. Code')}, "Codes & statutes, online - Legal Reference Works - Publications: Legal Works & Government Documents (U.S. Code)"), - (ESM732, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Slip laws:'), 'sec': _('Legal Reference Works'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('federal')}, "Slip laws: - Legal Reference Works - Publications: Legal Works & Government Documents (federal)"), - (ESM733, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Statutes:'), 'sec': _('Legal Reference Works'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('federal')}, "Statutes: - Legal Reference Works - Publications: Legal Works & Government Documents (federal)"), - (ESM734, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Statutes:'), 'sec': _('Legal Reference Works'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('state')}, "Statutes: - Legal Reference Works - Publications: Legal Works & Government Documents (state)"), - (ESM735, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Congressional Records'), 'sec': _('Printed Government Documents'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('Citing volume from title page')}, "Congressional Records - Printed Government Documents - Publications: Legal Works & Government Documents (Citing volume from title page)"), - (ESM736, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Congressional Records'), 'sec': _('Printed Government Documents'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('Traditional academic style')}, "Congressional Records - Printed Government Documents - Publications: Legal Works & Government Documents (Traditional academic style)"), - (ESM737, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Online images'), 'sec': _('Printed Government Documents'), 'third': _('Publications: Legal Works & Government Documents')}, "Online images - Printed Government Documents - Publications: Legal Works & Government Documents"), - (ESM738, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Archives (U.S.) guides'), 'sec': _('Printed Government Documents'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('Descriptive pamphlet, online')}, "National Archives (U.S.) guides - Printed Government Documents - Publications: Legal Works & Government Documents (Descriptive pamphlet, online)"), - (ESM739, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Archives (U.S.) guides'), 'sec': _('Printed Government Documents'), 'third': _('Publications: Legal Works & Government Documents'), 'fourth': _('Preliminary inventory, microfilmed')}, "National Archives (U.S.) guides - Printed Government Documents - Publications: Legal Works & Government Documents (Preliminary inventory, microfilmed)"), - (ESM779, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Journal articles'), 'sec': _('Periodicals'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'fourth': _('Print editions')}, "Journal articles - Periodicals - Publications: Periodicals, Broadcasts & Web Miscellanea (Print editions)"), - (ESM780, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Journal articles'), 'sec': _('Periodicals'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'fourth': _('Online archives of print journals')}, "Journal articles - Periodicals - Publications: Periodicals, Broadcasts & Web Miscellanea (Online archives of print journals)"), - (ESM781, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Journal articles'), 'sec': _('Periodicals'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'fourth': _('Online journals')}, "Journal articles - Periodicals - Publications: Periodicals, Broadcasts & Web Miscellanea (Online journals)"), - (ESM782, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Magazine articles'), 'sec': _('Periodicals'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'fourth': _('Print editions')}, "Magazine articles - Periodicals - Publications: Periodicals, Broadcasts & Web Miscellanea (Print editions)"), - (ESM783, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Magazine articles'), 'sec': _('Periodicals'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'fourth': _('Online reprints, random items')}, "Magazine articles - Periodicals - Publications: Periodicals, Broadcasts & Web Miscellanea (Online reprints, random items)"), - (ESM784, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Newsletter articles'), 'sec': _('Periodicals'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'fourth': _('Print editions')}, "Newsletter articles - Periodicals - Publications: Periodicals, Broadcasts & Web Miscellanea (Print editions)"), - (ESM785, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Newspaper articles'), 'sec': _('Periodicals'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'fourth': _('Print editions')}, "Newspaper articles - Periodicals - Publications: Periodicals, Broadcasts & Web Miscellanea (Print editions)"), - (ESM786, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Newspaper articles'), 'sec': _('Periodicals'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'fourth': _('Online archives')}, "Newspaper articles - Periodicals - Publications: Periodicals, Broadcasts & Web Miscellanea (Online archives)"), - (ESM787, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Blogs'), 'sec': _('Broadcasts & Web Miscellanea'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea')}, "Blogs - Broadcasts & Web Miscellanea - Publications: Periodicals, Broadcasts & Web Miscellanea"), - (ESM788, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Discussion forums & lists'), 'sec': _('Broadcasts & Web Miscellanea'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea')}, "Discussion forums & lists - Broadcasts & Web Miscellanea - Publications: Periodicals, Broadcasts & Web Miscellanea"), - (ESM789, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Podcasts'), 'sec': _('Broadcasts & Web Miscellanea'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea')}, "Podcasts - Broadcasts & Web Miscellanea - Publications: Periodicals, Broadcasts & Web Miscellanea"), - (ESM790, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Radio & television clips'), 'sec': _('Broadcasts & Web Miscellanea'), 'third': _('Publications: Periodicals, Broadcasts & Web Miscellanea')}, "Radio & television clips - Broadcasts & Web Miscellanea - Publications: Periodicals, Broadcasts & Web Miscellanea"), - (ESM93, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Artifact'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts')}, "Artifact - Archived Material - Archives & Artifacts"), - (ESM94, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Digital Archives'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts')}, "Digital Archives - Archived Material - Archives & Artifacts"), - (ESM95, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Manuscript Records'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts'), 'fourth': _('Collection, emphasis on')}, "Manuscript Records - Archived Material - Archives & Artifacts (Collection, emphasis on)"), - (ESM96, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Manuscript Records'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts'), 'fourth': _('Document, emphasis on')}, "Manuscript Records - Archived Material - Archives & Artifacts (Document, emphasis on)"), - (ESM97, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Manuscript Records'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts'), 'fourth': _('Series, emphasis on')}, "Manuscript Records - Archived Material - Archives & Artifacts (Series, emphasis on)"), - (ESM98, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Personal Bible'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts')}, "Personal Bible - Archived Material - Archives & Artifacts"), - (ESM99, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Portrait'), 'sec': _('Archived Material'), 'third': _('Archives & Artifacts')}, "Portrait - Archived Material - Archives & Artifacts"), + (ESM100, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Research Report')}, "Archives & Artifacts - Archived Material - Research Report"), + (ESM101, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Unpublished narrative')}, "Archives & Artifacts - Archived Material - Unpublished narrative"), + (ESM102, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Vertical file')}, "Archives & Artifacts - Archived Material - Vertical file"), + (ESM103, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Preservation Film'), 'third': _('FHL-GSU film')}, "Archives & Artifacts - Preservation Film - FHL-GSU film"), + (ESM104, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Preservation Film'), 'third': _('In-house film')}, "Archives & Artifacts - Preservation Film - In-house film"), + (ESM105, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Artifact')}, "Archives & Artifacts - Private Holdings - Artifact"), + (ESM106, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Diary or journal, etc.')}, "Archives & Artifacts - Private Holdings - Diary or journal, etc."), + (ESM107, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Family Bible Records')}, "Archives & Artifacts - Private Holdings - Family Bible Records"), + (ESM108, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Family Chart or Group Sheet')}, "Archives & Artifacts - Private Holdings - Family Chart or Group Sheet"), + (ESM109, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Historic letter')}, "Archives & Artifacts - Private Holdings - Historic letter"), + (ESM110, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Interview tape & transcript')}, "Archives & Artifacts - Private Holdings - Interview tape & transcript"), + (ESM111, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Legal document, unrecorded')}, "Archives & Artifacts - Private Holdings - Legal document, unrecorded"), + (ESM112, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Personal correspondence')}, "Archives & Artifacts - Private Holdings - Personal correspondence"), + (ESM113, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Personal e-mail')}, "Archives & Artifacts - Private Holdings - Personal e-mail"), + (ESM114, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Research Report')}, "Archives & Artifacts - Private Holdings - Research Report"), + (ESM115, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Private Holdings'), 'third': _('Tradition, recorded')}, "Archives & Artifacts - Private Holdings - Tradition, recorded"), + (ESM161, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Corporate Records'), 'third': _('Bound volume')}, "Business & institutional Records - Corporate Records - Bound volume"), + (ESM162, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Corporate Records'), 'third': _('Document (loose record)')}, "Business & institutional Records - Corporate Records - Document (loose record)"), + (ESM163, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Corporate Records'), 'third': _('Extract supplied by staff')}, "Business & institutional Records - Corporate Records - Extract supplied by staff"), + (ESM164, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Corporate Records'), 'third': _('Microfilm')}, "Business & institutional Records - Corporate Records - Microfilm"), + (ESM165, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Corporate Records'), 'third': _('Online database')}, "Business & institutional Records - Corporate Records - Online database"), + (ESM166, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Corporate Records'), 'third': _('Online image')}, "Business & institutional Records - Corporate Records - Online image"), + (ESM167, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Lineage-society Records'), 'third': _('Application file')}, "Business & institutional Records - Lineage-society Records - Application file"), + (ESM168, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Lineage-society Records'), 'third': _('Online database')}, "Business & institutional Records - Lineage-society Records - Online database"), + (ESM169, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Organizational Records'), 'third': _('Archived in-house')}, "Business & institutional Records - Organizational Records - Archived in-house"), + (ESM170, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Organizational Records'), 'third': _('Archived off-site')}, "Business & institutional Records - Organizational Records - Archived off-site"), + (ESM171, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Professional Reports'), 'third': _('Genetic testing')}, "Business & institutional Records - Professional Reports - Genetic testing"), + (ESM172, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Professional Reports'), 'third': _('Historical research: corporate')}, "Business & institutional Records - Professional Reports - Historical research: corporate"), + (ESM173, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('Professional Reports'), 'third': _('Historical research: online')}, "Business & institutional Records - Professional Reports - Historical research: online"), + (ESM174, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('School Records'), 'third': _('Administrative material')}, "Business & institutional Records - School Records - Administrative material"), + (ESM175, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Business & institutional Records'), 'sec': _('School Records'), 'third': _('Student transcript')}, "Business & institutional Records - School Records - Student transcript"), + (ESM209, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Cemetery Records'), 'sec': _('Cemetery Office Records'), 'third': _('Office records'), 'fourth': _('personally used')}, "Cemetery Records - Cemetery Office Records - Office records (personally used)"), + (ESM210, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Cemetery Records'), 'sec': _('Cemetery Office Records'), 'third': _('Office records'), 'fourth': _('supplied by staff')}, "Cemetery Records - Cemetery Office Records - Office records (supplied by staff)"), + (ESM211, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Cemetery Records'), 'sec': _('Cemetery Office Records'), 'third': _('Online images')}, "Cemetery Records - Cemetery Office Records - Online images"), + (ESM212, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Cemetery Records'), 'sec': _('Cemetery Office Records'), 'third': _('Preservation film, FHL-GSU')}, "Cemetery Records - Cemetery Office Records - Preservation film, FHL-GSU"), + (ESM213, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Cemetery Records'), 'sec': _('Markers & Memorials (Originals)'), 'third': _('Grave markers'), 'fourth': _('rural')}, "Cemetery Records - Markers & Memorials (Originals) - Grave markers (rural)"), + (ESM214, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Cemetery Records'), 'sec': _('Markers & Memorials (Originals)'), 'third': _('Grave markers'), 'fourth': _('urban')}, "Cemetery Records - Markers & Memorials (Originals) - Grave markers (urban)"), + (ESM215, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Cemetery Records'), 'sec': _('Markers & Memorials (Originals)'), 'third': _('Images online')}, "Cemetery Records - Markers & Memorials (Originals) - Images online"), + (ESM216, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Cemetery Records'), 'sec': _('Markers & Memorials (Originals)'), 'third': _('Memorial plaques')}, "Cemetery Records - Markers & Memorials (Originals) - Memorial plaques"), + (ESM217, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Cemetery Records'), 'sec': _('Derivatives'), 'third': _('Cemetery abstracts'), 'fourth': _('vertical file')}, "Cemetery Records - Derivatives - Cemetery abstracts (vertical file)"), + (ESM218, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Cemetery Records'), 'sec': _('Derivatives'), 'third': _('Cemetery abstracts'), 'fourth': _('card file')}, "Cemetery Records - Derivatives - Cemetery abstracts (card file)"), + (ESM219, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Cemetery Records'), 'sec': _('Derivatives'), 'third': _('Database online')}, "Cemetery Records - Derivatives - Database online"), + (ESM237, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Original manuscripts (U.S.)'), 'third': _('Local copy'), 'fourth': _('federal census')}, "Census Records - Original manuscripts (U.S.) - Local copy (federal census)"), + (ESM238, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Census Records'), 'sec': _('Original manuscripts (U.S.)'), 'third': _('National Archives copy')}, "Census Records - Original manuscripts (U.S.) - National Archives copy"), + (ESM239, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Census Records'), 'sec': _('Digital Images'), 'third': _('CD/DVD')}, "Census Records - Digital Images - CD/DVD"), + (ESM240, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Census Records'), 'sec': _('Digital Images'), 'third': _('Online commercial site')}, "Census Records - Digital Images - Online commercial site"), + (ESM241, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Digital Images'), 'third': _('Online archives'), 'fourth': _('France')}, "Census Records - Digital Images - Online archives (France)"), + (ESM242, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Digital Images'), 'third': _('Online commercial site'), 'fourth': _('U.K. Wales')}, "Census Records - Digital Images - Online commercial site (U.K. Wales)"), + (ESM243, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('Native-American tribal census')}, "Census Records - Microfilm (U.S.) - Native-American tribal census"), + (ESM244, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('“Nonpopulation” schedules'), 'fourth': _('NARA film')}, "Census Records - Microfilm (U.S.) - “Nonpopulation” schedules (NARA film)"), + (ESM245, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('“Nonpopulation” schedules'), 'fourth': _('FHL-GSU preservation film')}, "Census Records - Microfilm (U.S.) - “Nonpopulation” schedules (FHL-GSU preservation film)"), + (ESM246, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('“Nonpopulation” schedules'), 'fourth': _('UNC microfilm publication')}, "Census Records - Microfilm (U.S.) - “Nonpopulation” schedules (UNC microfilm publication)"), + (ESM247, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('Population schedules'), 'fourth': _('1790-1840')}, "Census Records - Microfilm (U.S.) - Population schedules (1790-1840)"), + (ESM248, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('Population schedules'), 'fourth': _('1850-1870')}, "Census Records - Microfilm (U.S.) - Population schedules (1850-1870)"), + (ESM249, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('Population schedules'), 'fourth': _('1850-1860: slaves')}, "Census Records - Microfilm (U.S.) - Population schedules (1850-1860: slaves)"), + (ESM250, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('Population schedules'), 'fourth': _('1880-1930')}, "Census Records - Microfilm (U.S.) - Population schedules (1880-1930)"), + (ESM251, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('Population schedules'), 'fourth': _('State-level copies')}, "Census Records - Microfilm (U.S.) - Population schedules (State-level copies)"), + (ESM252, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Census Records'), 'sec': _('Microfilm (U.S.)'), 'third': _('State-sponsored censuses')}, "Census Records - Microfilm (U.S.) - State-sponsored censuses"), + (ESM253, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Derivatives'), 'third': _('Database'), 'fourth': _('CD/DVD')}, "Census Records - Derivatives - Database (CD/DVD)"), + (ESM254, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Derivatives'), 'third': _('Database'), 'fourth': _('online')}, "Census Records - Derivatives - Database (online)"), + (ESM255, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Census Records'), 'sec': _('Derivatives'), 'third': _('Soundex & Miracode, microfilm')}, "Census Records - Derivatives - Soundex & Miracode, microfilm"), + (ESM256, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Census Records'), 'sec': _('Derivatives'), 'third': _('Statistical database'), 'fourth': _('online')}, "Census Records - Derivatives - Statistical database (online)"), + (ESM311, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Church Records'), 'sec': _('Church Books'), 'third': _('Named volume'), 'fourth': _('held by church')}, "Church Records - Church Books - Named volume (held by church)"), + (ESM312, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Church Records'), 'sec': _('Church Books'), 'third': _('Named volume'), 'fourth': _('archived off-site')}, "Church Records - Church Books - Named volume (archived off-site)"), + (ESM313, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Church Records'), 'sec': _('Church Books'), 'third': _('Numbered volume'), 'fourth': _('archived off-site')}, "Church Records - Church Books - Numbered volume (archived off-site)"), + (ESM314, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Church Records'), 'sec': _('Image Copies'), 'third': _('Digitized online')}, "Church Records - Image Copies - Digitized online"), + (ESM315, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Church Records'), 'sec': _('Image Copies'), 'third': _('Microfilm'), 'fourth': _('FHL-GSU preservation')}, "Church Records - Image Copies - Microfilm (FHL-GSU preservation)"), + (ESM316, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Church Records'), 'sec': _('Image Copies'), 'third': _('Microfilm'), 'fourth': _('LDS records at FHL')}, "Church Records - Image Copies - Microfilm (LDS records at FHL)"), + (ESM317, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Church Records'), 'sec': _('Image Copies'), 'third': _('Microfilm publication')}, "Church Records - Image Copies - Microfilm publication"), + (ESM318, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Church Records'), 'sec': _('Derivatives'), 'third': _('Church-issued certificate')}, "Church Records - Derivatives - Church-issued certificate"), + (ESM319, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Church Records'), 'sec': _('Derivatives'), 'third': _('Church record book, recopied')}, "Church Records - Derivatives - Church record book, recopied"), + (ESM320, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Church Records'), 'sec': _('Derivatives'), 'third': _('Church-records database'), 'fourth': _('online')}, "Church Records - Derivatives - Church-records database (online)"), + (ESM373, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Original Records'), 'third': _('Local'), 'fourth': _('Case files')}, "Local & State Records: Courts & Governance - Original Records - Local (Case files)"), + (ESM374, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Original Records'), 'third': _('Local'), 'fourth': _('Record Books')}, "Local & State Records: Courts & Governance - Original Records - Local (Record Books)"), + (ESM375, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Original Records'), 'third': _('Local'), 'fourth': _('Record Books, archived off-site')}, "Local & State Records: Courts & Governance - Original Records - Local (Record Books, archived off-site)"), + (ESM376, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Original Records'), 'third': _('State-level'), 'fourth': _('Appeals court record books')}, "Local & State Records: Courts & Governance - Original Records - State-level (Appeals court record books)"), + (ESM377, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Original Records'), 'third': _('State-level'), 'fourth': _('Legislative petitions & files')}, "Local & State Records: Courts & Governance - Original Records - State-level (Legislative petitions & files)"), + (ESM378, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Image Copies'), 'third': _('CD/DVD')}, "Local & State Records: Courts & Governance - Image Copies - CD/DVD"), + (ESM379, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Image Copies'), 'third': _('Microfilm'), 'fourth': _('Archival preservation copy')}, "Local & State Records: Courts & Governance - Image Copies - Microfilm (Archival preservation copy)"), + (ESM380, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Image Copies'), 'third': _('Microfilm'), 'fourth': _('FHL-GSU preservation copy')}, "Local & State Records: Courts & Governance - Image Copies - Microfilm (FHL-GSU preservation copy)"), + (ESM381, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Image Copies'), 'third': _('Online')}, "Local & State Records: Courts & Governance - Image Copies - Online"), + (ESM382, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Courts & Governance'), 'sec': _('Derivatives'), 'third': _('Databases'), 'fourth': _('online')}, "Local & State Records: Courts & Governance - Derivatives - Databases (online)"), + (ESM421, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('Local Records'), 'third': _('File items')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - Local Records - File items"), + (ESM422, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('Local Records'), 'third': _('Files moved to state archives')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - Local Records - Files moved to state archives"), + (ESM423, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('Local Records'), 'third': _('Registers'), 'fourth': _('Named volume')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - Local Records - Registers (Named volume)"), + (ESM424, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('Local Records'), 'third': _('Registers'), 'fourth': _('Numbered volume')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - Local Records - Registers (Numbered volume)"), + (ESM425, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('Local Records'), 'third': _('Vital-records certificate')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - Local Records - Vital-records certificate"), + (ESM426, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('Local Records'), 'third': _('Vital-records register')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - Local Records - Vital-records register"), + (ESM427, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('Local Records'), 'third': _('Vital records, amended')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - Local Records - Vital records, amended"), + (ESM428, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('Local Records'), 'third': _('Vital records, delayed')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - Local Records - Vital records, delayed"), + (ESM429, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('State-level Records'), 'third': _('Miscellaneous file')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - State-level Records - Miscellaneous file"), + (ESM430, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('State-level Records'), 'third': _('Vital-records certificate')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - State-level Records - Vital-records certificate"), + (ESM431, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('State-level Records'), 'third': _('Vital-records register')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - State-level Records - Vital-records register"), + (ESM432, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Licenses, Registrations, Rolls & Vital Records'), 'sec': _('State-level Records'), 'third': _('Vital records, amended')}, "Local & State Records: Licenses, Registrations, Rolls & Vital Records - State-level Records - Vital records, amended"), + (ESM487, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Original Records'), 'third': _('Local'), 'fourth': _('Case files')}, "Local & State Records: Property & Probates - Original Records - Local (Case files)"), + (ESM488, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Original Records'), 'third': _('Local'), 'fourth': _('Registers')}, "Local & State Records: Property & Probates - Original Records - Local (Registers)"), + (ESM489, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Original Records'), 'third': _('Local'), 'fourth': _('Tract book')}, "Local & State Records: Property & Probates - Original Records - Local (Tract book)"), + (ESM490, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Original Records'), 'third': _('State level'), 'fourth': _('Land-grant register')}, "Local & State Records: Property & Probates - Original Records - State level (Land-grant register)"), + (ESM491, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Original Records'), 'third': _('State level'), 'fourth': _('Land warrants: loose')}, "Local & State Records: Property & Probates - Original Records - State level (Land warrants: loose)"), + (ESM492, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Image Copies'), 'third': _('CD/DVD')}, "Local & State Records: Property & Probates - Image Copies - CD/DVD"), + (ESM493, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Image Copies'), 'third': _('Microfilm')}, "Local & State Records: Property & Probates - Image Copies - Microfilm"), + (ESM494, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Image Copies'), 'third': _('Online')}, "Local & State Records: Property & Probates - Image Copies - Online"), + (ESM495, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Derivatives'), 'third': _('Abstracts'), 'fourth': _('online')}, "Local & State Records: Property & Probates - Derivatives - Abstracts (online)"), + (ESM496, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Local & State Records: Property & Probates'), 'sec': _('Derivatives'), 'third': _('Database'), 'fourth': _('online')}, "Local & State Records: Property & Probates - Derivatives - Database (online)"), + (ESM539, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Original Materials (U.S.)'), 'third': _('Audio recordings'), 'fourth': _('National Archives')}, "National Government Records - Original Materials (U.S.) - Audio recordings (National Archives)"), + (ESM540, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Original Materials (U.S.)'), 'third': _('Manuscripts'), 'fourth': _('Library of Congress')}, "National Government Records - Original Materials (U.S.) - Manuscripts (Library of Congress)"), + (ESM541, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Original Materials (U.S.)'), 'third': _('Manuscripts'), 'fourth': _('National Archives')}, "National Government Records - Original Materials (U.S.) - Manuscripts (National Archives)"), + (ESM542, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Original Materials (U.S.)'), 'third': _('Manuscripts'), 'fourth': _('National Archives-Regional')}, "National Government Records - Original Materials (U.S.) - Manuscripts (National Archives-Regional)"), + (ESM543, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Original Materials (U.S.)'), 'third': _('Maps'), 'fourth': _('National Archives')}, "National Government Records - Original Materials (U.S.) - Maps (National Archives)"), + (ESM544, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Original Materials (U.S.)'), 'third': _('Photographs'), 'fourth': _('Library of Congress')}, "National Government Records - Original Materials (U.S.) - Photographs (Library of Congress)"), + (ESM545, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('National Government Records'), 'sec': _('Original Materials (U.S.)'), 'third': _('Railroad Retirement Board')}, "National Government Records - Original Materials (U.S.) - Railroad Retirement Board"), + (ESM546, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('National Government Records'), 'sec': _('Original Materials (U.S.)'), 'third': _('Social Security Administration')}, "National Government Records - Original Materials (U.S.) - Social Security Administration"), + (ESM547, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('National Government Records'), 'sec': _('Databases'), 'third': _('CD-ROM publication')}, "National Government Records - Databases - CD-ROM publication"), + (ESM548, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Databases'), 'third': _('Online'), 'fourth': _('National Archives (Australia)')}, "National Government Records - Databases - Online (National Archives (Australia))"), + (ESM549, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Databases'), 'third': _('Online'), 'fourth': _('National Archives (Canada)')}, "National Government Records - Databases - Online (National Archives (Canada))"), + (ESM550, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Databases'), 'third': _('Online'), 'fourth': _('National Archives (U.K.)')}, "National Government Records - Databases - Online (National Archives (U.K.))"), + (ESM551, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Databases'), 'third': _('Online'), 'fourth': _('National Archives (U.S.)')}, "National Government Records - Databases - Online (National Archives (U.S.))"), + (ESM552, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Image Copies'), 'third': _('National Archives microfilm'), 'fourth': _('NARA Style citation')}, "National Government Records - Image Copies - National Archives microfilm (NARA Style citation)"), + (ESM553, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Image Copies'), 'third': _('National Archives microfilm'), 'fourth': _('Publications Style citation')}, "National Government Records - Image Copies - National Archives microfilm (Publications Style citation)"), + (ESM554, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Image Copies'), 'third': _('Online:'), 'fourth': _('Library of Congress')}, "National Government Records - Image Copies - Online: (Library of Congress)"), + (ESM555, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Image Copies'), 'third': _('Online:'), 'fourth': _('National Archives (U.S.)')}, "National Government Records - Image Copies - Online: (National Archives (U.S.))"), + (ESM556, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('National Government Records'), 'sec': _('Image Copies'), 'third': _('Online:'), 'fourth': _('Patent & Trademark Office (U.S.)')}, "National Government Records - Image Copies - Online: (Patent & Trademark Office (U.S.))"), + (ESM646, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Print Publications'), 'third': _('Book'), 'fourth': _('basic format')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Print Publications - Book (basic format)"), + (ESM647, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Print Publications'), 'third': _('Book'), 'fourth': _('chapter')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Print Publications - Book (chapter)"), + (ESM648, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Print Publications'), 'third': _('Book'), 'fourth': _('edited')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Print Publications - Book (edited)"), + (ESM649, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Print Publications'), 'third': _('Book'), 'fourth': _('multivolume set')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Print Publications - Book (multivolume set)"), + (ESM650, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Print Publications'), 'third': _('Book'), 'fourth': _('reprint')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Print Publications - Book (reprint)"), + (ESM651, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Print Publications'), 'third': _('Book'), 'fourth': _('revised edition')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Print Publications - Book (revised edition)"), + (ESM652, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Print Publications'), 'third': _('Leaflet')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Print Publications - Leaflet"), + (ESM653, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Print Publications'), 'third': _('Map')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Print Publications - Map"), + (ESM654, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Electronic Publications'), 'third': _('Audio book')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Electronic Publications - Audio book"), + (ESM655, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Electronic Publications'), 'third': _('CD/DVD book (text)')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Electronic Publications - CD/DVD book (text)"), + (ESM656, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Electronic Publications'), 'third': _('Video')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Electronic Publications - Video"), + (ESM657, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Electronic Publications'), 'third': _('Website as “book”')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Electronic Publications - Website as “book”"), + (ESM658, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Image Copies'), 'third': _('CD/DVD publication')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Image Copies - CD/DVD publication"), + (ESM659, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Image Copies'), 'third': _('Microfilm'), 'fourth': _('FHL-GSU preservation')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Image Copies - Microfilm (FHL-GSU preservation)"), + (ESM660, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Image Copies'), 'third': _('Microfilm publication')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Image Copies - Microfilm publication"), + (ESM661, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Books, CDs, Maps, Leaflets & Videos'), 'sec': _('Image Copies'), 'third': _('Online publication')}, "Publications: Books, CDs, Maps, Leaflets & Videos - Image Copies - Online publication"), + (ESM727, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Book:'), 'third': _('Basic Format')}, "Publications: Legal Works & Government Documents - Book: - Basic Format"), + (ESM728, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Legal Reference Works'), 'third': _('Case Reporters'), 'fourth': _('Series named for editor')}, "Publications: Legal Works & Government Documents - Legal Reference Works - Case Reporters (Series named for editor)"), + (ESM729, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Legal Reference Works'), 'third': _('Case Reporters'), 'fourth': _('Standardized series')}, "Publications: Legal Works & Government Documents - Legal Reference Works - Case Reporters (Standardized series)"), + (ESM730, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Legal Reference Works'), 'third': _('Codes & statutes, online'), 'fourth': _('State database')}, "Publications: Legal Works & Government Documents - Legal Reference Works - Codes & statutes, online (State database)"), + (ESM731, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Legal Reference Works'), 'third': _('Codes & statutes, online'), 'fourth': _('U.S. Code')}, "Publications: Legal Works & Government Documents - Legal Reference Works - Codes & statutes, online (U.S. Code)"), + (ESM732, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Legal Reference Works'), 'third': _('Slip laws:'), 'fourth': _('federal')}, "Publications: Legal Works & Government Documents - Legal Reference Works - Slip laws: (federal)"), + (ESM733, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Legal Reference Works'), 'third': _('Statutes:'), 'fourth': _('federal')}, "Publications: Legal Works & Government Documents - Legal Reference Works - Statutes: (federal)"), + (ESM734, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Legal Reference Works'), 'third': _('Statutes:'), 'fourth': _('state')}, "Publications: Legal Works & Government Documents - Legal Reference Works - Statutes: (state)"), + (ESM735, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Printed Government Documents'), 'third': _('Congressional Records'), 'fourth': _('Citing volume from title page')}, "Publications: Legal Works & Government Documents - Printed Government Documents - Congressional Records (Citing volume from title page)"), + (ESM736, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Printed Government Documents'), 'third': _('Congressional Records'), 'fourth': _('Traditional academic style')}, "Publications: Legal Works & Government Documents - Printed Government Documents - Congressional Records (Traditional academic style)"), + (ESM737, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Printed Government Documents'), 'third': _('Online images')}, "Publications: Legal Works & Government Documents - Printed Government Documents - Online images"), + (ESM738, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Printed Government Documents'), 'third': _('National Archives (U.S.) guides'), 'fourth': _('Descriptive pamphlet, online')}, "Publications: Legal Works & Government Documents - Printed Government Documents - National Archives (U.S.) guides (Descriptive pamphlet, online)"), + (ESM739, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Legal Works & Government Documents'), 'sec': _('Printed Government Documents'), 'third': _('National Archives (U.S.) guides'), 'fourth': _('Preliminary inventory, microfilmed')}, "Publications: Legal Works & Government Documents - Printed Government Documents - National Archives (U.S.) guides (Preliminary inventory, microfilmed)"), + (ESM779, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Periodicals'), 'third': _('Journal articles'), 'fourth': _('Print editions')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Periodicals - Journal articles (Print editions)"), + (ESM780, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Periodicals'), 'third': _('Journal articles'), 'fourth': _('Online archives of print journals')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Periodicals - Journal articles (Online archives of print journals)"), + (ESM781, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Periodicals'), 'third': _('Journal articles'), 'fourth': _('Online journals')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Periodicals - Journal articles (Online journals)"), + (ESM782, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Periodicals'), 'third': _('Magazine articles'), 'fourth': _('Print editions')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Periodicals - Magazine articles (Print editions)"), + (ESM783, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Periodicals'), 'third': _('Magazine articles'), 'fourth': _('Online reprints, random items')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Periodicals - Magazine articles (Online reprints, random items)"), + (ESM784, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Periodicals'), 'third': _('Newsletter articles'), 'fourth': _('Print editions')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Periodicals - Newsletter articles (Print editions)"), + (ESM785, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Periodicals'), 'third': _('Newspaper articles'), 'fourth': _('Print editions')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Periodicals - Newspaper articles (Print editions)"), + (ESM786, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Periodicals'), 'third': _('Newspaper articles'), 'fourth': _('Online archives')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Periodicals - Newspaper articles (Online archives)"), + (ESM787, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Broadcasts & Web Miscellanea'), 'third': _('Blogs')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Broadcasts & Web Miscellanea - Blogs"), + (ESM788, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Broadcasts & Web Miscellanea'), 'third': _('Discussion forums & lists')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Broadcasts & Web Miscellanea - Discussion forums & lists"), + (ESM789, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Broadcasts & Web Miscellanea'), 'third': _('Podcasts')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Broadcasts & Web Miscellanea - Podcasts"), + (ESM790, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Publications: Periodicals, Broadcasts & Web Miscellanea'), 'sec': _('Broadcasts & Web Miscellanea'), 'third': _('Radio & television clips')}, "Publications: Periodicals, Broadcasts & Web Miscellanea - Broadcasts & Web Miscellanea - Radio & television clips"), + (ESM93, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Artifact')}, "Archives & Artifacts - Archived Material - Artifact"), + (ESM94, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Digital Archives')}, "Archives & Artifacts - Archived Material - Digital Archives"), + (ESM95, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Manuscript Records'), 'fourth': _('Collection, emphasis on')}, "Archives & Artifacts - Archived Material - Manuscript Records (Collection, emphasis on)"), + (ESM96, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Manuscript Records'), 'fourth': _('Document, emphasis on')}, "Archives & Artifacts - Archived Material - Manuscript Records (Document, emphasis on)"), + (ESM97, _('%(first)s - %(sec)s - %(third)s (%(fourth)s)') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Manuscript Records'), 'fourth': _('Series, emphasis on')}, "Archives & Artifacts - Archived Material - Manuscript Records (Series, emphasis on)"), + (ESM98, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Personal Bible')}, "Archives & Artifacts - Archived Material - Personal Bible"), + (ESM99, _('%(first)s - %(sec)s - %(third)s') % { 'first': _('Archives & Artifacts'), 'sec': _('Archived Material'), 'third': _('Portrait')}, "Archives & Artifacts - Archived Material - Portrait"), ] #templates for the source types defined + # F: Full reference + # S: Short reference (if F used once, use S afterwards) + # L: List reference (for in bibliography list) EVIDENCETEMPLATES = { 'ESM100': { 'F': [ @@ -6096,6 +6099,7 @@ class SrcAttributeType(GrampsType): }, } + # We construct Map for sourcetype values. Use these to store value of # SRCTYPE in English in the database. I2S_SRCTYPEMAP = dict([(item[0], item[1]) for item in _SRCTYPEVAL_MAP])