[open-ils-commits] SPAM: r8405 - in trunk/build/i18n: . po po/en-US tests

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Jan 17 14:22:59 EST 2008


Author: dbs
Date: 2008-01-17 13:57:17 -0500 (Thu, 17 Jan 2008)
New Revision: 8405

Added:
   trunk/build/i18n/po/en-US/
   trunk/build/i18n/po/en-US/admin.properties.pot
   trunk/build/i18n/po/en-US/cat.properties.pot
   trunk/build/i18n/po/en-US/circ.properties.pot
   trunk/build/i18n/po/en-US/common.properties.pot
   trunk/build/i18n/po/en-US/db.seed.pot
   trunk/build/i18n/po/en-US/fm_IDL.pot
   trunk/build/i18n/po/en-US/ils_events.xml.pot
   trunk/build/i18n/po/en-US/lang.dtd.pot
   trunk/build/i18n/po/en-US/opac.dtd.pot
Removed:
   trunk/build/i18n/po/admin.properties.pot
   trunk/build/i18n/po/cat.properties.pot
   trunk/build/i18n/po/circ.properties.pot
   trunk/build/i18n/po/common.properties.pot
   trunk/build/i18n/po/db.seed.pot
   trunk/build/i18n/po/fm_IDL.pot
   trunk/build/i18n/po/ils_events.xml.pot
   trunk/build/i18n/po/lang.dtd.pot
   trunk/build/i18n/po/opac.dtd.pot
Modified:
   trunk/build/i18n/Makefile
   trunk/build/i18n/tests/testpo.py
Log:
Move POT files into en-US subdirectory (clutter BAD).
Provide more granular file and directory handling.
Repair some of the unit tests to match the reorged dirs.


Modified: trunk/build/i18n/Makefile
===================================================================
--- trunk/build/i18n/Makefile	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/Makefile	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,3 +1,4 @@
+POTSRC=po/en-US
 POOUTDIR=po
 POINDIR=po
 PROJECT=locale
@@ -9,9 +10,14 @@
 FMIDLENT=fm_IDL.xml
 FMIDLENTITY=fm_IDL.xml.ent
 FMIDLPO=fm_IDL.po
+EVTSRC=../../Open-ILS/src/extras/ils_events.xml
+EVTOUT=ils_events.xml.pot
+EVTPO=ils_events.xml.po
+EVTXML=ils_events.xml
 SQLSRC=../../Open-ILS/src/sql/Pg/950.data.seed-values.sql
-SQLOUT=db.seed.pot
+SQLPOT=db.seed.pot
 SQLPO=db.seed.po
+SQLOUT=950.data.seed-values.sql
 PROGRESS=--progress none
 
 # This Makefile can be used to generate and update PO files for Evergreen,
@@ -34,23 +40,28 @@
 
 # Generate PO files from all POT files in POOUTDIR for locale LOCALE
 newpo: 
-	@pot2po $(PROGRESS) -i $(POOUTDIR) -o $(POOUTDIR)/$(LOCALE) 
+	@pot2po $(PROGRESS) -i $(POTSRC) -o $(POOUTDIR)/$(LOCALE) 
 	@echo "Generated new PO files for locale $(LOCALE)"
 
 # Generate a new set of POT files and entityized fieldmapper IDL
-newpot: dtds2pot fmidl2pot fmidl2fmidlent props2pot sql2pot
+newpot: dtds2pot fmidl2pot fmidl2fmidlent ils2pot props2pot sql2pot
 	@echo "Generated new POT files"
 
 # Generate DTD, JavaScript message catalogs, fieldmapper IDL,
 # and SQL insert files from PO for locale LOCALE
-newproject: po2dtds po2props po2sql fmidlpo2entity
+newproject: po2dtds po2props po2sql fmidlpo2entity po2ils
 	@echo "Generated project files for locale $(LOCALE)"
 
 # Update PO files with new and changed strings from POT files
 updatepo: 
-	@pot2po $(PROGRESS) -o $(POOUTDIR)/$(LOCALE) -i $(POOUTDIR) -t $(POOUTDIR)/$(LOCALE) 2>&1
+	pot2po $(PROGRESS) -o $(POOUTDIR)/$(LOCALE) -i $(POTSRC) -t $(POOUTDIR)/$(LOCALE) 2>&1
 	@echo "Updated PO files for locale $(LOCALE)"
 
+# Update PO files with new and changed strings from POT files
+updateopac: 
+	@msgmerge -U $(POOUTDIR)/$(LOCALE)/opac.dtd.po $(POTSRC)/opac.dtd.pot 2>&1
+	@echo "Updated PO file opac.dtd.po for locale $(LOCALE)"
+
 dtds2po:
 	@moz2po $(PROGRESS) -o $(POOUTDIR)/$(LOCALE) -i $(DTDDIR)/en-US/ 2>&1
 
@@ -58,10 +69,16 @@
 	@moz2po $(PROGRESS) -o $(POOUTDIR)/$(LOCALE) -i $(PROPSDIR)/en-US/ 2>&1
 
 dtds2pot:
-	@moz2po -P $(PROGRESS) -o $(POOUTDIR) -i $(DTDDIR)/en-US/ 2>&1
+	@moz2po -P $(PROGRESS) -o $(POTSRC) -i $(DTDDIR)/en-US/ 2>&1
 
+ils2pot:
+	@scripts/ils_events.py --pot $(EVTSRC) --output $(POTSRC)/$(EVTOUT)
+
+po2ils:
+	@scripts/ils_events.py --create $(POINDIR)/$(LOCALE)/$(EVTPO) --locale $(LOCALE) --output $(PROJECT)/$(LOCALE)/$(EVTXML) 
+
 props2pot:
-	@moz2po -P $(PROGRESS) -o $(POOUTDIR) -i $(PROPSDIR)/en-US/ 2>&1
+	@moz2po -P $(PROGRESS) -o $(POTSRC) -i $(PROPSDIR)/en-US/ 2>&1
 
 po2dtds:
 	@po2moz $(PROGRESS) -o $(PROJECT)/$(LOCALE) -t $(DTDDIR)/en-US/ -i $(POINDIR)/$(LOCALE) 2>&1
@@ -70,7 +87,7 @@
 	@po2moz $(PROGRESS) -o $(PROJECT)/$(LOCALE) -t $(PROPSDIR)/en-US/ -i $(POINDIR)/$(LOCALE) 2>&1
 
 sql2pot:
-	@scripts/db-seed-i18n.py --pot $(SQLSRC) --output $(POOUTDIR)/$(SQLOUT)
+	@scripts/db-seed-i18n.py --pot $(SQLSRC) --output $(POTSRC)/$(SQLPOT)
 
 po2sql:
 	scripts/db-seed-i18n.py --sql $(POINDIR)/$(LOCALE)/$(SQLPO) --locale $(LOCALE) --output $(PROJECT)/$(LOCALE)/$(SQLOUT)
@@ -81,8 +98,8 @@
 
 # Generate a POT file for translating the entity values
 fmidl2pot:
-	@scripts/fieldmapper.py --pot $(FMIDLSRC) --output $(POOUTDIR)/$(FMIDLOUT)
+	@scripts/fieldmapper.py --pot $(FMIDLSRC) --output $(POTSRC)/$(FMIDLOUT)
 
 # Generate a set of entity declarations from a PO file
 fmidlpo2entity:
-	@scripts/fieldmapper.py --entity $(POINDIR)/$(FMIDLOUT) --output $(PROJECT)/$(LOCALE)/$(FMIDLENTITY)
+	@scripts/fieldmapper.py --entity $(POINDIR)/$(LOCALE)/$(FMIDLPO) --output $(PROJECT)/$(LOCALE)/$(FMIDLENTITY)

Deleted: trunk/build/i18n/po/admin.properties.pot
===================================================================
--- trunk/build/i18n/po/admin.properties.pot	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/po/admin.properties.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,24 +0,0 @@
-# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/admin.properties
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2007-11-19 13:21-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
-"X-Accelerator-Marker: &\n"
-
-#: staff.admin.survey.save_response.label
-msgid "Save this response"
-msgstr ""
-
-#: staff.admin.survey.save_response.accesskey
-msgid "R"
-msgstr ""

Deleted: trunk/build/i18n/po/cat.properties.pot
===================================================================
--- trunk/build/i18n/po/cat.properties.pot	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/po/cat.properties.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,40 +0,0 @@
-# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/cat.properties
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2007-11-19 13:21-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
-"X-Accelerator-Marker: &\n"
-
-#: cat.bib_record
-msgid "Bib Record: %1$s"
-msgstr ""
-
-#: cat.save_record
-msgid "Save Record"
-msgstr ""
-
-#: cat.save.success
-msgid "Record successfully saved."
-msgstr ""
-
-#: cat.save.failure
-msgid "Record not likely updated."
-msgstr ""
-
-#: cat.record.counter
-msgid "Record %1$s of %2$s"
-msgstr ""
-
-#: cat.preference.error
-msgid "Preference not likely updated."
-msgstr ""

Deleted: trunk/build/i18n/po/circ.properties.pot
===================================================================
--- trunk/build/i18n/po/circ.properties.pot	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/po/circ.properties.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,186 +0,0 @@
-# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/circ.properties
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2007-11-19 13:21-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
-"X-Accelerator-Marker: &\n"
-
-#: circ.bad_checkdigit
-msgid "This barcode has a bad check digit."
-msgstr ""
-
-#: circ.barcode.enter
-msgid "Please enter a patron barcode first."
-msgstr ""
-
-#: circ.barcode.warning
-msgid "Barcode Warning"
-msgstr ""
-
-#: circ.standalone
-msgid "Standalone"
-msgstr ""
-
-#: circ.duplicate_scan.msg
-msgid "This barcode has already been scanned."
-msgstr ""
-
-#: circ.duplicate_scan.field
-msgid "Duplicate Scan"
-msgstr ""
-
-#: circ.offline_checkout.nonbarcoded
-msgid "or choose a non-barcoded option..."
-msgstr ""
-
-#: circ.offline_checkout.items
-msgid "Enter the number of items:"
-msgstr ""
-
-#: circ.offline_checkout.download.warning
-msgid ""
-"WARNING: The non-barcode types have not been downloaded from the server.  "
-"You should log in to retrieve these."
-msgstr ""
-
-#: circ.offline_checkout.barcode.flagged.lost
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Lost."
-msgstr ""
-
-#: circ.offline_checkout.barcode.flagged.expired
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Expired."
-msgstr ""
-
-#: circ.offline_checkout.barcode.flagged.barred
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Barred."
-msgstr ""
-
-#: circ.offline_checkout.barcode.flagged.blocked
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Blocked."
-msgstr ""
-
-#: circ.offline_checkout.barcode.flagged.unknown
-msgid ""
-"Warning: As of %1$s, this barcode (%2$s) was flagged with an unknown code: "
-"%3$s."
-msgstr ""
-
-#: circ.offline_checkout.date.early
-msgid "Due date needs to be after today."
-msgstr ""
-
-#: circ.offline_checkout.required_field
-msgid "Required Field"
-msgstr ""
-
-#: circ.offline_checkout.valid_count
-msgid "Please try again and enter a valid count."
-msgstr ""
-
-#: circ.offline_checkout.required_value
-msgid "Required Value"
-msgstr ""
-
-#: circ.offline_register.future.birth.date
-msgid "Patron needs to be born yesterday."
-msgstr ""
-
-#: circ.offline_register.invalid.birth.date
-msgid "Happy birthday!  You need to be more than 0 days old."
-msgstr ""
-
-#: circ.offline_register.survey.prompt
-msgid "Choose a response..."
-msgstr ""
-
-#: circ.offline_register.missing.post_code
-msgid "Missing Address : Postal Code"
-msgstr ""
-
-#: circ.offline_register.missing.state
-msgid "Missing Address : State"
-msgstr ""
-
-#: circ.offline_register.missing.city
-msgid "Missing Address : City"
-msgstr ""
-
-#: circ.offline_register.missing.street1
-msgid "Missing Address : Line 1"
-msgstr ""
-
-#: circ.offline_register.missing.ident_value
-msgid "Missing Identification Value"
-msgstr ""
-
-#: circ.offline_register.missing.ident_type
-msgid "Missing Identification Type"
-msgstr ""
-
-#: circ.offline_register.missing.dob
-msgid "Missing Date of Birth"
-msgstr ""
-
-#: circ.offline_register.missing.first_given_name
-msgid "Missing First Name"
-msgstr ""
-
-#: circ.offline_register.missing.family_name
-msgid "Missing Last Name"
-msgstr ""
-
-#: circ.offline_register.missing.passwd
-msgid "Missing Password"
-msgstr ""
-
-#: circ.offline_register.missing.barcode
-msgid "Missing Barcode"
-msgstr ""
-
-#: circ.offline_register.missing.profile
-msgid "Missing Profile"
-msgstr ""
-
-#: circ.offline_register.missing.home_ou
-msgid "Missing Home Library"
-msgstr ""
-
-#: circ.offline_register.missing.alert
-msgid "Please fix the following:"
-msgstr ""
-
-#: circ.offline_register.patron.saved
-msgid "Patron Registration Saved"
-msgstr ""
-
-#: circ.offline_register.missing.library.list
-msgid "Missing library list."
-msgstr ""
-
-#: circ.offline_register.missing.profile.list
-msgid "Missing profile list."
-msgstr ""
-
-#: circ.offline_register.missing.id.type.list
-msgid "Missing identification type list."
-msgstr ""
-
-#: circ.offline_register.missing.required.surveys
-msgid "Missing required surveys."
-msgstr ""
-
-#: circ.offline_register.missing.files.error
-msgid ""
-"ERROR: Offline patron registration requires some server-generated files.  "
-"Please login periodically to retrieve these files."
-msgstr ""

Deleted: trunk/build/i18n/po/common.properties.pot
===================================================================
--- trunk/build/i18n/po/common.properties.pot	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/po/common.properties.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,72 +0,0 @@
-# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/common.properties
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2007-11-19 13:21-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
-"X-Accelerator-Marker: &\n"
-
-#: common.exception
-msgid ""
-"!! This software has encountered an error.  Please tell your friendly system "
-"administrator or software developer the following:\n"
-"%1$s\n"
-"%2$s\n"
-msgstr ""
-
-#: common.jsan.missing
-msgid "The JSAN library object is missing."
-msgstr ""
-
-#: common.ok
-msgid "Ok"
-msgstr ""
-
-#: common.clear
-msgid "Clear"
-msgstr ""
-
-#: common.confirm
-msgid "Check here to confirm this message."
-msgstr ""
-
-#: common.error.default
-msgid "Please report that this happened."
-msgstr ""
-
-#: common.barcode.status.warning
-msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3."
-msgstr ""
-
-#: common.barcode.status.warning.lost
-msgid "Lost"
-msgstr ""
-
-#: common.barcode.status.warning.expired
-msgid "Expired"
-msgstr ""
-
-#: common.barcode.status.warning.barred
-msgid "Barred"
-msgstr ""
-
-#: common.barcode.status.warning.blocked
-msgid "Blocked"
-msgstr ""
-
-#: common.barcode.status.warning.unknown
-msgid "with an unknown code: %1$s"
-msgstr ""
-
-#: common.date.invalid
-msgid "Invalid Date"
-msgstr ""

Deleted: trunk/build/i18n/po/db.seed.pot
===================================================================
--- trunk/build/i18n/po/db.seed.pot	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/po/db.seed.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,2844 +0,0 @@
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2007-12-11 13:27:40-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: config.bib_source:3
-msgid "oclc"
-msgstr ""
-
-#: config.bib_source:4
-msgid "System Local"
-msgstr ""
-
-#: config.bib_source:5
-msgid "Project Gutenberg"
-msgstr ""
-
-#: config.standing:7
-msgid "Good"
-msgstr ""
-
-#: config.standing:8
-msgid "Barred"
-msgstr ""
-
-#: config.non_cataloged_type:30
-msgid "Paperback Book"
-msgstr ""
-
-#: config.identification_type:33
-msgid "Drivers License"
-msgstr ""
-
-#: config.identification_type:34
-msgid "SSN"
-msgstr ""
-
-#: config.identification_type:35
-msgid "Other"
-msgstr ""
-
-#: config.rule_circ_duration:38
-msgid "7_days_0_renew"
-msgstr ""
-
-#: config.rule_circ_duration:39
-msgid "28_days_2_renew"
-msgstr ""
-
-#: config.rule_circ_duration:40
-msgid "3_months_0_renew"
-msgstr ""
-
-#: config.rule_circ_duration:41
-msgid "3_days_1_renew"
-msgstr ""
-
-#: config.rule_circ_duration:42
-msgid "2_months_2_renew"
-msgstr ""
-
-#: config.rule_circ_duration:43
-msgid "35_days_1_renew"
-msgstr ""
-
-#: config.rule_circ_duration:44
-msgid "7_days_2_renew"
-msgstr ""
-
-#: config.rule_circ_duration:45
-msgid "1_hour_2_renew"
-msgstr ""
-
-#: config.rule_circ_duration:46
-msgid "28_days_0_renew"
-msgstr ""
-
-#: config.rule_circ_duration:47
-msgid "14_days_2_renew"
-msgstr ""
-
-#: config.rule_circ_duration:48
-msgid "default"
-msgstr ""
-
-#: config.rule_max_fine:51
-msgid "default"
-msgstr ""
-
-#: config.rule_max_fine:52
-msgid "overdue_min"
-msgstr ""
-
-#: config.rule_max_fine:53
-msgid "overdue_mid"
-msgstr ""
-
-#: config.rule_max_fine:54
-msgid "overdue_max"
-msgstr ""
-
-#: config.rule_max_fine:55
-msgid "overdue_equip_min"
-msgstr ""
-
-#: config.rule_max_fine:56
-msgid "overdue_equip_mid"
-msgstr ""
-
-#: config.rule_max_fine:57
-msgid "overdue_equip_max"
-msgstr ""
-
-#: config.rule_recuring_fine:60
-msgid "default"
-msgstr ""
-
-#: config.rule_recuring_fine:61
-msgid "10_cent_per_day"
-msgstr ""
-
-#: config.rule_recuring_fine:62
-msgid "50_cent_per_day"
-msgstr ""
-
-#: config.rule_age_hold_protect:64
-msgid "3month"
-msgstr ""
-
-#: config.rule_age_hold_protect:65
-msgid "6month"
-msgstr ""
-
-#: config.copy_status:67
-msgid "Available"
-msgstr ""
-
-#: config.copy_status:69
-msgid "Checked out"
-msgstr ""
-
-#: config.copy_status:71
-msgid "Bindery"
-msgstr ""
-
-#: config.copy_status:72
-msgid "Lost"
-msgstr ""
-
-#: config.copy_status:73
-msgid "Missing"
-msgstr ""
-
-#: config.copy_status:75
-msgid "In process"
-msgstr ""
-
-#: config.copy_status:76
-msgid "In transit"
-msgstr ""
-
-#: config.copy_status:77
-msgid "Reshelving"
-msgstr ""
-
-#: config.copy_status:78
-msgid "On holds shelf"
-msgstr ""
-
-#: config.copy_status:79
-msgid "On order"
-msgstr ""
-
-#: config.copy_status:81
-msgid "ILL"
-msgstr ""
-
-#: config.copy_status:82
-msgid "Cataloging"
-msgstr ""
-
-#: config.copy_status:83
-msgid "Reserves"
-msgstr ""
-
-#: config.copy_status:84
-msgid "Discard/Weed"
-msgstr ""
-
-#: config.copy_status:85
-msgid "Damaged"
-msgstr ""
-
-#: config.net_access_level:90
-msgid "Filtered"
-msgstr ""
-
-#: config.net_access_level:91
-msgid "Unfiltered"
-msgstr ""
-
-#: config.net_access_level:92
-msgid "No Access"
-msgstr ""
-
-#: config.audience_map:95
-msgid "Unknown or unspecified"
-msgstr ""
-
-#: config.audience_map:96
-msgid "Preschool"
-msgstr ""
-
-#: config.audience_map:97
-msgid "Primary"
-msgstr ""
-
-#: config.audience_map:98
-msgid "Pre-adolescent"
-msgstr ""
-
-#: config.audience_map:99
-msgid "Adolescent"
-msgstr ""
-
-#: config.audience_map:100
-msgid "Adult"
-msgstr ""
-
-#: config.audience_map:101
-msgid "Specialized"
-msgstr ""
-
-#: config.audience_map:102
-msgid "General"
-msgstr ""
-
-#: config.audience_map:103
-msgid "Juvenile"
-msgstr ""
-
-#: config.lit_form_map:106
-msgid "Not fiction (not further specified)"
-msgstr ""
-
-#: config.lit_form_map:107
-msgid "Fiction (not further specified)"
-msgstr ""
-
-#: config.lit_form_map:108
-msgid "Comic strips"
-msgstr ""
-
-#: config.lit_form_map:109
-msgid "Dramas"
-msgstr ""
-
-#: config.lit_form_map:110
-msgid "Essays"
-msgstr ""
-
-#: config.lit_form_map:111
-msgid "Novels"
-msgstr ""
-
-#: config.lit_form_map:112
-msgid "Humor, satires, etc."
-msgstr ""
-
-#: config.lit_form_map:113
-msgid "Letters"
-msgstr ""
-
-#: config.lit_form_map:114
-msgid "Short stories"
-msgstr ""
-
-#: config.lit_form_map:115
-msgid "Mixed forms"
-msgstr ""
-
-#: config.lit_form_map:116
-msgid "Poetry"
-msgstr ""
-
-#: config.lit_form_map:117
-msgid "Speeches"
-msgstr ""
-
-#: config.lit_form_map:118
-msgid "Unknown"
-msgstr ""
-
-#: config.language_map:122
-msgid "Afar"
-msgstr ""
-
-#: config.language_map:123
-msgid "Abkhaz"
-msgstr ""
-
-#: config.language_map:124
-msgid "Achinese"
-msgstr ""
-
-#: config.language_map:125
-msgid "Acoli"
-msgstr ""
-
-#: config.language_map:126
-msgid "Adangme"
-msgstr ""
-
-#: config.language_map:127
-msgid "Adygei"
-msgstr ""
-
-#: config.language_map:128
-msgid "Afroasiatic (Other)"
-msgstr ""
-
-#: config.language_map:129
-msgid "Afrihili (Artificial language)"
-msgstr ""
-
-#: config.language_map:130
-msgid "Afrikaans"
-msgstr ""
-
-#: config.language_map:131
-msgid "Aljamía"
-msgstr ""
-
-#: config.language_map:132
-msgid "Akan"
-msgstr ""
-
-#: config.language_map:133
-msgid "Akkadian"
-msgstr ""
-
-#: config.language_map:134
-msgid "Albanian"
-msgstr ""
-
-#: config.language_map:135
-msgid "Aleut"
-msgstr ""
-
-#: config.language_map:136
-msgid "Algonquian (Other)"
-msgstr ""
-
-#: config.language_map:137
-msgid "Amharic"
-msgstr ""
-
-#: config.language_map:138
-msgid "English, Old (ca. 450-1100)"
-msgstr ""
-
-#: config.language_map:139
-msgid "Apache languages"
-msgstr ""
-
-#: config.language_map:140
-msgid "Arabic"
-msgstr ""
-
-#: config.language_map:141
-msgid "Aramaic"
-msgstr ""
-
-#: config.language_map:142
-msgid "Aragonese Spanish"
-msgstr ""
-
-#: config.language_map:143
-msgid "Armenian"
-msgstr ""
-
-#: config.language_map:144
-msgid "Mapuche"
-msgstr ""
-
-#: config.language_map:145
-msgid "Arapaho"
-msgstr ""
-
-#: config.language_map:146
-msgid "Artificial (Other)"
-msgstr ""
-
-#: config.language_map:147
-msgid "Arawak"
-msgstr ""
-
-#: config.language_map:148
-msgid "Assamese"
-msgstr ""
-
-#: config.language_map:149
-msgid "Bable"
-msgstr ""
-
-#: config.language_map:150
-msgid "Athapascan (Other)"
-msgstr ""
-
-#: config.language_map:151
-msgid "Australian languages"
-msgstr ""
-
-#: config.language_map:152
-msgid "Avaric"
-msgstr ""
-
-#: config.language_map:153
-msgid "Avestan"
-msgstr ""
-
-#: config.language_map:154
-msgid "Awadhi"
-msgstr ""
-
-#: config.language_map:155
-msgid "Aymara"
-msgstr ""
-
-#: config.language_map:156
-msgid "Azerbaijani"
-msgstr ""
-
-#: config.language_map:157
-msgid "Banda"
-msgstr ""
-
-#: config.language_map:158
-msgid "Bamileke languages"
-msgstr ""
-
-#: config.language_map:159
-msgid "Bashkir"
-msgstr ""
-
-#: config.language_map:160
-msgid "Baluchi"
-msgstr ""
-
-#: config.language_map:161
-msgid "Bambara"
-msgstr ""
-
-#: config.language_map:162
-msgid "Balinese"
-msgstr ""
-
-#: config.language_map:163
-msgid "Basque"
-msgstr ""
-
-#: config.language_map:164
-msgid "Basa"
-msgstr ""
-
-#: config.language_map:165
-msgid "Baltic (Other)"
-msgstr ""
-
-#: config.language_map:166
-msgid "Beja"
-msgstr ""
-
-#: config.language_map:167
-msgid "Belarusian"
-msgstr ""
-
-#: config.language_map:168
-msgid "Bemba"
-msgstr ""
-
-#: config.language_map:169
-msgid "Bengali"
-msgstr ""
-
-#: config.language_map:170
-msgid "Berber (Other)"
-msgstr ""
-
-#: config.language_map:171
-msgid "Bhojpuri"
-msgstr ""
-
-#: config.language_map:172
-msgid "Bihari"
-msgstr ""
-
-#: config.language_map:173
-msgid "Bikol"
-msgstr ""
-
-#: config.language_map:174
-msgid "Edo"
-msgstr ""
-
-#: config.language_map:175
-msgid "Bislama"
-msgstr ""
-
-#: config.language_map:176
-msgid "Siksika"
-msgstr ""
-
-#: config.language_map:177
-msgid "Bantu (Other)"
-msgstr ""
-
-#: config.language_map:178
-msgid "Bosnian"
-msgstr ""
-
-#: config.language_map:179
-msgid "Braj"
-msgstr ""
-
-#: config.language_map:180
-msgid "Breton"
-msgstr ""
-
-#: config.language_map:181
-msgid "Batak"
-msgstr ""
-
-#: config.language_map:182
-msgid "Buriat"
-msgstr ""
-
-#: config.language_map:183
-msgid "Bugis"
-msgstr ""
-
-#: config.language_map:184
-msgid "Bulgarian"
-msgstr ""
-
-#: config.language_map:185
-msgid "Burmese"
-msgstr ""
-
-#: config.language_map:186
-msgid "Caddo"
-msgstr ""
-
-#: config.language_map:187
-msgid "Central American Indian (Other)"
-msgstr ""
-
-#: config.language_map:188
-msgid "Khmer"
-msgstr ""
-
-#: config.language_map:189
-msgid "Carib"
-msgstr ""
-
-#: config.language_map:190
-msgid "Catalan"
-msgstr ""
-
-#: config.language_map:191
-msgid "Caucasian (Other)"
-msgstr ""
-
-#: config.language_map:192
-msgid "Cebuano"
-msgstr ""
-
-#: config.language_map:193
-msgid "Celtic (Other)"
-msgstr ""
-
-#: config.language_map:194
-msgid "Chamorro"
-msgstr ""
-
-#: config.language_map:195
-msgid "Chibcha"
-msgstr ""
-
-#: config.language_map:196
-msgid "Chechen"
-msgstr ""
-
-#: config.language_map:197
-msgid "Chagatai"
-msgstr ""
-
-#: config.language_map:198
-msgid "Chinese"
-msgstr ""
-
-#: config.language_map:199
-msgid "Truk"
-msgstr ""
-
-#: config.language_map:200
-msgid "Mari"
-msgstr ""
-
-#: config.language_map:201
-msgid "Chinook jargon"
-msgstr ""
-
-#: config.language_map:202
-msgid "Choctaw"
-msgstr ""
-
-#: config.language_map:203
-msgid "Chipewyan"
-msgstr ""
-
-#: config.language_map:204
-msgid "Cherokee"
-msgstr ""
-
-#: config.language_map:205
-msgid "Church Slavic"
-msgstr ""
-
-#: config.language_map:206
-msgid "Chuvash"
-msgstr ""
-
-#: config.language_map:207
-msgid "Cheyenne"
-msgstr ""
-
-#: config.language_map:208
-msgid "Chamic languages"
-msgstr ""
-
-#: config.language_map:209
-msgid "Coptic"
-msgstr ""
-
-#: config.language_map:210
-msgid "Cornish"
-msgstr ""
-
-#: config.language_map:211
-msgid "Corsican"
-msgstr ""
-
-#: config.language_map:212
-msgid "Creoles and Pidgins, English-based (Other)"
-msgstr ""
-
-#: config.language_map:213
-msgid "Creoles and Pidgins, French-based (Other)"
-msgstr ""
-
-#: config.language_map:214
-msgid "Creoles and Pidgins, Portuguese-based (Other)"
-msgstr ""
-
-#: config.language_map:215
-msgid "Cree"
-msgstr ""
-
-#: config.language_map:216
-msgid "Crimean Tatar"
-msgstr ""
-
-#: config.language_map:217
-msgid "Creoles and Pidgins (Other)"
-msgstr ""
-
-#: config.language_map:218
-msgid "Cushitic (Other)"
-msgstr ""
-
-#: config.language_map:219
-msgid "Czech"
-msgstr ""
-
-#: config.language_map:220
-msgid "Dakota"
-msgstr ""
-
-#: config.language_map:221
-msgid "Danish"
-msgstr ""
-
-#: config.language_map:222
-msgid "Dargwa"
-msgstr ""
-
-#: config.language_map:223
-msgid "Dayak"
-msgstr ""
-
-#: config.language_map:224
-msgid "Delaware"
-msgstr ""
-
-#: config.language_map:225
-msgid "Slave"
-msgstr ""
-
-#: config.language_map:226
-msgid "Dogrib"
-msgstr ""
-
-#: config.language_map:227
-msgid "Dinka"
-msgstr ""
-
-#: config.language_map:228
-msgid "Divehi"
-msgstr ""
-
-#: config.language_map:229
-msgid "Dogri"
-msgstr ""
-
-#: config.language_map:230
-msgid "Dravidian (Other)"
-msgstr ""
-
-#: config.language_map:231
-msgid "Duala"
-msgstr ""
-
-#: config.language_map:232
-msgid "Dutch, Middle (ca. 1050-1350)"
-msgstr ""
-
-#: config.language_map:233
-msgid "Dutch"
-msgstr ""
-
-#: config.language_map:234
-msgid "Dyula"
-msgstr ""
-
-#: config.language_map:235
-msgid "Dzongkha"
-msgstr ""
-
-#: config.language_map:236
-msgid "Efik"
-msgstr ""
-
-#: config.language_map:237
-msgid "Egyptian"
-msgstr ""
-
-#: config.language_map:238
-msgid "Ekajuk"
-msgstr ""
-
-#: config.language_map:239
-msgid "Elamite"
-msgstr ""
-
-#: config.language_map:240
-msgid "English"
-msgstr ""
-
-#: config.language_map:241
-msgid "English, Middle (1100-1500)"
-msgstr ""
-
-#: config.language_map:242
-msgid "Esperanto"
-msgstr ""
-
-#: config.language_map:243
-msgid "Eskimo languages"
-msgstr ""
-
-#: config.language_map:244
-msgid "Esperanto"
-msgstr ""
-
-#: config.language_map:245
-msgid "Estonian"
-msgstr ""
-
-#: config.language_map:246
-msgid "Ethiopic"
-msgstr ""
-
-#: config.language_map:247
-msgid "Ewe"
-msgstr ""
-
-#: config.language_map:248
-msgid "Ewondo"
-msgstr ""
-
-#: config.language_map:249
-msgid "Fang"
-msgstr ""
-
-#: config.language_map:250
-msgid "Faroese"
-msgstr ""
-
-#: config.language_map:251
-msgid "Faroese"
-msgstr ""
-
-#: config.language_map:252
-msgid "Fanti"
-msgstr ""
-
-#: config.language_map:253
-msgid "Fijian"
-msgstr ""
-
-#: config.language_map:254
-msgid "Finnish"
-msgstr ""
-
-#: config.language_map:255
-msgid "Finno-Ugrian (Other)"
-msgstr ""
-
-#: config.language_map:256
-msgid "Fon"
-msgstr ""
-
-#: config.language_map:257
-msgid "French"
-msgstr ""
-
-#: config.language_map:258
-msgid "Frisian"
-msgstr ""
-
-#: config.language_map:259
-msgid "French, Middle (ca. 1400-1600)"
-msgstr ""
-
-#: config.language_map:260
-msgid "French, Old (ca. 842-1400)"
-msgstr ""
-
-#: config.language_map:261
-msgid "Frisian"
-msgstr ""
-
-#: config.language_map:262
-msgid "Fula"
-msgstr ""
-
-#: config.language_map:263
-msgid "Friulian"
-msgstr ""
-
-#: config.language_map:264
-msgid "Gã"
-msgstr ""
-
-#: config.language_map:265
-msgid "Scottish Gaelic"
-msgstr ""
-
-#: config.language_map:266
-msgid "Galician"
-msgstr ""
-
-#: config.language_map:267
-msgid "Oromo"
-msgstr ""
-
-#: config.language_map:268
-msgid "Gayo"
-msgstr ""
-
-#: config.language_map:269
-msgid "Gbaya"
-msgstr ""
-
-#: config.language_map:270
-msgid "Germanic (Other)"
-msgstr ""
-
-#: config.language_map:271
-msgid "Georgian"
-msgstr ""
-
-#: config.language_map:272
-msgid "German"
-msgstr ""
-
-#: config.language_map:273
-msgid "Ethiopic"
-msgstr ""
-
-#: config.language_map:274
-msgid "Gilbertese"
-msgstr ""
-
-#: config.language_map:275
-msgid "Scottish Gaelic"
-msgstr ""
-
-#: config.language_map:276
-msgid "Irish"
-msgstr ""
-
-#: config.language_map:277
-msgid "Galician"
-msgstr ""
-
-#: config.language_map:278
-msgid "Manx"
-msgstr ""
-
-#: config.language_map:279
-msgid "German, Middle High (ca. 1050-1500)"
-msgstr ""
-
-#: config.language_map:280
-msgid "German, Old High (ca. 750-1050)"
-msgstr ""
-
-#: config.language_map:281
-msgid "Gondi"
-msgstr ""
-
-#: config.language_map:282
-msgid "Gorontalo"
-msgstr ""
-
-#: config.language_map:283
-msgid "Gothic"
-msgstr ""
-
-#: config.language_map:284
-msgid "Grebo"
-msgstr ""
-
-#: config.language_map:285
-msgid "Greek, Ancient (to 1453)"
-msgstr ""
-
-#: config.language_map:286
-msgid "Greek, Modern (1453- )"
-msgstr ""
-
-#: config.language_map:287
-msgid "Guarani"
-msgstr ""
-
-#: config.language_map:288
-msgid "Guarani"
-msgstr ""
-
-#: config.language_map:289
-msgid "Gujarati"
-msgstr ""
-
-#: config.language_map:290
-msgid "Gwich'in"
-msgstr ""
-
-#: config.language_map:291
-msgid "Haida"
-msgstr ""
-
-#: config.language_map:292
-msgid "Haitian French Creole"
-msgstr ""
-
-#: config.language_map:293
-msgid "Hausa"
-msgstr ""
-
-#: config.language_map:294
-msgid "Hawaiian"
-msgstr ""
-
-#: config.language_map:295
-msgid "Hebrew"
-msgstr ""
-
-#: config.language_map:296
-msgid "Herero"
-msgstr ""
-
-#: config.language_map:297
-msgid "Hiligaynon"
-msgstr ""
-
-#: config.language_map:298
-msgid "Himachali"
-msgstr ""
-
-#: config.language_map:299
-msgid "Hindi"
-msgstr ""
-
-#: config.language_map:300
-msgid "Hittite"
-msgstr ""
-
-#: config.language_map:301
-msgid "Hmong"
-msgstr ""
-
-#: config.language_map:302
-msgid "Hiri Motu"
-msgstr ""
-
-#: config.language_map:303
-msgid "Hungarian"
-msgstr ""
-
-#: config.language_map:304
-msgid "Hupa"
-msgstr ""
-
-#: config.language_map:305
-msgid "Iban"
-msgstr ""
-
-#: config.language_map:306
-msgid "Igbo"
-msgstr ""
-
-#: config.language_map:307
-msgid "Icelandic"
-msgstr ""
-
-#: config.language_map:308
-msgid "Ido"
-msgstr ""
-
-#: config.language_map:309
-msgid "Sichuan Yi"
-msgstr ""
-
-#: config.language_map:310
-msgid "Ijo"
-msgstr ""
-
-#: config.language_map:311
-msgid "Inuktitut"
-msgstr ""
-
-#: config.language_map:312
-msgid "Interlingue"
-msgstr ""
-
-#: config.language_map:313
-msgid "Iloko"
-msgstr ""
-
-#: config.language_map:314
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#: config.language_map:315
-msgid "Indic (Other)"
-msgstr ""
-
-#: config.language_map:316
-msgid "Indonesian"
-msgstr ""
-
-#: config.language_map:317
-msgid "Indo-European (Other)"
-msgstr ""
-
-#: config.language_map:318
-msgid "Ingush"
-msgstr ""
-
-#: config.language_map:319
-msgid "Interlingua (International Auxiliary Language Association)"
-msgstr ""
-
-#: config.language_map:320
-msgid "Inupiaq"
-msgstr ""
-
-#: config.language_map:321
-msgid "Iranian (Other)"
-msgstr ""
-
-#: config.language_map:322
-msgid "Irish"
-msgstr ""
-
-#: config.language_map:323
-msgid "Iroquoian (Other)"
-msgstr ""
-
-#: config.language_map:324
-msgid "Italian"
-msgstr ""
-
-#: config.language_map:325
-msgid "Javanese"
-msgstr ""
-
-#: config.language_map:326
-msgid "Japanese"
-msgstr ""
-
-#: config.language_map:327
-msgid "Judeo-Persian"
-msgstr ""
-
-#: config.language_map:328
-msgid "Judeo-Arabic"
-msgstr ""
-
-#: config.language_map:329
-msgid "Kara-Kalpak"
-msgstr ""
-
-#: config.language_map:330
-msgid "Kabyle"
-msgstr ""
-
-#: config.language_map:331
-msgid "Kachin"
-msgstr ""
-
-#: config.language_map:332
-msgid "Kalâtdlisut"
-msgstr ""
-
-#: config.language_map:333
-msgid "Kamba"
-msgstr ""
-
-#: config.language_map:334
-msgid "Kannada"
-msgstr ""
-
-#: config.language_map:335
-msgid "Karen"
-msgstr ""
-
-#: config.language_map:336
-msgid "Kashmiri"
-msgstr ""
-
-#: config.language_map:337
-msgid "Kanuri"
-msgstr ""
-
-#: config.language_map:338
-msgid "Kawi"
-msgstr ""
-
-#: config.language_map:339
-msgid "Kazakh"
-msgstr ""
-
-#: config.language_map:340
-msgid "Kabardian"
-msgstr ""
-
-#: config.language_map:341
-msgid "Khasi"
-msgstr ""
-
-#: config.language_map:342
-msgid "Khoisan (Other)"
-msgstr ""
-
-#: config.language_map:343
-msgid "Khmer"
-msgstr ""
-
-#: config.language_map:344
-msgid "Khotanese"
-msgstr ""
-
-#: config.language_map:345
-msgid "Kikuyu"
-msgstr ""
-
-#: config.language_map:346
-msgid "Kinyarwanda"
-msgstr ""
-
-#: config.language_map:347
-msgid "Kyrgyz"
-msgstr ""
-
-#: config.language_map:348
-msgid "Kimbundu"
-msgstr ""
-
-#: config.language_map:349
-msgid "Konkani"
-msgstr ""
-
-#: config.language_map:350
-msgid "Komi"
-msgstr ""
-
-#: config.language_map:351
-msgid "Kongo"
-msgstr ""
-
-#: config.language_map:352
-msgid "Korean"
-msgstr ""
-
-#: config.language_map:353
-msgid "Kusaie"
-msgstr ""
-
-#: config.language_map:354
-msgid "Kpelle"
-msgstr ""
-
-#: config.language_map:355
-msgid "Kru"
-msgstr ""
-
-#: config.language_map:356
-msgid "Kurukh"
-msgstr ""
-
-#: config.language_map:357
-msgid "Kuanyama"
-msgstr ""
-
-#: config.language_map:358
-msgid "Kumyk"
-msgstr ""
-
-#: config.language_map:359
-msgid "Kurdish"
-msgstr ""
-
-#: config.language_map:360
-msgid "Kusaie"
-msgstr ""
-
-#: config.language_map:361
-msgid "Kutenai"
-msgstr ""
-
-#: config.language_map:362
-msgid "Ladino"
-msgstr ""
-
-#: config.language_map:363
-msgid "Lahnda"
-msgstr ""
-
-#: config.language_map:364
-msgid "Lamba"
-msgstr ""
-
-#: config.language_map:365
-msgid "Occitan (post-1500)"
-msgstr ""
-
-#: config.language_map:366
-msgid "Lao"
-msgstr ""
-
-#: config.language_map:367
-msgid "Sami"
-msgstr ""
-
-#: config.language_map:368
-msgid "Latin"
-msgstr ""
-
-#: config.language_map:369
-msgid "Latvian"
-msgstr ""
-
-#: config.language_map:370
-msgid "Lezgian"
-msgstr ""
-
-#: config.language_map:371
-msgid "Limburgish"
-msgstr ""
-
-#: config.language_map:372
-msgid "Lingala"
-msgstr ""
-
-#: config.language_map:373
-msgid "Lithuanian"
-msgstr ""
-
-#: config.language_map:374
-msgid "Mongo-Nkundu"
-msgstr ""
-
-#: config.language_map:375
-msgid "Lozi"
-msgstr ""
-
-#: config.language_map:376
-msgid "Letzeburgesch"
-msgstr ""
-
-#: config.language_map:377
-msgid "Luba-Lulua"
-msgstr ""
-
-#: config.language_map:378
-msgid "Luba-Katanga"
-msgstr ""
-
-#: config.language_map:379
-msgid "Ganda"
-msgstr ""
-
-#: config.language_map:380
-msgid "Luiseño"
-msgstr ""
-
-#: config.language_map:381
-msgid "Lunda"
-msgstr ""
-
-#: config.language_map:382
-msgid "Luo (Kenya and Tanzania)"
-msgstr ""
-
-#: config.language_map:383
-msgid "Lushai"
-msgstr ""
-
-#: config.language_map:384
-msgid "Macedonian"
-msgstr ""
-
-#: config.language_map:385
-msgid "Madurese"
-msgstr ""
-
-#: config.language_map:386
-msgid "Magahi"
-msgstr ""
-
-#: config.language_map:387
-msgid "Marshallese"
-msgstr ""
-
-#: config.language_map:388
-msgid "Maithili"
-msgstr ""
-
-#: config.language_map:389
-msgid "Makasar"
-msgstr ""
-
-#: config.language_map:390
-msgid "Malayalam"
-msgstr ""
-
-#: config.language_map:391
-msgid "Mandingo"
-msgstr ""
-
-#: config.language_map:392
-msgid "Maori"
-msgstr ""
-
-#: config.language_map:393
-msgid "Austronesian (Other)"
-msgstr ""
-
-#: config.language_map:394
-msgid "Marathi"
-msgstr ""
-
-#: config.language_map:395
-msgid "Masai"
-msgstr ""
-
-#: config.language_map:396
-msgid "Manx"
-msgstr ""
-
-#: config.language_map:397
-msgid "Malay"
-msgstr ""
-
-#: config.language_map:398
-msgid "Mandar"
-msgstr ""
-
-#: config.language_map:399
-msgid "Mende"
-msgstr ""
-
-#: config.language_map:400
-msgid "Irish, Middle (ca. 1100-1550)"
-msgstr ""
-
-#: config.language_map:401
-msgid "Micmac"
-msgstr ""
-
-#: config.language_map:402
-msgid "Minangkabau"
-msgstr ""
-
-#: config.language_map:403
-msgid "Miscellaneous languages"
-msgstr ""
-
-#: config.language_map:404
-msgid "Mon-Khmer (Other)"
-msgstr ""
-
-#: config.language_map:405
-msgid "Malagasy"
-msgstr ""
-
-#: config.language_map:406
-msgid "Malagasy"
-msgstr ""
-
-#: config.language_map:407
-msgid "Maltese"
-msgstr ""
-
-#: config.language_map:408
-msgid "Manchu"
-msgstr ""
-
-#: config.language_map:409
-msgid "Manipuri"
-msgstr ""
-
-#: config.language_map:410
-msgid "Manobo languages"
-msgstr ""
-
-#: config.language_map:411
-msgid "Mohawk"
-msgstr ""
-
-#: config.language_map:412
-msgid "Moldavian"
-msgstr ""
-
-#: config.language_map:413
-msgid "Mongolian"
-msgstr ""
-
-#: config.language_map:414
-msgid "Mooré"
-msgstr ""
-
-#: config.language_map:415
-msgid "Multiple languages"
-msgstr ""
-
-#: config.language_map:416
-msgid "Munda (Other)"
-msgstr ""
-
-#: config.language_map:417
-msgid "Creek"
-msgstr ""
-
-#: config.language_map:418
-msgid "Marwari"
-msgstr ""
-
-#: config.language_map:419
-msgid "Mayan languages"
-msgstr ""
-
-#: config.language_map:420
-msgid "Nahuatl"
-msgstr ""
-
-#: config.language_map:421
-msgid "North American Indian (Other)"
-msgstr ""
-
-#: config.language_map:422
-msgid "Neapolitan Italian"
-msgstr ""
-
-#: config.language_map:423
-msgid "Nauru"
-msgstr ""
-
-#: config.language_map:424
-msgid "Navajo"
-msgstr ""
-
-#: config.language_map:425
-msgid "Ndebele (South Africa)"
-msgstr ""
-
-#: config.language_map:426
-msgid "Ndebele (Zimbabwe)  "
-msgstr ""
-
-#: config.language_map:427
-msgid "Ndonga"
-msgstr ""
-
-#: config.language_map:428
-msgid "Low German"
-msgstr ""
-
-#: config.language_map:429
-msgid "Nepali"
-msgstr ""
-
-#: config.language_map:430
-msgid "Newari"
-msgstr ""
-
-#: config.language_map:431
-msgid "Nias"
-msgstr ""
-
-#: config.language_map:432
-msgid "Niger-Kordofanian (Other)"
-msgstr ""
-
-#: config.language_map:433
-msgid "Niuean"
-msgstr ""
-
-#: config.language_map:434
-msgid "Norwegian (Nynorsk)"
-msgstr ""
-
-#: config.language_map:435
-msgid "Norwegian (Bokmål)"
-msgstr ""
-
-#: config.language_map:436
-msgid "Nogai"
-msgstr ""
-
-#: config.language_map:437
-msgid "Old Norse"
-msgstr ""
-
-#: config.language_map:438
-msgid "Norwegian"
-msgstr ""
-
-#: config.language_map:439
-msgid "Northern Sotho"
-msgstr ""
-
-#: config.language_map:440
-msgid "Nubian languages"
-msgstr ""
-
-#: config.language_map:441
-msgid "Nyanja"
-msgstr ""
-
-#: config.language_map:442
-msgid "Nyamwezi"
-msgstr ""
-
-#: config.language_map:443
-msgid "Nyankole"
-msgstr ""
-
-#: config.language_map:444
-msgid "Nyoro"
-msgstr ""
-
-#: config.language_map:445
-msgid "Nzima"
-msgstr ""
-
-#: config.language_map:446
-msgid "Occitan (post-1500)"
-msgstr ""
-
-#: config.language_map:447
-msgid "Ojibwa"
-msgstr ""
-
-#: config.language_map:448
-msgid "Oriya"
-msgstr ""
-
-#: config.language_map:449
-msgid "Oromo"
-msgstr ""
-
-#: config.language_map:450
-msgid "Osage"
-msgstr ""
-
-#: config.language_map:451
-msgid "Ossetic"
-msgstr ""
-
-#: config.language_map:452
-msgid "Turkish, Ottoman"
-msgstr ""
-
-#: config.language_map:453
-msgid "Otomian languages"
-msgstr ""
-
-#: config.language_map:454
-msgid "Papuan (Other)"
-msgstr ""
-
-#: config.language_map:455
-msgid "Pangasinan"
-msgstr ""
-
-#: config.language_map:456
-msgid "Pahlavi"
-msgstr ""
-
-#: config.language_map:457
-msgid "Pampanga"
-msgstr ""
-
-#: config.language_map:458
-msgid "Panjabi"
-msgstr ""
-
-#: config.language_map:459
-msgid "Papiamento"
-msgstr ""
-
-#: config.language_map:460
-msgid "Palauan"
-msgstr ""
-
-#: config.language_map:461
-msgid "Old Persian (ca. 600-400 B.C.)"
-msgstr ""
-
-#: config.language_map:462
-msgid "Persian"
-msgstr ""
-
-#: config.language_map:463
-msgid "Philippine (Other)"
-msgstr ""
-
-#: config.language_map:464
-msgid "Phoenician"
-msgstr ""
-
-#: config.language_map:465
-msgid "Pali"
-msgstr ""
-
-#: config.language_map:466
-msgid "Polish"
-msgstr ""
-
-#: config.language_map:467
-msgid "Ponape"
-msgstr ""
-
-#: config.language_map:468
-msgid "Portuguese"
-msgstr ""
-
-#: config.language_map:469
-msgid "Prakrit languages"
-msgstr ""
-
-#: config.language_map:470
-msgid "Provençal (to 1500)"
-msgstr ""
-
-#: config.language_map:471
-msgid "Pushto"
-msgstr ""
-
-#: config.language_map:472
-msgid "Quechua"
-msgstr ""
-
-#: config.language_map:473
-msgid "Rajasthani"
-msgstr ""
-
-#: config.language_map:474
-msgid "Rapanui"
-msgstr ""
-
-#: config.language_map:475
-msgid "Rarotongan"
-msgstr ""
-
-#: config.language_map:476
-msgid "Romance (Other)"
-msgstr ""
-
-#: config.language_map:477
-msgid "Raeto-Romance"
-msgstr ""
-
-#: config.language_map:478
-msgid "Romani"
-msgstr ""
-
-#: config.language_map:479
-msgid "Romanian"
-msgstr ""
-
-#: config.language_map:480
-msgid "Rundi"
-msgstr ""
-
-#: config.language_map:481
-msgid "Russian"
-msgstr ""
-
-#: config.language_map:482
-msgid "Sandawe"
-msgstr ""
-
-#: config.language_map:483
-msgid "Sango (Ubangi Creole)"
-msgstr ""
-
-#: config.language_map:484
-msgid "Yakut"
-msgstr ""
-
-#: config.language_map:485
-msgid "South American Indian (Other)"
-msgstr ""
-
-#: config.language_map:486
-msgid "Salishan languages"
-msgstr ""
-
-#: config.language_map:487
-msgid "Samaritan Aramaic"
-msgstr ""
-
-#: config.language_map:488
-msgid "Sanskrit"
-msgstr ""
-
-#: config.language_map:489
-msgid "Samoan"
-msgstr ""
-
-#: config.language_map:490
-msgid "Sasak"
-msgstr ""
-
-#: config.language_map:491
-msgid "Santali"
-msgstr ""
-
-#: config.language_map:492
-msgid "Serbian"
-msgstr ""
-
-#: config.language_map:493
-msgid "Scots"
-msgstr ""
-
-#: config.language_map:494
-msgid "Croatian"
-msgstr ""
-
-#: config.language_map:495
-msgid "Selkup"
-msgstr ""
-
-#: config.language_map:496
-msgid "Semitic (Other)"
-msgstr ""
-
-#: config.language_map:497
-msgid "Irish, Old (to 1100)"
-msgstr ""
-
-#: config.language_map:498
-msgid "Sign languages"
-msgstr ""
-
-#: config.language_map:499
-msgid "Shan"
-msgstr ""
-
-#: config.language_map:500
-msgid "Shona"
-msgstr ""
-
-#: config.language_map:501
-msgid "Sidamo"
-msgstr ""
-
-#: config.language_map:502
-msgid "Sinhalese"
-msgstr ""
-
-#: config.language_map:503
-msgid "Siouan (Other)"
-msgstr ""
-
-#: config.language_map:504
-msgid "Sino-Tibetan (Other)"
-msgstr ""
-
-#: config.language_map:505
-msgid "Slavic (Other)"
-msgstr ""
-
-#: config.language_map:506
-msgid "Slovak"
-msgstr ""
-
-#: config.language_map:507
-msgid "Slovenian"
-msgstr ""
-
-#: config.language_map:508
-msgid "Southern Sami"
-msgstr ""
-
-#: config.language_map:509
-msgid "Northern Sami"
-msgstr ""
-
-#: config.language_map:510
-msgid "Sami"
-msgstr ""
-
-#: config.language_map:511
-msgid "Lule Sami"
-msgstr ""
-
-#: config.language_map:512
-msgid "Inari Sami"
-msgstr ""
-
-#: config.language_map:513
-msgid "Samoan"
-msgstr ""
-
-#: config.language_map:514
-msgid "Skolt Sami"
-msgstr ""
-
-#: config.language_map:515
-msgid "Shona"
-msgstr ""
-
-#: config.language_map:516
-msgid "Sindhi"
-msgstr ""
-
-#: config.language_map:517
-msgid "Sinhalese"
-msgstr ""
-
-#: config.language_map:518
-msgid "Soninke"
-msgstr ""
-
-#: config.language_map:519
-msgid "Sogdian"
-msgstr ""
-
-#: config.language_map:520
-msgid "Somali"
-msgstr ""
-
-#: config.language_map:521
-msgid "Songhai"
-msgstr ""
-
-#: config.language_map:522
-msgid "Sotho"
-msgstr ""
-
-#: config.language_map:523
-msgid "Spanish"
-msgstr ""
-
-#: config.language_map:524
-msgid "Sardinian"
-msgstr ""
-
-#: config.language_map:525
-msgid "Serer"
-msgstr ""
-
-#: config.language_map:526
-msgid "Nilo-Saharan (Other)"
-msgstr ""
-
-#: config.language_map:527
-msgid "Sotho"
-msgstr ""
-
-#: config.language_map:528
-msgid "Swazi"
-msgstr ""
-
-#: config.language_map:529
-msgid "Sukuma"
-msgstr ""
-
-#: config.language_map:530
-msgid "Sundanese"
-msgstr ""
-
-#: config.language_map:531
-msgid "Susu"
-msgstr ""
-
-#: config.language_map:532
-msgid "Sumerian"
-msgstr ""
-
-#: config.language_map:533
-msgid "Swahili"
-msgstr ""
-
-#: config.language_map:534
-msgid "Swedish"
-msgstr ""
-
-#: config.language_map:535
-msgid "Swazi"
-msgstr ""
-
-#: config.language_map:536
-msgid "Syriac"
-msgstr ""
-
-#: config.language_map:537
-msgid "Tagalog"
-msgstr ""
-
-#: config.language_map:538
-msgid "Tahitian"
-msgstr ""
-
-#: config.language_map:539
-msgid "Tai (Other)"
-msgstr ""
-
-#: config.language_map:540
-msgid "Tajik"
-msgstr ""
-
-#: config.language_map:541
-msgid "Tamil"
-msgstr ""
-
-#: config.language_map:542
-msgid "Tatar"
-msgstr ""
-
-#: config.language_map:543
-msgid "Tatar"
-msgstr ""
-
-#: config.language_map:544
-msgid "Telugu"
-msgstr ""
-
-#: config.language_map:545
-msgid "Temne"
-msgstr ""
-
-#: config.language_map:546
-msgid "Terena"
-msgstr ""
-
-#: config.language_map:547
-msgid "Tetum"
-msgstr ""
-
-#: config.language_map:548
-msgid "Tajik"
-msgstr ""
-
-#: config.language_map:549
-msgid "Tagalog"
-msgstr ""
-
-#: config.language_map:550
-msgid "Thai"
-msgstr ""
-
-#: config.language_map:551
-msgid "Tibetan"
-msgstr ""
-
-#: config.language_map:552
-msgid "Tigré"
-msgstr ""
-
-#: config.language_map:553
-msgid "Tigrinya"
-msgstr ""
-
-#: config.language_map:554
-msgid "Tiv"
-msgstr ""
-
-#: config.language_map:555
-msgid "Tokelauan"
-msgstr ""
-
-#: config.language_map:556
-msgid "Tlingit"
-msgstr ""
-
-#: config.language_map:557
-msgid "Tamashek"
-msgstr ""
-
-#: config.language_map:558
-msgid "Tonga (Nyasa)"
-msgstr ""
-
-#: config.language_map:559
-msgid "Tongan"
-msgstr ""
-
-#: config.language_map:560
-msgid "Tok Pisin"
-msgstr ""
-
-#: config.language_map:561
-msgid "Truk"
-msgstr ""
-
-#: config.language_map:562
-msgid "Tsimshian"
-msgstr ""
-
-#: config.language_map:563
-msgid "Tswana"
-msgstr ""
-
-#: config.language_map:564
-msgid "Tsonga"
-msgstr ""
-
-#: config.language_map:565
-msgid "Tswana"
-msgstr ""
-
-#: config.language_map:566
-msgid "Turkmen"
-msgstr ""
-
-#: config.language_map:567
-msgid "Tumbuka"
-msgstr ""
-
-#: config.language_map:568
-msgid "Tupi languages"
-msgstr ""
-
-#: config.language_map:569
-msgid "Turkish"
-msgstr ""
-
-#: config.language_map:570
-msgid "Altaic (Other)"
-msgstr ""
-
-#: config.language_map:571
-msgid "Tuvaluan"
-msgstr ""
-
-#: config.language_map:572
-msgid "Twi"
-msgstr ""
-
-#: config.language_map:573
-msgid "Tuvinian"
-msgstr ""
-
-#: config.language_map:574
-msgid "Udmurt"
-msgstr ""
-
-#: config.language_map:575
-msgid "Ugaritic"
-msgstr ""
-
-#: config.language_map:576
-msgid "Uighur"
-msgstr ""
-
-#: config.language_map:577
-msgid "Ukrainian"
-msgstr ""
-
-#: config.language_map:578
-msgid "Umbundu"
-msgstr ""
-
-#: config.language_map:579
-msgid "Undetermined"
-msgstr ""
-
-#: config.language_map:580
-msgid "Urdu"
-msgstr ""
-
-#: config.language_map:581
-msgid "Uzbek"
-msgstr ""
-
-#: config.language_map:582
-msgid "Vai"
-msgstr ""
-
-#: config.language_map:583
-msgid "Venda"
-msgstr ""
-
-#: config.language_map:584
-msgid "Vietnamese"
-msgstr ""
-
-#: config.language_map:585
-msgid "Volapük"
-msgstr ""
-
-#: config.language_map:586
-msgid "Votic"
-msgstr ""
-
-#: config.language_map:587
-msgid "Wakashan languages"
-msgstr ""
-
-#: config.language_map:588
-msgid "Walamo"
-msgstr ""
-
-#: config.language_map:589
-msgid "Waray"
-msgstr ""
-
-#: config.language_map:590
-msgid "Washo"
-msgstr ""
-
-#: config.language_map:591
-msgid "Welsh"
-msgstr ""
-
-#: config.language_map:592
-msgid "Sorbian languages"
-msgstr ""
-
-#: config.language_map:593
-msgid "Walloon"
-msgstr ""
-
-#: config.language_map:594
-msgid "Wolof"
-msgstr ""
-
-#: config.language_map:595
-msgid "Kalmyk"
-msgstr ""
-
-#: config.language_map:596
-msgid "Xhosa"
-msgstr ""
-
-#: config.language_map:597
-msgid "Yao (Africa)"
-msgstr ""
-
-#: config.language_map:598
-msgid "Yapese"
-msgstr ""
-
-#: config.language_map:599
-msgid "Yiddish"
-msgstr ""
-
-#: config.language_map:600
-msgid "Yoruba"
-msgstr ""
-
-#: config.language_map:601
-msgid "Yupik languages"
-msgstr ""
-
-#: config.language_map:602
-msgid "Zapotec"
-msgstr ""
-
-#: config.language_map:603
-msgid "Zenaga"
-msgstr ""
-
-#: config.language_map:604
-msgid "Zhuang"
-msgstr ""
-
-#: config.language_map:605
-msgid "Zande"
-msgstr ""
-
-#: config.language_map:606
-msgid "Zulu"
-msgstr ""
-
-#: config.language_map:607
-msgid "Zuni"
-msgstr ""
-
-#: config.item_form_map:610
-msgid "Microfilm"
-msgstr ""
-
-#: config.item_form_map:611
-msgid "Microfiche"
-msgstr ""
-
-#: config.item_form_map:612
-msgid "Microopaque"
-msgstr ""
-
-#: config.item_form_map:613
-msgid "Large print"
-msgstr ""
-
-#: config.item_form_map:614
-msgid "Braille"
-msgstr ""
-
-#: config.item_form_map:615
-msgid "Regular print reproduction"
-msgstr ""
-
-#: config.item_form_map:616
-msgid "Electronic"
-msgstr ""
-
-#: config.item_type_map:619
-msgid "Language material"
-msgstr ""
-
-#: config.item_type_map:620
-msgid "Manuscript language material"
-msgstr ""
-
-#: config.item_type_map:621
-msgid "Projected medium"
-msgstr ""
-
-#: config.item_type_map:622
-msgid "Two-dimensional nonprojectable graphic"
-msgstr ""
-
-#: config.item_type_map:623
-msgid "Three-dimensional artifact or naturally occurring object"
-msgstr ""
-
-#: config.item_type_map:624
-msgid "Kit"
-msgstr ""
-
-#: config.item_type_map:625
-msgid "Mixed materials"
-msgstr ""
-
-#: config.item_type_map:626
-msgid "Cartographic material"
-msgstr ""
-
-#: config.item_type_map:627
-msgid "Manuscript cartographic material"
-msgstr ""
-
-#: config.item_type_map:628
-msgid "Notated music"
-msgstr ""
-
-#: config.item_type_map:629
-msgid "Manuscript notated music"
-msgstr ""
-
-#: config.item_type_map:630
-msgid "Nonmusical sound recording"
-msgstr ""
-
-#: config.item_type_map:631
-msgid "Musical sound recording"
-msgstr ""
-
-#: config.item_type_map:632
-msgid "Computer file"
-msgstr ""
-
-#: actor.org_unit_type:638
-msgid "Consortium"
-msgstr ""
-
-#: actor.org_unit_type:639
-msgid "System"
-msgstr ""
-
-#: actor.org_unit_type:641
-msgid "Branch"
-msgstr ""
-
-#: actor.org_unit_type:642
-msgid "Sub-lib"
-msgstr ""
-
-#: actor.org_unit_type:643
-msgid "Bookmobile"
-msgstr ""
-
-#: actor.org_unit:646
-msgid "Example Consortium"
-msgstr ""
-
-#: actor.org_unit:647
-msgid "Example System 1"
-msgstr ""
-
-#: actor.org_unit:648
-msgid "Example System 2"
-msgstr ""
-
-#: actor.org_unit:649
-msgid "Example Branch 1"
-msgstr ""
-
-#: actor.org_unit:650
-msgid "Example Branch 2"
-msgstr ""
-
-#: actor.org_unit:651
-msgid "Example Branch 3"
-msgstr ""
-
-#: actor.org_unit:652
-msgid "Example Branch 4"
-msgstr ""
-
-#: actor.org_unit:653
-msgid "Example Sub-lib 1"
-msgstr ""
-
-#: actor.org_unit:654
-msgid "Example Bookmobile 1"
-msgstr ""
-
-#: actor.org_address:656
-msgid "123 Main St."
-msgstr ""
-
-#: actor.usr:661
-msgid "Administrator"
-msgstr ""
-
-#: permission.perm_list:674
-msgid "User is allowed to place a hold on a specific copy"
-msgstr ""
-
-#: permission.perm_list:677
-msgid "Allows a user to view another user's holds"
-msgstr ""
-
-#: permission.perm_list:679
-msgid "Allows a user to update another user's hold"
-msgstr ""
-
-#: permission.perm_list:684
-msgid "User is allowed to create new MARC records"
-msgstr ""
-
-#: permission.perm_list:704
-msgid "User may create new billable transactions"
-msgstr ""
-
-#: permission.perm_list:705
-msgid "Allows a user to create a new bill on a transaction"
-msgstr ""
-
-#: permission.perm_list:706
-msgid "Allows a user to view another user's containers (buckets)"
-msgstr ""
-
-#: permission.perm_list:707
-msgid "Allows a user to create a new container for another user"
-msgstr ""
-
-#: permission.perm_list:708
-msgid "User is allowed to create a new copy object"
-msgstr ""
-
-#: permission.perm_list:709
-msgid "Allows a user to change org unit settings"
-msgstr ""
-
-#: permission.perm_list:710
-msgid "Allows a user to see what another use has checked out"
-msgstr ""
-
-#: permission.perm_list:711
-msgid "User may view another user's transactions"
-msgstr ""
-
-#: permission.perm_list:712
-msgid "Allows a user to delete another user container"
-msgstr ""
-
-#: permission.perm_list:713
-msgid "Create a container item for another user"
-msgstr ""
-
-#: permission.perm_list:714
-msgid "User can add other users to permission groups"
-msgstr ""
-
-#: permission.perm_list:715
-msgid "User can remove other users from permission groups"
-msgstr ""
-
-#: permission.perm_list:716
-msgid "Allow user to view others' permission groups"
-msgstr ""
-
-#: permission.perm_list:717
-msgid "Allows a user to determine of another user can checkout an item"
-msgstr ""
-
-#: permission.perm_list:718
-msgid "Allows a user to edit copies in batch"
-msgstr ""
-
-#: permission.perm_list:719
-msgid "User may create a new patron statistical category"
-msgstr ""
-
-#: permission.perm_list:720
-msgid "User may create a copy stat cat"
-msgstr ""
-
-#: permission.perm_list:721
-msgid "User may create a new patron stat cat entry"
-msgstr ""
-
-#: permission.perm_list:722
-msgid "User may create a new copy stat cat entry"
-msgstr ""
-
-#: permission.perm_list:723
-msgid "User may update a patron stat cat"
-msgstr ""
-
-#: permission.perm_list:724
-msgid "User may update a copy stat cat"
-msgstr ""
-
-#: permission.perm_list:725
-msgid "User may update a patron stat cat entry"
-msgstr ""
-
-#: permission.perm_list:726
-msgid "User may update a copy stat cat entry"
-msgstr ""
-
-#: permission.perm_list:727
-msgid "User may link a copy to a stat cat entry"
-msgstr ""
-
-#: permission.perm_list:728
-msgid "User may link another user to a stat cat entry"
-msgstr ""
-
-#: permission.perm_list:729
-msgid "User may delete a patron stat cat"
-msgstr ""
-
-#: permission.perm_list:730
-msgid "User may delete a copy stat cat"
-msgstr ""
-
-#: permission.perm_list:731
-msgid "User may delete a patron stat cat entry"
-msgstr ""
-
-#: permission.perm_list:732
-msgid "User may delete a copy stat cat entry"
-msgstr ""
-
-#: permission.perm_list:733
-msgid "User may delete a patron stat cat entry map"
-msgstr ""
-
-#: permission.perm_list:734
-msgid "User may delete a copy stat cat entry map"
-msgstr ""
-
-#: permission.perm_list:735
-msgid "Allows a user to create a new non-cataloged item type"
-msgstr ""
-
-#: permission.perm_list:736
-msgid "Allows a user to update a non cataloged type"
-msgstr ""
-
-#: permission.perm_list:737
-msgid "Allows a user to create a new in-house-use "
-msgstr ""
-
-#: permission.perm_list:738
-msgid "Allows a user to check out a copy"
-msgstr ""
-
-#: permission.perm_list:739
-msgid "Allows a user to create a new copy location"
-msgstr ""
-
-#: permission.perm_list:740
-msgid "Allows a user to update a copy location"
-msgstr ""
-
-#: permission.perm_list:741
-msgid "Allows a user to delete a copy location"
-msgstr ""
-
-#: permission.perm_list:742
-msgid "Allows a user to create a transit_copy object for transiting a copy"
-msgstr ""
-
-#: permission.perm_list:743
-msgid "Allows a user to close out a transit on a copy"
-msgstr ""
-
-#: permission.perm_list:744
-msgid "Allows a user to see if another user has permission to place a hold on a given copy"
-msgstr ""
-
-#: permission.perm_list:745
-msgid "Allows a user to view which users have checked out a given copy"
-msgstr ""
-
-#: permission.perm_list:746
-msgid "Allows a user to perform z3950 queries against remote servers"
-msgstr ""
-
-#: permission.perm_list:747
-msgid "Allows a user to register a new workstation"
-msgstr ""
-
-#: permission.perm_list:748
-msgid "Allows a user to view all notes attached to a copy"
-msgstr ""
-
-#: permission.perm_list:749
-msgid "Allows a user to view all notes attached to a volume"
-msgstr ""
-
-#: permission.perm_list:750
-msgid "Allows a user to view all notes attached to a title"
-msgstr ""
-
-#: permission.perm_list:751
-msgid "Allows a user to create a new volume note"
-msgstr ""
-
-#: permission.perm_list:752
-msgid "Allows a user to create a new copy note"
-msgstr ""
-
-#: permission.perm_list:753
-msgid "Allows a user to create a new title note"
-msgstr ""
-
-#: permission.perm_list:754
-msgid "Allows a user to delete someone elses copy notes"
-msgstr ""
-
-#: permission.perm_list:755
-msgid "Allows a user to delete someone elses volume note"
-msgstr ""
-
-#: permission.perm_list:756
-msgid "Allows a user to delete someone elses title note"
-msgstr ""
-
-#: permission.perm_list:757
-msgid "Allows a user to update another users container"
-msgstr ""
-
-#: permission.perm_list:758
-msgid "Allows a user to create a container for themselves"
-msgstr ""
-
-#: permission.perm_list:759
-msgid "Allows a user to view notifications attached to a hold"
-msgstr ""
-
-#: permission.perm_list:760
-msgid "Allows a user to create new hold notifications"
-msgstr ""
-
-#: permission.perm_list:761
-msgid "Allows a user to update an org unit setting"
-msgstr ""
-
-#: permission.perm_list:762
-msgid "Allows a user to upload an offline script"
-msgstr ""
-
-#: permission.perm_list:763
-msgid "Allows a user to view uploaded offline script information"
-msgstr ""
-
-#: permission.perm_list:764
-msgid "Allows a user to execute an offline script batch"
-msgstr ""
-
-#: permission.perm_list:765
-msgid "Allows a user to change set the due date on an item to any date"
-msgstr ""
-
-#: permission.perm_list:766
-msgid "Allows a user to bypass the circ permit call for checkout"
-msgstr ""
-
-#: permission.perm_list:767
-msgid "Allows a user to override the copy_is_reference event"
-msgstr ""
-
-#: permission.perm_list:768
-msgid "Allows a user to void a bill"
-msgstr ""
-
-#: permission.perm_list:769
-msgid "Allows a person to check in/out an item that is claims returned"
-msgstr ""
-
-#: permission.perm_list:770
-msgid "Allows a user to check out an item in a non-circulatable status"
-msgstr ""
-
-#: permission.perm_list:771
-msgid "Allows a user to check in/out an item that has an alert message"
-msgstr ""
-
-#: permission.perm_list:772
-msgid "Allows a user to remove the lost status from a copy"
-msgstr ""
-
-#: permission.perm_list:773
-msgid "Allows a user to change the missing status on a copy"
-msgstr ""
-
-#: permission.perm_list:774
-msgid "Allows a user to abort a copy transit if the user is at the transit destination or source"
-msgstr ""
-
-#: permission.perm_list:775
-msgid "Allows a user to abort a copy transit if the user is not at the transit source or dest"
-msgstr ""
-
-#: permission.perm_list:776
-msgid "Allowsa user to query the zip code data method"
-msgstr ""
-
-#: permission.perm_list:778
-msgid "Allows a user to create duplicate holds (e.g. two holds on the same title)"
-msgstr ""
-
-#: permission.perm_list:779
-msgid "Allows a user to update a closed date interval for a given location"
-msgstr ""
-
-#: permission.perm_list:780
-msgid "Allows a user to remove a closed date interval for a given location"
-msgstr ""
-
-#: permission.perm_list:781
-msgid "Allows a user to create a new closed date for a location"
-msgstr ""
-
-#: permission.perm_list:782
-msgid "Allows a user to delete a non cataloged type"
-msgstr ""
-
-#: permission.perm_list:783
-msgid "Allows a user to put someone into collections"
-msgstr ""
-
-#: permission.perm_list:784
-msgid "Allows a user to remove someone from collections"
-msgstr ""
-
-#: permission.perm_list:785
-msgid "Allows a user to bar a patron"
-msgstr ""
-
-#: permission.perm_list:786
-msgid "Allows a user to un-bar a patron"
-msgstr ""
-
-#: permission.perm_list:787
-msgid "Allows a user to remove an existing workstation so a new one can replace it"
-msgstr ""
-
-#: permission.perm_list:788
-msgid "Allows a user to add/remove users to/from the "User" group"
-msgstr ""
-
-#: permission.perm_list:789
-msgid "Allows a user to add/remove users to/from the "Patron" group"
-msgstr ""
-
-#: permission.perm_list:790
-msgid "Allows a user to add/remove users to/from the "Staff" group"
-msgstr ""
-
-#: permission.perm_list:791
-msgid "Allows a user to add/remove users to/from the "Circulator" group"
-msgstr ""
-
-#: permission.perm_list:792
-msgid "Allows a user to add/remove users to/from the "Cataloger" group"
-msgstr ""
-
-#: permission.perm_list:793
-msgid "Allows a user to add/remove users to/from the "GlobalAdmin" group"
-msgstr ""
-
-#: permission.perm_list:794
-msgid "Allows a user to add/remove users to/from the "LocalAdmin" group"
-msgstr ""
-
-#: permission.perm_list:795
-msgid "Allows a user to add/remove users to/from the "LibraryManager" group"
-msgstr ""
-
-#: permission.perm_list:796
-msgid "Allows a user to add/remove users to/from the "Cat1" group"
-msgstr ""
-
-#: permission.perm_list:797
-msgid "Allows a user to add/remove users to/from the "Supercat" group"
-msgstr ""
-
-#: permission.perm_list:798
-msgid "Allows a user to add/remove users to/from the "SIP-Client" group"
-msgstr ""
-
-#: permission.perm_list:799
-msgid "Allows a user to add/remove users to/from the "Vendor" group"
-msgstr ""
-
-#: permission.perm_list:800
-msgid "Allows a user to place a hold on an age-protected item"
-msgstr ""
-
-#: permission.perm_list:801
-msgid "Allows a user to renew an item past the maximun renewal count"
-msgstr ""
-
-#: permission.perm_list:802
-msgid "Allow staff to override checkout count failure"
-msgstr ""
-
-#: permission.perm_list:803
-msgid "Allow staff to override overdue count failure"
-msgstr ""
-
-#: permission.perm_list:804
-msgid "Allow staff to override fine amount checkout failure"
-msgstr ""
-
-#: permission.perm_list:807
-msgid "Allow staff to force checkout of Missing/Lost type items"
-msgstr ""
-
-#: permission.perm_list:808
-msgid "allows users to place multiple holds on a single title"
-msgstr ""
-
-#: permission.perm_list:809
-msgid "Allows a users to run reports"
-msgstr ""
-
-#: permission.perm_list:810
-msgid "Allows a user to share report his own folders"
-msgstr ""
-
-#: permission.perm_list:811
-msgid "Allow user to view report output"
-msgstr ""
-
-#: permission.perm_list:812
-msgid "Allows a user to checkout an item that is marked as non-circ"
-msgstr ""
-
-#: permission.perm_list:813
-msgid "Allows a user to delete an item out of another user's container"
-msgstr ""
-
-#: permission.perm_list:814
-msgid "Allow a staff member to define where another staff member has their permissions"
-msgstr ""
-
-#: asset.copy_location:944
-msgid "Stacks"
-msgstr ""

Copied: trunk/build/i18n/po/en-US/admin.properties.pot (from rev 8396, trunk/build/i18n/po/admin.properties.pot)
===================================================================
--- trunk/build/i18n/po/en-US/admin.properties.pot	                        (rev 0)
+++ trunk/build/i18n/po/en-US/admin.properties.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -0,0 +1,24 @@
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/admin.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-01-17 14:20-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Accelerator-Marker: &\n"
+
+#: staff.admin.survey.save_response.label
+msgid "Save this response"
+msgstr ""
+
+#: staff.admin.survey.save_response.accesskey
+msgid "R"
+msgstr ""

Copied: trunk/build/i18n/po/en-US/cat.properties.pot (from rev 8396, trunk/build/i18n/po/cat.properties.pot)
===================================================================
--- trunk/build/i18n/po/en-US/cat.properties.pot	                        (rev 0)
+++ trunk/build/i18n/po/en-US/cat.properties.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -0,0 +1,40 @@
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/cat.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-01-17 14:20-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Accelerator-Marker: &\n"
+
+#: cat.bib_record
+msgid "Bib Record: %1$s"
+msgstr ""
+
+#: cat.save_record
+msgid "Save Record"
+msgstr ""
+
+#: cat.save.success
+msgid "Record successfully saved."
+msgstr ""
+
+#: cat.save.failure
+msgid "Record not likely updated."
+msgstr ""
+
+#: cat.record.counter
+msgid "Record %1$s of %2$s"
+msgstr ""
+
+#: cat.preference.error
+msgid "Preference not likely updated."
+msgstr ""

Copied: trunk/build/i18n/po/en-US/circ.properties.pot (from rev 8396, trunk/build/i18n/po/circ.properties.pot)
===================================================================
--- trunk/build/i18n/po/en-US/circ.properties.pot	                        (rev 0)
+++ trunk/build/i18n/po/en-US/circ.properties.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -0,0 +1,186 @@
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/circ.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-01-17 14:20-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Accelerator-Marker: &\n"
+
+#: circ.bad_checkdigit
+msgid "This barcode has a bad check digit."
+msgstr ""
+
+#: circ.barcode.enter
+msgid "Please enter a patron barcode first."
+msgstr ""
+
+#: circ.barcode.warning
+msgid "Barcode Warning"
+msgstr ""
+
+#: circ.standalone
+msgid "Standalone"
+msgstr ""
+
+#: circ.duplicate_scan.msg
+msgid "This barcode has already been scanned."
+msgstr ""
+
+#: circ.duplicate_scan.field
+msgid "Duplicate Scan"
+msgstr ""
+
+#: circ.offline_checkout.nonbarcoded
+msgid "or choose a non-barcoded option..."
+msgstr ""
+
+#: circ.offline_checkout.items
+msgid "Enter the number of items:"
+msgstr ""
+
+#: circ.offline_checkout.download.warning
+msgid ""
+"WARNING: The non-barcode types have not been downloaded from the server.  "
+"You should log in to retrieve these."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.lost
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Lost."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.expired
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Expired."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.barred
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Barred."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.blocked
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged Blocked."
+msgstr ""
+
+#: circ.offline_checkout.barcode.flagged.unknown
+msgid ""
+"Warning: As of %1$s, this barcode (%2$s) was flagged with an unknown code: "
+"%3$s."
+msgstr ""
+
+#: circ.offline_checkout.date.early
+msgid "Due date needs to be after today."
+msgstr ""
+
+#: circ.offline_checkout.required_field
+msgid "Required Field"
+msgstr ""
+
+#: circ.offline_checkout.valid_count
+msgid "Please try again and enter a valid count."
+msgstr ""
+
+#: circ.offline_checkout.required_value
+msgid "Required Value"
+msgstr ""
+
+#: circ.offline_register.future.birth.date
+msgid "Patron needs to be born yesterday."
+msgstr ""
+
+#: circ.offline_register.invalid.birth.date
+msgid "Happy birthday!  You need to be more than 0 days old."
+msgstr ""
+
+#: circ.offline_register.survey.prompt
+msgid "Choose a response..."
+msgstr ""
+
+#: circ.offline_register.missing.post_code
+msgid "Missing Address : Postal Code"
+msgstr ""
+
+#: circ.offline_register.missing.state
+msgid "Missing Address : State"
+msgstr ""
+
+#: circ.offline_register.missing.city
+msgid "Missing Address : City"
+msgstr ""
+
+#: circ.offline_register.missing.street1
+msgid "Missing Address : Line 1"
+msgstr ""
+
+#: circ.offline_register.missing.ident_value
+msgid "Missing Identification Value"
+msgstr ""
+
+#: circ.offline_register.missing.ident_type
+msgid "Missing Identification Type"
+msgstr ""
+
+#: circ.offline_register.missing.dob
+msgid "Missing Date of Birth"
+msgstr ""
+
+#: circ.offline_register.missing.first_given_name
+msgid "Missing First Name"
+msgstr ""
+
+#: circ.offline_register.missing.family_name
+msgid "Missing Last Name"
+msgstr ""
+
+#: circ.offline_register.missing.passwd
+msgid "Missing Password"
+msgstr ""
+
+#: circ.offline_register.missing.barcode
+msgid "Missing Barcode"
+msgstr ""
+
+#: circ.offline_register.missing.profile
+msgid "Missing Profile"
+msgstr ""
+
+#: circ.offline_register.missing.home_ou
+msgid "Missing Home Library"
+msgstr ""
+
+#: circ.offline_register.missing.alert
+msgid "Please fix the following:"
+msgstr ""
+
+#: circ.offline_register.patron.saved
+msgid "Patron Registration Saved"
+msgstr ""
+
+#: circ.offline_register.missing.library.list
+msgid "Missing library list."
+msgstr ""
+
+#: circ.offline_register.missing.profile.list
+msgid "Missing profile list."
+msgstr ""
+
+#: circ.offline_register.missing.id.type.list
+msgid "Missing identification type list."
+msgstr ""
+
+#: circ.offline_register.missing.required.surveys
+msgid "Missing required surveys."
+msgstr ""
+
+#: circ.offline_register.missing.files.error
+msgid ""
+"ERROR: Offline patron registration requires some server-generated files.  "
+"Please login periodically to retrieve these files."
+msgstr ""

Copied: trunk/build/i18n/po/en-US/common.properties.pot (from rev 8396, trunk/build/i18n/po/common.properties.pot)
===================================================================
--- trunk/build/i18n/po/en-US/common.properties.pot	                        (rev 0)
+++ trunk/build/i18n/po/en-US/common.properties.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -0,0 +1,72 @@
+# extracted from ../../Open-ILS/xul/staff_client/chrome/locale/en-US/common.properties
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-01-17 14:20-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Accelerator-Marker: &\n"
+
+#: common.exception
+msgid ""
+"!! This software has encountered an error.  Please tell your friendly system "
+"administrator or software developer the following:\n"
+"%1$s\n"
+"%2$s\n"
+msgstr ""
+
+#: common.jsan.missing
+msgid "The JSAN library object is missing."
+msgstr ""
+
+#: common.ok
+msgid "Ok"
+msgstr ""
+
+#: common.clear
+msgid "Clear"
+msgstr ""
+
+#: common.confirm
+msgid "Check here to confirm this message."
+msgstr ""
+
+#: common.error.default
+msgid "Please report that this happened."
+msgstr ""
+
+#: common.barcode.status.warning
+msgid "Warning: As of %1$s, this barcode (%2$s) was flagged %3."
+msgstr ""
+
+#: common.barcode.status.warning.lost
+msgid "Lost"
+msgstr ""
+
+#: common.barcode.status.warning.expired
+msgid "Expired"
+msgstr ""
+
+#: common.barcode.status.warning.barred
+msgid "Barred"
+msgstr ""
+
+#: common.barcode.status.warning.blocked
+msgid "Blocked"
+msgstr ""
+
+#: common.barcode.status.warning.unknown
+msgid "with an unknown code: %1$s"
+msgstr ""
+
+#: common.date.invalid
+msgid "Invalid Date"
+msgstr ""

Copied: trunk/build/i18n/po/en-US/db.seed.pot (from rev 8396, trunk/build/i18n/po/db.seed.pot)
===================================================================
--- trunk/build/i18n/po/en-US/db.seed.pot	                        (rev 0)
+++ trunk/build/i18n/po/en-US/db.seed.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -0,0 +1,2844 @@
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: Evergreen 1.4\n"
+"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-01-17 14:20:24-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8-bit\n"
+
+#: config.bib_source:3
+msgid "oclc"
+msgstr ""
+
+#: config.bib_source:4
+msgid "System Local"
+msgstr ""
+
+#: config.bib_source:5
+msgid "Project Gutenberg"
+msgstr ""
+
+#: config.standing:7
+msgid "Good"
+msgstr ""
+
+#: config.standing:8
+msgid "Barred"
+msgstr ""
+
+#: config.non_cataloged_type:30
+msgid "Paperback Book"
+msgstr ""
+
+#: config.identification_type:33
+msgid "Drivers License"
+msgstr ""
+
+#: config.identification_type:34
+msgid "SSN"
+msgstr ""
+
+#: config.identification_type:35
+msgid "Other"
+msgstr ""
+
+#: config.rule_circ_duration:38
+msgid "7_days_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:39
+msgid "28_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:40
+msgid "3_months_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:41
+msgid "3_days_1_renew"
+msgstr ""
+
+#: config.rule_circ_duration:42
+msgid "2_months_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:43
+msgid "35_days_1_renew"
+msgstr ""
+
+#: config.rule_circ_duration:44
+msgid "7_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:45
+msgid "1_hour_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:46
+msgid "28_days_0_renew"
+msgstr ""
+
+#: config.rule_circ_duration:47
+msgid "14_days_2_renew"
+msgstr ""
+
+#: config.rule_circ_duration:48
+msgid "default"
+msgstr ""
+
+#: config.rule_max_fine:51
+msgid "default"
+msgstr ""
+
+#: config.rule_max_fine:52
+msgid "overdue_min"
+msgstr ""
+
+#: config.rule_max_fine:53
+msgid "overdue_mid"
+msgstr ""
+
+#: config.rule_max_fine:54
+msgid "overdue_max"
+msgstr ""
+
+#: config.rule_max_fine:55
+msgid "overdue_equip_min"
+msgstr ""
+
+#: config.rule_max_fine:56
+msgid "overdue_equip_mid"
+msgstr ""
+
+#: config.rule_max_fine:57
+msgid "overdue_equip_max"
+msgstr ""
+
+#: config.rule_recuring_fine:60
+msgid "default"
+msgstr ""
+
+#: config.rule_recuring_fine:61
+msgid "10_cent_per_day"
+msgstr ""
+
+#: config.rule_recuring_fine:62
+msgid "50_cent_per_day"
+msgstr ""
+
+#: config.rule_age_hold_protect:64
+msgid "3month"
+msgstr ""
+
+#: config.rule_age_hold_protect:65
+msgid "6month"
+msgstr ""
+
+#: config.copy_status:67
+msgid "Available"
+msgstr ""
+
+#: config.copy_status:69
+msgid "Checked out"
+msgstr ""
+
+#: config.copy_status:71
+msgid "Bindery"
+msgstr ""
+
+#: config.copy_status:72
+msgid "Lost"
+msgstr ""
+
+#: config.copy_status:73
+msgid "Missing"
+msgstr ""
+
+#: config.copy_status:75
+msgid "In process"
+msgstr ""
+
+#: config.copy_status:76
+msgid "In transit"
+msgstr ""
+
+#: config.copy_status:77
+msgid "Reshelving"
+msgstr ""
+
+#: config.copy_status:78
+msgid "On holds shelf"
+msgstr ""
+
+#: config.copy_status:79
+msgid "On order"
+msgstr ""
+
+#: config.copy_status:81
+msgid "ILL"
+msgstr ""
+
+#: config.copy_status:82
+msgid "Cataloging"
+msgstr ""
+
+#: config.copy_status:83
+msgid "Reserves"
+msgstr ""
+
+#: config.copy_status:84
+msgid "Discard/Weed"
+msgstr ""
+
+#: config.copy_status:85
+msgid "Damaged"
+msgstr ""
+
+#: config.net_access_level:90
+msgid "Filtered"
+msgstr ""
+
+#: config.net_access_level:91
+msgid "Unfiltered"
+msgstr ""
+
+#: config.net_access_level:92
+msgid "No Access"
+msgstr ""
+
+#: config.audience_map:95
+msgid "Unknown or unspecified"
+msgstr ""
+
+#: config.audience_map:96
+msgid "Preschool"
+msgstr ""
+
+#: config.audience_map:97
+msgid "Primary"
+msgstr ""
+
+#: config.audience_map:98
+msgid "Pre-adolescent"
+msgstr ""
+
+#: config.audience_map:99
+msgid "Adolescent"
+msgstr ""
+
+#: config.audience_map:100
+msgid "Adult"
+msgstr ""
+
+#: config.audience_map:101
+msgid "Specialized"
+msgstr ""
+
+#: config.audience_map:102
+msgid "General"
+msgstr ""
+
+#: config.audience_map:103
+msgid "Juvenile"
+msgstr ""
+
+#: config.lit_form_map:106
+msgid "Not fiction (not further specified)"
+msgstr ""
+
+#: config.lit_form_map:107
+msgid "Fiction (not further specified)"
+msgstr ""
+
+#: config.lit_form_map:108
+msgid "Comic strips"
+msgstr ""
+
+#: config.lit_form_map:109
+msgid "Dramas"
+msgstr ""
+
+#: config.lit_form_map:110
+msgid "Essays"
+msgstr ""
+
+#: config.lit_form_map:111
+msgid "Novels"
+msgstr ""
+
+#: config.lit_form_map:112
+msgid "Humor, satires, etc."
+msgstr ""
+
+#: config.lit_form_map:113
+msgid "Letters"
+msgstr ""
+
+#: config.lit_form_map:114
+msgid "Short stories"
+msgstr ""
+
+#: config.lit_form_map:115
+msgid "Mixed forms"
+msgstr ""
+
+#: config.lit_form_map:116
+msgid "Poetry"
+msgstr ""
+
+#: config.lit_form_map:117
+msgid "Speeches"
+msgstr ""
+
+#: config.lit_form_map:118
+msgid "Unknown"
+msgstr ""
+
+#: config.language_map:122
+msgid "Afar"
+msgstr ""
+
+#: config.language_map:123
+msgid "Abkhaz"
+msgstr ""
+
+#: config.language_map:124
+msgid "Achinese"
+msgstr ""
+
+#: config.language_map:125
+msgid "Acoli"
+msgstr ""
+
+#: config.language_map:126
+msgid "Adangme"
+msgstr ""
+
+#: config.language_map:127
+msgid "Adygei"
+msgstr ""
+
+#: config.language_map:128
+msgid "Afroasiatic (Other)"
+msgstr ""
+
+#: config.language_map:129
+msgid "Afrihili (Artificial language)"
+msgstr ""
+
+#: config.language_map:130
+msgid "Afrikaans"
+msgstr ""
+
+#: config.language_map:131
+msgid "Aljamía"
+msgstr ""
+
+#: config.language_map:132
+msgid "Akan"
+msgstr ""
+
+#: config.language_map:133
+msgid "Akkadian"
+msgstr ""
+
+#: config.language_map:134
+msgid "Albanian"
+msgstr ""
+
+#: config.language_map:135
+msgid "Aleut"
+msgstr ""
+
+#: config.language_map:136
+msgid "Algonquian (Other)"
+msgstr ""
+
+#: config.language_map:137
+msgid "Amharic"
+msgstr ""
+
+#: config.language_map:138
+msgid "English, Old (ca. 450-1100)"
+msgstr ""
+
+#: config.language_map:139
+msgid "Apache languages"
+msgstr ""
+
+#: config.language_map:140
+msgid "Arabic"
+msgstr ""
+
+#: config.language_map:141
+msgid "Aramaic"
+msgstr ""
+
+#: config.language_map:142
+msgid "Aragonese Spanish"
+msgstr ""
+
+#: config.language_map:143
+msgid "Armenian"
+msgstr ""
+
+#: config.language_map:144
+msgid "Mapuche"
+msgstr ""
+
+#: config.language_map:145
+msgid "Arapaho"
+msgstr ""
+
+#: config.language_map:146
+msgid "Artificial (Other)"
+msgstr ""
+
+#: config.language_map:147
+msgid "Arawak"
+msgstr ""
+
+#: config.language_map:148
+msgid "Assamese"
+msgstr ""
+
+#: config.language_map:149
+msgid "Bable"
+msgstr ""
+
+#: config.language_map:150
+msgid "Athapascan (Other)"
+msgstr ""
+
+#: config.language_map:151
+msgid "Australian languages"
+msgstr ""
+
+#: config.language_map:152
+msgid "Avaric"
+msgstr ""
+
+#: config.language_map:153
+msgid "Avestan"
+msgstr ""
+
+#: config.language_map:154
+msgid "Awadhi"
+msgstr ""
+
+#: config.language_map:155
+msgid "Aymara"
+msgstr ""
+
+#: config.language_map:156
+msgid "Azerbaijani"
+msgstr ""
+
+#: config.language_map:157
+msgid "Banda"
+msgstr ""
+
+#: config.language_map:158
+msgid "Bamileke languages"
+msgstr ""
+
+#: config.language_map:159
+msgid "Bashkir"
+msgstr ""
+
+#: config.language_map:160
+msgid "Baluchi"
+msgstr ""
+
+#: config.language_map:161
+msgid "Bambara"
+msgstr ""
+
+#: config.language_map:162
+msgid "Balinese"
+msgstr ""
+
+#: config.language_map:163
+msgid "Basque"
+msgstr ""
+
+#: config.language_map:164
+msgid "Basa"
+msgstr ""
+
+#: config.language_map:165
+msgid "Baltic (Other)"
+msgstr ""
+
+#: config.language_map:166
+msgid "Beja"
+msgstr ""
+
+#: config.language_map:167
+msgid "Belarusian"
+msgstr ""
+
+#: config.language_map:168
+msgid "Bemba"
+msgstr ""
+
+#: config.language_map:169
+msgid "Bengali"
+msgstr ""
+
+#: config.language_map:170
+msgid "Berber (Other)"
+msgstr ""
+
+#: config.language_map:171
+msgid "Bhojpuri"
+msgstr ""
+
+#: config.language_map:172
+msgid "Bihari"
+msgstr ""
+
+#: config.language_map:173
+msgid "Bikol"
+msgstr ""
+
+#: config.language_map:174
+msgid "Edo"
+msgstr ""
+
+#: config.language_map:175
+msgid "Bislama"
+msgstr ""
+
+#: config.language_map:176
+msgid "Siksika"
+msgstr ""
+
+#: config.language_map:177
+msgid "Bantu (Other)"
+msgstr ""
+
+#: config.language_map:178
+msgid "Bosnian"
+msgstr ""
+
+#: config.language_map:179
+msgid "Braj"
+msgstr ""
+
+#: config.language_map:180
+msgid "Breton"
+msgstr ""
+
+#: config.language_map:181
+msgid "Batak"
+msgstr ""
+
+#: config.language_map:182
+msgid "Buriat"
+msgstr ""
+
+#: config.language_map:183
+msgid "Bugis"
+msgstr ""
+
+#: config.language_map:184
+msgid "Bulgarian"
+msgstr ""
+
+#: config.language_map:185
+msgid "Burmese"
+msgstr ""
+
+#: config.language_map:186
+msgid "Caddo"
+msgstr ""
+
+#: config.language_map:187
+msgid "Central American Indian (Other)"
+msgstr ""
+
+#: config.language_map:188
+msgid "Khmer"
+msgstr ""
+
+#: config.language_map:189
+msgid "Carib"
+msgstr ""
+
+#: config.language_map:190
+msgid "Catalan"
+msgstr ""
+
+#: config.language_map:191
+msgid "Caucasian (Other)"
+msgstr ""
+
+#: config.language_map:192
+msgid "Cebuano"
+msgstr ""
+
+#: config.language_map:193
+msgid "Celtic (Other)"
+msgstr ""
+
+#: config.language_map:194
+msgid "Chamorro"
+msgstr ""
+
+#: config.language_map:195
+msgid "Chibcha"
+msgstr ""
+
+#: config.language_map:196
+msgid "Chechen"
+msgstr ""
+
+#: config.language_map:197
+msgid "Chagatai"
+msgstr ""
+
+#: config.language_map:198
+msgid "Chinese"
+msgstr ""
+
+#: config.language_map:199
+msgid "Truk"
+msgstr ""
+
+#: config.language_map:200
+msgid "Mari"
+msgstr ""
+
+#: config.language_map:201
+msgid "Chinook jargon"
+msgstr ""
+
+#: config.language_map:202
+msgid "Choctaw"
+msgstr ""
+
+#: config.language_map:203
+msgid "Chipewyan"
+msgstr ""
+
+#: config.language_map:204
+msgid "Cherokee"
+msgstr ""
+
+#: config.language_map:205
+msgid "Church Slavic"
+msgstr ""
+
+#: config.language_map:206
+msgid "Chuvash"
+msgstr ""
+
+#: config.language_map:207
+msgid "Cheyenne"
+msgstr ""
+
+#: config.language_map:208
+msgid "Chamic languages"
+msgstr ""
+
+#: config.language_map:209
+msgid "Coptic"
+msgstr ""
+
+#: config.language_map:210
+msgid "Cornish"
+msgstr ""
+
+#: config.language_map:211
+msgid "Corsican"
+msgstr ""
+
+#: config.language_map:212
+msgid "Creoles and Pidgins, English-based (Other)"
+msgstr ""
+
+#: config.language_map:213
+msgid "Creoles and Pidgins, French-based (Other)"
+msgstr ""
+
+#: config.language_map:214
+msgid "Creoles and Pidgins, Portuguese-based (Other)"
+msgstr ""
+
+#: config.language_map:215
+msgid "Cree"
+msgstr ""
+
+#: config.language_map:216
+msgid "Crimean Tatar"
+msgstr ""
+
+#: config.language_map:217
+msgid "Creoles and Pidgins (Other)"
+msgstr ""
+
+#: config.language_map:218
+msgid "Cushitic (Other)"
+msgstr ""
+
+#: config.language_map:219
+msgid "Czech"
+msgstr ""
+
+#: config.language_map:220
+msgid "Dakota"
+msgstr ""
+
+#: config.language_map:221
+msgid "Danish"
+msgstr ""
+
+#: config.language_map:222
+msgid "Dargwa"
+msgstr ""
+
+#: config.language_map:223
+msgid "Dayak"
+msgstr ""
+
+#: config.language_map:224
+msgid "Delaware"
+msgstr ""
+
+#: config.language_map:225
+msgid "Slave"
+msgstr ""
+
+#: config.language_map:226
+msgid "Dogrib"
+msgstr ""
+
+#: config.language_map:227
+msgid "Dinka"
+msgstr ""
+
+#: config.language_map:228
+msgid "Divehi"
+msgstr ""
+
+#: config.language_map:229
+msgid "Dogri"
+msgstr ""
+
+#: config.language_map:230
+msgid "Dravidian (Other)"
+msgstr ""
+
+#: config.language_map:231
+msgid "Duala"
+msgstr ""
+
+#: config.language_map:232
+msgid "Dutch, Middle (ca. 1050-1350)"
+msgstr ""
+
+#: config.language_map:233
+msgid "Dutch"
+msgstr ""
+
+#: config.language_map:234
+msgid "Dyula"
+msgstr ""
+
+#: config.language_map:235
+msgid "Dzongkha"
+msgstr ""
+
+#: config.language_map:236
+msgid "Efik"
+msgstr ""
+
+#: config.language_map:237
+msgid "Egyptian"
+msgstr ""
+
+#: config.language_map:238
+msgid "Ekajuk"
+msgstr ""
+
+#: config.language_map:239
+msgid "Elamite"
+msgstr ""
+
+#: config.language_map:240
+msgid "English"
+msgstr ""
+
+#: config.language_map:241
+msgid "English, Middle (1100-1500)"
+msgstr ""
+
+#: config.language_map:242
+msgid "Esperanto"
+msgstr ""
+
+#: config.language_map:243
+msgid "Eskimo languages"
+msgstr ""
+
+#: config.language_map:244
+msgid "Esperanto"
+msgstr ""
+
+#: config.language_map:245
+msgid "Estonian"
+msgstr ""
+
+#: config.language_map:246
+msgid "Ethiopic"
+msgstr ""
+
+#: config.language_map:247
+msgid "Ewe"
+msgstr ""
+
+#: config.language_map:248
+msgid "Ewondo"
+msgstr ""
+
+#: config.language_map:249
+msgid "Fang"
+msgstr ""
+
+#: config.language_map:250
+msgid "Faroese"
+msgstr ""
+
+#: config.language_map:251
+msgid "Faroese"
+msgstr ""
+
+#: config.language_map:252
+msgid "Fanti"
+msgstr ""
+
+#: config.language_map:253
+msgid "Fijian"
+msgstr ""
+
+#: config.language_map:254
+msgid "Finnish"
+msgstr ""
+
+#: config.language_map:255
+msgid "Finno-Ugrian (Other)"
+msgstr ""
+
+#: config.language_map:256
+msgid "Fon"
+msgstr ""
+
+#: config.language_map:257
+msgid "French"
+msgstr ""
+
+#: config.language_map:258
+msgid "Frisian"
+msgstr ""
+
+#: config.language_map:259
+msgid "French, Middle (ca. 1400-1600)"
+msgstr ""
+
+#: config.language_map:260
+msgid "French, Old (ca. 842-1400)"
+msgstr ""
+
+#: config.language_map:261
+msgid "Frisian"
+msgstr ""
+
+#: config.language_map:262
+msgid "Fula"
+msgstr ""
+
+#: config.language_map:263
+msgid "Friulian"
+msgstr ""
+
+#: config.language_map:264
+msgid "Gã"
+msgstr ""
+
+#: config.language_map:265
+msgid "Scottish Gaelic"
+msgstr ""
+
+#: config.language_map:266
+msgid "Galician"
+msgstr ""
+
+#: config.language_map:267
+msgid "Oromo"
+msgstr ""
+
+#: config.language_map:268
+msgid "Gayo"
+msgstr ""
+
+#: config.language_map:269
+msgid "Gbaya"
+msgstr ""
+
+#: config.language_map:270
+msgid "Germanic (Other)"
+msgstr ""
+
+#: config.language_map:271
+msgid "Georgian"
+msgstr ""
+
+#: config.language_map:272
+msgid "German"
+msgstr ""
+
+#: config.language_map:273
+msgid "Ethiopic"
+msgstr ""
+
+#: config.language_map:274
+msgid "Gilbertese"
+msgstr ""
+
+#: config.language_map:275
+msgid "Scottish Gaelic"
+msgstr ""
+
+#: config.language_map:276
+msgid "Irish"
+msgstr ""
+
+#: config.language_map:277
+msgid "Galician"
+msgstr ""
+
+#: config.language_map:278
+msgid "Manx"
+msgstr ""
+
+#: config.language_map:279
+msgid "German, Middle High (ca. 1050-1500)"
+msgstr ""
+
+#: config.language_map:280
+msgid "German, Old High (ca. 750-1050)"
+msgstr ""
+
+#: config.language_map:281
+msgid "Gondi"
+msgstr ""
+
+#: config.language_map:282
+msgid "Gorontalo"
+msgstr ""
+
+#: config.language_map:283
+msgid "Gothic"
+msgstr ""
+
+#: config.language_map:284
+msgid "Grebo"
+msgstr ""
+
+#: config.language_map:285
+msgid "Greek, Ancient (to 1453)"
+msgstr ""
+
+#: config.language_map:286
+msgid "Greek, Modern (1453- )"
+msgstr ""
+
+#: config.language_map:287
+msgid "Guarani"
+msgstr ""
+
+#: config.language_map:288
+msgid "Guarani"
+msgstr ""
+
+#: config.language_map:289
+msgid "Gujarati"
+msgstr ""
+
+#: config.language_map:290
+msgid "Gwich'in"
+msgstr ""
+
+#: config.language_map:291
+msgid "Haida"
+msgstr ""
+
+#: config.language_map:292
+msgid "Haitian French Creole"
+msgstr ""
+
+#: config.language_map:293
+msgid "Hausa"
+msgstr ""
+
+#: config.language_map:294
+msgid "Hawaiian"
+msgstr ""
+
+#: config.language_map:295
+msgid "Hebrew"
+msgstr ""
+
+#: config.language_map:296
+msgid "Herero"
+msgstr ""
+
+#: config.language_map:297
+msgid "Hiligaynon"
+msgstr ""
+
+#: config.language_map:298
+msgid "Himachali"
+msgstr ""
+
+#: config.language_map:299
+msgid "Hindi"
+msgstr ""
+
+#: config.language_map:300
+msgid "Hittite"
+msgstr ""
+
+#: config.language_map:301
+msgid "Hmong"
+msgstr ""
+
+#: config.language_map:302
+msgid "Hiri Motu"
+msgstr ""
+
+#: config.language_map:303
+msgid "Hungarian"
+msgstr ""
+
+#: config.language_map:304
+msgid "Hupa"
+msgstr ""
+
+#: config.language_map:305
+msgid "Iban"
+msgstr ""
+
+#: config.language_map:306
+msgid "Igbo"
+msgstr ""
+
+#: config.language_map:307
+msgid "Icelandic"
+msgstr ""
+
+#: config.language_map:308
+msgid "Ido"
+msgstr ""
+
+#: config.language_map:309
+msgid "Sichuan Yi"
+msgstr ""
+
+#: config.language_map:310
+msgid "Ijo"
+msgstr ""
+
+#: config.language_map:311
+msgid "Inuktitut"
+msgstr ""
+
+#: config.language_map:312
+msgid "Interlingue"
+msgstr ""
+
+#: config.language_map:313
+msgid "Iloko"
+msgstr ""
+
+#: config.language_map:314
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
+
+#: config.language_map:315
+msgid "Indic (Other)"
+msgstr ""
+
+#: config.language_map:316
+msgid "Indonesian"
+msgstr ""
+
+#: config.language_map:317
+msgid "Indo-European (Other)"
+msgstr ""
+
+#: config.language_map:318
+msgid "Ingush"
+msgstr ""
+
+#: config.language_map:319
+msgid "Interlingua (International Auxiliary Language Association)"
+msgstr ""
+
+#: config.language_map:320
+msgid "Inupiaq"
+msgstr ""
+
+#: config.language_map:321
+msgid "Iranian (Other)"
+msgstr ""
+
+#: config.language_map:322
+msgid "Irish"
+msgstr ""
+
+#: config.language_map:323
+msgid "Iroquoian (Other)"
+msgstr ""
+
+#: config.language_map:324
+msgid "Italian"
+msgstr ""
+
+#: config.language_map:325
+msgid "Javanese"
+msgstr ""
+
+#: config.language_map:326
+msgid "Japanese"
+msgstr ""
+
+#: config.language_map:327
+msgid "Judeo-Persian"
+msgstr ""
+
+#: config.language_map:328
+msgid "Judeo-Arabic"
+msgstr ""
+
+#: config.language_map:329
+msgid "Kara-Kalpak"
+msgstr ""
+
+#: config.language_map:330
+msgid "Kabyle"
+msgstr ""
+
+#: config.language_map:331
+msgid "Kachin"
+msgstr ""
+
+#: config.language_map:332
+msgid "Kalâtdlisut"
+msgstr ""
+
+#: config.language_map:333
+msgid "Kamba"
+msgstr ""
+
+#: config.language_map:334
+msgid "Kannada"
+msgstr ""
+
+#: config.language_map:335
+msgid "Karen"
+msgstr ""
+
+#: config.language_map:336
+msgid "Kashmiri"
+msgstr ""
+
+#: config.language_map:337
+msgid "Kanuri"
+msgstr ""
+
+#: config.language_map:338
+msgid "Kawi"
+msgstr ""
+
+#: config.language_map:339
+msgid "Kazakh"
+msgstr ""
+
+#: config.language_map:340
+msgid "Kabardian"
+msgstr ""
+
+#: config.language_map:341
+msgid "Khasi"
+msgstr ""
+
+#: config.language_map:342
+msgid "Khoisan (Other)"
+msgstr ""
+
+#: config.language_map:343
+msgid "Khmer"
+msgstr ""
+
+#: config.language_map:344
+msgid "Khotanese"
+msgstr ""
+
+#: config.language_map:345
+msgid "Kikuyu"
+msgstr ""
+
+#: config.language_map:346
+msgid "Kinyarwanda"
+msgstr ""
+
+#: config.language_map:347
+msgid "Kyrgyz"
+msgstr ""
+
+#: config.language_map:348
+msgid "Kimbundu"
+msgstr ""
+
+#: config.language_map:349
+msgid "Konkani"
+msgstr ""
+
+#: config.language_map:350
+msgid "Komi"
+msgstr ""
+
+#: config.language_map:351
+msgid "Kongo"
+msgstr ""
+
+#: config.language_map:352
+msgid "Korean"
+msgstr ""
+
+#: config.language_map:353
+msgid "Kusaie"
+msgstr ""
+
+#: config.language_map:354
+msgid "Kpelle"
+msgstr ""
+
+#: config.language_map:355
+msgid "Kru"
+msgstr ""
+
+#: config.language_map:356
+msgid "Kurukh"
+msgstr ""
+
+#: config.language_map:357
+msgid "Kuanyama"
+msgstr ""
+
+#: config.language_map:358
+msgid "Kumyk"
+msgstr ""
+
+#: config.language_map:359
+msgid "Kurdish"
+msgstr ""
+
+#: config.language_map:360
+msgid "Kusaie"
+msgstr ""
+
+#: config.language_map:361
+msgid "Kutenai"
+msgstr ""
+
+#: config.language_map:362
+msgid "Ladino"
+msgstr ""
+
+#: config.language_map:363
+msgid "Lahnda"
+msgstr ""
+
+#: config.language_map:364
+msgid "Lamba"
+msgstr ""
+
+#: config.language_map:365
+msgid "Occitan (post-1500)"
+msgstr ""
+
+#: config.language_map:366
+msgid "Lao"
+msgstr ""
+
+#: config.language_map:367
+msgid "Sami"
+msgstr ""
+
+#: config.language_map:368
+msgid "Latin"
+msgstr ""
+
+#: config.language_map:369
+msgid "Latvian"
+msgstr ""
+
+#: config.language_map:370
+msgid "Lezgian"
+msgstr ""
+
+#: config.language_map:371
+msgid "Limburgish"
+msgstr ""
+
+#: config.language_map:372
+msgid "Lingala"
+msgstr ""
+
+#: config.language_map:373
+msgid "Lithuanian"
+msgstr ""
+
+#: config.language_map:374
+msgid "Mongo-Nkundu"
+msgstr ""
+
+#: config.language_map:375
+msgid "Lozi"
+msgstr ""
+
+#: config.language_map:376
+msgid "Letzeburgesch"
+msgstr ""
+
+#: config.language_map:377
+msgid "Luba-Lulua"
+msgstr ""
+
+#: config.language_map:378
+msgid "Luba-Katanga"
+msgstr ""
+
+#: config.language_map:379
+msgid "Ganda"
+msgstr ""
+
+#: config.language_map:380
+msgid "Luiseño"
+msgstr ""
+
+#: config.language_map:381
+msgid "Lunda"
+msgstr ""
+
+#: config.language_map:382
+msgid "Luo (Kenya and Tanzania)"
+msgstr ""
+
+#: config.language_map:383
+msgid "Lushai"
+msgstr ""
+
+#: config.language_map:384
+msgid "Macedonian"
+msgstr ""
+
+#: config.language_map:385
+msgid "Madurese"
+msgstr ""
+
+#: config.language_map:386
+msgid "Magahi"
+msgstr ""
+
+#: config.language_map:387
+msgid "Marshallese"
+msgstr ""
+
+#: config.language_map:388
+msgid "Maithili"
+msgstr ""
+
+#: config.language_map:389
+msgid "Makasar"
+msgstr ""
+
+#: config.language_map:390
+msgid "Malayalam"
+msgstr ""
+
+#: config.language_map:391
+msgid "Mandingo"
+msgstr ""
+
+#: config.language_map:392
+msgid "Maori"
+msgstr ""
+
+#: config.language_map:393
+msgid "Austronesian (Other)"
+msgstr ""
+
+#: config.language_map:394
+msgid "Marathi"
+msgstr ""
+
+#: config.language_map:395
+msgid "Masai"
+msgstr ""
+
+#: config.language_map:396
+msgid "Manx"
+msgstr ""
+
+#: config.language_map:397
+msgid "Malay"
+msgstr ""
+
+#: config.language_map:398
+msgid "Mandar"
+msgstr ""
+
+#: config.language_map:399
+msgid "Mende"
+msgstr ""
+
+#: config.language_map:400
+msgid "Irish, Middle (ca. 1100-1550)"
+msgstr ""
+
+#: config.language_map:401
+msgid "Micmac"
+msgstr ""
+
+#: config.language_map:402
+msgid "Minangkabau"
+msgstr ""
+
+#: config.language_map:403
+msgid "Miscellaneous languages"
+msgstr ""
+
+#: config.language_map:404
+msgid "Mon-Khmer (Other)"
+msgstr ""
+
+#: config.language_map:405
+msgid "Malagasy"
+msgstr ""
+
+#: config.language_map:406
+msgid "Malagasy"
+msgstr ""
+
+#: config.language_map:407
+msgid "Maltese"
+msgstr ""
+
+#: config.language_map:408
+msgid "Manchu"
+msgstr ""
+
+#: config.language_map:409
+msgid "Manipuri"
+msgstr ""
+
+#: config.language_map:410
+msgid "Manobo languages"
+msgstr ""
+
+#: config.language_map:411
+msgid "Mohawk"
+msgstr ""
+
+#: config.language_map:412
+msgid "Moldavian"
+msgstr ""
+
+#: config.language_map:413
+msgid "Mongolian"
+msgstr ""
+
+#: config.language_map:414
+msgid "Mooré"
+msgstr ""
+
+#: config.language_map:415
+msgid "Multiple languages"
+msgstr ""
+
+#: config.language_map:416
+msgid "Munda (Other)"
+msgstr ""
+
+#: config.language_map:417
+msgid "Creek"
+msgstr ""
+
+#: config.language_map:418
+msgid "Marwari"
+msgstr ""
+
+#: config.language_map:419
+msgid "Mayan languages"
+msgstr ""
+
+#: config.language_map:420
+msgid "Nahuatl"
+msgstr ""
+
+#: config.language_map:421
+msgid "North American Indian (Other)"
+msgstr ""
+
+#: config.language_map:422
+msgid "Neapolitan Italian"
+msgstr ""
+
+#: config.language_map:423
+msgid "Nauru"
+msgstr ""
+
+#: config.language_map:424
+msgid "Navajo"
+msgstr ""
+
+#: config.language_map:425
+msgid "Ndebele (South Africa)"
+msgstr ""
+
+#: config.language_map:426
+msgid "Ndebele (Zimbabwe)  "
+msgstr ""
+
+#: config.language_map:427
+msgid "Ndonga"
+msgstr ""
+
+#: config.language_map:428
+msgid "Low German"
+msgstr ""
+
+#: config.language_map:429
+msgid "Nepali"
+msgstr ""
+
+#: config.language_map:430
+msgid "Newari"
+msgstr ""
+
+#: config.language_map:431
+msgid "Nias"
+msgstr ""
+
+#: config.language_map:432
+msgid "Niger-Kordofanian (Other)"
+msgstr ""
+
+#: config.language_map:433
+msgid "Niuean"
+msgstr ""
+
+#: config.language_map:434
+msgid "Norwegian (Nynorsk)"
+msgstr ""
+
+#: config.language_map:435
+msgid "Norwegian (Bokmål)"
+msgstr ""
+
+#: config.language_map:436
+msgid "Nogai"
+msgstr ""
+
+#: config.language_map:437
+msgid "Old Norse"
+msgstr ""
+
+#: config.language_map:438
+msgid "Norwegian"
+msgstr ""
+
+#: config.language_map:439
+msgid "Northern Sotho"
+msgstr ""
+
+#: config.language_map:440
+msgid "Nubian languages"
+msgstr ""
+
+#: config.language_map:441
+msgid "Nyanja"
+msgstr ""
+
+#: config.language_map:442
+msgid "Nyamwezi"
+msgstr ""
+
+#: config.language_map:443
+msgid "Nyankole"
+msgstr ""
+
+#: config.language_map:444
+msgid "Nyoro"
+msgstr ""
+
+#: config.language_map:445
+msgid "Nzima"
+msgstr ""
+
+#: config.language_map:446
+msgid "Occitan (post-1500)"
+msgstr ""
+
+#: config.language_map:447
+msgid "Ojibwa"
+msgstr ""
+
+#: config.language_map:448
+msgid "Oriya"
+msgstr ""
+
+#: config.language_map:449
+msgid "Oromo"
+msgstr ""
+
+#: config.language_map:450
+msgid "Osage"
+msgstr ""
+
+#: config.language_map:451
+msgid "Ossetic"
+msgstr ""
+
+#: config.language_map:452
+msgid "Turkish, Ottoman"
+msgstr ""
+
+#: config.language_map:453
+msgid "Otomian languages"
+msgstr ""
+
+#: config.language_map:454
+msgid "Papuan (Other)"
+msgstr ""
+
+#: config.language_map:455
+msgid "Pangasinan"
+msgstr ""
+
+#: config.language_map:456
+msgid "Pahlavi"
+msgstr ""
+
+#: config.language_map:457
+msgid "Pampanga"
+msgstr ""
+
+#: config.language_map:458
+msgid "Panjabi"
+msgstr ""
+
+#: config.language_map:459
+msgid "Papiamento"
+msgstr ""
+
+#: config.language_map:460
+msgid "Palauan"
+msgstr ""
+
+#: config.language_map:461
+msgid "Old Persian (ca. 600-400 B.C.)"
+msgstr ""
+
+#: config.language_map:462
+msgid "Persian"
+msgstr ""
+
+#: config.language_map:463
+msgid "Philippine (Other)"
+msgstr ""
+
+#: config.language_map:464
+msgid "Phoenician"
+msgstr ""
+
+#: config.language_map:465
+msgid "Pali"
+msgstr ""
+
+#: config.language_map:466
+msgid "Polish"
+msgstr ""
+
+#: config.language_map:467
+msgid "Ponape"
+msgstr ""
+
+#: config.language_map:468
+msgid "Portuguese"
+msgstr ""
+
+#: config.language_map:469
+msgid "Prakrit languages"
+msgstr ""
+
+#: config.language_map:470
+msgid "Provençal (to 1500)"
+msgstr ""
+
+#: config.language_map:471
+msgid "Pushto"
+msgstr ""
+
+#: config.language_map:472
+msgid "Quechua"
+msgstr ""
+
+#: config.language_map:473
+msgid "Rajasthani"
+msgstr ""
+
+#: config.language_map:474
+msgid "Rapanui"
+msgstr ""
+
+#: config.language_map:475
+msgid "Rarotongan"
+msgstr ""
+
+#: config.language_map:476
+msgid "Romance (Other)"
+msgstr ""
+
+#: config.language_map:477
+msgid "Raeto-Romance"
+msgstr ""
+
+#: config.language_map:478
+msgid "Romani"
+msgstr ""
+
+#: config.language_map:479
+msgid "Romanian"
+msgstr ""
+
+#: config.language_map:480
+msgid "Rundi"
+msgstr ""
+
+#: config.language_map:481
+msgid "Russian"
+msgstr ""
+
+#: config.language_map:482
+msgid "Sandawe"
+msgstr ""
+
+#: config.language_map:483
+msgid "Sango (Ubangi Creole)"
+msgstr ""
+
+#: config.language_map:484
+msgid "Yakut"
+msgstr ""
+
+#: config.language_map:485
+msgid "South American Indian (Other)"
+msgstr ""
+
+#: config.language_map:486
+msgid "Salishan languages"
+msgstr ""
+
+#: config.language_map:487
+msgid "Samaritan Aramaic"
+msgstr ""
+
+#: config.language_map:488
+msgid "Sanskrit"
+msgstr ""
+
+#: config.language_map:489
+msgid "Samoan"
+msgstr ""
+
+#: config.language_map:490
+msgid "Sasak"
+msgstr ""
+
+#: config.language_map:491
+msgid "Santali"
+msgstr ""
+
+#: config.language_map:492
+msgid "Serbian"
+msgstr ""
+
+#: config.language_map:493
+msgid "Scots"
+msgstr ""
+
+#: config.language_map:494
+msgid "Croatian"
+msgstr ""
+
+#: config.language_map:495
+msgid "Selkup"
+msgstr ""
+
+#: config.language_map:496
+msgid "Semitic (Other)"
+msgstr ""
+
+#: config.language_map:497
+msgid "Irish, Old (to 1100)"
+msgstr ""
+
+#: config.language_map:498
+msgid "Sign languages"
+msgstr ""
+
+#: config.language_map:499
+msgid "Shan"
+msgstr ""
+
+#: config.language_map:500
+msgid "Shona"
+msgstr ""
+
+#: config.language_map:501
+msgid "Sidamo"
+msgstr ""
+
+#: config.language_map:502
+msgid "Sinhalese"
+msgstr ""
+
+#: config.language_map:503
+msgid "Siouan (Other)"
+msgstr ""
+
+#: config.language_map:504
+msgid "Sino-Tibetan (Other)"
+msgstr ""
+
+#: config.language_map:505
+msgid "Slavic (Other)"
+msgstr ""
+
+#: config.language_map:506
+msgid "Slovak"
+msgstr ""
+
+#: config.language_map:507
+msgid "Slovenian"
+msgstr ""
+
+#: config.language_map:508
+msgid "Southern Sami"
+msgstr ""
+
+#: config.language_map:509
+msgid "Northern Sami"
+msgstr ""
+
+#: config.language_map:510
+msgid "Sami"
+msgstr ""
+
+#: config.language_map:511
+msgid "Lule Sami"
+msgstr ""
+
+#: config.language_map:512
+msgid "Inari Sami"
+msgstr ""
+
+#: config.language_map:513
+msgid "Samoan"
+msgstr ""
+
+#: config.language_map:514
+msgid "Skolt Sami"
+msgstr ""
+
+#: config.language_map:515
+msgid "Shona"
+msgstr ""
+
+#: config.language_map:516
+msgid "Sindhi"
+msgstr ""
+
+#: config.language_map:517
+msgid "Sinhalese"
+msgstr ""
+
+#: config.language_map:518
+msgid "Soninke"
+msgstr ""
+
+#: config.language_map:519
+msgid "Sogdian"
+msgstr ""
+
+#: config.language_map:520
+msgid "Somali"
+msgstr ""
+
+#: config.language_map:521
+msgid "Songhai"
+msgstr ""
+
+#: config.language_map:522
+msgid "Sotho"
+msgstr ""
+
+#: config.language_map:523
+msgid "Spanish"
+msgstr ""
+
+#: config.language_map:524
+msgid "Sardinian"
+msgstr ""
+
+#: config.language_map:525
+msgid "Serer"
+msgstr ""
+
+#: config.language_map:526
+msgid "Nilo-Saharan (Other)"
+msgstr ""
+
+#: config.language_map:527
+msgid "Sotho"
+msgstr ""
+
+#: config.language_map:528
+msgid "Swazi"
+msgstr ""
+
+#: config.language_map:529
+msgid "Sukuma"
+msgstr ""
+
+#: config.language_map:530
+msgid "Sundanese"
+msgstr ""
+
+#: config.language_map:531
+msgid "Susu"
+msgstr ""
+
+#: config.language_map:532
+msgid "Sumerian"
+msgstr ""
+
+#: config.language_map:533
+msgid "Swahili"
+msgstr ""
+
+#: config.language_map:534
+msgid "Swedish"
+msgstr ""
+
+#: config.language_map:535
+msgid "Swazi"
+msgstr ""
+
+#: config.language_map:536
+msgid "Syriac"
+msgstr ""
+
+#: config.language_map:537
+msgid "Tagalog"
+msgstr ""
+
+#: config.language_map:538
+msgid "Tahitian"
+msgstr ""
+
+#: config.language_map:539
+msgid "Tai (Other)"
+msgstr ""
+
+#: config.language_map:540
+msgid "Tajik"
+msgstr ""
+
+#: config.language_map:541
+msgid "Tamil"
+msgstr ""
+
+#: config.language_map:542
+msgid "Tatar"
+msgstr ""
+
+#: config.language_map:543
+msgid "Tatar"
+msgstr ""
+
+#: config.language_map:544
+msgid "Telugu"
+msgstr ""
+
+#: config.language_map:545
+msgid "Temne"
+msgstr ""
+
+#: config.language_map:546
+msgid "Terena"
+msgstr ""
+
+#: config.language_map:547
+msgid "Tetum"
+msgstr ""
+
+#: config.language_map:548
+msgid "Tajik"
+msgstr ""
+
+#: config.language_map:549
+msgid "Tagalog"
+msgstr ""
+
+#: config.language_map:550
+msgid "Thai"
+msgstr ""
+
+#: config.language_map:551
+msgid "Tibetan"
+msgstr ""
+
+#: config.language_map:552
+msgid "Tigré"
+msgstr ""
+
+#: config.language_map:553
+msgid "Tigrinya"
+msgstr ""
+
+#: config.language_map:554
+msgid "Tiv"
+msgstr ""
+
+#: config.language_map:555
+msgid "Tokelauan"
+msgstr ""
+
+#: config.language_map:556
+msgid "Tlingit"
+msgstr ""
+
+#: config.language_map:557
+msgid "Tamashek"
+msgstr ""
+
+#: config.language_map:558
+msgid "Tonga (Nyasa)"
+msgstr ""
+
+#: config.language_map:559
+msgid "Tongan"
+msgstr ""
+
+#: config.language_map:560
+msgid "Tok Pisin"
+msgstr ""
+
+#: config.language_map:561
+msgid "Truk"
+msgstr ""
+
+#: config.language_map:562
+msgid "Tsimshian"
+msgstr ""
+
+#: config.language_map:563
+msgid "Tswana"
+msgstr ""
+
+#: config.language_map:564
+msgid "Tsonga"
+msgstr ""
+
+#: config.language_map:565
+msgid "Tswana"
+msgstr ""
+
+#: config.language_map:566
+msgid "Turkmen"
+msgstr ""
+
+#: config.language_map:567
+msgid "Tumbuka"
+msgstr ""
+
+#: config.language_map:568
+msgid "Tupi languages"
+msgstr ""
+
+#: config.language_map:569
+msgid "Turkish"
+msgstr ""
+
+#: config.language_map:570
+msgid "Altaic (Other)"
+msgstr ""
+
+#: config.language_map:571
+msgid "Tuvaluan"
+msgstr ""
+
+#: config.language_map:572
+msgid "Twi"
+msgstr ""
+
+#: config.language_map:573
+msgid "Tuvinian"
+msgstr ""
+
+#: config.language_map:574
+msgid "Udmurt"
+msgstr ""
+
+#: config.language_map:575
+msgid "Ugaritic"
+msgstr ""
+
+#: config.language_map:576
+msgid "Uighur"
+msgstr ""
+
+#: config.language_map:577
+msgid "Ukrainian"
+msgstr ""
+
+#: config.language_map:578
+msgid "Umbundu"
+msgstr ""
+
+#: config.language_map:579
+msgid "Undetermined"
+msgstr ""
+
+#: config.language_map:580
+msgid "Urdu"
+msgstr ""
+
+#: config.language_map:581
+msgid "Uzbek"
+msgstr ""
+
+#: config.language_map:582
+msgid "Vai"
+msgstr ""
+
+#: config.language_map:583
+msgid "Venda"
+msgstr ""
+
+#: config.language_map:584
+msgid "Vietnamese"
+msgstr ""
+
+#: config.language_map:585
+msgid "Volapük"
+msgstr ""
+
+#: config.language_map:586
+msgid "Votic"
+msgstr ""
+
+#: config.language_map:587
+msgid "Wakashan languages"
+msgstr ""
+
+#: config.language_map:588
+msgid "Walamo"
+msgstr ""
+
+#: config.language_map:589
+msgid "Waray"
+msgstr ""
+
+#: config.language_map:590
+msgid "Washo"
+msgstr ""
+
+#: config.language_map:591
+msgid "Welsh"
+msgstr ""
+
+#: config.language_map:592
+msgid "Sorbian languages"
+msgstr ""
+
+#: config.language_map:593
+msgid "Walloon"
+msgstr ""
+
+#: config.language_map:594
+msgid "Wolof"
+msgstr ""
+
+#: config.language_map:595
+msgid "Kalmyk"
+msgstr ""
+
+#: config.language_map:596
+msgid "Xhosa"
+msgstr ""
+
+#: config.language_map:597
+msgid "Yao (Africa)"
+msgstr ""
+
+#: config.language_map:598
+msgid "Yapese"
+msgstr ""
+
+#: config.language_map:599
+msgid "Yiddish"
+msgstr ""
+
+#: config.language_map:600
+msgid "Yoruba"
+msgstr ""
+
+#: config.language_map:601
+msgid "Yupik languages"
+msgstr ""
+
+#: config.language_map:602
+msgid "Zapotec"
+msgstr ""
+
+#: config.language_map:603
+msgid "Zenaga"
+msgstr ""
+
+#: config.language_map:604
+msgid "Zhuang"
+msgstr ""
+
+#: config.language_map:605
+msgid "Zande"
+msgstr ""
+
+#: config.language_map:606
+msgid "Zulu"
+msgstr ""
+
+#: config.language_map:607
+msgid "Zuni"
+msgstr ""
+
+#: config.item_form_map:610
+msgid "Microfilm"
+msgstr ""
+
+#: config.item_form_map:611
+msgid "Microfiche"
+msgstr ""
+
+#: config.item_form_map:612
+msgid "Microopaque"
+msgstr ""
+
+#: config.item_form_map:613
+msgid "Large print"
+msgstr ""
+
+#: config.item_form_map:614
+msgid "Braille"
+msgstr ""
+
+#: config.item_form_map:615
+msgid "Regular print reproduction"
+msgstr ""
+
+#: config.item_form_map:616
+msgid "Electronic"
+msgstr ""
+
+#: config.item_type_map:619
+msgid "Language material"
+msgstr ""
+
+#: config.item_type_map:620
+msgid "Manuscript language material"
+msgstr ""
+
+#: config.item_type_map:621
+msgid "Projected medium"
+msgstr ""
+
+#: config.item_type_map:622
+msgid "Two-dimensional nonprojectable graphic"
+msgstr ""
+
+#: config.item_type_map:623
+msgid "Three-dimensional artifact or naturally occurring object"
+msgstr ""
+
+#: config.item_type_map:624
+msgid "Kit"
+msgstr ""
+
+#: config.item_type_map:625
+msgid "Mixed materials"
+msgstr ""
+
+#: config.item_type_map:626
+msgid "Cartographic material"
+msgstr ""
+
+#: config.item_type_map:627
+msgid "Manuscript cartographic material"
+msgstr ""
+
+#: config.item_type_map:628
+msgid "Notated music"
+msgstr ""
+
+#: config.item_type_map:629
+msgid "Manuscript notated music"
+msgstr ""
+
+#: config.item_type_map:630
+msgid "Nonmusical sound recording"
+msgstr ""
+
+#: config.item_type_map:631
+msgid "Musical sound recording"
+msgstr ""
+
+#: config.item_type_map:632
+msgid "Computer file"
+msgstr ""
+
+#: actor.org_unit_type:638
+msgid "Consortium"
+msgstr ""
+
+#: actor.org_unit_type:639
+msgid "System"
+msgstr ""
+
+#: actor.org_unit_type:641
+msgid "Branch"
+msgstr ""
+
+#: actor.org_unit_type:642
+msgid "Sub-lib"
+msgstr ""
+
+#: actor.org_unit_type:643
+msgid "Bookmobile"
+msgstr ""
+
+#: actor.org_unit:646
+msgid "Example Consortium"
+msgstr ""
+
+#: actor.org_unit:647
+msgid "Example System 1"
+msgstr ""
+
+#: actor.org_unit:648
+msgid "Example System 2"
+msgstr ""
+
+#: actor.org_unit:649
+msgid "Example Branch 1"
+msgstr ""
+
+#: actor.org_unit:650
+msgid "Example Branch 2"
+msgstr ""
+
+#: actor.org_unit:651
+msgid "Example Branch 3"
+msgstr ""
+
+#: actor.org_unit:652
+msgid "Example Branch 4"
+msgstr ""
+
+#: actor.org_unit:653
+msgid "Example Sub-lib 1"
+msgstr ""
+
+#: actor.org_unit:654
+msgid "Example Bookmobile 1"
+msgstr ""
+
+#: actor.org_address:656
+msgid "123 Main St."
+msgstr ""
+
+#: actor.usr:661
+msgid "Administrator"
+msgstr ""
+
+#: permission.perm_list:674
+msgid "User is allowed to place a hold on a specific copy"
+msgstr ""
+
+#: permission.perm_list:677
+msgid "Allows a user to view another user's holds"
+msgstr ""
+
+#: permission.perm_list:679
+msgid "Allows a user to update another user's hold"
+msgstr ""
+
+#: permission.perm_list:684
+msgid "User is allowed to create new MARC records"
+msgstr ""
+
+#: permission.perm_list:704
+msgid "User may create new billable transactions"
+msgstr ""
+
+#: permission.perm_list:705
+msgid "Allows a user to create a new bill on a transaction"
+msgstr ""
+
+#: permission.perm_list:706
+msgid "Allows a user to view another user's containers (buckets)"
+msgstr ""
+
+#: permission.perm_list:707
+msgid "Allows a user to create a new container for another user"
+msgstr ""
+
+#: permission.perm_list:708
+msgid "User is allowed to create a new copy object"
+msgstr ""
+
+#: permission.perm_list:709
+msgid "Allows a user to change org unit settings"
+msgstr ""
+
+#: permission.perm_list:710
+msgid "Allows a user to see what another use has checked out"
+msgstr ""
+
+#: permission.perm_list:711
+msgid "User may view another user's transactions"
+msgstr ""
+
+#: permission.perm_list:712
+msgid "Allows a user to delete another user container"
+msgstr ""
+
+#: permission.perm_list:713
+msgid "Create a container item for another user"
+msgstr ""
+
+#: permission.perm_list:714
+msgid "User can add other users to permission groups"
+msgstr ""
+
+#: permission.perm_list:715
+msgid "User can remove other users from permission groups"
+msgstr ""
+
+#: permission.perm_list:716
+msgid "Allow user to view others' permission groups"
+msgstr ""
+
+#: permission.perm_list:717
+msgid "Allows a user to determine of another user can checkout an item"
+msgstr ""
+
+#: permission.perm_list:718
+msgid "Allows a user to edit copies in batch"
+msgstr ""
+
+#: permission.perm_list:719
+msgid "User may create a new patron statistical category"
+msgstr ""
+
+#: permission.perm_list:720
+msgid "User may create a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:721
+msgid "User may create a new patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:722
+msgid "User may create a new copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:723
+msgid "User may update a patron stat cat"
+msgstr ""
+
+#: permission.perm_list:724
+msgid "User may update a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:725
+msgid "User may update a patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:726
+msgid "User may update a copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:727
+msgid "User may link a copy to a stat cat entry"
+msgstr ""
+
+#: permission.perm_list:728
+msgid "User may link another user to a stat cat entry"
+msgstr ""
+
+#: permission.perm_list:729
+msgid "User may delete a patron stat cat"
+msgstr ""
+
+#: permission.perm_list:730
+msgid "User may delete a copy stat cat"
+msgstr ""
+
+#: permission.perm_list:731
+msgid "User may delete a patron stat cat entry"
+msgstr ""
+
+#: permission.perm_list:732
+msgid "User may delete a copy stat cat entry"
+msgstr ""
+
+#: permission.perm_list:733
+msgid "User may delete a patron stat cat entry map"
+msgstr ""
+
+#: permission.perm_list:734
+msgid "User may delete a copy stat cat entry map"
+msgstr ""
+
+#: permission.perm_list:735
+msgid "Allows a user to create a new non-cataloged item type"
+msgstr ""
+
+#: permission.perm_list:736
+msgid "Allows a user to update a non cataloged type"
+msgstr ""
+
+#: permission.perm_list:737
+msgid "Allows a user to create a new in-house-use "
+msgstr ""
+
+#: permission.perm_list:738
+msgid "Allows a user to check out a copy"
+msgstr ""
+
+#: permission.perm_list:739
+msgid "Allows a user to create a new copy location"
+msgstr ""
+
+#: permission.perm_list:740
+msgid "Allows a user to update a copy location"
+msgstr ""
+
+#: permission.perm_list:741
+msgid "Allows a user to delete a copy location"
+msgstr ""
+
+#: permission.perm_list:742
+msgid "Allows a user to create a transit_copy object for transiting a copy"
+msgstr ""
+
+#: permission.perm_list:743
+msgid "Allows a user to close out a transit on a copy"
+msgstr ""
+
+#: permission.perm_list:744
+msgid "Allows a user to see if another user has permission to place a hold on a given copy"
+msgstr ""
+
+#: permission.perm_list:745
+msgid "Allows a user to view which users have checked out a given copy"
+msgstr ""
+
+#: permission.perm_list:746
+msgid "Allows a user to perform z3950 queries against remote servers"
+msgstr ""
+
+#: permission.perm_list:747
+msgid "Allows a user to register a new workstation"
+msgstr ""
+
+#: permission.perm_list:748
+msgid "Allows a user to view all notes attached to a copy"
+msgstr ""
+
+#: permission.perm_list:749
+msgid "Allows a user to view all notes attached to a volume"
+msgstr ""
+
+#: permission.perm_list:750
+msgid "Allows a user to view all notes attached to a title"
+msgstr ""
+
+#: permission.perm_list:751
+msgid "Allows a user to create a new volume note"
+msgstr ""
+
+#: permission.perm_list:752
+msgid "Allows a user to create a new copy note"
+msgstr ""
+
+#: permission.perm_list:753
+msgid "Allows a user to create a new title note"
+msgstr ""
+
+#: permission.perm_list:754
+msgid "Allows a user to delete someone elses copy notes"
+msgstr ""
+
+#: permission.perm_list:755
+msgid "Allows a user to delete someone elses volume note"
+msgstr ""
+
+#: permission.perm_list:756
+msgid "Allows a user to delete someone elses title note"
+msgstr ""
+
+#: permission.perm_list:757
+msgid "Allows a user to update another users container"
+msgstr ""
+
+#: permission.perm_list:758
+msgid "Allows a user to create a container for themselves"
+msgstr ""
+
+#: permission.perm_list:759
+msgid "Allows a user to view notifications attached to a hold"
+msgstr ""
+
+#: permission.perm_list:760
+msgid "Allows a user to create new hold notifications"
+msgstr ""
+
+#: permission.perm_list:761
+msgid "Allows a user to update an org unit setting"
+msgstr ""
+
+#: permission.perm_list:762
+msgid "Allows a user to upload an offline script"
+msgstr ""
+
+#: permission.perm_list:763
+msgid "Allows a user to view uploaded offline script information"
+msgstr ""
+
+#: permission.perm_list:764
+msgid "Allows a user to execute an offline script batch"
+msgstr ""
+
+#: permission.perm_list:765
+msgid "Allows a user to change set the due date on an item to any date"
+msgstr ""
+
+#: permission.perm_list:766
+msgid "Allows a user to bypass the circ permit call for checkout"
+msgstr ""
+
+#: permission.perm_list:767
+msgid "Allows a user to override the copy_is_reference event"
+msgstr ""
+
+#: permission.perm_list:768
+msgid "Allows a user to void a bill"
+msgstr ""
+
+#: permission.perm_list:769
+msgid "Allows a person to check in/out an item that is claims returned"
+msgstr ""
+
+#: permission.perm_list:770
+msgid "Allows a user to check out an item in a non-circulatable status"
+msgstr ""
+
+#: permission.perm_list:771
+msgid "Allows a user to check in/out an item that has an alert message"
+msgstr ""
+
+#: permission.perm_list:772
+msgid "Allows a user to remove the lost status from a copy"
+msgstr ""
+
+#: permission.perm_list:773
+msgid "Allows a user to change the missing status on a copy"
+msgstr ""
+
+#: permission.perm_list:774
+msgid "Allows a user to abort a copy transit if the user is at the transit destination or source"
+msgstr ""
+
+#: permission.perm_list:775
+msgid "Allows a user to abort a copy transit if the user is not at the transit source or dest"
+msgstr ""
+
+#: permission.perm_list:776
+msgid "Allowsa user to query the zip code data method"
+msgstr ""
+
+#: permission.perm_list:778
+msgid "Allows a user to create duplicate holds (e.g. two holds on the same title)"
+msgstr ""
+
+#: permission.perm_list:779
+msgid "Allows a user to update a closed date interval for a given location"
+msgstr ""
+
+#: permission.perm_list:780
+msgid "Allows a user to remove a closed date interval for a given location"
+msgstr ""
+
+#: permission.perm_list:781
+msgid "Allows a user to create a new closed date for a location"
+msgstr ""
+
+#: permission.perm_list:782
+msgid "Allows a user to delete a non cataloged type"
+msgstr ""
+
+#: permission.perm_list:783
+msgid "Allows a user to put someone into collections"
+msgstr ""
+
+#: permission.perm_list:784
+msgid "Allows a user to remove someone from collections"
+msgstr ""
+
+#: permission.perm_list:785
+msgid "Allows a user to bar a patron"
+msgstr ""
+
+#: permission.perm_list:786
+msgid "Allows a user to un-bar a patron"
+msgstr ""
+
+#: permission.perm_list:787
+msgid "Allows a user to remove an existing workstation so a new one can replace it"
+msgstr ""
+
+#: permission.perm_list:788
+msgid "Allows a user to add/remove users to/from the \"User\" group"
+msgstr ""
+
+#: permission.perm_list:789
+msgid "Allows a user to add/remove users to/from the \"Patron\" group"
+msgstr ""
+
+#: permission.perm_list:790
+msgid "Allows a user to add/remove users to/from the \"Staff\" group"
+msgstr ""
+
+#: permission.perm_list:791
+msgid "Allows a user to add/remove users to/from the \"Circulator\" group"
+msgstr ""
+
+#: permission.perm_list:792
+msgid "Allows a user to add/remove users to/from the \"Cataloger\" group"
+msgstr ""
+
+#: permission.perm_list:793
+msgid "Allows a user to add/remove users to/from the \"GlobalAdmin\" group"
+msgstr ""
+
+#: permission.perm_list:794
+msgid "Allows a user to add/remove users to/from the \"LocalAdmin\" group"
+msgstr ""
+
+#: permission.perm_list:795
+msgid "Allows a user to add/remove users to/from the \"LibraryManager\" group"
+msgstr ""
+
+#: permission.perm_list:796
+msgid "Allows a user to add/remove users to/from the \"Cat1\" group"
+msgstr ""
+
+#: permission.perm_list:797
+msgid "Allows a user to add/remove users to/from the \"Supercat\" group"
+msgstr ""
+
+#: permission.perm_list:798
+msgid "Allows a user to add/remove users to/from the \"SIP-Client\" group"
+msgstr ""
+
+#: permission.perm_list:799
+msgid "Allows a user to add/remove users to/from the \"Vendor\" group"
+msgstr ""
+
+#: permission.perm_list:800
+msgid "Allows a user to place a hold on an age-protected item"
+msgstr ""
+
+#: permission.perm_list:801
+msgid "Allows a user to renew an item past the maximun renewal count"
+msgstr ""
+
+#: permission.perm_list:802
+msgid "Allow staff to override checkout count failure"
+msgstr ""
+
+#: permission.perm_list:803
+msgid "Allow staff to override overdue count failure"
+msgstr ""
+
+#: permission.perm_list:804
+msgid "Allow staff to override fine amount checkout failure"
+msgstr ""
+
+#: permission.perm_list:807
+msgid "Allow staff to force checkout of Missing/Lost type items"
+msgstr ""
+
+#: permission.perm_list:808
+msgid "allows users to place multiple holds on a single title"
+msgstr ""
+
+#: permission.perm_list:809
+msgid "Allows a users to run reports"
+msgstr ""
+
+#: permission.perm_list:810
+msgid "Allows a user to share report his own folders"
+msgstr ""
+
+#: permission.perm_list:811
+msgid "Allow user to view report output"
+msgstr ""
+
+#: permission.perm_list:812
+msgid "Allows a user to checkout an item that is marked as non-circ"
+msgstr ""
+
+#: permission.perm_list:813
+msgid "Allows a user to delete an item out of another user's container"
+msgstr ""
+
+#: permission.perm_list:814
+msgid "Allow a staff member to define where another staff member has their permissions"
+msgstr ""
+
+#: asset.copy_location:944
+msgid "Stacks"
+msgstr ""

Copied: trunk/build/i18n/po/en-US/fm_IDL.pot (from rev 8396, trunk/build/i18n/po/fm_IDL.pot)
===================================================================
--- trunk/build/i18n/po/en-US/fm_IDL.pot	                        (rev 0)
+++ trunk/build/i18n/po/en-US/fm_IDL.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -0,0 +1,2180 @@
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: Evergreen 1.4\n"
+"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-01-17 14:20:16-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8-bit\n"
+
+#: field.aihu.org_unit.label:240 field.ancihu.org_unit.label:257
+msgid "Using Library"
+msgstr ""
+
+#: field.rxbt.voided.label:2488
+msgid "Voided Billing Amount"
+msgstr ""
+
+#: field.bre.source.label:526
+msgid "Record Source"
+msgstr ""
+
+#: field.bre.marc.label:524
+msgid "MARC21Slim"
+msgstr ""
+
+#: field.mbts.xact_start.label:179
+msgid "Transaction Start Time"
+msgstr ""
+
+#: field.mrd.vr_format.label:911
+msgid "Video Recording Format"
+msgstr ""
+
+#: field.aua.within_city_limits.label:962
+msgid "Within City Limits?"
+msgstr ""
+
+#: field.rhrr.hold_type.label:2473
+msgid "Hold Request Type"
+msgstr ""
+
+#: field.au.demographic.label:700
+msgid "Demographic Info"
+msgstr ""
+
+#: class.mwp.label:1642
+msgid "Work Payment"
+msgstr ""
+
+#: field.au.ident_value2.label:681
+msgid "Secondary Identification"
+msgstr ""
+
+#: field.mbts.last_payment_note.label:172
+#: field.rccbs.last_payment_note.label:2617
+msgid "Last Payment Note"
+msgstr ""
+
+#: field.au.expire_date.label:673
+msgid "Privilege Expiration Date"
+msgstr ""
+
+#: field.ac.id.label:1358
+msgid "Card ID"
+msgstr ""
+
+#: field.mp.credit_card_payment.label:2042
+#: field.mbp.credit_card_payment.label:2073
+msgid "Credit Card Payment Detail"
+msgstr ""
+
+#: class.rssr.label:2385
+msgid "Simple Record Extracts"
+msgstr ""
+
+#: field.au.id.label:677 field.rud.id.label:2446
+msgid "User ID"
+msgstr ""
+
+#: field.asc.entries.label:1340 field.actsc.entries.label:1370
+msgid "Entries"
+msgstr ""
+
+#: field.acp.dummy_title.label:1796
+msgid "Precat Dummy Title"
+msgstr ""
+
+#: field.acpn.create_date.label:752
+msgid "Note Creation Date/Time"
+msgstr ""
+
+#: field.aua.street2.label:959
+msgid "Street (2)"
+msgstr ""
+
+#: field.mcrp.amount.label:1420 field.mwp.amount.label:1648
+#: field.mgp.amount.label:1669 field.mckp.amount.label:1757
+#: field.mp.amount.label:2034 field.mbp.amount.label:2065
+#: field.mndp.amount.label:2096 field.mdp.amount.label:2119
+#: field.mb.amount.label:2202
+msgid "Amount"
+msgstr ""
+
+#: field.mcrp.id.label:1422
+msgid "Pyament ID"
+msgstr ""
+
+#: field.au.claims_returned_count.label:666
+msgid "Claims-returned Count"
+msgstr ""
+
+#: field.bre.series_field_entries.label:536
+msgid "Indexed Series Field Entries"
+msgstr ""
+
+#: field.rccbs.demographic_general_division.label:2624
+msgid "User Age Demographic"
+msgstr ""
+
+#: field.rccc.dewey.label:2535
+msgid "Call Number Dewey/Prefix"
+msgstr ""
+
+#: field.crahp.name.label:1835 field.crmf.name.label:1847
+msgid "Rule Name"
+msgstr ""
+
+#: field.clfm.code.label:1636
+msgid "LitF Code"
+msgstr ""
+
+#: field.mrd.type_mat.label:910
+msgid "TMat"
+msgstr ""
+
+#: class.mckp.label:1751 field.mdp.check_payment.label:2130
+msgid "Check Payment"
+msgstr ""
+
+#: field.rccc.stat_cat_1.label:2542
+msgid "Legacy CAT1 Link"
+msgstr ""
+
+#: field.mfr.tag.label:775
+msgid "Tag"
+msgstr ""
+
+#: field.aout.org_units.label:1480
+msgid "Org Units"
+msgstr ""
+
+#: field.rccbs.profile_group.label:2630
+msgid "User Profile Group"
+msgstr ""
+
+#: field.ahr.bib_rec.label:1254
+msgid "Bib Record link"
+msgstr ""
+
+#: field.ahn.method.label:1111
+msgid "Notification Method"
+msgstr ""
+
+#: field.au.groups.label:697
+msgid "Additional Permission Groups"
+msgstr ""
+
+#: field.ahr.request_lib.label:1243
+msgid "Requesting Library"
+msgstr ""
+
+#: field.ahtc.source.label:2183
+msgid "Sending Library"
+msgstr ""
+
+#: field.rccc.call_number.label:2533
+msgid "Call Number Link"
+msgstr ""
+
+#: field.ahr.target.label:1248
+msgid "Target Object ID"
+msgstr ""
+
+#: field.circ.checkin_lib.label:1007 field.rodcirc.checkin_lib.label:2680
+msgid "Check In Library"
+msgstr ""
+
+#: field.aua.state.label:957
+msgid "State"
+msgstr ""
+
+#: field.mp.voided.label:2040 field.mbp.voided.label:2071
+#: field.mndp.voided.label:2102 field.mdp.voided.label:2127
+#: field.mb.voided.label:2208
+msgid "Voided?"
+msgstr ""
+
+#: class.citm.label:1153
+msgid "Item Type Map"
+msgstr ""
+
+#: field.rccbs.billing_location_shortname.label:2598
+msgid "Billing Location Short (Policy) Name"
+msgstr ""
+
+#: field.rud.general_division.label:2448
+msgid "General Demographic Division"
+msgstr ""
+
+#: field.asvq.responses.label:151 field.asv.responses.label:1184
+msgid "Responses"
+msgstr ""
+
+#: field.mrd.item_form.label:904
+msgid "Form"
+msgstr ""
+
+#: field.aou.ou_type.label:1286 class.aout.label:1467
+msgid "Organizational Unit Type"
+msgstr ""
+
+#: field.mcrp.payment_ts.label:1424 field.mwp.payment_ts.label:1652
+#: field.mgp.payment_ts.label:1673 field.mckp.payment_ts.label:1763
+msgid "Payment Timestamp"
+msgstr ""
+
+#: field.mfr.ind1.label:771
+msgid "Indicator 1"
+msgstr ""
+
+#: field.mfr.ind2.label:772
+msgid "Indicator 2"
+msgstr ""
+
+#: field.au.checkins.label:702 field.aou.checkins.label:1297
+msgid "Checkins"
+msgstr ""
+
+#: field.bre.call_numbers.label:513
+msgid "Call Numbers"
+msgstr ""
+
+#: field.mp.payment_ts.label:2037 field.mbp.payment_ts.label:2068
+#: field.mndp.payment_ts.label:2099 field.mdp.payment_ts.label:2122
+msgid "Payment Date/Time"
+msgstr ""
+
+#: field.ac.active.label:1356
+msgid "IsActive?"
+msgstr ""
+
+#: None:728
+msgid "Check-ins Performed as Staff"
+msgstr ""
+
+#: field.au.other_phone.label:686
+msgid "Other Phone"
+msgstr ""
+
+#: field.bre.simple_record.label:538
+msgid "Simple Record Extracts "
+msgstr ""
+
+#: class.actsce.label:1587
+msgid "User Stat Cat Entry"
+msgstr ""
+
+#: field.rccc.stat_cat_2_value.label:2549
+msgid "Legacy CAT2 Value"
+msgstr ""
+
+#: class.acn.label:443 field.acp.call_number.label:1784
+msgid "Call Number/Volume"
+msgstr ""
+
+#: field.mrd.control_type.label:901
+msgid "Ctrl"
+msgstr ""
+
+#: field.au.family_name.label:674
+msgid "Last Name"
+msgstr ""
+
+#: field.rccc.stat_cat_2.label:2543
+msgid "Legacy CAT2 Link"
+msgstr ""
+
+#: field.au.stat_cat_entries.label:657
+msgid "Statistical Category Entries"
+msgstr ""
+
+#: field.mrd.audience.label:897
+msgid "Audn"
+msgstr ""
+
+#: class.ancihu.label:250
+msgid "Non-cataloged In House Use"
+msgstr ""
+
+#: field.ahr.holdable_formats.label:1238
+msgid "Holdable Formats (for M-type hold)"
+msgstr ""
+
+#: field.acp.notes.label:1808
+msgid "Copy Notes"
+msgstr ""
+
+#: field.mbts.total_owed.label:175
+msgid "Total Owed"
+msgstr ""
+
+#: field.au.ident_type2.label:679
+msgid "Secondary Identification Type"
+msgstr ""
+
+#: field.actscecm.stat_cat.label:1956
+msgid "Statistical Category"
+msgstr ""
+
+#: field.mbts.last_payment_ts.label:173
+msgid "Last Payment Timestamp"
+msgstr ""
+
+#: field.ahr.usr.label:1249
+msgid "Hold User"
+msgstr ""
+
+#: class.mdp.label:2114
+msgid "Payments: Desk"
+msgstr ""
+
+#: field.asvr.answer.label:296
+msgid "Answer"
+msgstr ""
+
+#: field.aun.pub.label:194 field.acpn.pub.label:756
+#: field.acpl.opac_visible.label:1130
+msgid "Is OPAC Visible?"
+msgstr ""
+
+#: field.ahr.notifications.label:1253
+msgid "Notifications"
+msgstr ""
+
+#: field.aou.shortname.label:1288
+msgid "Short (Policy) Name"
+msgstr ""
+
+#: field.asvr.answer_date.label:297
+msgid "Answer Date/Time"
+msgstr ""
+
+#: field.rccc.dewey_block_hundreds.label:2547
+msgid "Dewey Block -- Hundreds"
+msgstr ""
+
+#: field.acn.deleted.label:451 field.au.deleted.label:698
+#: field.acp.deleted.label:1792
+msgid "Is Deleted"
+msgstr ""
+
+#: field.acn.edit_date.label:452 field.acp.edit_date.label:1797
+msgid "Last Edit Date/Time"
+msgstr ""
+
+#: field.mbts.xact_type.label:180 field.rccbs.xact_type.label:2611
+msgid "Transaction Type"
+msgstr ""
+
+#: field.mbt.xact_start.label:1569 field.rccbs.xact_start.label:2609
+msgid "Transaction Start Date/Time"
+msgstr ""
+
+#: class.mbts.label:162
+msgid "Billable Transaction Summary"
+msgstr ""
+
+#: field.mb.billing_ts.label:2203
+msgid "Billing Timestamp"
+msgstr ""
+
+#: field.au.billing_address.label:664
+msgid "Physical Address"
+msgstr ""
+
+#: field.mrd.item_lang.label:905
+msgid "Lang"
+msgstr ""
+
+#: field.actsce.stat_cat.label:1594 field.asce.stat_cat.label:2163
+msgid "Stat Cat"
+msgstr ""
+
+#: field.mrd.id.label:903
+msgid "Descriptor ID"
+msgstr ""
+
+#: field.cit.name.label:141
+msgid "Identification Name"
+msgstr ""
+
+#: field.rccc.dewey_range_tens.label:2544
+msgid "Dewey Range -- Tens"
+msgstr ""
+
+#: field.mdp.accepting_usr.label:2125
+msgid "Accepting User"
+msgstr ""
+
+#: field.rssr.biblio_record.label:2401 field.rsr.biblio_record.label:2434
+msgid "Full Bibliographic record"
+msgstr ""
+
+#: field.mb.billing_type.label:2204
+msgid "Billing Type"
+msgstr ""
+
+#: class.iatc.label:2641
+msgid "Inter-system Copy Transit"
+msgstr ""
+
+#: class.aihu.label:233
+msgid "In House Use"
+msgstr ""
+
+#: field.circ.circ_type.label:1035 class.rcirct.label:2454
+#: field.rcirct.type.label:2460 field.rccc.circ_type.label:2522
+#: field.rodcirc.circ_type.label:2707
+msgid "Circulation Type"
+msgstr ""
+
+#: field.ahtc.hold.label:2179
+msgid "Hold requiring Transit"
+msgstr ""
+
+#: field.ahr.transit.label:1229
+msgid "Transit"
+msgstr ""
+
+#: field.aou.ill_address.label:1283
+msgid "ILL Receiving Address"
+msgstr ""
+
+#: field.aout.name.label:1477
+msgid "Type Name"
+msgstr ""
+
+#: field.rssr.author.label:2396 field.rsr.author.label:2420
+msgid "Author (normalized)"
+msgstr ""
+
+#: field.circ.stop_fines_time.label:1026
+#: field.rodcirc.stop_fines_time.label:2699
+msgid "Fine Stop Date/Time"
+msgstr ""
+
+#: field.au.settings.label:655
+msgid "All User Settings"
+msgstr ""
+
+#: field.acn.copies.label:448
+msgid "Copies"
+msgstr ""
+
+#: field.ahr.cancel_time.label:1250
+msgid "Hold Cancel Date/Time"
+msgstr ""
+
+#: field.pgt.perm_interval.label:1861
+msgid "User Expiration Interval"
+msgstr ""
+
+#: field.circ.fine_interval.label:1016 field.rodcirc.fine_interval.label:2689
+msgid "Fine Interval"
+msgstr ""
+
+#: class.mrd.label:892
+msgid "Basic Record Descriptor"
+msgstr ""
+
+#: field.circ.billing_total.label:1036 field.mg.billing_total.label:1536
+#: field.mbt.billing_total.label:1574 field.rodcirc.billing_total.label:2708
+msgid "Billing Totals"
+msgstr ""
+
+#: class.aua.label:946
+msgid "User Address"
+msgstr ""
+
+#: class.aou.label:1274
+msgid "Organizational Unit"
+msgstr ""
+
+#: field.ancc.circ_time.label:1891 field.rccc.xact_start.label:2521
+msgid "Circulation Date/Time"
+msgstr ""
+
+#: field.mwp.id.label:1650 field.mgp.id.label:1671 field.mckp.id.label:1761
+#: field.mp.id.label:2035 field.mbp.id.label:2066 field.mndp.id.label:2097
+#: field.mdp.id.label:2120
+msgid "Payment ID"
+msgstr ""
+
+#: field.rssr.issn.label:2400 field.rsr.issn.label:2427
+msgid "ISSN"
+msgstr ""
+
+#: field.au.usrname.label:696
+msgid "OPAC/Staff Client User Name"
+msgstr ""
+
+#: field.rssr.title.label:2395 field.rsr.title.label:2418
+msgid "Title Proper (normalized)"
+msgstr ""
+
+#: field.ahr.selection_depth.label:1246
+msgid "Item Selection Depth"
+msgstr ""
+
+#: field.circ.circ_lib.label:1010 field.acp.circ_lib.label:1786
+#: field.ancc.circ_lib.label:1890 field.rodcirc.circ_lib.label:2683
+msgid "Circulating Library"
+msgstr ""
+
+#: field.rxpt.unvoided.label:2501
+msgid "Unvoided Paid Amount"
+msgstr ""
+
+#: field.aou.opac_visible.label:1291 field.asc.opac_visible.label:1343
+#: field.actsc.opac_visible.label:1373 field.acp.opac_visible.label:1804
+msgid "OPAC Visible"
+msgstr ""
+
+#: field.acn.notes.label:458
+msgid "Notes"
+msgstr ""
+
+#: field.cam.code.label:427
+msgid "Audience Code"
+msgstr ""
+
+#: field.rssr.publisher.label:2397 field.rsr.publisher.label:2421
+msgid "Publisher (normalized)"
+msgstr ""
+
+#: field.mbts.usr.label:177
+msgid "Billed User"
+msgstr ""
+
+#: field.circ.max_fine_rule.label:1019 class.crmf.label:1840
+#: field.rodcirc.max_fine_rule.label:2692
+msgid "Max Fine Rule"
+msgstr ""
+
+#: field.rccc.circ_lib_id.label:2520
+msgid "Library Circulation Location Link"
+msgstr ""
+
+#: field.au.alert_message.label:662 field.acp.alert_message.label:1782
+msgid "Alert Message"
+msgstr ""
+
+#: field.rccbs.last_payment_ts.label:2616
+msgid "Last Payment Date/Time"
+msgstr ""
+
+#: field.mbts.id.label:168 field.mg.id.label:1528 field.mbt.id.label:1566
+#: field.mwp.xact.label:1653 field.mgp.xact.label:1674
+#: field.rxbt.xact.label:2486 field.rxpt.xact.label:2500
+#: field.rccbs.id.label:2596
+msgid "Transaction ID"
+msgstr ""
+
+#: field.rssr.quality.label:2392 field.rsr.quality.label:2415
+msgid "Overall Record Quality"
+msgstr ""
+
+#: field.au.barred.label:663
+msgid "Barred"
+msgstr ""
+
+#: field.ahn.notify_time.label:1114
+msgid "Notification Date/Time"
+msgstr ""
+
+#: field.bre.subject_field_entries.label:533
+msgid "Indexed Subject Field Entries"
+msgstr ""
+
+#: class.acpl.label:1121
+msgid "Copy/Shelving Location"
+msgstr ""
+
+#: field.auoi.org_unit.label:110
+msgid "Allowed Org Unit"
+msgstr ""
+
+#: class.clfm.label:1631 field.rccc.lit_form.label:2527
+msgid "Literary Form"
+msgstr ""
+
+#: field.ahr.prev_check_time.label:1242
+msgid "Last Targeting Date/Time"
+msgstr ""
+
+#: field.asvr.response_group_id.label:301
+msgid "Response Group ID"
+msgstr ""
+
+#: class.cifm.label:433
+msgid "Item Form Map"
+msgstr ""
+
+#: class.aus.label:204
+msgid "User Setting"
+msgstr ""
+
+#: field.circ.duration.label:1014 field.cnct.circ_duration.label:1457
+#: field.rodcirc.duration.label:2687
+msgid "Circulation Duration"
+msgstr ""
+
+#: field.rccc.language.label:2526
+msgid "Item Language"
+msgstr ""
+
+#: class.mbp.label:2060
+msgid "Payments: Brick-and-mortar"
+msgstr ""
+
+#: class.actscecm.label:1950
+msgid "User Statistical Category Entry"
+msgstr ""
+
+#: field.ahn.note.label:1112
+msgid "Notification Note"
+msgstr ""
+
+#: field.circ.recuring_fine_rule.label:1023
+#: field.rodcirc.recuring_fine_rule.label:2696
+msgid "Recurring Fine Rule"
+msgstr ""
+
+#: field.circ.duration_rule.label:1015 field.rodcirc.duration_rule.label:2688
+msgid "Circ Duration Rule"
+msgstr ""
+
+#: field.aout.opac_label.label:1478
+msgid "OPAC Label"
+msgstr ""
+
+#: field.asv.required.label:1192
+msgid "Is Required?"
+msgstr ""
+
+#: field.au.survey_responses.label:658
+msgid "Survey Responses"
+msgstr ""
+
+#: field.atc.id.label:275 field.ahtc.id.label:2180 field.iatc.id.label:2658
+msgid "Transit ID"
+msgstr ""
+
+#: field.rccbs.usr_home_ou_name.label:2603
+msgid "User Home Library Name"
+msgstr ""
+
+#: field.au.credit_forward_balance.label:668
+msgid "User Credit Balance"
+msgstr ""
+
+#: class.rsce2.label:2577
+msgid "CAT2 Entry"
+msgstr ""
+
+#: field.aun.create_date.label:191 field.acp.create_date.label:1790
+msgid "Creation Date/Time"
+msgstr ""
+
+#: field.aout.id.label:1476
+msgid "Type ID"
+msgstr ""
+
+#: field.circ.payments.label:1033 field.rodcirc.payments.label:2705
+msgid "Transaction Payments"
+msgstr ""
+
+#: class.bre.label:508
+msgid "Bibliographic Record"
+msgstr ""
+
+#: field.ahr.eligible_copies.label:1255
+msgid "Eligible Copies"
+msgstr ""
+
+#: field.mp.cash_payment.label:2041 field.mbp.cash_payment.label:2072
+msgid "Cash Payment Detail"
+msgstr ""
+
+#: field.mfr.id.label:770
+msgid "Field ID"
+msgstr ""
+
+#: field.bre.tcn_value.label:528 field.rssr.tcn_value.label:2394
+#: field.rsr.tcn_value.label:2417
+msgid "TCN Value"
+msgstr ""
+
+#: field.rccbs.total_owed.label:2614
+msgid "Total Billed"
+msgstr ""
+
+#: class.aun.label:186
+msgid "User Note"
+msgstr ""
+
+#: class.actsc.label:1365
+msgid "User Statistical Category"
+msgstr ""
+
+#: class.pgt.label:1851
+msgid "Permission Group"
+msgstr ""
+
+#: field.mp.forgive_payment.label:2046 field.mbp.forgive_payment.label:2077
+#: field.mndp.forgive_payment.label:2104
+msgid "Forgive Payment Detail"
+msgstr ""
+
+#: field.rhrr.target.label:2472
+msgid "Hold Target"
+msgstr ""
+
+#: field.au.suffix.label:693
+msgid "Suffix/Title"
+msgstr ""
+
+#: field.asvr.effective_date.label:298
+msgid "Effective Answer Date/Time"
+msgstr ""
+
+#: field.acp.deposit.label:1793
+msgid "Is Deposit Required"
+msgstr ""
+
+#: field.ahr.capture_time.label:1230
+msgid "Capture Date/Time"
+msgstr ""
+
+#: field.mbts.balance_owed.label:167 field.rccbs.balance_owed.label:2629
+msgid "Balance Owed"
+msgstr ""
+
+#: field.aua.street1.label:958
+msgid "Street (1)"
+msgstr ""
+
+#: field.rhrr.bib_record.label:2474
+msgid "Target Bib Record"
+msgstr ""
+
+#: class.ac.label:1351
+msgid "Library Card"
+msgstr ""
+
+#: field.au.second_given_name.label:691
+msgid "Middle Name"
+msgstr ""
+
+#: field.aihu.staff.label:241 field.ancihu.staff.label:258
+msgid "Recording Staff"
+msgstr ""
+
+#: field.aou.billing_address.label:1280
+msgid "Billing Address"
+msgstr ""
+
+#: field.acp.stat_cat_entries.label:1780
+msgid "Statistical Catagory Entries"
+msgstr ""
+
+#: field.crahp.id.label:1834 field.crmf.id.label:1846
+msgid "Rule ID"
+msgstr ""
+
+#: field.acp.loan_duration.label:1802
+msgid "Loan Duration"
+msgstr ""
+
+#: field.mrd.item_type.label:906 field.aua.address_type.label:951
+msgid "Type"
+msgstr ""
+
+#: field.ahr.expire_time.label:1233
+msgid "Hold Expire Date/Time"
+msgstr ""
+
+#: field.bre.full_record_entries.label:537
+msgid "Flattened MARC Fields "
+msgstr ""
+
+#: class.mg.label:1522
+msgid "Grocery Transaction"
+msgstr ""
+
+#: field.acn.record.label:457
+msgid "Bib Record"
+msgstr ""
+
+#: field.rccbs.patron_city.label:2626
+msgid "User City"
+msgstr ""
+
+#: field.ahn.hold.label:1109 field.aufh.hold.label:1926
+msgid "Hold"
+msgstr ""
+
+#: field.cifm.value.label:439
+msgid "Item Form"
+msgstr ""
+
+#: class.cit.label:135
+msgid "Identification Type"
+msgstr ""
+
+#: field.ahr.requestor.label:1245
+msgid "Requesting User"
+msgstr ""
+
+#: field.auoi.opt_in_ws.label:107 class.aws.label:121
+msgid "Workstation"
+msgstr ""
+
+#: field.mcrp.xact.label:1425 field.mb.xact.label:2210
+msgid "Transaction"
+msgstr ""
+
+#: field.rccc.circ_lib.label:2519
+msgid "Library Circulation Location Short (Policy) Name"
+msgstr ""
+
+#: field.acp.fine_level.label:1799
+msgid "Fine Level"
+msgstr ""
+
+#: field.rxpt.total.label:2503
+msgid "Total Paid Amount"
+msgstr ""
+
+#: field.aun.id.label:193 field.acpn.id.label:754
+msgid "Note ID"
+msgstr ""
+
+#: field.pgt.application_perm.label:1862
+msgid "Required Permission"
+msgstr ""
+
+#: field.rsr.uniform_title.label:2419
+msgid "Uniform Title (normalized)"
+msgstr ""
+
+#: field.mg.xact_finish.label:1531
+msgid "Transaction Finish Timestamp"
+msgstr ""
+
+#: class.ahr.label:1223
+msgid "Hold Request"
+msgstr ""
+
+#: field.bre.notes.label:531
+msgid "Non-MARC Record Notes"
+msgstr ""
+
+#: field.ancihu.item_type.label:256 field.citm.value.label:1159
+msgid "Item Type"
+msgstr ""
+
+#: field.ahr.phone_notify.label:1240
+msgid "Notifications Phone Number"
+msgstr ""
+
+#: field.mg.billable_transaction.label:1535
+msgid "Billable Transaction link"
+msgstr ""
+
+#: field.circ.id.label:1017 field.rodcirc.id.label:2690
+msgid "Circ ID"
+msgstr ""
+
+#: field.bre.deleted.label:518
+msgid "Is Deleted?"
+msgstr ""
+
+#: field.mbt.billings.label:1572
+msgid "Billing Line Items"
+msgstr ""
+
+#: field.acp.circulate.label:1788
+msgid "Can Circulate"
+msgstr ""
+
+#: field.bre.last_xact_id.label:523
+msgid "Last Transaction ID"
+msgstr ""
+
+#: field.mp.check_payment.label:2044 field.mbp.check_payment.label:2075
+msgid "Check Payment Detail"
+msgstr ""
+
+#: field.ahr.id.label:1239 field.rhrr.id.label:2471
+msgid "Hold ID"
+msgstr ""
+
+#: field.mbts.last_billing_ts.label:170
+msgid "Last Billing Timestamp"
+msgstr ""
+
+#: field.pgt.usergroup.label:1863
+msgid "Is User Group"
+msgstr ""
+
+#: field.rccbs.usr.label:2607
+msgid "User Link"
+msgstr ""
+
+#: field.acpl.circulate.label:1126
+msgid "Can Circulate?"
+msgstr ""
+
+#: field.acp.stat_cat_entry_copy_maps.label:1809
+msgid "Stat-Cat entry maps"
+msgstr ""
+
+#: field.aout.children.label:1472
+msgid "Subordinate Types"
+msgstr ""
+
+#: field.bre.fixed_fields.label:514
+msgid "Fixed Field Entry"
+msgstr ""
+
+#: field.bre.fingerprint.label:521 field.rssr.fingerprint.label:2391
+#: field.rsr.fingerprint.label:2414
+msgid "Fingerprint"
+msgstr ""
+
+#: field.pgt.children.label:1856
+msgid "Child Groups"
+msgstr ""
+
+#: field.aws.owning_lib.label:128 field.acn.owning_lib.label:456
+#: field.asv.owner.label:1190 field.asc.owner.label:1344
+#: field.actsc.owner.label:1374 field.cnct.owning_lib.label:1461
+msgid "Owning Library"
+msgstr ""
+
+#: field.mg.billing_location.label:1527
+msgid "Billing Location"
+msgstr ""
+
+#: field.circ.circ_staff.label:1011 field.ancc.staff.label:1895
+#: field.rodcirc.circ_staff.label:2684
+msgid "Circulating Staff"
+msgstr ""
+
+#: class.asce.label:2156
+msgid "Item Stat Cat Entry"
+msgstr ""
+
+#: field.atc.hold_transit_copy.label:281 class.ahtc.label:2171
+#: field.iatc.hold_transit_copy.label:2664
+msgid "Hold Transit"
+msgstr ""
+
+#: field.asv.opac.label:1189
+msgid "OPAC Surevey?"
+msgstr ""
+
+#: field.aun.creator.label:192
+msgid "Creating Staff"
+msgstr ""
+
+#: field.circ.due_date.label:1013 field.rodcirc.due_date.label:2686
+msgid "Due Date/Time"
+msgstr ""
+
+#: field.asvq.id.label:152
+msgid "Question ID"
+msgstr ""
+
+#: class.mb.label:2197
+msgid "Billing Line Item"
+msgstr ""
+
+#: field.rsr.external_uri.label:2433
+msgid "External URI List (normalized)"
+msgstr ""
+
+#: field.actsce.id.label:1592 field.actscecm.id.label:1955
+#: field.asce.id.label:2161 field.rsce1.id.label:2568
+#: field.rsce2.id.label:2582
+msgid "Entry ID"
+msgstr ""
+
+#: field.acp.age_protect.label:1781
+msgid "Age Hold Protection"
+msgstr ""
+
+#: field.acp.copy_number.label:1789
+msgid "Copy Number on Volume"
+msgstr ""
+
+#: field.mbts.last_payment_type.label:174
+#: field.rccbs.last_payment_type.label:2618
+msgid "Last Payment Type"
+msgstr ""
+
+#: class.mgp.label:1663
+msgid "Goods Payment"
+msgstr ""
+
+#: field.rssr.isbn.label:2399 field.rsr.isbn.label:2426
+msgid "ISBN"
+msgstr ""
+
+#: field.circ.checkin_staff.label:1008 field.rodcirc.checkin_staff.label:2681
+msgid "Check In Staff"
+msgstr ""
+
+#: field.mdp.cash_drawer.label:2126
+msgid "Cash Drawer"
+msgstr ""
+
+#: class.asvr.label:291
+msgid "Survey Response"
+msgstr ""
+
+#: field.au.first_given_name.label:675
+msgid "First Name"
+msgstr ""
+
+#: field.acpl.owning_lib.label:1131
+msgid "Owning Org Unit"
+msgstr ""
+
+#: field.au.permissions.label:654
+msgid "All Permissions"
+msgstr ""
+
+#: field.mbts.xact_finish.label:178
+msgid "Transaction Finish Time"
+msgstr ""
+
+#: field.cit.id.label:140
+msgid "Identification ID"
+msgstr ""
+
+#: field.atc.source_send_time.label:279 field.ahtc.source_send_time.label:2184
+#: field.iatc.source_send_time.label:2662
+msgid "Send Date/Time"
+msgstr ""
+
+#: field.clm.value.label:374
+msgid "Language"
+msgstr ""
+
+#: field.acp.price.label:1805
+msgid "Price"
+msgstr ""
+
+#: field.ac.barcode.label:1357 field.acp.barcode.label:1783
+msgid "Barcode"
+msgstr ""
+
+#: field.pgt.id.label:1858
+msgid "Group ID"
+msgstr ""
+
+#: field.mrd.pub_status.label:908
+msgid "Pub Status"
+msgstr ""
+
+#: field.acp.deposit_amount.label:1794
+msgid "Deposit Amount"
+msgstr ""
+
+#: field.rxbt.total.label:2489
+msgid "Total Billing Amount"
+msgstr ""
+
+#: field.circ.xact_finish.label:1029 field.mbt.xact_finish.label:1568
+#: field.rodcirc.xact_finish.label:2702
+msgid "Transaction Finish Date/Time"
+msgstr ""
+
+#: field.rsr.genre.label:2430
+msgid "Genres (normalized)"
+msgstr ""
+
+#: field.aus.name.label:210 field.acpl.name.label:1129
+#: field.asv.name.label:1188 field.aou.name.label:1285
+#: field.asc.name.label:1342 field.actsc.name.label:1372
+#: field.cnct.name.label:1460
+msgid "Name"
+msgstr ""
+
+#: field.circ.opac_renewal.label:1020 field.rodcirc.opac_renewal.label:2693
+msgid "OPAC Renewal"
+msgstr ""
+
+#: field.rccc.item_type.label:2529
+msgid "MARC Type"
+msgstr ""
+
+#: field.bre.edit_date.label:519
+msgid "Last Edit Data/Time"
+msgstr ""
+
+#: field.clm.code.label:373 field.bre.language.label:530
+msgid "Language Code"
+msgstr ""
+
+#: field.pgt.parent.label:1860
+msgid "Parent Group"
+msgstr ""
+
+#: field.circ.xact_start.label:1030 field.rodcirc.xact_start.label:2703
+msgid "Check Out Date/Time"
+msgstr ""
+
+#: field.rxbt.unvoided.label:2487
+msgid "Unvoided Billing Amount"
+msgstr ""
+
+#: field.circ.billable_transaction.label:1034
+#: field.rodcirc.billable_transaction.label:2706
+msgid "Base Transaction"
+msgstr ""
+
+#: field.rccc.patron_home_lib_shortname.label:2538
+msgid "Patron Home Library Short (Policy) Name"
+msgstr ""
+
+#: field.cnct.in_house.label:1459
+msgid "In House?"
+msgstr ""
+
+#: field.rsr.geographic_subject.label:2429
+msgid "Geographic Subjects (normalized)"
+msgstr ""
+
+#: field.au.card.label:665
+msgid "Current Library Card"
+msgstr ""
+
+#: field.aou.closed_dates.label:1293
+msgid "Closed Dates"
+msgstr ""
+
+#: field.actsce.value.label:1595 field.rsce1.value.label:2570
+#: field.rsce2.value.label:2584
+msgid "Entry Value"
+msgstr ""
+
+#: field.acpn.creator.label:753
+msgid "Note Creator"
+msgstr ""
+
+#: field.aou.holds_address.label:1281
+msgid "Holds Receiving Address"
+msgstr ""
+
+#: field.mfr.record.label:773 field.mrd.record.label:909
+msgid "Bib Record Entry"
+msgstr ""
+
+#: field.rccbs.usr_home_ou.label:2604
+msgid "User Home Library Link"
+msgstr ""
+
+#: field.rccc.dewey_block_tens.label:2546
+msgid "Dewey Block -- Tens"
+msgstr ""
+
+#: field.acp.id.label:1801
+msgid "Copy ID"
+msgstr ""
+
+#: field.au.day_phone.label:669
+msgid "Daytime Phone"
+msgstr ""
+
+#: field.circ.target_copy.label:1027 field.rodcirc.target_copy.label:2700
+msgid "Circulating Item"
+msgstr ""
+
+#: field.ahr.email_notify.label:1232
+msgid "Notify by Email?"
+msgstr ""
+
+#: field.circ.payment_total.label:1037 field.mg.payment_total.label:1537
+#: field.mbt.payment_total.label:1575 field.rodcirc.payment_total.label:2709
+msgid "Payment Totals"
+msgstr ""
+
+#: field.rccc.patron_id.label:2536
+msgid "Patron Link"
+msgstr ""
+
+#: field.mp.goods_payment.label:2047 field.mbp.goods_payment.label:2078
+#: field.mndp.goods_payment.label:2105
+msgid "Goods Payment Detail"
+msgstr ""
+
+#: field.au.notes.label:699
+msgid "User Notes"
+msgstr ""
+
+#: field.asc.id.label:1341 field.actsc.id.label:1371
+msgid "Stat Cat ID"
+msgstr ""
+
+#: field.aus.value.label:212 field.asce.value.label:2164
+msgid "Value"
+msgstr ""
+
+#: field.bre.tcn_source.label:527 field.rssr.tcn_source.label:2393
+#: field.rsr.tcn_source.label:2416
+msgid "TCN Source"
+msgstr ""
+
+#: class.rsce1.label:2563
+msgid "CAT1 Entry"
+msgstr ""
+
+#: field.mrd.enc_level.label:902
+msgid "ELvl"
+msgstr ""
+
+#: field.ahtc.dest.label:2177
+msgid "Destination Library"
+msgstr ""
+
+#: class.aufh.label:1918
+msgid "Unfulfilled Hold Targets"
+msgstr ""
+
+#: field.rccc.dewey_range_hundreds.label:2545
+msgid "Dewey Range -- Hundreds"
+msgstr ""
+
+#: field.rccc.copy_id.label:2523
+msgid "Copy Link"
+msgstr ""
+
+#: field.ahr.selection_ou.label:1247
+msgid "Selection Locus"
+msgstr ""
+
+#: field.rsr.series_statement.label:2424
+msgid "Series Statement (normalized)"
+msgstr ""
+
+#: class.rccbs.label:2591
+msgid "Classic Open Transaction Summary"
+msgstr ""
+
+#: class.cnct.label:1452
+msgid "Non-cataloged Type"
+msgstr ""
+
+#: field.asvq.question.label:153 field.asvr.question.label:300
+#: field.asva.question.label:1878
+msgid "Question"
+msgstr ""
+
+#: field.ahtc.prev_hop.label:2182
+msgid "Previous Stop"
+msgstr ""
+
+#: field.atc.source.label:278 field.iatc.source.label:2661
+msgid "Source"
+msgstr ""
+
+#: class.ahn.label:1104
+msgid "Hold Notification"
+msgstr ""
+
+#: field.rcirct.id.label:2459
+msgid "Circulation ID"
+msgstr ""
+
+#: field.aua.county.label:954
+msgid "County"
+msgstr ""
+
+#: field.rsr.topic_subject.label:2428
+msgid "Topic Subjects (normalized)"
+msgstr ""
+
+#: field.rccbs.barcode.label:2606
+msgid "User Barcode"
+msgstr ""
+
+#: field.au.profile.label:690
+msgid "Main (Profile) Permission Group"
+msgstr ""
+
+#: field.mfr.subfield.label:774
+msgid "Subfield"
+msgstr ""
+
+#: field.acn.creator.label:450 field.acp.creator.label:1791
+msgid "Creating User"
+msgstr ""
+
+#: field.acp.holdable.label:1800
+msgid "Is Holdable"
+msgstr ""
+
+#: field.acn.editor.label:453 field.bre.editor.label:520
+#: field.acp.editor.label:1798
+msgid "Last Editing User"
+msgstr ""
+
+#: field.circ.max_fine.label:1018 field.crmf.amount.label:1845
+#: field.rodcirc.max_fine.label:2691
+msgid "Max Fine Amount"
+msgstr ""
+
+#: field.ahtc.copy_status.label:2176
+msgid "Copy Status at Transit"
+msgstr ""
+
+#: field.aou.settings.label:1295
+msgid "Settings"
+msgstr ""
+
+#: field.ahr.hold_type.label:1237
+msgid "Hold Type"
+msgstr ""
+
+#: field.mrd.bib_level.label:898
+msgid "BLvl"
+msgstr ""
+
+#: field.mp.credit_payment.label:2043 field.mbp.credit_payment.label:2074
+msgid "Credit Payment Detail"
+msgstr ""
+
+#: field.ahr.request_time.label:1244
+msgid "Request Date/Time"
+msgstr ""
+
+#: field.rccbs.xact_finish.label:2610
+msgid "Transaction End Date/Time"
+msgstr ""
+
+#: class.crahp.label:1828
+msgid "Age Hold Protection Rule"
+msgstr ""
+
+#: field.aou.workstations.label:1298
+msgid "Workstations"
+msgstr ""
+
+#: field.au.hold_requests.label:653
+msgid "All Hold Requests"
+msgstr ""
+
+#: field.au.master_account.label:684
+msgid "Is Group Lead Account"
+msgstr ""
+
+#: field.ahr.frozen.label:1256
+msgid "Currently Frozen"
+msgstr ""
+
+#: field.mfr.value.label:776
+msgid "Normalized Value"
+msgstr ""
+
+#: field.mcrp.accepting_usr.label:1419 field.mwp.accepting_usr.label:1647
+#: field.mgp.accepting_usr.label:1668 field.mckp.accepting_usr.label:1756
+msgid "Accepting Staff Member"
+msgstr ""
+
+#: field.rccc.demographic_general_division.label:2532
+msgid "Patron Age Demographic"
+msgstr ""
+
+#: field.rsr.corporate_subject.label:2432
+msgid "Corporate Name Subjects (normalized)"
+msgstr ""
+
+#: class.rodcirc.label:2675
+msgid "Overdue Circulation"
+msgstr ""
+
+#: field.bre.active.label:515
+msgid "Is Active?"
+msgstr ""
+
+#: field.crahp.prox.label:1836
+msgid "Allowed Proximity"
+msgstr ""
+
+#: field.ahr.fulfillment_time.label:1236
+msgid "Fulfillment Date/Time"
+msgstr ""
+
+#: field.mg.note.label:1529 field.mwp.note.label:1651
+#: field.mgp.note.label:1672 field.mckp.note.label:1762
+#: field.mp.note.label:2036 field.mbp.note.label:2067
+#: field.mndp.note.label:2098 field.mdp.note.label:2121
+#: field.mb.note.label:2206
+msgid "Note"
+msgstr ""
+
+#: field.aua.id.label:955
+msgid "Address ID"
+msgstr ""
+
+#: field.rccbs.patron_county.label:2625
+msgid "User County"
+msgstr ""
+
+#: field.acn.id.label:454
+msgid "Call Number/Volume ID"
+msgstr ""
+
+#: class.asc.label:1335
+msgid "Asset Statistical Category"
+msgstr ""
+
+#: class.au.label:645
+msgid "ILS User"
+msgstr ""
+
+#: class.asvq.label:145
+msgid "User Survey Question"
+msgstr ""
+
+#: field.circ.phone_renewal.label:1021 field.rodcirc.phone_renewal.label:2694
+msgid "Phone Renewal"
+msgstr ""
+
+#: field.mbt.payments.label:1573
+msgid "Payment Line Items"
+msgstr ""
+
+#: field.bre.quality.label:525
+msgid "Overall Quality"
+msgstr ""
+
+#: field.au.active.label:661
+msgid "Active"
+msgstr ""
+
+#: field.au.addresses.label:650
+msgid "All Addresses"
+msgstr ""
+
+#: field.mdp.cash_payment.label:2128
+msgid "Cash Payment"
+msgstr ""
+
+#: field.ahr.fulfillment_lib.label:1234
+msgid "Fulfilling Library"
+msgstr ""
+
+#: field.aua.post_code.label:956
+msgid "Postal Code"
+msgstr ""
+
+#: field.mb.voider.label:2209
+msgid "Voiding Staff Member"
+msgstr ""
+
+#: field.mcrp.note.label:1423
+msgid "Payment Note"
+msgstr ""
+
+#: field.mbts.total_paid.label:176 field.rccbs.total_paid.label:2613
+msgid "Total Paid"
+msgstr ""
+
+#: field.ahtc.transit_copy.label:2186
+msgid "Base Transit"
+msgstr ""
+
+#: field.aufh.fail_time.label:1925
+msgid "Retargeting Date/Time"
+msgstr ""
+
+#: field.au.performed_circulations.label:703 None:730
+msgid "Circulations Performed as Staff"
+msgstr ""
+
+#: field.asvr.id.label:299 field.asva.id.label:1877
+msgid "Answer ID"
+msgstr ""
+
+#: field.mcrp.payment.label:1427 field.mwp.payment.label:1654
+#: field.mgp.payment.label:1675 field.mckp.payment.label:1765
+msgid "Payment link"
+msgstr ""
+
+#: field.aua.city.label:952
+msgid "City"
+msgstr ""
+
+#: field.acpl.holdable.label:1127
+msgid "Is Holdable?"
+msgstr ""
+
+#: field.bre.create_date.label:516 field.au.create_date.label:667
+#: field.circ.create_time.label:1031
+msgid "Record Creation Date/Time"
+msgstr ""
+
+#: field.rccc.item_form.label:2528
+msgid "MARC Form"
+msgstr ""
+
+#: field.acp.holds.label:1811
+msgid "Holds"
+msgstr ""
+
+#: field.rccc.patron_city.label:2540
+msgid "Patron City"
+msgstr ""
+
+#: field.aou.children.label:1279
+msgid "Subordinate Organizational Units"
+msgstr ""
+
+#: field.asva.responses.label:1875
+msgid "Responses using this Answer"
+msgstr ""
+
+#: field.ahr.thaw_date.label:1257
+msgid "Thaw Date (if frozen)"
+msgstr ""
+
+#: class.circ.label:1002 field.rccc.id.label:2518
+msgid "Circulation"
+msgstr ""
+
+#: field.asvr.usr.label:303
+msgid "Responding User"
+msgstr ""
+
+#: class.rccc.label:2513
+msgid "Classic Circulation View"
+msgstr ""
+
+#: field.aihu.use_time.label:242 field.ancihu.use_time.label:259
+msgid "Use Date/Time"
+msgstr ""
+
+#: field.aihu.id.label:238 field.ancihu.id.label:255
+msgid "Use ID"
+msgstr ""
+
+#: field.atc.dest_recv_time.label:274 field.ahtc.dest_recv_time.label:2178
+#: field.iatc.dest_recv_time.label:2657
+msgid "Receive Date/Time"
+msgstr ""
+
+#: field.asv.poll.label:1191
+msgid "Poll Style?"
+msgstr ""
+
+#: field.rssr.pubdate.label:2398 field.rsr.pubdate.label:2422
+msgid "Publication Year (normalized)"
+msgstr ""
+
+#: field.cnct.id.label:1458
+msgid "Non-cat Type ID"
+msgstr ""
+
+#: field.asva.answer.label:1876
+msgid "Answer Text"
+msgstr ""
+
+#: field.acpn.owning_copy.label:755
+msgid "Copy"
+msgstr ""
+
+#: field.aout.can_have_vols.label:1474
+msgid "Can Have Volumes?"
+msgstr ""
+
+#: field.bre.id.label:522 field.aufh.id.label:1927 field.rssr.id.label:2390
+#: field.rsr.id.label:2412
+msgid "Record ID"
+msgstr ""
+
+#: class.cam.label:422
+msgid "Audience Map"
+msgstr ""
+
+#: field.au.email.label:671 field.aou.email.label:1289
+msgid "Email Address"
+msgstr ""
+
+#: field.clfm.description.label:1637
+msgid "LitF Description"
+msgstr ""
+
+#: field.au.passwd.label:687
+msgid "Password (obfuscated)"
+msgstr ""
+
+#: field.aihu.item.label:239 class.acp.label:1775
+msgid "Item"
+msgstr ""
+
+#: field.cam.value.label:429
+msgid "Audience"
+msgstr ""
+
+#: field.aout.parent.label:1479
+msgid "Parent Type"
+msgstr ""
+
+#: class.rud.label:2441
+msgid "User Demographics"
+msgstr ""
+
+#: field.atc.prev_hop.label:277 field.iatc.prev_hop.label:2660
+msgid "Previous Hop (unused)"
+msgstr ""
+
+#: field.aou.users.label:1292
+msgid "Users"
+msgstr ""
+
+#: field.circ.usr.label:1028 field.ancc.patron.label:1894
+#: field.rodcirc.usr.label:2701
+msgid "Patron"
+msgstr ""
+
+#: class.mcrp.label:1414
+msgid "House Credit Payment"
+msgstr ""
+
+#: field.acp.dummy_author.label:1795
+msgid "Precat Dummy Author"
+msgstr ""
+
+#: field.au.cards.label:651
+msgid "All Library Cards"
+msgstr ""
+
+#: field.rxpt.voided.label:2502
+msgid "Voided (Returned) Paid Amount"
+msgstr ""
+
+#: field.mbts.last_billing_note.label:169
+#: field.rccbs.last_billing_note.label:2621
+msgid "Last Billing Note"
+msgstr ""
+
+#: field.rccbs.billing_location.label:2600
+msgid "Billing Location Link"
+msgstr ""
+
+#: field.mrd.cat_form.label:899
+msgid "Cat Form"
+msgstr ""
+
+#: field.atc.dest.label:273 field.iatc.dest.label:2656
+msgid "Destination"
+msgstr ""
+
+#: field.au.evening_phone.label:672
+msgid "Evening Phone"
+msgstr ""
+
+#: field.au.ident_type.label:678
+msgid "Primary Identification Type"
+msgstr ""
+
+#: class.mndp.label:2091
+msgid "Payments: Non-drawer Staff"
+msgstr ""
+
+#: field.pgt.name.label:1859
+msgid "Group Name"
+msgstr ""
+
+#: field.mckp.xact.label:1764
+msgid "Transaction link"
+msgstr ""
+
+#: field.mbt.circulation.label:1571
+msgid "Circulation Billing link"
+msgstr ""
+
+#: field.bre.author_field_entries.label:535
+msgid "Indexed Author Field Entries"
+msgstr ""
+
+#: field.aou.phone.label:1290
+msgid "Phone Number"
+msgstr ""
+
+#: field.acn.create_date.label:449
+msgid "Create Date/Time"
+msgstr ""
+
+#: class.atc.label:267
+msgid "Copy Transit"
+msgstr ""
+
+#: field.au.super_user.label:694
+msgid "Is Super User"
+msgstr ""
+
+#: class.mfr.label:765
+msgid "Flattened MARC Fields"
+msgstr ""
+
+#: field.acp.circ_as_type.label:1785
+msgid "Circulation Type (MARC)"
+msgstr ""
+
+#: field.auoi.staff.label:108
+msgid "Staff Member"
+msgstr ""
+
+#: field.aws.id.label:126
+msgid "Workstation ID"
+msgstr ""
+
+#: class.acpn.label:747
+msgid "Copy Note"
+msgstr ""
+
+#: field.atc.persistant_transfer.label:276
+#: field.iatc.persistant_transfer.label:2659
+msgid "Is Persistent? (unused)"
+msgstr ""
+
+#: field.rccc.patron_zip.label:2541
+msgid "Patron ZIP Code"
+msgstr ""
+
+#: field.ahtc.persistant_transfer.label:2181
+msgid "Is Persistent?"
+msgstr ""
+
+#: field.au.net_access_level.label:685
+msgid "Internet Access Level"
+msgstr ""
+
+#: field.ancc.item_type.label:1893
+msgid "Non-cat Item Type"
+msgstr ""
+
+#: field.rccbs.patron_zip.label:2627
+msgid "User ZIP Code"
+msgstr ""
+
+#: field.mcrp.payment_type.label:1426 field.mwp.payment_type.label:1655
+#: field.mgp.payment_type.label:1676 field.mckp.payment_type.label:1766
+#: field.mp.payment_type.label:2038 field.mbp.payment_type.label:2069
+#: field.mndp.payment_type.label:2100 field.mdp.payment_type.label:2123
+msgid "Payment Type"
+msgstr ""
+
+#: field.mdp.credit_card_payment.label:2129
+msgid "Credit Card Payment"
+msgstr ""
+
+#: field.au.usrgroup.label:695
+msgid "Family Linkage or other Group"
+msgstr ""
+
+#: field.ahn.id.label:1110
+msgid "Notification ID"
+msgstr ""
+
+#: field.rccbs.last_billing_ts.label:2620
+msgid "Last Billing Date/Time"
+msgstr ""
+
+#: field.mcrp.amount_collected.label:1421
+#: field.mwp.amount_collected.label:1649 field.mgp.amount_collected.label:1670
+#: field.mckp.amount_collected.label:1758
+msgid "Amount Collected"
+msgstr ""
+
+#: field.ahr.current_copy.label:1231
+msgid "Currently Targeted Copy"
+msgstr ""
+
+#: field.aout.depth.label:1475
+msgid "Type Depth"
+msgstr ""
+
+#: field.rccc.stat_cat_1_value.label:2548
+msgid "Legacy CAT1 Value"
+msgstr ""
+
+#: class.auoi.label:101
+msgid "User Sharing Opt-in"
+msgstr ""
+
+#: field.rccc.profile_group.label:2531
+msgid "Patron Profile Group"
+msgstr ""
+
+#: field.rccbs.usr_home_ou_shortname.label:2602
+msgid "User Home Library Short (Policy) Name"
+msgstr ""
+
+#: field.au.dob.label:670 field.rud.dob.label:2447
+msgid "Date of Birth"
+msgstr ""
+
+#: field.mckp.cash_drawer.label:1759
+msgid "Workstation link"
+msgstr ""
+
+#: field.aun.title.label:195 field.acpn.title.label:757
+msgid "Note Title"
+msgstr ""
+
+#: field.auoi.id.label:106
+msgid "Opt-in ID"
+msgstr ""
+
+#: field.asvq.answers.label:150
+msgid "Answers"
+msgstr ""
+
+#: field.bre.creator.label:517
+msgid "Record Creator"
+msgstr ""
+
+#: field.acpl.id.label:1128
+msgid "Location ID"
+msgstr ""
+
+#: field.rccc.owning_lib_name.label:2525
+msgid "Owning Library Short (Policy) Name"
+msgstr ""
+
+#: class.ancc.label:1885
+msgid "Non-cataloged Circulation"
+msgstr ""
+
+#: class.asva.label:1870
+msgid "Survey Answer"
+msgstr ""
+
+#: class.mbt.label:1561 field.mp.xact.label:2039 field.mbp.xact.label:2070
+#: field.mndp.xact.label:2101 field.mdp.xact.label:2124
+msgid "Billable Transaction"
+msgstr ""
+
+#: field.rccc.patron_home_lib.label:2537
+msgid "Patron Home Library Link"
+msgstr ""
+
+#: field.aou.parent_ou.label:1287
+msgid "Parent Organizational Unit"
+msgstr ""
+
+#: field.circ.billings.label:1032 field.rodcirc.billings.label:2704
+msgid "Transaction Billings"
+msgstr ""
+
+#: field.au.photo_url.label:688
+msgid "Photo URL"
+msgstr ""
+
+#: class.mp.label:2029
+msgid "Payments: All"
+msgstr ""
+
+#: field.asv.questions.label:1183
+msgid "Questions"
+msgstr ""
+
+#: field.cifm.code.label:438
+msgid "Item Form Code"
+msgstr ""
+
+#: field.clfm.value.label:1638
+msgid "LitF Name"
+msgstr ""
+
+#: field.aun.value.label:197 field.acpn.value.label:758
+msgid "Note Content"
+msgstr ""
+
+#: field.asv.start_date.label:1193
+msgid "Survey Start Date/Time"
+msgstr ""
+
+#: field.au.checkouts.label:652
+msgid "All Circulations"
+msgstr ""
+
+#: field.aws.name.label:127
+msgid "Workstation Name"
+msgstr ""
+
+#: field.mckp.check_number.label:1760
+msgid "Check Number"
+msgstr ""
+
+#: field.rsr.summary.label:2425
+msgid "Summary (normalized)"
+msgstr ""
+
+#: field.au.ident_value.label:680
+msgid "Primary Identification"
+msgstr ""
+
+#: field.ahr.fulfillment_staff.label:1235
+msgid "Fulfilling Staff"
+msgstr ""
+
+#: field.mrd.char_encoding.label:900
+msgid "Character Encoding"
+msgstr ""
+
+#: field.mp.work_payment.label:2045 field.mbp.work_payment.label:2076
+#: field.mndp.work_payment.label:2103
+msgid "Work Payment Detail"
+msgstr ""
+
+#: field.ancc.id.label:1892
+msgid "Non-cat Circulation ID"
+msgstr ""
+
+#: field.auoi.usr.label:109 field.aun.usr.label:196 field.aus.usr.label:211
+#: field.aua.usr.label:960 field.ac.usr.label:1359 field.mg.usr.label:1530
+#: field.mbt.usr.label:1567 field.actscecm.target_usr.label:1958
+msgid "User"
+msgstr ""
+
+#: field.mg.billings.label:1533
+msgid "Billings"
+msgstr ""
+
+#: field.mrd.lit_form.label:907
+msgid "LitF"
+msgstr ""
+
+#: field.rccbs.billing_location_name.label:2599
+msgid "Billing Location Name"
+msgstr ""
+
+#: field.circ.stop_fines.label:1025 field.rodcirc.stop_fines.label:2698
+msgid "Fine Stop Reason"
+msgstr ""
+
+#: field.acp.ref.label:1806
+msgid "Is Reference"
+msgstr ""
+
+#: field.aua.valid.label:961
+msgid "Valid Address?"
+msgstr ""
+
+#: field.acp.status.label:1807
+msgid "Copy Status"
+msgstr ""
+
+#: field.asvq.survey.label:154 field.asvr.survey.label:302
+#: class.asv.label:1178
+msgid "Survey"
+msgstr ""
+
+#: field.mb.id.label:2205
+msgid "Billing ID"
+msgstr ""
+
+#: field.aou.circulations.label:1294 field.acp.circulations.label:1810
+msgid "Circulations"
+msgstr ""
+
+#: field.aus.id.label:209
+msgid "Setting ID"
+msgstr ""
+
+#: field.au.mailing_address.label:683 field.aou.mailing_address.label:1284
+msgid "Mailing Address"
+msgstr ""
+
+#: field.acn.label.label:455 field.rccc.call_number_label.label:2534
+msgid "Call Number Label"
+msgstr ""
+
+#: field.au.standing_penalties.label:656
+msgid "Standing Penalties"
+msgstr ""
+
+#: field.asv.id.label:1187
+msgid "Survey ID"
+msgstr ""
+
+#: field.bre.metarecord.label:529 field.rsr.metarecord.label:2413
+msgid "Metarecord"
+msgstr ""
+
+#: field.aout.can_have_users.label:1473
+msgid "Can Have Users?"
+msgstr ""
+
+#: field.au.prefix.label:689
+msgid "Prefix"
+msgstr ""
+
+#: field.rccc.patron_county.label:2539
+msgid "Patron County"
+msgstr ""
+
+#: field.actsce.owner.label:1593 field.asce.owner.label:2162
+#: field.rsce1.owner.label:2569 field.rsce2.owner.label:2583
+msgid "Entry Owner"
+msgstr ""
+
+#: field.rccc.circ_modifier.label:2524
+msgid "Circ Modifier"
+msgstr ""
+
+#: field.rsr.series_title.label:2423
+msgid "Series Title (normalized)"
+msgstr ""
+
+#: field.mbt.grocery.label:1570
+msgid "Grocery Billing link"
+msgstr ""
+
+#: field.actscecm.stat_cat_entry.label:1957
+msgid "Entry Text"
+msgstr ""
+
+#: field.aufh.current_copy.label:1924
+msgid "Non-fulfilling Copy"
+msgstr ""
+
+#: field.acp.location.label:1803 field.rccc.shelving_location.label:2530
+msgid "Shelving Location"
+msgstr ""
+
+#: field.aou.id.label:1282
+msgid "Organizational Unit ID"
+msgstr ""
+
+#: field.ahr.pickup_lib.label:1241
+msgid "Pickup Library"
+msgstr ""
+
+#: field.cam.description.label:428 field.asv.description.label:1185
+#: field.pgt.description.label:1857
+msgid "Description"
+msgstr ""
+
+#: field.bre.keyword_field_entries.label:532
+msgid "Indexed Keyword Field Entries"
+msgstr ""
+
+#: field.aufh.circ_lib.label:1923
+msgid "Non-fulfilling Library"
+msgstr ""
+
+#: field.au.home_ou.label:676
+msgid "Home Library"
+msgstr ""
+
+#: class.clm.label:368
+msgid "Language Map"
+msgstr ""
+
+#: field.atc.copy_status.label:272 field.iatc.copy_status.label:2655
+msgid "Pretransit Copy Status"
+msgstr ""
+
+#: field.crahp.age.label:1833
+msgid "Item Age"
+msgstr ""
+
+#: field.au.standing.label:692
+msgid "Standing (unused)"
+msgstr ""
+
+#: field.rsr.name_subject.label:2431
+msgid "Personal Name Subjects (normalized)"
+msgstr ""
+
+#: field.asv.usr_summary.label:1194
+msgid "Display in User Summary"
+msgstr ""
+
+#: field.ahn.notify_staff.label:1113
+msgid "Notifying Staff"
+msgstr ""
+
+#: field.aua.country.label:953
+msgid "Country"
+msgstr ""
+
+#: field.circ.checkin_time.label:1009 field.rodcirc.checkin_time.label:2682
+msgid "Check In Date/Time"
+msgstr ""
+
+#: field.mg.payments.label:1534
+msgid "Payments"
+msgstr ""
+
+#: field.mbts.last_billing_type.label:171
+#: field.rccbs.last_billing_type.label:2622
+msgid "Last Billing Type"
+msgstr ""
+
+#: field.circ.recuring_fine.label:1022 field.rodcirc.recuring_fine.label:2695
+msgid "Recurring Fine Amount"
+msgstr ""
+
+#: field.asv.end_date.label:1186
+msgid "Survey End Date/Time"
+msgstr ""
+
+#: field.mg.xact_start.label:1532
+msgid "Transaction Start Timestamp"
+msgstr ""
+
+#: field.bre.title_field_entries.label:534
+msgid "Indexed Title Field Entries"
+msgstr ""
+
+#: field.atc.target_copy.label:280 field.ahtc.target_copy.label:2185
+#: field.iatc.target_copy.label:2663
+msgid "Transited Copy"
+msgstr ""
+
+#: field.acp.circ_modifier.label:1787
+msgid "Circulation Modifier"
+msgstr ""
+
+#: field.aou.addresses.label:1296
+msgid "Addresses"
+msgstr ""
+
+#: field.auoi.opt_in_ts.label:111
+msgid "Opt-in Date/Time"
+msgstr ""
+
+#: field.circ.desk_renewal.label:1012 field.rodcirc.desk_renewal.label:2685
+msgid "Desk Renewal"
+msgstr ""
+
+#: field.citm.code.label:1158
+msgid "Item Type Code"
+msgstr ""
+
+#: field.circ.renewal_remaining.label:1024
+#: field.rodcirc.renewal_remaining.label:2697
+msgid "Remaining Renewals"
+msgstr ""
+
+#: field.mb.void_time.label:2207
+msgid "Void Timestamp"
+msgstr ""
+
+#: field.au.billable_transactions.label:701 None:723
+msgid "Billable Transactions"
+msgstr ""

Copied: trunk/build/i18n/po/en-US/ils_events.xml.pot (from rev 8396, trunk/build/i18n/po/ils_events.xml.pot)
===================================================================
--- trunk/build/i18n/po/en-US/ils_events.xml.pot	                        (rev 0)
+++ trunk/build/i18n/po/en-US/ils_events.xml.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -0,0 +1,852 @@
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: Evergreen 1.4\n"
+"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
+"POT-Creation-Date: 2008-01-17 14:20:24-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8-bit\n"
+
+#: 1208.TITLE_LAST_COPY:66
+msgid "The last copy attached to a title is being removed or deleted"
+msgstr ""
+
+#: 1603.CONTAINER_USER_BUCKET_ITEM_NOT_FOUND:441
+msgid "The requested container_user_bucket_item was not found"
+msgstr ""
+
+#: 1598.MONEY_USER_CIRCULATION_SUMMARY_NOT_FOUND:426
+msgid "The requested money_user_circulation_summary was not found"
+msgstr ""
+
+#: 1621.CONTAINER_COPY_BUCKET_NOT_FOUND:494
+msgid "The requested container_copy_bucket was not found"
+msgstr ""
+
+#: 1218.ITEM_AGE_PROTECTED:104
+msgid "This item is too new to have a hold placed on it"
+msgstr ""
+
+#: 1214.PATRON_DUP_IDENT1:87
+msgid "The selected primary identification type and value are in use by another patron"
+msgstr ""
+
+#: 1561.PERMISSION_PERM_LIST_NOT_FOUND:318
+msgid "The requested permission_perm_list was not found"
+msgstr ""
+
+#: 1213.PATRON_BARRED:83
+msgid "The patron is barred"
+msgstr ""
+
+#: 1591.METABIB_SERIES_FIELD_ENTRY_NOT_FOUND:405
+msgid "The requested metabib_series_field_entry was not found"
+msgstr ""
+
+#: 8002.OFFLINE_FILE_ERROR:688
+msgid " An offline file or directory could not be created or accessed "
+msgstr ""
+
+#: 1502.ASSET_COPY_NOT_FOUND:173
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a copy object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1639.REPORTER_SCHEDULE_NOT_FOUND:548
+msgid "The requested reporter_schedule was not found"
+msgstr ""
+
+#: 0.SUCCESS:14
+msgid " "
+msgstr ""
+
+#: 7006.COPY_IS_REFERENCE:638
+msgid " Copy is reference material "
+msgstr ""
+
+#: 1609.CONFIG_RULES_RECURING_FINE_NOT_FOUND:459
+msgid "The requested config_rules_recuring_fine was not found"
+msgstr ""
+
+#: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:456
+msgid "The requested metabib_subject_field_entry was not found"
+msgstr ""
+
+#: 2001.DATABASE_UPDATE_FAILED:596
+msgid "The attempt to write to the DB failed"
+msgstr ""
+
+#: 1507.CONTAINER_ITEM_NOT_FOUND:196
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a container item object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:253
+msgid "The requested action_survey_response was not found"
+msgstr ""
+
+#: 1555.MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:301
+msgid "The requested money_open_billable_transaction_summary was not found"
+msgstr ""
+
+#: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:298
+msgid "The requested config_rules_circ_duration was not found"
+msgstr ""
+
+#: 1607.ACTION_OPEN_CIRCULATION_NOT_FOUND:453
+msgid "The requested action_open_circulation was not found"
+msgstr ""
+
+#: 1559.METABIB_FULL_REC_NOT_FOUND:312
+msgid "The requested metabib_full_rec was not found"
+msgstr ""
+
+#: 1527.OPEN_TCN_NOT_FOUND:219
+msgid "No TCN could be found that does not collide with existing records"
+msgstr ""
+
+#: 8000.OFFLINE_SESSION_ACTIVE:682
+msgid " An offline session for this location is currently processing "
+msgstr ""
+
+#: 1563.METABIB_KEYWORD_FIELD_ENTRY_NOT_FOUND:324
+msgid "The requested metabib_keyword_field_entry was not found"
+msgstr ""
+
+#: 1546.CONFIG_AUDIENCE_MAP_NOT_FOUND:277
+msgid "The requested config_audience_map was not found"
+msgstr ""
+
+#: 1001.NO_SESSION:26
+msgid "User login session has either timed out or does not exist"
+msgstr ""
+
+#: 1525.BILLING_NOT_FOUND:215
+msgid " Requested billing note does not exist "
+msgstr ""
+
+#: 8001.OFFLINE_SESSION_FILE_EXISTS:685
+msgid " An offline file for this workstation exists within this session "
+msgstr ""
+
+#: 1529.ACTOR_WORKSTATION_NOT_FOUND:227
+msgid "The requested actor_workstation was not found"
+msgstr ""
+
+#: 1227.COPY_DELETE_WARNING:140
+msgid "The copy in question is not in an ideal status for deleting"
+msgstr ""
+
+#: 1223.PATRON_NO_PHONE:122
+msgid "The user does not have a valid phone number assigned"
+msgstr ""
+
+#: 1002.ACTOR_USER_NOT_FOUND:29
+msgid "Someone attempted to retrieve a user from the system and the user was not found"
+msgstr ""
+
+#: 1636.REPORTER_OUTPUT_FOLDER_NOT_FOUND:539
+msgid "The requested reporter_output_folder was not found"
+msgstr ""
+
+#: 1217.PATRON_INACTIVE:101
+msgid "This account is marked as inactive"
+msgstr ""
+
+#: 1637.REPORTER_REPORT_FOLDER_NOT_FOUND:542
+msgid "The requested reporter_report_folder was not found"
+msgstr ""
+
+#: 1545.PERM_EX_NOT_FOUND:274
+msgid "The requested perm_ex was not found"
+msgstr ""
+
+#: 1553.ACTOR_ORG_UNIT_CLOSED_DATE_NOT_FOUND:295
+msgid "The requested actor_org_unit_closed_date was not found"
+msgstr ""
+
+#: 1541.AUTHORITY_RECORD_DESCRIPTOR_NOT_FOUND:262
+msgid "The requested authority_record_descriptor was not found"
+msgstr ""
+
+#: 7011.COPY_STATUS_LOST:653
+msgid "Copy has is marked as lost"
+msgstr ""
+
+#: 1587.CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND:393
+msgid "The requested container_call_number_bucket was not found"
+msgstr ""
+
+#: 1229.VOLUME_DELETED:147
+msgid "The requested volume is marked as deleted"
+msgstr ""
+
+#: 1635.REPORTER_REPORT_NOT_FOUND:536
+msgid "The requested reporter_report was not found"
+msgstr ""
+
+#: 1631.MONEY_COLLECTIONS_TRACKER_NOT_FOUND:524
+#: 1632.CONFIG_RULES_AGE_HOLD_PROTECT_NOT_FOUND:527
+#: 1633.MONEY_DESK_PAYMENT_NOT_FOUND:530
+msgid "The requested money_collections_tracker was not found"
+msgstr ""
+
+#: 5000.PERM_FAILURE:605
+msgid "Permission Denied"
+msgstr ""
+
+#: 7015.NEGATIVE_PATRON_BALANCE:665
+msgid "This requested action would result in a negative patron balance"
+msgstr ""
+
+#: 1569.ACTOR_USER_STANDING_PENALTY_NOT_FOUND:342
+msgid "The requested actor_user_standing_penalty was not found"
+msgstr ""
+
+#: 1200.USERNAME_EXISTS:39
+msgid "The given username already exists in the database"
+msgstr ""
+
+#: 9000.REPORT_TEMPLATE_EXISTS:716
+msgid " A report template with the given name and folder already exists"
+msgstr ""
+
+#: 1602.ACTOR_STAT_CAT_ENTRY_NOT_FOUND:438
+msgid "The requested actor_stat_cat_entry was not found"
+msgstr ""
+
+#: 1710.CONTAINER_EXISTS:588
+msgid "User has already created a bucket with the requested name"
+msgstr ""
+
+#: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:358
+msgid "The requested container_biblio_record_entry_bucket was not found"
+msgstr ""
+
+#: 1701.COPY_LOCATION_EXISTS:561
+msgid " The copy location object already exists "
+msgstr ""
+
+#: 1703.WORKSTATION_NAME_EXISTS:567
+msgid " A workstation with that name already exists "
+msgstr ""
+
+#: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:488
+msgid "The requested actor_stat_cat_entry_user_map was not found"
+msgstr ""
+
+#: 8007.OFFLINE_SESSION_EXISTS:703
+msgid " A session with the given name already exists "
+msgstr ""
+
+#: 1558.ASSET_COPY_NOTE_NOT_FOUND:309
+msgid "The requested asset_copy_note was not found"
+msgstr ""
+
+#: 7017.ROUTE_TO_COPY_LOCATION:674
+msgid ""
+" \n"
+"\t\tA copy needs to be routed to a copy location.  The location\n"
+"\t\tshould be specified within the event with a 'location' key\n"
+"\t\t"
+msgstr ""
+
+#: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:182
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a transit object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1624.MONEY_PAYMENT_NOT_FOUND:503
+msgid "The requested money_payment was not found"
+msgstr ""
+
+#: 1596.ACTOR_ORG_UNIT_TYPE_NOT_FOUND:420
+msgid "The requested actor_org_unit_type was not found"
+msgstr ""
+
+#: 1004.Z3950_BAD_QUERY:35
+msgid "The Z query is not formatted correctly"
+msgstr ""
+
+#: 1205.CARD_EXISTS:57
+msgid "The given user barcode already exists"
+msgstr ""
+
+#: 1584.ACTOR_ORG_ADDRESS_NOT_FOUND:385
+msgid "The requested actor_org_address was not found"
+msgstr ""
+
+#: 1501.BIBLIO_RECORD_ENTRY_NOT_FOUND:167
+msgid "The requested biblio_record_entry was not found"
+msgstr ""
+
+#: 1613.PERMISSION_GRP_TREE_NOT_FOUND:470
+msgid "The requested permission_grp_tree was not found"
+msgstr ""
+
+#: 1523.TITLE_NOTE_NOT_FOUND:212
+msgid " Requested title note does not exist "
+msgstr ""
+
+#: 9001.REPORT_REPORT_EXISTS:720
+msgid " A report with the given name and folder already exists"
+msgstr ""
+
+#: 1536.ACTION_IN_HOUSE_USE_NOT_FOUND:248
+msgid "The requested action_in_house_use was not found"
+msgstr ""
+
+#: 7016.ITEM_ON_HOLDS_SHELF:668
+msgid "This requested item is currently on the holds shelf"
+msgstr ""
+
+#: 7005.LOCATION_CIRC_NOT_ALLOWED:635
+msgid " Location does not allow materials to circulate "
+msgstr ""
+
+#: 1562.METABIB_METARECORD_SOURCE_MAP_NOT_FOUND:321
+msgid "The requested metabib_metarecord_source_map was not found"
+msgstr ""
+
+#: 1531.ACTION_SURVEY_QUESTION_NOT_FOUND:233
+msgid "The requested action_survey_question was not found"
+msgstr ""
+
+#: 1612.CONFIG_RULES_MAX_FINE_NOT_FOUND:467
+msgid "The requested config_rules_max_fine was not found"
+msgstr ""
+
+#: 1557.ACTOR_ORG_UNIT_SETTING_NOT_FOUND:306
+msgid "The requested actor_org_unit_setting was not found"
+msgstr ""
+
+#: 7009.CIRC_CLAIMS_RETURNED:647
+msgid " Requested circulation is marked claims returned "
+msgstr ""
+
+#: 1629.PERMISSION_USR_GRP_MAP_NOT_FOUND:517
+msgid "The requested permission_usr_grp_map was not found"
+msgstr ""
+
+#: 1606.MONEY_WORK_PAYMENT_NOT_FOUND:450
+msgid "The requested money_work_payment was not found"
+msgstr ""
+
+#: 2000.BAD_PARAMS:593
+msgid "Invalid parameters were encountered in a method"
+msgstr ""
+
+#: 1564.MONEY_CASH_PAYMENT_NOT_FOUND:327
+msgid "The requested money_cash_payment was not found"
+msgstr ""
+
+#: 1221.ORG_CANNOT_HAVE_VOLS:115
+msgid "The selected location cannot have volumes attached"
+msgstr ""
+
+#: 1704.TCN_EXISTS:570
+msgid "A record already exists with the requested TCN value"
+msgstr ""
+
+#: 1.UNKNOWN:17
+msgid "Placeholder event.  Used for development only"
+msgstr ""
+
+#: 1622.BIBLIO_RECORD_NODE_NOT_FOUND:497
+msgid "The requested biblio_record_node was not found"
+msgstr ""
+
+#: 8003.OFFLINE_PARAM_ERROR:691
+msgid " Missing params in offline upload "
+msgstr ""
+
+#: 1534.ACTOR_USER_SETTING_NOT_FOUND:242
+msgid "The requested actor_user_setting was not found"
+msgstr ""
+
+#: 1211.BILL_ALREADY_VOIDED:76
+msgid "The selecte bill has already been voided"
+msgstr ""
+
+#: 1222.PATRON_NO_EMAIL_ADDRESS:119
+msgid "The user does not have a valid email address assigned"
+msgstr ""
+
+#: 7001.PATRON_BAD_STANDING:622
+msgid ""
+"\n"
+"\t\t\tThe patron in question is not able to check out materials because\n"
+"\t\t\ttheir account is in bad standing\n"
+"\t\t"
+msgstr ""
+
+#: 1215.CIRC_EXCEEDS_COPY_RANGE:94
+msgid ""
+"\n"
+"\t\t\tThe selected copy may not circulate because the recipient's home \n"
+"\t\t\tlocation is not within the copy's circulation range\n"
+"\t\t"
+msgstr ""
+
+#: 1605.CONFIG_LIT_FORM_MAP_NOT_FOUND:447
+msgid "The requested config_lit_form_map was not found"
+msgstr ""
+
+#: 1567.METABIB_RECORD_DESCRIPTOR_NOT_FOUND:336
+msgid "The requested metabib_record_descriptor was not found"
+msgstr ""
+
+#: 1702.OPEN_CIRCULATION_EXISTS:564
+msgid " There is an open circulation on the requested item "
+msgstr ""
+
+#: 8009.OFFLINE_NO_ORG:709 8010.OFFLINE_SESSION_COMPLETE:712
+msgid " No org id was provided "
+msgstr ""
+
+#: 1630.ACTOR_USER_NOTE_NOT_FOUND:520
+msgid "The requested actor_user_note was not found"
+msgstr ""
+
+#: 1508.ASSET_CALL_NUMBER_NOT_FOUND:199
+msgid "Requested asset_call_number was not found"
+msgstr ""
+
+#: 1209.Z3950_LOGIN_FAILED:69
+msgid "The login failed"
+msgstr ""
+
+#: 1543.MONEY_CREDIT_CARD_PAYMENT_NOT_FOUND:268
+msgid "The requested money_credit_card_payment was not found"
+msgstr ""
+
+#: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:473
+msgid "The requested action_survey_answer was not found"
+msgstr ""
+
+#: 1535.METABIB_AUTHOR_FIELD_ENTRY_NOT_FOUND:245
+msgid "The requested metabib_author_field_entry was not found"
+msgstr ""
+
+#: 1626.ASSET_STAT_CAT_ENTRY_NOT_FOUND:509
+msgid "The requested asset_stat_cat_entry was not found"
+msgstr ""
+
+#: 1595.CONFIG_NON_CATALOGED_TYPE_NOT_FOUND:417
+msgid "The requested config_non_cataloged_type was not found"
+msgstr ""
+
+#: 1225.TRANSIT_ABORT_NOT_ALLOWED:128
+msgid "The transit on this item may not be aborted due to the state the item is in"
+msgstr ""
+
+#: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:265
+msgid "The requested config_language_map was not found"
+msgstr ""
+
+#: 1206.VOLUME_NOT_EMPTY:60
+msgid "The selected volume has copies attached"
+msgstr ""
+
+#: 1540.AUTHORITY_RECORD_ENTRY_NOT_FOUND:259
+msgid "The requested authority_record_entry was not found"
+msgstr ""
+
+#: 1203.COPY_BAD_STATUS:48
+msgid "The given copy is not in a standard circulation status"
+msgstr ""
+
+#: 1601.MONEY_BILLABLE_TRANSACTION_NOT_FOUND:435
+msgid "The requested money_billable_transaction was not found"
+msgstr ""
+
+#: 7004.COPY_NOT_AVAILABLE:632
+msgid " Copy is not available "
+msgstr ""
+
+#: 1550.MONEY_OPEN_USER_SUMMARY_NOT_FOUND:287
+msgid "The requested money_open_user_summary was not found"
+msgstr ""
+
+#: 1207.REFUND_EXCEEDS_BALANCE:63
+msgid "A refund greater than the negative balance on a transaction was provided"
+msgstr ""
+
+#: 3.NO_CHANGE:20
+msgid "No change occurred"
+msgstr ""
+
+#: 1201.CIRC_PERMIT_BAD_KEY:42
+msgid "A checkout was attempted without a valid checkout permit key"
+msgstr ""
+
+#: 1593.MONEY_CREDIT_PAYMENT_NOT_FOUND:411
+msgid "The requested money_credit_payment was not found"
+msgstr ""
+
+#: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:485
+msgid "The requested metabib_title_field_entry was not found"
+msgstr ""
+
+#: 1202.ITEM_NOT_CATALOGED:45
+msgid "The requested item is not cataloged in the database"
+msgstr ""
+
+#: 1628.MONEY_BILLING_NOT_FOUND:514
+msgid "The requested money_billing was not found"
+msgstr ""
+
+#: 1544.CONFIG_METABIB_FIELD_NOT_FOUND:271
+msgid "The requested config_metabib_field was not found"
+msgstr ""
+
+#: 2002.DATABASE_QUERY_FAILED:599
+msgid "The attempt to query to the DB failed"
+msgstr ""
+
+#: 1549.CONFIG_STANDING_NOT_FOUND:284
+msgid "The requested config_standing was not found"
+msgstr ""
+
+#: 1210.INCORRECT_PASSWORD:73
+msgid "The provided password is not correct"
+msgstr ""
+
+#: 1582.CONFIG_ITEM_TYPE_MAP_NOT_FOUND:379
+msgid "The requested config_item_type_map was not found"
+msgstr ""
+
+#: 1530.CONFIG_IDENTIFICATION_TYPE_NOT_FOUND:230
+msgid "The requested config_identification_type was not found"
+msgstr ""
+
+#: 1579.ASSET_COPY_LOCATION_NOT_FOUND:370
+msgid "The requested asset_copy_location was not found"
+msgstr ""
+
+#: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:347
+msgid "The requested asset_call_number_note was not found"
+msgstr ""
+
+#: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:222
+msgid "Requested address was not found"
+msgstr ""
+
+#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:626
+msgid "The patron in question has the maximum number of items already checked out"
+msgstr ""
+
+#: 1003.Z3950_SEARCH_FAILED:32
+msgid "The Z search did not succeed"
+msgstr ""
+
+#: 1533.ACTOR_USR_NOTE_NOT_FOUND:239
+msgid "The requested actor_usr_note was not found"
+msgstr ""
+
+#: 1620.PERMISSION_GRP_PERM_MAP_NOT_FOUND:491
+msgid "The requested permission_grp_perm_map was not found"
+msgstr ""
+
+#: 1204.CIRC_BAD_STATUS:54
+msgid ""
+"\n"
+"\t\t\tThe given circulation is not in a standard status or\n"
+"\t\t\tthe circulation was never fully closed properly\n"
+"\t\t"
+msgstr ""
+
+#: 1709.MAX_HOLDS:585
+msgid "User has reached the maximum number of holds"
+msgstr ""
+
+#: 1706.ITEM_BARCODE_EXISTS:576
+msgid "An item with the same barcode exists"
+msgstr ""
+
+#: 7014.COPY_IN_TRANSIT:662
+msgid "Copy is in transit"
+msgstr ""
+
+#: 1219.COPY_REMOTE_CIRC_LIB:107 1220.ITEM_NOT_HOLDABLE:111
+msgid "A copy with a remote circulating library (circ_lib) was encountered"
+msgstr ""
+
+#: 7000.ROUTE_ITEM:615
+msgid ""
+" \n"
+"\t\t\tA copy needs to be routed to a different location\t\n"
+"\t\t\tThe destination location will be specified by an 'org' key\n"
+"\t\t\twithin the event object\n"
+"\t\t"
+msgstr ""
+
+#: 7007.COPY_NEEDED_FOR_HOLD:641
+msgid " Copy is needed to fulfil a hold "
+msgstr ""
+
+#: 7010.COPY_ALERT_MESSAGE:650
+msgid " The requested copy has an alert message attached "
+msgstr ""
+
+#: 1231.RECORD_NOT_EMPTY:154
+msgid "The selected bib record has volumes attached"
+msgstr ""
+
+#: 1503.ACTION_HOLD_REQUEST_NOT_FOUND:176
+msgid "The requested action_hold_request was not found"
+msgstr ""
+
+#: 1212.PATRON_EXCEEDS_OVERDUE_COUNT:79
+msgid "The patron has too many overdue items"
+msgstr ""
+
+#: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:367
+msgid "The requested action_hold_notification was not found"
+msgstr ""
+
+#: 1610.MONEY_CHECK_PAYMENT_NOT_FOUND:462
+msgid "The requested money_check_payment was not found"
+msgstr ""
+
+#: 1623.PERMISSION_USR_PERM_MAP_NOT_FOUND:500
+msgid "The requested permission_usr_perm_map was not found"
+msgstr ""
+
+#: 1581.ASSET_STAT_CAT_ENTRY_COPY_MAP_NOT_FOUND:376
+msgid "The requested asset_stat_cat_entry_copy_map was not found"
+msgstr ""
+
+#: 1547.CONFIG_ITEM_FORM_MAP_NOT_FOUND:280
+msgid "The requested config_item_form_map was not found"
+msgstr ""
+
+#: 1592.CONTAINER_USER_BUCKET_NOT_FOUND:408
+msgid "The requested container_user_bucket was not found"
+msgstr ""
+
+#: 1617.ACTION_UNFULFILLED_HOLD_LIST_NOT_FOUND:482
+msgid "The requested action_unfulfilled_hold_list was not found"
+msgstr ""
+
+#: 1552.ACTOR_ORG_UNIT_HOURS_OF_OPERATION_NOT_FOUND:292
+msgid "The requested actor_org_unit_hours_of_operation was not found"
+msgstr ""
+
+#: 1576.EX_NOT_FOUND:361
+msgid "The requested ex was not found"
+msgstr ""
+
+#: 8004.OFFLINE_CONFIG_ERROR:694 8005.OFFLINE_CHECKSUM_FAILED:697
+#: 8006.OFFLINE_SESSION_NOT_FOUND:700
+msgid " Offline server is not configured properly "
+msgstr ""
+
+#: 1568.CONFIG_COPY_STATUS_NOT_FOUND:339
+msgid "The requested config_copy_status was not found"
+msgstr ""
+
+#: 1539.CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND:256
+msgid "The requested container_copy_bucket_item was not found"
+msgstr ""
+
+#: 1590.ACTOR_STAT_CAT_NOT_FOUND:402
+msgid "The requested actor_stat_cat was not found"
+msgstr ""
+
+#: 7003.COPY_CIRC_NOT_ALLOWED:629
+msgid " Target copy is not allowed to circulate "
+msgstr ""
+
+#: 7008.MAX_RENEWALS_REACHED:644
+msgid " Circulation has no more renewals remaining "
+msgstr ""
+
+#: 1577.ACTION_HOLD_COPY_MAP_NOT_FOUND:364
+msgid "The requested action_hold_copy_map was not found"
+msgstr ""
+
+#: 1638.REPORTER_TEMPLATE_FOLDER_NOT_FOUND:545
+msgid "The requested reporter_template_folder was not found"
+msgstr ""
+
+#: 1500.ACTION_CIRCULATION_NOT_FOUND:164
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a circulation object from the system and \n"
+"\t\t\tthe object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1226.REFUND_EXCEEDS_DESK_PAYMENTS:135
+msgid ""
+"\n"
+"\t\t\tThis refund amount is not allowed because it exceeds \n"
+"\t\t\tthe total amount of desk payments for this transaction.\n"
+"\t\t"
+msgstr ""
+
+#: 1616.MONEY_OPEN_USER_CIRCULATION_SUMMARY_NOT_FOUND:479
+msgid "The requested money_open_user_circulation_summary was not found"
+msgstr ""
+
+#: 1583.ACTION_SURVEY_NOT_FOUND:382
+msgid "The requested action_survey was not found"
+msgstr ""
+
+#: 1625.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND:506
+msgid "The requested container_biblio_record_entry_bucket_item was not found"
+msgstr ""
+
+#: 1000.LOGIN_FAILED:23
+msgid "User login failed"
+msgstr ""
+
+#: 1599.MONEY_GROCERY_NOT_FOUND:429
+msgid "The requested money_grocery was not found"
+msgstr ""
+
+#: 7012.COPY_STATUS_MISSING:656
+msgid "Copy has is marked as missing"
+msgstr ""
+
+#: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:236
+msgid "The requested money_billable_transaction_summary was not found"
+msgstr ""
+
+#: 2003.INTERNAL_SERVER_ERROR:602
+msgid "There was an internal server error"
+msgstr ""
+
+#: 8008.OFFLINE_INVALID_SESSION:706
+msgid " The session name is invalid "
+msgstr ""
+
+#: 1597.BIBLIO_RECORD_NOTE_NOT_FOUND:423
+msgid "The requested biblio_record_note was not found"
+msgstr ""
+
+#: 1588.ASSET_STAT_CAT_NOT_FOUND:396
+msgid "The requested asset_stat_cat was not found"
+msgstr ""
+
+#: 1224.PATRON_ACCOUNT_EXPIRED:125
+msgid "The patron's account has expired"
+msgstr ""
+
+#: 1560.METABIB_METARECORD_NOT_FOUND:315
+msgid "The requested metabib_metarecord was not found"
+msgstr ""
+
+#: 1707.HOLD_EXISTS:579
+msgid "User already has an open hold on the selected item"
+msgstr ""
+
+#: 1506.CONTAINER_NOT_FOUND:190
+msgid ""
+"\n"
+"\t\t\tSomeone attempted to retrieve a container object from the \n"
+"\t\t\tsystem and the object was not found.\n"
+"\t\t"
+msgstr ""
+
+#: 1566.MONEY_FORGIVE_PAYMENT_NOT_FOUND:333
+msgid "The requested money_forgive_payment was not found"
+msgstr ""
+
+#: 1230.XACT_COLLISION:150
+msgid "The saved item has been edited by another user"
+msgstr ""
+
+#: 1700.NON_CAT_TYPE_EXISTS:558
+msgid " The non-cataloged type object already exists "
+msgstr ""
+
+#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:582
+msgid "A duplicate money.collections_tracker object already exists in the database"
+msgstr ""
+
+#: 1634.REPORTER_TEMPLATE_NOT_FOUND:533
+msgid "The requested reporter_template was not found"
+msgstr ""
+
+#: 1600.CONFIG_BIB_SOURCE_NOT_FOUND:432
+msgid "The requested config_bib_source was not found"
+msgstr ""
+
+#: 1228.BIB_RECORD_DELETED:144
+msgid "The requested bib record is marked as deleted"
+msgstr ""
+
+#: 1705.VOLUME_LABEL_EXISTS:573
+msgid "A volume with the same label, title and owning library exists"
+msgstr ""
+
+#: 1589.ACTOR_CARD_NOT_FOUND:399
+msgid "The requested actor_card was not found"
+msgstr ""
+
+#: 1216.PATRON_CARD_INACTIVE:98
+msgid "The patron's card is not active"
+msgstr ""
+
+#: 7013.PATRON_EXCEEDS_FINES:659
+msgid "The patron in question has reached the maximum fine amount"
+msgstr ""
+
+#: 1586.ACTOR_ORG_UNIT_NOT_FOUND:390
+msgid "The requested actor_org_unit was not found"
+msgstr ""
+
+#: 1574.CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND:355
+msgid "The requested container_call_number_bucket_item was not found"
+msgstr ""
+
+#: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:204
+msgid "The requested action_hold_transit_copy was not found"
+msgstr ""
+
+#: 1594.AUTHORITY_FULL_REC_NOT_FOUND:414
+msgid "The requested authority_full_rec was not found"
+msgstr ""
+
+#: 1565.ACTOR_PROFILE_NOT_FOUND:330
+msgid "The requested actor_profile was not found"
+msgstr ""
+
+#: 1580.METABIB_VIRTUAL_RECORD_NOT_FOUND:373
+msgid "The requested metabib_virtual_record was not found"
+msgstr ""
+
+#: 1640.ACTOR_USR_ORG_UNIT_OPT_IN_NOT_FOUND:551
+msgid "The requested actor_usr_org_unit_opt_in was not found"
+msgstr ""
+
+#: 1572.AUTHORITY_RECORD_NOTE_NOT_FOUND:350
+msgid "The requested authority_record_note was not found"
+msgstr ""
+
+#: 1520.WORKSTATION_NOT_FOUND:209
+msgid " Requested workstation object does not exist "
+msgstr ""
+
+#: 1615.ACTION_NON_CATALOGED_CIRCULATION_NOT_FOUND:476
+msgid "The requested action_non_cataloged_circulation was not found"
+msgstr ""
+
+#: 1604.MONEY_USER_SUMMARY_NOT_FOUND:444
+msgid "The requested money_user_summary was not found"
+msgstr ""

Copied: trunk/build/i18n/po/en-US/lang.dtd.pot (from rev 8396, trunk/build/i18n/po/lang.dtd.pot)
===================================================================
--- trunk/build/i18n/po/en-US/lang.dtd.pot	                        (rev 0)
+++ trunk/build/i18n/po/en-US/lang.dtd.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -0,0 +1,3640 @@
+# extracted from ../../Open-ILS/web/opac/locale/en-US/lang.dtd
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-01-17 14:20-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Accelerator-Marker: &\n"
+
+#: lang.version
+msgid "remote v1"
+msgstr ""
+
+#: lang.description
+msgid "English"
+msgstr ""
+
+#: lang.author
+msgid "PINES"
+msgstr ""
+
+#: common.check_date.description
+msgid "Check today's date above."
+msgstr ""
+
+#: common.check_barcode.description
+msgid "Check barcode?"
+msgstr ""
+
+#: common.date_helper
+msgid "or choose one of these"
+msgstr ""
+
+#: common.date_helper.3_days
+msgid "Today + 3 days"
+msgstr ""
+
+#: common.date_helper.7_days
+msgid "Today + 7 days"
+msgstr ""
+
+#: common.date_helper.14_days
+msgid "Today + 14 days"
+msgstr ""
+
+#: common.date_helper.30_days
+msgid "Today + 30 days"
+msgstr ""
+
+#: common.due_date.description
+msgid "Enter the item due date:"
+msgstr ""
+
+#: common.enter.label
+#: common.enter.accesskey
+#: staff.circ.offline_checkin.step2a.label
+#: staff.circ.offline_checkin.step2a.accesskey
+msgid "&Enter"
+msgstr ""
+
+#: common.enter_barcode.description
+msgid "Enter the item barcode:"
+msgstr ""
+
+#: common.title
+#: staff.cat.search_title
+#: staff.mvr_label_title
+#: staff.record_list.title
+#: staff.z39_50.search_class.title
+msgid "Title"
+msgstr ""
+
+#: common.author
+#: staff.cat.search_author
+#: staff.mvr_label_author
+#: staff.record_list.author
+#: staff.z39_50.search_class.author
+msgid "Author"
+msgstr ""
+
+#: common.subject
+#: staff.cat.search_subject
+msgid "Subject"
+msgstr ""
+
+#: common.series
+msgid "Series"
+msgstr ""
+
+#: common.keyword
+#: staff.cat.search_all
+msgid "Keyword"
+msgstr ""
+
+#: common.type
+#: staff.ahr_hold_type_label
+#: staff.cat.search_type
+#: staff.marc.LDR.type.short
+msgid "Type"
+msgstr ""
+
+#: common.isbn
+#: staff.record_list.isbn
+#: staff.z39_50.search_class.isbn
+msgid "ISBN"
+msgstr ""
+
+#: common.format
+#: staff.cat.search_format
+msgid "Format"
+msgstr ""
+
+#: common.login
+#: staff.auth.login_header
+msgid "Login"
+msgstr ""
+
+#: common.logout
+msgid "Log Out"
+msgstr ""
+
+#: common.at
+msgid "at"
+msgstr ""
+
+#: common.of
+#: staff.displaying.of
+msgid "of"
+msgstr ""
+
+#: common.cancel
+msgid "Cancel"
+msgstr ""
+
+#: common.library
+msgid "Library"
+msgstr ""
+
+#: common.step1.label
+msgid "Step 1)"
+msgstr ""
+
+#: common.step2.label
+#: common.step2.accesskey
+msgid "Step &2)"
+msgstr ""
+
+#: common.step3.label
+#: common.step3.accesskey
+msgid "Step &3)"
+msgstr ""
+
+#: common.step4.label
+#: common.step4.accesskey
+msgid "Step &4)"
+msgstr ""
+
+#: common.step5.label
+msgid "Step 5)"
+msgstr ""
+
+#: common.step6.label
+msgid "Step 6)"
+msgstr ""
+
+#: common.username
+msgid "Username"
+msgstr ""
+
+#: common.username.label
+#: common.username.accesskey
+msgid "&Username:"
+msgstr ""
+
+#: common.password
+#: staff.au_password_label
+msgid "Password"
+msgstr ""
+
+#: common.submit
+#: staff.auth.submit_prompt
+#: staff.circ.checkin.submit_label
+#: staff.circ.hold_capture.submit_label
+#: staff.patron_display.checkout.submit_label
+msgid "Submit"
+msgstr ""
+
+#: common.user_not_found
+msgid "User not found"
+msgstr ""
+
+#: common.unimplemented
+msgid "Not Yet Implemented"
+msgstr ""
+
+#: common.delete_transactions.label
+msgid "Delete selected transaction"
+msgstr ""
+
+#: common.save_transactions.label
+#: common.save_transactions.accesskey
+msgid "&Save these transactions"
+msgstr ""
+
+#: ilsevent.1000
+msgid "Login failed.  The username or password entered was incorrect."
+msgstr ""
+
+#: ilsevent.1001
+msgid "Login session has timed out or does not exist"
+msgstr ""
+
+#: ilsevent.1002
+msgid "User was not found in the database"
+msgstr ""
+
+#: ilsevent.5000
+msgid "Permission Denied"
+msgstr ""
+
+#: ilsperm.CREATE_HOLD
+msgid "User is not allowed to create holds for other users at this location"
+msgstr ""
+
+#: common.cancel.accesskey
+#: staff.cat.fixed.SCO.key
+#: staff.copy.close.key
+#: staff.main.auth.debug.clear.accesskey
+#: staff.main.menu.circ.checkin.key
+#: staff.main.menu.circ.claimed_returned.key
+#: staff.main.menu.circ.key
+#: staff.main.menu.edit.copy.key
+#: staff.main.menu.file.close.key
+#: staff.marc.display.fixed.SCO.key
+#: staff.marc.file.close.key
+#: staff.patron_navbar.checkout.accesskey
+msgid "C"
+msgstr ""
+
+#: common.login.accesskey
+#: staff.auth.logoff_prompt.key
+#: staff.cat.search_count_copy.key
+#: staff.cat.search_location.key
+#: staff.checkin.reprint_receipt_label.accesskey
+#: staff.hold_capture.reprint_receipt_label.accesskey
+#: staff.main.menu.circ.lost.key
+#: staff.marc.display.legend.key
+#: staff.patron_display.checkout.reprint_receipt_label.accesskey
+msgid "L"
+msgstr ""
+
+#: common.password.accesskey
+#: staff.auth.password_prompt.accesskey
+#: staff.auth.password_prompt.key
+#: staff.cat.fixed.MAP.key
+#: staff.main.menu.circ.barcode.retrieve_patron.accesskey
+#: staff.main.menu.circ.patron_status.key
+#: staff.main.menu.edit.paste.key
+#: staff.marc.display.fixed.MAP.key
+#: staff.patron_display.items.print_receipt_label.accesskey
+#: staff.previous.range.key
+msgid "P"
+msgstr ""
+
+#: staff.about.title
+msgid "About"
+msgstr ""
+
+#: staff.acp_label_barcode
+#: staff.browse_list.barcode
+#: staff.copy.attr.barcode
+msgid "Barcode"
+msgstr ""
+
+#: staff.acp_label_call_number
+#: staff.browse_list.callnumber
+#: staff.cat.search_callnumber
+#: staff.volume.attr.callnumber
+msgid "Call Number"
+msgstr ""
+
+#: staff.acp_label_circ_as_type
+msgid "Circ As Type"
+msgstr ""
+
+#: staff.acp_label_circ_lib
+msgid "Circ Lib"
+msgstr ""
+
+#: staff.acp_label_circ_modifier
+#: staff.browse_list.circ_modifier
+msgid "Circ Modifier"
+msgstr ""
+
+#: staff.acp_label_copy_number
+#: staff.browse_list.copy_number
+msgid "Copy Number"
+msgstr ""
+
+#: staff.acp_label_deposit
+#: staff.browse_list.deposit
+msgid "Deposit"
+msgstr ""
+
+#: staff.acp_label_deposit_amount
+#: staff.browse_list.deposit_amount
+msgid "Deposit Amount"
+msgstr ""
+
+#: staff.acp_label_fine_level
+#: staff.browse_list.fine_level
+#: staff.copy.attr.fine_level
+msgid "Fine Level"
+msgstr ""
+
+#: staff.acp_label_id
+msgid "Copy ID"
+msgstr ""
+
+#: staff.acp_label_loan_duration
+#: staff.browse_list.loan_duration
+#: staff.copy.attr.loan_duration
+msgid "Loan Duration"
+msgstr ""
+
+#: staff.acp_label_location
+#: staff.browse_list.location2
+#: staff.cat.search_count_copy
+#: staff.cat.search_location
+msgid "Location"
+msgstr ""
+
+#: staff.acp_label_price
+#: staff.browse_list.price
+#: staff.copy.attr.price
+msgid "Price"
+msgstr ""
+
+#: staff.acp_label_status
+#: staff.ahr_status_label
+#: staff.browse_list.status
+#: staff.checkin_label_status
+#: staff.main.auth.status
+#: staff.patron_display.status.caption
+msgid "Status"
+msgstr ""
+
+#: staff.ahr_capture_time_label
+msgid "Capture Time"
+msgstr ""
+
+#: staff.ahr_current_copy_label
+msgid "Current Copy"
+msgstr ""
+
+#: staff.ahr_email_notify_label
+msgid "Email Notify"
+msgstr ""
+
+#: staff.ahr_expire_time_label
+msgid "Expire Time"
+msgstr ""
+
+#: staff.ahr_fulfillment_time_label
+msgid "Fulfillment Time"
+msgstr ""
+
+#: staff.ahr_holdable_formats_label
+msgid "Holdable Formats"
+msgstr ""
+
+#: staff.ahr_id_label
+msgid "Hold Id"
+msgstr ""
+
+#: staff.ahr_ischanged_label
+#: staff.au_ischanged_label
+msgid "Ischanged"
+msgstr ""
+
+#: staff.ahr_isdeleted_label
+#: staff.au_isdeleted_label
+msgid "Isdeleted"
+msgstr ""
+
+#: staff.ahr_isnew_label
+#: staff.au_isnew_label
+msgid "Isnew"
+msgstr ""
+
+#: staff.ahr_phone_notify_label
+msgid "Phone Notify"
+msgstr ""
+
+#: staff.ahr_pickup_lib_label
+msgid "Pickup Lib"
+msgstr ""
+
+#: staff.ahr_prev_check_time_label
+msgid "Prev Check Time"
+msgstr ""
+
+#: staff.ahr_request_time_label
+msgid "Request Time"
+msgstr ""
+
+#: staff.ahr_requestor_label
+msgid "Requestor"
+msgstr ""
+
+#: staff.ahr_selection_depth_label
+msgid "Selection Depth"
+msgstr ""
+
+#: staff.ahr_target_label
+msgid "Target"
+msgstr ""
+
+#: staff.ahr_usr_label
+msgid "Usr"
+msgstr ""
+
+#: staff.au_active_label
+#: staff.au_label_active
+msgid "Active"
+msgstr ""
+
+#: staff.au_addresses_label
+msgid "Addresses"
+msgstr ""
+
+#: staff.au_alert_message_label
+msgid "Alert Message"
+msgstr ""
+
+#: staff.au_billing_address_label
+#: staff.circ.offline_register.billing_address.label
+msgid "Billing Address"
+msgstr ""
+
+#: staff.au_card_label
+msgid "Card"
+msgstr ""
+
+#: staff.au_cards_label
+msgid "Cards"
+msgstr ""
+
+#: staff.au_checkouts_label
+msgid "Checkouts"
+msgstr ""
+
+#: staff.au_claims_returned_count_label
+msgid "Claims Returned Count"
+msgstr ""
+
+#: staff.au_create_date_label
+msgid "Create Date"
+msgstr ""
+
+#: staff.au_credit_forward_balance_label
+msgid "Credit Forward Balance"
+msgstr ""
+
+#: staff.au_day_phone_label
+msgid "Day Phone"
+msgstr ""
+
+#: staff.au_dob_label
+msgid "Dob"
+msgstr ""
+
+#: staff.au_email_label
+msgid "Email"
+msgstr ""
+
+#: staff.au_evening_phone_label
+msgid "Evening Phone"
+msgstr ""
+
+#: staff.au_expire_date_label
+msgid "Expire Date"
+msgstr ""
+
+#: staff.au_family_name_label
+#: staff.au_label_family_name
+msgid "Family Name"
+msgstr ""
+
+#: staff.au_first_given_name_label
+msgid "First Given Name"
+msgstr ""
+
+#: staff.au_hold_requests_label
+msgid "Hold Requests"
+msgstr ""
+
+#: staff.au_home_ou_label
+msgid "Home Ou"
+msgstr ""
+
+#: staff.au_id_label
+msgid "User Id"
+msgstr ""
+
+#: staff.au_ident_type2_label
+msgid "Ident Type2"
+msgstr ""
+
+#: staff.au_ident_type_label
+msgid "Ident Type"
+msgstr ""
+
+#: staff.au_ident_value2_label
+msgid "Ident Value2"
+msgstr ""
+
+#: staff.au_ident_value_label
+msgid "Ident Value"
+msgstr ""
+
+#: staff.au_label_first_given_name
+msgid "First Name"
+msgstr ""
+
+#: staff.au_label_id
+msgid "Record ID"
+msgstr ""
+
+#: staff.au_label_prefix
+#: staff.au_prefix_label
+msgid "Prefix"
+msgstr ""
+
+#: staff.au_label_second_given_name
+msgid "Middle Name"
+msgstr ""
+
+#: staff.au_label_suffix
+#: staff.au_suffix_label
+msgid "Suffix"
+msgstr ""
+
+#: staff.au_last_xact_id_label
+msgid "Last Xact Id"
+msgstr ""
+
+#: staff.au_mailing_address_label
+#: staff.patron_display.mailing_address
+msgid "Mailing Address"
+msgstr ""
+
+#: staff.au_master_account_label
+msgid "Master Account"
+msgstr ""
+
+#: staff.au_net_access_level_label
+msgid "Net Access Level"
+msgstr ""
+
+#: staff.au_other_phone_label
+msgid "Other Phone"
+msgstr ""
+
+#: staff.au_passwd_label
+msgid "Passwd"
+msgstr ""
+
+#: staff.au_photo_url_label
+msgid "Photo Url"
+msgstr ""
+
+#: staff.au_profile_label
+msgid "Profile"
+msgstr ""
+
+#: staff.au_second_given_name_label
+msgid "Second Given Name"
+msgstr ""
+
+#: staff.au_settings_label
+msgid "Settings"
+msgstr ""
+
+#: staff.au_standing_label
+msgid "Standing"
+msgstr ""
+
+#: staff.au_stat_cat_entries_label
+msgid "Stat Cat Entries"
+msgstr ""
+
+#: staff.au_super_user_label
+msgid "Super User"
+msgstr ""
+
+#: staff.au_survey_responses_label
+msgid "Survey Responses"
+msgstr ""
+
+#: staff.au_usrgroup_label
+msgid "Usrgroup"
+msgstr ""
+
+#: staff.au_usrname_label
+msgid "Usrname"
+msgstr ""
+
+#: staff.admin.survey.available.label
+msgid "Available to:"
+msgstr ""
+
+#: staff.admin.survey.description.label
+msgid "Description:"
+msgstr ""
+
+#: staff.admin.survey.end.label
+msgid "End:"
+msgstr ""
+
+#: staff.admin.survey.format.label
+msgid "Poll Format:"
+msgstr ""
+
+#: staff.admin.survey.name.label
+#: staff.auth.name_prompt
+msgid "Name:"
+msgstr ""
+
+#: staff.admin.survey.opac_visible.label
+msgid "OPAC Visible:"
+msgstr ""
+
+#: staff.admin.survey.required.label
+msgid "Required:"
+msgstr ""
+
+#: staff.admin.survey.save_question.label
+#: staff.admin.survey.save_question.accesskey
+msgid "Save this &Question"
+msgstr ""
+
+#: staff.admin.survey.staff_client.label
+msgid "Staff Client:"
+msgstr ""
+
+#: staff.admin.survey.start.label
+msgid "Start:"
+msgstr ""
+
+#: staff.auth.logoff_prompt
+msgid "Log Off"
+msgstr ""
+
+#: staff.auth.logoff_prompt.accesskey
+msgid "f"
+msgstr ""
+
+#: staff.auth.name_prompt.key
+#: staff.main.menu.file.new.key
+#: staff.next.range.key
+msgid "N"
+msgstr ""
+
+#: staff.auth.password_prompt
+msgid "Password:"
+msgstr ""
+
+#: staff.auth.quit_prompt
+msgid "Exit Evergreen"
+msgstr ""
+
+#: staff.auth.quit_prompt.key
+msgid "x"
+msgstr ""
+
+#: staff.auth.submit_prompt.key
+#: staff.cat.fixed.SER.key
+#: staff.cat.search_submit.key
+#: staff.circ.checkin.submit_label.accesskey
+#: staff.circ.hold_capture.submit_label.accesskey
+#: staff.copy.save.key
+#: staff.main.auth.offline.interface.accesskey
+#: staff.main.menu.cat.bib_search.key
+#: staff.main.menu.circ.special.key
+#: staff.main.menu.file.save.key
+#: staff.marc.display.fixed.SER.key
+#: staff.marc.file.publish.key
+#: staff.patron_display.checkout.submit_label.accesskey
+msgid "S"
+msgstr ""
+
+#: staff.auth.title
+msgid "Evergreen Staff Client 3"
+msgstr ""
+
+#: staff.auth.version
+msgid "Evergreen 0.1.0 20051202"
+msgstr ""
+
+#: staff.bills_current_payment_label
+msgid "Current Payment"
+msgstr ""
+
+#: staff.bills_information
+msgid "Information"
+msgstr ""
+
+#: staff.bills_interface_label
+msgid "BILLS"
+msgstr ""
+
+#: staff.bills_money_label
+msgid "Money"
+msgstr ""
+
+#: staff.bills_total_owed_label
+msgid "Total Owed"
+msgstr ""
+
+#: staff.bills_wizard_label
+msgid "Bill Patron"
+msgstr ""
+
+#: staff.bills_xact_dates_label
+msgid "Record / Dates"
+msgstr ""
+
+#: staff.browse_list.circ_as_type
+msgid "Circulate As"
+msgstr ""
+
+#: staff.browse_list.circ_lib
+msgid "Circulating Lib"
+msgstr ""
+
+#: staff.browse_list.circulate
+msgid "Circulate"
+msgstr ""
+
+#: staff.browse_list.create_date
+msgid "Creation Date"
+msgstr ""
+
+#: staff.browse_list.creator
+msgid "Creator"
+msgstr ""
+
+#: staff.browse_list.edit_date
+msgid "Edit Date"
+msgstr ""
+
+#: staff.browse_list.editor
+msgid "Editor"
+msgstr ""
+
+#: staff.browse_list.library
+msgid "Owning Lib"
+msgstr ""
+
+#: staff.browse_list.location
+msgid "Location/Barcode"
+msgstr ""
+
+#: staff.browse_list.opac_visible
+#: staff.copy.notes.opac
+msgid "OPAC"
+msgstr ""
+
+#: staff.browse_list.ref
+#: staff.copy.attr.shelving_location.example5
+msgid "Reference"
+msgstr ""
+
+#: staff.browse_list.shelving_loc
+#: staff.copy.attr.shelving_location
+msgid "Shelving Location"
+msgstr ""
+
+#: staff.browse_list.win_title
+#: staff.record_list.win_title
+msgid "Cataloging"
+msgstr ""
+
+#: staff.cat.fixed.BKS
+msgid "BKS"
+msgstr ""
+
+#: staff.cat.fixed.BKS.key
+#: staff.copy.bucket.key
+#: staff.main.menu.cat.add_bib.key
+#: staff.main.menu.cat.bib_status.key
+#: staff.main.menu.cat.copy_status.accesskey
+#: staff.main.menu.circ.barcode.show_item.accesskey
+#: staff.main.menu.edit.buckets.copies.accesskey
+#: staff.main.menu.edit.buckets.key
+#: staff.marc.display.fixed.BKS.key
+#: staff.patron_navbar.bills.accesskey
+msgid "B"
+msgstr ""
+
+#: staff.cat.fixed.COM
+msgid "COM"
+msgstr ""
+
+#: staff.cat.fixed.COM.key
+#: staff.cat.search_order.key
+#: staff.main.menu.circ.checkout.key
+#: staff.main.menu.file.open.key
+#: staff.marc.display.fixed.COM.key
+msgid "O"
+msgstr ""
+
+#: staff.cat.fixed.MAP
+msgid "MAP"
+msgstr ""
+
+#: staff.cat.fixed.MIX
+msgid "MIX"
+msgstr ""
+
+#: staff.cat.fixed.MIX.key
+#: staff.main.menu.cat.dedup.key
+#: staff.main.menu.circ.missing.key
+#: staff.marc.display.fixed.MIX.key
+#: staff.marc.file.key
+msgid "M"
+msgstr ""
+
+#: staff.cat.fixed.REC
+msgid "REC"
+msgstr ""
+
+#: staff.cat.fixed.REC.key
+#: staff.checkin_patron.retrieve.accesskey
+#: staff.copy.reload.key
+#: staff.hold_capture_patron.retrieve.accesskey
+#: staff.main.auth.retest.accesskey
+#: staff.main.menu.circ.patron_registration.key
+#: staff.main.menu.edit.buckets.records.accesskey
+#: staff.main.menu.edit.redo.key
+#: staff.main.menu.entity.patron.register.key
+#: staff.marc.display.fixed.REC.key
+#: staff.marc.file.reload.key
+#: staff.patron_navbar.refresh.accesskey
+#: staff.patron_navbar.retrieve.accesskey
+msgid "R"
+msgstr ""
+
+#: staff.cat.fixed.SCO
+msgid "SCO"
+msgstr ""
+
+#: staff.cat.fixed.SER
+msgid "SER"
+msgstr ""
+
+#: staff.cat.fixed.VIS
+msgid "VIS"
+msgstr ""
+
+#: staff.cat.fixed.VIS.key
+#: staff.cat.search_advanced.key
+#: staff.main.menu.cat.add_volume.key
+#: staff.main.menu.cat.volume_status.key
+#: staff.main.menu.edit.buckets.volumes.accesskey
+#: staff.marc.display.fixed.VIS.key
+#: staff.marc.file.validate.key
+msgid "V"
+msgstr ""
+
+#: staff.cat.opac.add_bucket.label
+#: staff.cat.opac.add_bucket.accesskey
+msgid "Add to &Bucket"
+msgstr ""
+
+#: staff.cat.opac.bib_in_new_tab.label
+msgid "Duplicate in New Tab"
+msgstr ""
+
+#: staff.cat.opac.copy_browse.label
+#: staff.cat.opac.copy_browse.accesskey
+msgid "&Holdings Maintenance"
+msgstr ""
+
+#: staff.cat.opac.default.label
+msgid "Set bottom interface as Default"
+msgstr ""
+
+#: staff.cat.opac.marc_edit.label
+#: staff.cat.opac.marc_edit.accesskey
+msgid "MARC &Edit"
+msgstr ""
+
+#: staff.cat.opac.marc_view.label
+#: staff.cat.opac.marc_view.accesskey
+msgid "MARC &View"
+msgstr ""
+
+#: staff.cat.opac.mark_for_overlay.label
+#: staff.cat.opac.mark_for_overlay.accesskey
+msgid "&Mark for Overlay"
+msgstr ""
+
+#: staff.cat.opac.delete_record.label
+#: staff.cat.opac.delete_record.accesskey
+msgid "&Delete Record"
+msgstr ""
+
+#: staff.cat.opac.menu.label
+#: staff.cat.opac.menu.accesskey
+msgid "&Actions for this Record"
+msgstr ""
+
+#: staff.cat.opac.opac_view.label
+#: staff.cat.opac.opac_view.accesskey
+msgid "&OPAC View"
+msgstr ""
+
+#: staff.cat.opac.record_end.label
+#: staff.cat.opac.record_end.accesskey
+msgid "&End"
+msgstr ""
+
+#: staff.cat.opac.record_next.label
+#: staff.cat.opac.record_next.accesskey
+msgid "&Next"
+msgstr ""
+
+#: staff.cat.opac.record_prev.label
+#: staff.cat.opac.record_prev.accesskey
+msgid "&Previous"
+msgstr ""
+
+#: staff.cat.opac.record_start.label
+#: staff.cat.opac.record_start.accesskey
+msgid "&Start"
+msgstr ""
+
+#: staff.cat.opac.refresh_me.label
+msgid "Reset Display"
+msgstr ""
+
+#: staff.cat.opac.remove_me.label
+msgid "Remove this Frame"
+msgstr ""
+
+#: staff.cat.opac.view_holds.label
+#: staff.cat.opac.view_holds.accesskey
+msgid "View Hold&s"
+msgstr ""
+
+#: staff.cat.popup.add_to_bucket
+#: staff.copy.bucket
+msgid "Add to Bucket"
+msgstr ""
+
+#: staff.cat.popup.add_to_bucket.key
+msgid ""
+"_: staff.cat.popup.add_to_bucket.key\n"
+msgstr ""
+
+#: staff.cat.popup.browse.record.tab.key
+msgid ""
+"_: staff.cat.popup.browse.record.tab.key\n"
+msgstr ""
+
+#: staff.cat.popup.browse.record.window.key
+msgid ""
+"_: staff.cat.popup.browse.record.window.key\n"
+msgstr ""
+
+#: staff.cat.popup.browse_record.tab
+msgid "View Copies (Tab)"
+msgstr ""
+
+#: staff.cat.popup.browse_record.window
+msgid "View Copies (Window)"
+msgstr ""
+
+#: staff.cat.popup.edit.record.tab.key
+msgid ""
+"_: staff.cat.popup.edit.record.tab.key\n"
+msgstr ""
+
+#: staff.cat.popup.edit.record.window.key
+msgid ""
+"_: staff.cat.popup.edit.record.window.key\n"
+msgstr ""
+
+#: staff.cat.popup.edit_record.tab
+msgid "Edit Record (Tab)"
+msgstr ""
+
+#: staff.cat.popup.edit_record.window
+msgid "Edit Record (Window)"
+msgstr ""
+
+#: staff.cat.search_advanced
+msgid "Advanced"
+msgstr ""
+
+#: staff.cat.search_barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: staff.cat.search_count_copy_show
+msgid "Show Only These Records"
+msgstr ""
+
+#: staff.cat.search_criteria
+msgid "Search Criteria"
+msgstr ""
+
+#: staff.cat.search_format.key
+#: staff.main.menu.circ.found.key
+#: staff.main.menu.edit.find.key
+#: staff.main.menu.file.key
+#: staff.marc.display.control_fields.key
+msgid "F"
+msgstr ""
+
+#: staff.cat.search_id
+msgid "System ID"
+msgstr ""
+
+#: staff.cat.search_isbn
+msgid "ISBN/ISSN"
+msgstr ""
+
+#: staff.cat.search_order
+msgid "Order"
+msgstr ""
+
+#: staff.cat.search_pubyear
+#: staff.record_list.pubyear
+msgid "Pub Year"
+msgstr ""
+
+#: staff.cat.search_submit
+#: staff.main.menu.search.label
+msgid "Search"
+msgstr ""
+
+#: staff.cat.search_tcn
+#: staff.record_list.tcn
+msgid "TCN"
+msgstr ""
+
+#: staff.cat.search_term
+msgid "Terms"
+msgstr ""
+
+#: staff.cat.search_term.key
+msgid "e"
+msgstr ""
+
+#: staff.cat.search_type.key
+#: staff.main.menu.file.new_tab.key
+msgid "T"
+msgstr ""
+
+#: staff.cat.test
+msgid "Test"
+msgstr ""
+
+#: staff.cat.test.key
+#: staff.main.menu.edit.key
+#: staff.marc.display.meta_data.key
+#: staff.marc.file.export.key
+#: staff.patron_navbar.edit.accesskey
+msgid "E"
+msgstr ""
+
+#: staff.cat.title
+msgid "TCN goes here"
+msgstr ""
+
+#: staff.cat.type_of_material
+msgid "All"
+msgstr ""
+
+#: staff.cat.type_of_material.a
+msgid "Language Material"
+msgstr ""
+
+#: staff.cat.type_of_material.c
+msgid "Notated Music"
+msgstr ""
+
+#: staff.cat.type_of_material.d
+msgid "Manuscript Notated Music"
+msgstr ""
+
+#: staff.cat.type_of_material.e
+msgid "Cartographic Material"
+msgstr ""
+
+#: staff.cat.type_of_material.f
+msgid "Manuscript Cartographic Material"
+msgstr ""
+
+#: staff.cat.type_of_material.g
+msgid "Projected Medium"
+msgstr ""
+
+#: staff.cat.type_of_material.i
+msgid "Nonmusical Sound Recording"
+msgstr ""
+
+#: staff.cat.type_of_material.j
+msgid "Musical Sound Recording"
+msgstr ""
+
+#: staff.cat.type_of_material.k
+msgid "Two-dimensional Nonprojectable Graphic"
+msgstr ""
+
+#: staff.cat.type_of_material.m
+msgid "Computer File"
+msgstr ""
+
+#: staff.cat.type_of_material.o
+msgid "Kit"
+msgstr ""
+
+#: staff.cat.type_of_material.p
+msgid "Mixed Material"
+msgstr ""
+
+#: staff.cat.type_of_material.r
+msgid "Three-dimensional Artifact or Naturally Occuring Object"
+msgstr ""
+
+#: staff.cat.type_of_material.t
+msgid "Manuscript Language Material"
+msgstr ""
+
+#: staff.checkin.auto_print_label
+#: staff.hold_capture.auto_print_label
+#: staff.patron_display.checkout.auto_print_label
+msgid "Auto-Print"
+msgstr ""
+
+#: staff.checkin.auto_print_label.accesskey
+#: staff.copy.notes.add.key
+#: staff.hold_capture.auto_print_label.accesskey
+#: staff.main.menu.edit.select_all.key
+#: staff.main.menu.tabs.close.accesskey
+#: staff.marc.display.cover_art.key
+#: staff.patron_display.checkout.auto_print_label.accesskey
+msgid "A"
+msgstr ""
+
+#: staff.checkin.done_label
+#: staff.hold_capture.done_label
+#: staff.patron_display.checkout.done_label
+msgid "Done"
+msgstr ""
+
+#: staff.checkin.done_label.accesskey
+#: staff.copy.notes.delete.key
+#: staff.hold_capture.done_label.accesskey
+#: staff.main.menu.edit.delete.key
+#: staff.marc.display.key
+#: staff.patron_display.checkout.done_label.accesskey
+msgid "D"
+msgstr ""
+
+#: staff.checkin.print_receipt_label
+#: staff.hold_capture.print_receipt_label
+msgid "Print List"
+msgstr ""
+
+#: staff.checkin.print_receipt_label.accesskey
+msgid ""
+"_: staff.checkin.print_receipt_label.accesskey\n"
+msgstr ""
+
+#: staff.checkin.reprint_receipt_label
+#: staff.hold_capture.reprint_receipt_label
+msgid "Re-Print Last List"
+msgstr ""
+
+#: staff.checkin_interface_label
+msgid "CHECK IN"
+msgstr ""
+
+#: staff.checkin_label_route_to
+msgid "Route To"
+msgstr ""
+
+#: staff.checkin_label_text
+msgid "Message"
+msgstr ""
+
+#: staff.checkin_patron.name.label
+#: staff.hold_capture_patron.name.label
+#: staff.patron_display.name.label
+msgid "Patron Name"
+msgstr ""
+
+#: staff.checkin_patron.retrieve
+#: staff.hold_capture_patron.retrieve
+#: staff.patron.context_display
+#: staff.patron_navbar.retrieve
+msgid "Retrieve Patron"
+msgstr ""
+
+#: staff.checkout_interface_label
+msgid "CHECK OUT"
+msgstr ""
+
+#: staff.circ.offline.main.label
+msgid "Evergreen Offline"
+msgstr ""
+
+#: staff.circ.offline.server_time.tooltiptext
+msgid "Estimated Server Time - Click to adjust"
+msgstr ""
+
+#: staff.circ.offline.cmd_checkout.label
+#: staff.circ.offline.cmd_checkout.accesskey
+msgid "&Check Out"
+msgstr ""
+
+#: staff.circ.offline.cmd_renew.label
+#: staff.circ.offline.cmd_renew.accesskey
+msgid "&Renew"
+msgstr ""
+
+#: staff.circ.offline.cmd_in_house_use.label
+#: staff.circ.offline.cmd_in_house_use.accesskey
+msgid "In &House Use"
+msgstr ""
+
+#: staff.circ.offline.cmd_checkin.label
+#: staff.circ.offline.cmd_checkin.accesskey
+msgid "Check &In"
+msgstr ""
+
+#: staff.circ.offline.cmd_register_patron.label
+#: staff.circ.offline.cmd_register_patron.accesskey
+msgid "Register &Patron"
+msgstr ""
+
+#: staff.circ.offline.cmd_print_last_receipt.label
+#: staff.circ.offline.cmd_print_last_receipt.accesskey
+msgid "&Last Receipt"
+msgstr ""
+
+#: staff.circ.offline.cmd_exit.label
+#: staff.circ.offline.cmd_exit.accesskey
+msgid "E&xit"
+msgstr ""
+
+#: staff.circ.offline_checkin.main.label
+msgid "Standalone Check In"
+msgstr ""
+
+#: staff.circ.offline_checkin.step3.description
+msgid "Repeat Steps 2 until done."
+msgstr ""
+
+#: staff.circ.offline.finish.description
+#: staff.mbts_xact_finish_label
+msgid "Finish"
+msgstr ""
+
+#: staff.circ.offline.print.description
+msgid "Print receipt?"
+msgstr ""
+
+#: staff.circ.offline_checkout.main.label
+msgid "Standalone Check Out"
+msgstr ""
+
+#: staff.circ.offline_checkout.step2.description
+msgid "Enter the patron's barcode:"
+msgstr ""
+
+#: staff.circ.offline_checkout.step5.description
+#: staff.circ.offline_renew.step5.label
+msgid "Repeat Steps 3 and 4 until done."
+msgstr ""
+
+#: staff.circ.offline_in_house_use.main.label
+msgid "Standalone In House Use"
+msgstr ""
+
+#: staff.circ.offline_in_house_use.uses.label
+msgid "Enter the number of uses for the item:"
+msgstr ""
+
+#: staff.circ.offline_in_house_use.step4.description
+msgid "Repeat Steps 2 and 3 until done."
+msgstr ""
+
+#: staff.circ.offline_register.main.label
+msgid "Standalone Patron Registration"
+msgstr ""
+
+#: staff.circ.offline_register.x_home_ou.label
+#: staff.patron_display.home_ou.label
+msgid "Home Library:"
+msgstr ""
+
+#: staff.circ.offline_register.x_profile.label
+#: staff.patron_display.profile.label
+msgid "Profile:"
+msgstr ""
+
+#: staff.circ.offline_register.barcode.label
+msgid "New Barcode:"
+msgstr ""
+
+#: staff.circ.offline_register.passwd.label
+msgid "New Password:"
+msgstr ""
+
+#: staff.circ.offline_register.family_name.label
+#: staff.patron_display.family_name.label
+msgid "Last Name:"
+msgstr ""
+
+#: staff.circ.offline_register.first_given_name.label
+#: staff.patron_display.first_given_name.label
+#: staff.patron_search_form.first_given_name.label
+msgid "First Name:"
+msgstr ""
+
+#: staff.circ.offline_register.dob.label
+msgid "Date of Birth:"
+msgstr ""
+
+#: staff.circ.offline_register.x_ident_type.label
+msgid "Ident Type:"
+msgstr ""
+
+#: staff.circ.offline_register.ident_value.label
+msgid "Ident Value:"
+msgstr ""
+
+#: staff.circ.offline_register.street1.label
+msgid "Line 1"
+msgstr ""
+
+#: staff.circ.offline_register.street2.label
+msgid "Line 2"
+msgstr ""
+
+#: staff.circ.offline_register.city.label
+msgid "City"
+msgstr ""
+
+#: staff.circ.offline_register.state.label
+msgid "State"
+msgstr ""
+
+#: staff.circ.offline_register.state.default_value
+msgid "GA"
+msgstr ""
+
+#: staff.circ.offline_register.post_code.label
+msgid "Postal Code"
+msgstr ""
+
+#: staff.circ.offline_register.country.label
+msgid "Country"
+msgstr ""
+
+#: staff.circ.offline_register.country.default_value
+msgid "USA"
+msgstr ""
+
+#: staff.circ.offline_register.submit.label
+#: staff.circ.offline_register.submit.accesskey
+msgid "&Save patron registration"
+msgstr ""
+
+#: staff.circ.offline_renew.main.label
+msgid "Standalone Renew"
+msgstr ""
+
+#: staff.circ.offline_renew.p_barcode.description
+msgid "(Optional) Enter the patron's barcode:"
+msgstr ""
+
+#: staff.circ.checkin.caption
+#: staff.circ.context_checkin
+msgid "Check In"
+msgstr ""
+
+#: staff.circ.checkin.scan_label
+#: staff.circ.hold_capture.scan_label
+#: staff.patron_display.checkout.scan_label
+msgid "Enter Barcode:"
+msgstr ""
+
+#: staff.circ.checkin.scan_label.accesskey
+#: staff.circ.hold_capture.scan_label.accesskey
+#: staff.main.menu.cat.key
+#: staff.patron_display.checkout.scan_label.accesskey
+msgid "a"
+msgstr ""
+
+#: staff.circ.context_cancel_hold
+msgid "Cancel Hold"
+msgstr ""
+
+#: staff.circ.context_edit
+msgid "Edit Copy"
+msgstr ""
+
+#: staff.circ.context_lost
+msgid "Mark as Lost"
+msgstr ""
+
+#: staff.circ.context_missing
+msgid "Mark as Missing"
+msgstr ""
+
+#: staff.circ.context_opac
+msgid "Show Title in OPAC"
+msgstr ""
+
+#: staff.circ.context_renew
+#: staff.main.menu.circ.renew.label
+msgid "Renew"
+msgstr ""
+
+#: staff.circ.hold_capture.caption
+msgid "Capture Hold"
+msgstr ""
+
+#: staff.circ_label_due_date
+msgid "Due Date"
+msgstr ""
+
+#: staff.circ_label_id
+msgid "Circ Id"
+msgstr ""
+
+#: staff.circ_label_renewal_remaining
+msgid "Remaining Renewals"
+msgstr ""
+
+#: staff.circ_label_xact_finish
+msgid "Checkin Date"
+msgstr ""
+
+#: staff.circ_label_xact_start
+msgid "Checkout Date"
+msgstr ""
+
+#: staff.copies_editor_interface_label
+msgid "COPIES EDIT"
+msgstr ""
+
+#: staff.copy.attr.circulate
+msgid "Circulate?"
+msgstr ""
+
+#: staff.copy.attr.circulate.no
+#: staff.copy.attr.deposit.no
+#: staff.copy.attr.notes_viewable.example2
+#: staff.copy.attr.opac_visible.no
+#: staff.copy.attr.reference_material.no
+msgid "No"
+msgstr ""
+
+#: staff.copy.attr.circulate.yes
+#: staff.copy.attr.deposit.yes
+#: staff.copy.attr.notes_viewable.example1
+#: staff.copy.attr.opac_visible.yes
+#: staff.copy.attr.reference_material.yes
+msgid "Yes"
+msgstr ""
+
+#: staff.copy.attr.circulating_lib
+msgid "Circulating Library"
+msgstr ""
+
+#: staff.copy.attr.copy_available
+msgid "Copy Status: Available?"
+msgstr ""
+
+#: staff.copy.attr.copy_status
+msgid "Copy Status"
+msgstr ""
+
+#: staff.copy.attr.deposit
+msgid "Deposit?"
+msgstr ""
+
+#: staff.copy.attr.deposit_amount
+msgid "Amount"
+msgstr ""
+
+#: staff.copy.attr.deposit_notes
+msgid "Deposit Notes"
+msgstr ""
+
+#: staff.copy.attr.fine_level.high
+msgid "High"
+msgstr ""
+
+#: staff.copy.attr.fine_level.low
+msgid "Low"
+msgstr ""
+
+#: staff.copy.attr.fine_level.normal
+#: staff.copy.attr.loan_duration.normal
+msgid "Normal"
+msgstr ""
+
+#: staff.copy.attr.holds_protection
+msgid "Holds Protection"
+msgstr ""
+
+#: staff.copy.attr.holds_protection.example1
+msgid "3 months (facility)"
+msgstr ""
+
+#: staff.copy.attr.holds_protection.example2
+msgid "6 months (region)"
+msgstr ""
+
+#: staff.copy.attr.holds_protection.example3
+msgid "No hold protection"
+msgstr ""
+
+#: staff.copy.attr.holds_protection.example4
+msgid "Not holdable"
+msgstr ""
+
+#: staff.copy.attr.home_lib
+msgid "Home Library"
+msgstr ""
+
+#: staff.copy.attr.loan_duration.long
+msgid "Long"
+msgstr ""
+
+#: staff.copy.attr.loan_duration.short
+msgid "Short"
+msgstr ""
+
+#: staff.copy.attr.notes
+msgid "Copy Notes"
+msgstr ""
+
+#: staff.copy.attr.notes_viewable
+msgid "Copy Notes Patron Viewable?"
+msgstr ""
+
+#: staff.copy.attr.opac_visible
+msgid "OPAC Visible?"
+msgstr ""
+
+#: staff.copy.attr.reference_material
+msgid "Reference Material?"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example1
+msgid "Stacks"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example10
+msgid "Paperback"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example2
+msgid "Audio-Visual"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example3
+msgid "Children's Room"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example4
+msgid "Garden Room"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example6
+msgid "Ready Reference"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example7
+msgid "Behind Circulation Desk"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example8
+#: staff.marc.display
+msgid "Display"
+msgstr ""
+
+#: staff.copy.attr.shelving_location.example9
+msgid "Health"
+msgstr ""
+
+#: staff.copy.attr.stat.audience
+msgid "Audience"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example1
+msgid "Adult"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example2
+msgid "Juvenile"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example3
+msgid "Preschool"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example4
+msgid "Primary"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example5
+msgid "Pre-adolescent"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example6
+msgid "Young adult"
+msgstr ""
+
+#: staff.copy.attr.stat.audience.example7
+msgid "General"
+msgstr ""
+
+#: staff.copy.attr.stat.genre
+msgid "Genre"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example1
+msgid "Adventure"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example10
+msgid "Spy"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example11
+msgid "Thriller"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example12
+msgid "War"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example13
+msgid "Western"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example14
+msgid "Religious fiction"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example15
+msgid "Shortstory"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example16
+#: staff.marc.008.BKS.biog.desc
+msgid "Biography"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example17
+#: staff.copy.attr.stat.genre.example4
+msgid "Holiday"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example18
+msgid "Nonfiction"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example2
+msgid "Fantasy"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example3
+msgid "Historical"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example5
+msgid "Horror"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example6
+msgid "Humor"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example7
+msgid "Mystery"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example8
+msgid "Romance"
+msgstr ""
+
+#: staff.copy.attr.stat.genre.example9
+msgid "Sci-fi"
+msgstr ""
+
+#: staff.copy.clone
+msgid "Clone Copy"
+msgstr ""
+
+#: staff.copy.clone.key
+msgid ""
+"_: staff.copy.clone.key\n"
+msgstr ""
+
+#: staff.copy.close
+msgid "Close Window"
+msgstr ""
+
+#: staff.copy.default.attr
+msgid "Default Attributes"
+msgstr ""
+
+#: staff.copy.default.attr.value
+#: staff.copy.local.attr.value
+msgid "Value"
+msgstr ""
+
+#: staff.copy.delete
+msgid "Delete Copy"
+msgstr ""
+
+#: staff.copy.delete.key
+msgid ""
+"_: staff.copy.delete.key\n"
+msgstr ""
+
+#: staff.copy.edit_categories
+msgid "Edit Categories"
+msgstr ""
+
+#: staff.copy.edit_entries
+msgid "Edit Entries"
+msgstr ""
+
+#: staff.copy.local.attr
+msgid "Local Attributes"
+msgstr ""
+
+#: staff.copy.notes
+msgid "Note"
+msgstr ""
+
+#: staff.copy.notes.add
+msgid "Add Note"
+msgstr ""
+
+#: staff.copy.notes.date
+msgid "Date"
+msgstr ""
+
+#: staff.copy.notes.delete
+msgid "Delete Note"
+msgstr ""
+
+#: staff.copy.notes.from
+msgid "From"
+msgstr ""
+
+#: staff.copy.reload
+msgid "Reload Copy"
+msgstr ""
+
+#: staff.copy.save
+msgid "Save Copy"
+msgstr ""
+
+#: staff.copy.title
+msgid "Barcode goes here"
+msgstr ""
+
+#: staff.copy.transfer
+msgid "Transfer Copy"
+msgstr ""
+
+#: staff.copy.transfer.key
+msgid ""
+"_: staff.copy.transfer.key\n"
+msgstr ""
+
+#: staff.copy.wizard.title
+msgid "Batch Add Copies Wizard"
+msgstr ""
+
+#: staff.copy_browser_interface_label
+msgid "COPIES"
+msgstr ""
+
+#: staff.copy_stat_cat_editor_interface_label
+msgid "COPY STAT-CATS"
+msgstr ""
+
+#: staff.display_patron_interface_label
+msgid "DISPLAY PATRON"
+msgstr ""
+
+#: staff.displaying.hits_per_page
+msgid "Results per page"
+msgstr ""
+
+#: staff.displaying.results
+msgid "Displaying results"
+msgstr ""
+
+#: staff.fieldmapper_label
+msgid "FIELDMAPPER"
+msgstr ""
+
+#: staff.filter_console_label
+msgid "FCONSOLE"
+msgstr ""
+
+#: staff.hold_capture.print_receipt_label.accesskey
+msgid ""
+"_: staff.hold_capture.print_receipt_label.accesskey\n"
+msgstr ""
+
+#: staff.hold_capture_interface_label
+msgid "HOLD CAPTURE"
+msgstr ""
+
+#: staff.holds_status_available
+msgid "Available"
+msgstr ""
+
+#: staff.holds_status_in_transit
+msgid "In Transit"
+msgstr ""
+
+#: staff.holds_status_waiting_for_capture
+msgid "Copy found, waiting for capture"
+msgstr ""
+
+#: staff.holds_status_waiting_for_copy
+msgid "Waiting for available copy"
+msgstr ""
+
+#: staff.items_out_interface_label
+msgid "ITEMS OUT"
+msgstr ""
+
+#: staff.javascript_console_label
+msgid "CONSOLE"
+msgstr ""
+
+#: staff.javascript_shell_label
+msgid "JS SHELL"
+msgstr ""
+
+#: staff.main.auth.caption
+msgid "Authentication"
+msgstr ""
+
+#: staff.main.auth.caption
+msgid "Startup / Shutdown"
+msgstr ""
+
+#: staff.main.auth.debug.caption
+msgid "Debug Options"
+msgstr ""
+
+#: staff.main.auth.debug.clear
+#: staff.main.menu.admin.clear_cache.label
+msgid "Clear Cache"
+msgstr ""
+
+#: staff.main.auth.debug.javascript
+msgid "Javascript Console"
+msgstr ""
+
+#: staff.main.auth.debug.javascript.accesskey
+msgid "J"
+msgstr ""
+
+#: staff.main.auth.hostname
+msgid "Hostname"
+msgstr ""
+
+#: staff.main.auth.hostname.accesskey
+#: staff.main.menu.circ.hold_capture.key
+#: staff.main.menu.circ.place_hold.key
+#: staff.main.menu.help.key
+#: staff.patron_navbar.holds.accesskey
+msgid "H"
+msgstr ""
+
+#: staff.main.auth.offline.caption
+msgid "Offline Use"
+msgstr ""
+
+#: staff.main.auth.offline.export
+msgid "Export Transactions"
+msgstr ""
+
+#: staff.main.auth.offline.import
+msgid "Import Transactions"
+msgstr ""
+
+#: staff.main.auth.offline.interface
+msgid "Standalone Interface"
+msgstr ""
+
+#: staff.main.auth.retest
+msgid "Re-Test Server"
+msgstr ""
+
+#: staff.main.auth.server
+msgid "Server"
+msgstr ""
+
+#: staff.main.auth.version
+msgid "Version"
+msgstr ""
+
+#: staff.main.auth.workstation
+msgid "Workstation"
+msgstr ""
+
+#: staff.main.menu.acquisitions.key
+msgid "q"
+msgstr ""
+
+#: staff.main.menu.acquisitions.label
+msgid "Acquisitions"
+msgstr ""
+
+#: staff.main.menu.admin.accesskey
+#: staff.main.menu.admin.developer.accesskey
+msgid "-"
+msgstr ""
+
+#: staff.main.menu.admin.browse_holds.label
+#: staff.main.menu.admin.browse_holds.accesskey
+msgid "&Browse Unfulfilled Holds for this Pickup Lib"
+msgstr ""
+
+#: staff.main.menu.admin.change_session.label
+msgid "Operator Change: New"
+msgstr ""
+
+#: staff.main.menu.admin.clear_cache.accesskey
+#: staff.marc.008.SER.cont.field_size
+#: staff.marc.008.ctry.field_size
+#: staff.marc.008.lang.field_size
+msgid "3"
+msgstr ""
+
+#: staff.main.menu.admin.cmd_console.label
+#: staff.main.menu.admin.cmd_console.accesskey
+msgid "&Javascript Console"
+msgstr ""
+
+#: staff.main.menu.admin.cmd_shell.label
+#: staff.main.menu.admin.cmd_shell.accesskey
+msgid "Javascript S&hell"
+msgstr ""
+
+#: staff.main.menu.admin.cmd_test.label
+msgid "Test Module"
+msgstr ""
+
+#: staff.main.menu.admin.copy_location_edit.label
+#: staff.main.menu.admin.copy_location_edit.accesskey
+msgid "Copy &Location Editor"
+msgstr ""
+
+#: staff.main.menu.admin.developer.label
+msgid "For developers..."
+msgstr ""
+
+#: staff.main.menu.admin.download_patrons.label
+#: staff.main.menu.admin.download_patrons.accesskey
+msgid "&Download Offline Patron List"
+msgstr ""
+
+#: staff.main.menu.admin.fieldmapper.label
+#: staff.main.menu.admin.fieldmapper.accesskey
+msgid "Field&mapper"
+msgstr ""
+
+#: staff.main.menu.admin.key
+msgid "i"
+msgstr ""
+
+#: staff.main.menu.admin.label
+msgid "Admin"
+msgstr ""
+
+#: staff.main.menu.admin.local_admin.label
+#: staff.main.menu.admin.local_admin.accesskey
+msgid "&Local System Administration"
+msgstr ""
+
+#: staff.main.menu.admin.non_cat_type_edit.label
+#: staff.main.menu.admin.non_cat_type_edit.accesskey
+msgid "&Non-Cataloged Type Editor"
+msgstr ""
+
+#: staff.main.menu.admin.offline_xacts.label
+#: staff.main.menu.admin.offline_xacts.accesskey
+msgid "Offline &Transaction Management"
+msgstr ""
+
+#: staff.main.menu.admin.public_opac.label
+#: staff.main.menu.admin.public_opac.accesskey
+msgid "&Public OPAC"
+msgstr ""
+
+#: staff.main.menu.admin.restore_all_tabs.label
+msgid "Unhide Tabs"
+msgstr ""
+
+#: staff.main.menu.admin.extension_manager.label
+msgid "Extension Manager"
+msgstr ""
+
+#: staff.main.menu.admin.theme_manager.label
+msgid "Theme Manager"
+msgstr ""
+
+#: staff.main.menu.admin.about_config.label
+msgid "about:config"
+msgstr ""
+
+#: staff.main.menu.admin.stat_cat_edit.label
+#: staff.main.menu.admin.stat_cat_edit.accesskey
+msgid "Statistical &Category Editor"
+msgstr ""
+
+#: staff.main.menu.admin.survey_wizard.label
+#: staff.main.menu.admin.survey_wizard.accesskey
+msgid "&Survey Wizard"
+msgstr ""
+
+#: staff.main.menu.admin.template_edit.label
+#: staff.main.menu.admin.template_edit.accesskey
+msgid "&Receipt Template Editor"
+msgstr ""
+
+#: staff.main.menu.admin.user_edit.label
+#: staff.main.menu.admin.user_edit.accesskey
+msgid "&User Permission Editor"
+msgstr ""
+
+#: staff.main.menu.admin.xuleditor.label
+#: staff.main.menu.admin.xuleditor.accesskey
+msgid "&XUL Test"
+msgstr ""
+
+#: staff.main.menu.admin.venkman.label
+msgid "Venkman"
+msgstr ""
+
+#: staff.main.menu.cat.label
+#: staff.main.menu.cat.accesskey
+msgid "Catalo&ging"
+msgstr ""
+
+#: staff.main.menu.cat.add_bib.label
+msgid "Add Bib Record"
+msgstr ""
+
+#: staff.main.menu.cat.add_copy.key
+#: staff.main.menu.cat.copy_status.key
+#: staff.main.menu.circ.copy_status.key
+#: staff.patron_navbar.items.accesskey
+msgid "I"
+msgstr ""
+
+#: staff.main.menu.cat.add_copy.label
+msgid "Add Item"
+msgstr ""
+
+#: staff.main.menu.cat.add_volume.label
+msgid "Add Volume"
+msgstr ""
+
+#: staff.main.menu.cat.bib_search.label
+msgid "Search the Catalog"
+msgstr ""
+
+#: staff.main.menu.cat.bib_status.label
+msgid "Display Bib Record"
+msgstr ""
+
+#: staff.main.menu.cat.copy_status.label
+#: staff.main.menu.circ.copy_status.label
+msgid "Display Item"
+msgstr ""
+
+#: staff.main.menu.cat.create_marc.label
+#: staff.main.menu.cat.create_marc.accesskey
+msgid "Create &New Marc Record"
+msgstr ""
+
+#: staff.main.menu.cat.dedup.label
+msgid "Merge/Transfer Interface"
+msgstr ""
+
+#: staff.main.menu.cat.edit_copy_buckets.label
+#: staff.main.menu.cat.edit_copy_buckets.accesskey
+msgid "Manage Copy &Buckets"
+msgstr ""
+
+#: staff.main.menu.cat.edit_record_buckets.label
+#: staff.main.menu.cat.edit_record_buckets.accesskey
+msgid "Manage &Record Buckets"
+msgstr ""
+
+#: staff.main.menu.cat.edit_volume_buckets.label
+#: staff.main.menu.cat.edit_volume_buckets.accesskey
+msgid "Manage &Volume Buckets"
+msgstr ""
+
+#: staff.main.menu.cat.edit_user_buckets.label
+#: staff.main.menu.cat.edit_user_buckets.accesskey
+msgid "Manage &User Buckets"
+msgstr ""
+
+#: staff.main.menu.cat.retrieve_last_record.label
+#: staff.main.menu.cat.retrieve_last_record.accesskey
+msgid "Retrieve &Last Record"
+msgstr ""
+
+#: staff.main.menu.cat.search_tcn.label
+#: staff.main.menu.cat.search_tcn.accesskey
+msgid "Retrieve record by &TCN"
+msgstr ""
+
+#: staff.main.menu.cat.volume_status.label
+msgid "Display Volume"
+msgstr ""
+
+#: staff.main.menu.cat.z39_50_import.label
+#: staff.main.menu.cat.z39_50_import.accesskey
+msgid "Import Record from &Z39.50"
+msgstr ""
+
+#: staff.main.menu.circ.barcode.retrieve_patron
+msgid "Retrieve Patron by Barcode"
+msgstr ""
+
+#: staff.main.menu.circ.barcode.show_item
+msgid "Show Item Status by Barcode"
+msgstr ""
+
+#: staff.main.menu.circ.checkin.label
+msgid "Check In Items"
+msgstr ""
+
+#: staff.main.menu.circ.checkout.label
+msgid "Check Out Items"
+msgstr ""
+
+#: staff.main.menu.circ.claimed_returned.label
+msgid "Mark as \"Claimed Returned\""
+msgstr ""
+
+#: staff.main.menu.circ.found.label
+msgid "Mark Found"
+msgstr ""
+
+#: staff.main.menu.circ.hold_browse.label
+#: staff.main.menu.circ.hold_browse.accesskey
+msgid "&Browse Holds Shelf"
+msgstr ""
+
+#: staff.main.menu.circ.hold_capture.label
+msgid "Capture Holds"
+msgstr ""
+
+#: staff.main.menu.circ.hold_pull.label
+#: staff.main.menu.circ.hold_pull.accesskey
+msgid "Pull Li&st for Hold Requests"
+msgstr ""
+
+#: staff.main.menu.circ.in_house.label
+#: staff.main.menu.circ.in_house.accesskey
+msgid "Record &In-House Use"
+msgstr ""
+
+#: staff.main.menu.circ.label
+msgid "Circulation"
+msgstr ""
+
+#: staff.main.menu.circ.lost.label
+msgid "Mark Lost"
+msgstr ""
+
+#: staff.main.menu.circ.mark_used.key
+#: staff.main.menu.edit.buckets.users.accesskey
+#: staff.main.menu.edit.undo.key
+msgid "U"
+msgstr ""
+
+#: staff.main.menu.circ.mark_used.label
+msgid "Mark Used"
+msgstr ""
+
+#: staff.main.menu.circ.missing.label
+msgid "Mark Missing"
+msgstr ""
+
+#: staff.main.menu.circ.offline.label
+#: staff.main.menu.circ.offline.accesskey
+msgid "Enter O&ffline Interface"
+msgstr ""
+
+#: staff.main.menu.circ.patron_registration.label
+msgid "Register Patron"
+msgstr ""
+
+#: staff.main.menu.circ.patron_retrieve.label
+#: staff.main.menu.circ.patron_retrieve.accesskey
+msgid "Retrieve &Last Patron"
+msgstr ""
+
+#: staff.main.menu.circ.patron_status.label
+msgid "Display Patron"
+msgstr ""
+
+#: staff.main.menu.circ.place_hold.label
+#: staff.main.menu.circ.place_hold.accesskey
+msgid "Place &Hold"
+msgstr ""
+
+#: staff.main.menu.circ.quick_add.key
+#: staff.main.menu.quit.accesskey
+msgid "Q"
+msgstr ""
+
+#: staff.main.menu.circ.quick_add.label
+msgid "Quick Add"
+msgstr ""
+
+#: staff.main.menu.circ.renew.key
+msgid "n"
+msgstr ""
+
+#: staff.main.menu.circ.reprint.label
+#: staff.main.menu.circ.reprint.accesskey
+msgid "Re-Print &Last"
+msgstr ""
+
+#: staff.main.menu.circ.special.label
+msgid "Special Circulation"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.copies
+msgid "Copy Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.label
+msgid "Manage Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.records
+msgid "Record Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.volumes
+msgid "Volume Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.buckets.users
+msgid "User Buckets"
+msgstr ""
+
+#: staff.main.menu.edit.copy.label
+msgid "Copy"
+msgstr ""
+
+#: staff.main.menu.edit.cut.key
+msgid "t"
+msgstr ""
+
+#: staff.main.menu.edit.cut.label
+msgid "Cut"
+msgstr ""
+
+#: staff.main.menu.edit.delete.label
+msgid "Delete"
+msgstr ""
+
+#: staff.main.menu.edit.find.label
+msgid "Find"
+msgstr ""
+
+#: staff.main.menu.edit.find_again.key
+msgid "g"
+msgstr ""
+
+#: staff.main.menu.edit.find_again.label
+msgid "Find Again"
+msgstr ""
+
+#: staff.main.menu.edit.label
+#: staff.patron_navbar.edit
+msgid "Edit"
+msgstr ""
+
+#: staff.main.menu.edit.paste.label
+msgid "Paste"
+msgstr ""
+
+#: staff.main.menu.edit.redo.label
+msgid "Redo"
+msgstr ""
+
+#: staff.main.menu.edit.select_all.label
+msgid "Select All"
+msgstr ""
+
+#: staff.main.menu.edit.undo.label
+msgid "Undo"
+msgstr ""
+
+#: staff.main.menu.entity.bib.key
+msgid ""
+"_: staff.main.menu.entity.bib.key\n"
+msgstr ""
+
+#: staff.main.menu.entity.bib.label
+msgid "Bib Records"
+msgstr ""
+
+#: staff.main.menu.entity.copy.key
+msgid ""
+"_: staff.main.menu.entity.copy.key\n"
+msgstr ""
+
+#: staff.main.menu.entity.copy.label
+msgid "Items"
+msgstr ""
+
+#: staff.main.menu.entity.patron.key
+msgid ""
+"_: staff.main.menu.entity.patron.key\n"
+msgstr ""
+
+#: staff.main.menu.entity.patron.label
+msgid "Patrons"
+msgstr ""
+
+#: staff.main.menu.entity.volume.key
+msgid ""
+"_: staff.main.menu.entity.volume.key\n"
+msgstr ""
+
+#: staff.main.menu.entity.volume.label
+msgid "Volumes"
+msgstr ""
+
+#: staff.main.menu.file.close.label
+#: staff.main.menu.file.close.accesskey
+msgid "Close &Window"
+msgstr ""
+
+#: staff.main.menu.file.close_tab.label
+#: staff.main.menu.file.close_tab.accesskey
+msgid "&Close Tab"
+msgstr ""
+
+#: staff.main.menu.file.close_tab.key
+msgid ""
+"_: staff.main.menu.file.close_tab.key\n"
+msgstr ""
+
+#: staff.main.menu.file.label
+msgid "File"
+msgstr ""
+
+#: staff.main.menu.file.new.label
+msgid "New Window"
+msgstr ""
+
+#: staff.main.menu.file.new_tab.label
+msgid "New Tab"
+msgstr ""
+
+#: staff.main.menu.file.open.label
+msgid "Open Session"
+msgstr ""
+
+#: staff.main.menu.file.save.label
+msgid "Save Session"
+msgstr ""
+
+#: staff.main.menu.help.label
+msgid "Help"
+msgstr ""
+
+#: staff.main.menu.quit
+msgid "Quit Program"
+msgstr ""
+
+#: staff.main.menu.replace_barcode.label
+msgid "Replace Barcode"
+msgstr ""
+
+#: staff.main.menu.reports.key
+msgid ""
+"_: staff.main.menu.reports.key\n"
+msgstr ""
+
+#: staff.main.menu.reports.label
+msgid "Reports"
+msgstr ""
+
+#: staff.main.menu.search.catalog.label
+#: staff.main.menu.search.catalog.accesskey
+msgid "the &Catalog"
+msgstr ""
+
+#: staff.main.menu.search.copies.label
+#: staff.main.menu.search.copies.accesskey
+msgid "for copies by &Barcode"
+msgstr ""
+
+#: staff.main.menu.search.key
+msgid "r"
+msgstr ""
+
+#: staff.main.menu.search.patrons.label
+#: staff.main.menu.search.patrons.accesskey
+msgid "for &Patrons"
+msgstr ""
+
+#: staff.main.menu.search.patrons_barcode.label
+#: staff.main.menu.search.patrons_barcode.accesskey
+msgid "for patro&n by Barcode"
+msgstr ""
+
+#: staff.main.menu.search.record.label
+#: staff.main.menu.search.record.accesskey
+msgid "for record by &TCN"
+msgstr ""
+
+#: staff.main.menu.serials.key
+msgid "l"
+msgstr ""
+
+#: staff.main.menu.serials.label
+#: staff.z39_50.search_class.item_type.ser
+msgid "Serials"
+msgstr ""
+
+#: staff.main.menu.tabs.close
+msgid "Close All Tabs"
+msgstr ""
+
+#: staff.main.menu.title
+msgid "Evergreen Staff Client"
+msgstr ""
+
+#: staff.main.simple_auth.authorization.label
+msgid "Authorization"
+msgstr ""
+
+#: staff.main.simple_auth.authorize.label
+#: staff.main.simple_auth.authorize.accesskey
+msgid "&Authorization"
+msgstr ""
+
+#: staff.main.simple_auth.exception.label
+msgid "Exception"
+msgstr ""
+
+#: staff.main.test.example_template.label
+msgid "Hello world!"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.desc
+msgid "Index"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.field
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field
+#: staff.marc.008.BKS.SER.conf.field
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field
+#: staff.marc.008.BKS.biog.field
+#: staff.marc.008.BKS.cont.field
+#: staff.marc.008.BKS.fest.field
+#: staff.marc.008.BKS.ills.field
+#: staff.marc.008.BKS.litf.field
+#: staff.marc.008.MAP.VIS.form.field
+#: staff.marc.008.SER.alph.field
+#: staff.marc.008.SER.cont.field
+#: staff.marc.008.SER.entw.field
+#: staff.marc.008.SER.freq.field
+#: staff.marc.008.SER.issn.field
+#: staff.marc.008.SER.orig.field
+#: staff.marc.008.SER.regl.field
+#: staff.marc.008.SER.srtp.field
+#: staff.marc.008.SER.succ.field
+#: staff.marc.008.ctry.field
+#: staff.marc.008.date1.field
+#: staff.marc.008.date2.field
+#: staff.marc.008.dtst.field
+#: staff.marc.008.entered.field
+#: staff.marc.008.lang.field
+#: staff.marc.008.mrec.field
+#: staff.marc.008.srce.field
+msgid "008"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.field_end_pos
+#: staff.marc.008.BKS.MAP.indx.field_start_pos
+msgid "31"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.field_size
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size
+#: staff.marc.008.BKS.SER.conf.field_size
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size
+#: staff.marc.008.BKS.biog.field_size
+#: staff.marc.008.BKS.fest.field_size
+#: staff.marc.008.BKS.litf.field_size
+#: staff.marc.008.MAP.VIS.form.field_size
+#: staff.marc.008.SER.alph.field_size
+#: staff.marc.008.SER.entw.field_size
+#: staff.marc.008.SER.freq.field_size
+#: staff.marc.008.SER.issn.field_size
+#: staff.marc.008.SER.orig.field_size
+#: staff.marc.008.SER.regl.field_size
+#: staff.marc.008.SER.srtp.field_size
+#: staff.marc.008.SER.succ.field_size
+#: staff.marc.008.dtst.field_size
+#: staff.marc.008.mrec.field_size
+#: staff.marc.008.srce.field_size
+#: staff.marc.LDR.blvl.field_size
+#: staff.marc.LDR.ctrl.field_size
+#: staff.marc.LDR.desc.field_size
+#: staff.marc.LDR.elvl.field_size
+#: staff.marc.LDR.rec_stat.field_size
+#: staff.marc.LDR.type.field_size
+msgid "1"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/indx.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.MAP.indx.short
+msgid "Indx"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc
+#: staff.marc.008.MAP.VIS.form.desc
+msgid "Form of Item"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos
+msgid "23"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.help
+#: staff.marc.008.MAP.VIS.form.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.short
+#: staff.marc.008.MAP.VIS.form.short
+msgid "Form"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.desc
+msgid "Government Publication"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos
+msgid "28"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/gpub.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.short
+msgid "GPub"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.desc
+msgid "Conference Publication"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.field_end_pos
+#: staff.marc.008.BKS.SER.conf.field_start_pos
+#: staff.marc.008.MAP.VIS.form.field_end_pos
+#: staff.marc.008.MAP.VIS.form.field_start_pos
+msgid "29"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/conf.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.SER.conf.short
+msgid "Conf"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.desc
+msgid "Target Audience"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos
+#: staff.marc.008.SER.orig.field_end_pos
+#: staff.marc.008.SER.orig.field_start_pos
+msgid "22"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/audn.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.short
+msgid "Audn"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.field_end_pos
+#: staff.marc.008.BKS.biog.field_start_pos
+#: staff.marc.008.SER.succ.field_end_pos
+#: staff.marc.008.SER.succ.field_start_pos
+msgid "34"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/biog.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.biog.short
+msgid "Biog"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.desc
+#: staff.marc.008.SER.cont.desc
+msgid "Nature of Contents"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.field_end_pos
+#: staff.marc.008.SER.cont.field_end_pos
+msgid "27"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.field_size
+#: staff.marc.008.BKS.ills.field_size
+#: staff.marc.008.date1.field_size
+#: staff.marc.008.date2.field_size
+msgid "4"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.field_start_pos
+#: staff.marc.008.SER.entw.field_end_pos
+#: staff.marc.008.SER.entw.field_start_pos
+msgid "24"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.help
+#: staff.marc.008.SER.cont.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.cont.short
+#: staff.marc.008.SER.cont.short
+msgid "Cont"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.desc
+msgid "Festschrift"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.field_end_pos
+#: staff.marc.008.BKS.fest.field_start_pos
+msgid "30"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/fest.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.fest.short
+msgid "Fest"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.desc
+msgid "Illustrations"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.field_end_pos
+#: staff.marc.008.SER.srtp.field_end_pos
+#: staff.marc.008.SER.srtp.field_start_pos
+msgid "21"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.field_start_pos
+#: staff.marc.008.SER.freq.field_end_pos
+#: staff.marc.008.SER.freq.field_start_pos
+#: staff.marc.LDR.desc.field_end_pos
+#: staff.marc.LDR.desc.field_start_pos
+msgid "18"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/ills.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.ills.short
+msgid "Ills"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.desc
+msgid "Literary Form"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.field_end_pos
+#: staff.marc.008.BKS.litf.field_start_pos
+#: staff.marc.008.SER.alph.field_end_pos
+#: staff.marc.008.SER.alph.field_start_pos
+msgid "33"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/litf.shtm"
+msgstr ""
+
+#: staff.marc.008.BKS.litf.short
+msgid "LitF"
+msgstr ""
+
+#: staff.marc.008.SER.alph.desc
+msgid "Original Alphabet or Script of Title"
+msgstr ""
+
+#: staff.marc.008.SER.alph.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/alph.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.alph.short
+msgid "Alph"
+msgstr ""
+
+#: staff.marc.008.SER.cont.field_start_pos
+msgid "25"
+msgstr ""
+
+#: staff.marc.008.SER.entw.desc
+msgid "Nature of Entire Work"
+msgstr ""
+
+#: staff.marc.008.SER.entw.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/entw.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.entw.short
+msgid "EntW"
+msgstr ""
+
+#: staff.marc.008.SER.freq.desc
+msgid "Frequency"
+msgstr ""
+
+#: staff.marc.008.SER.freq.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/freq.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.freq.short
+msgid "Freq"
+msgstr ""
+
+#: staff.marc.008.SER.issn.desc
+msgid "ISSN Center"
+msgstr ""
+
+#: staff.marc.008.SER.issn.field_end_pos
+#: staff.marc.008.SER.issn.field_start_pos
+msgid "20"
+msgstr ""
+
+#: staff.marc.008.SER.issn.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/issn.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.issn.short
+#: staff.record_list.issn
+#: staff.z39_50.search_class.issn
+msgid "ISSN"
+msgstr ""
+
+#: staff.marc.008.SER.orig.desc
+msgid "Form of Original Item"
+msgstr ""
+
+#: staff.marc.008.SER.orig.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/orig.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.orig.short
+msgid "Orig"
+msgstr ""
+
+#: staff.marc.008.SER.regl.desc
+msgid "Regularity"
+msgstr ""
+
+#: staff.marc.008.SER.regl.field_end_pos
+#: staff.marc.008.SER.regl.field_start_pos
+msgid "19"
+msgstr ""
+
+#: staff.marc.008.SER.regl.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/regl.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.regl.short
+msgid "Regl"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.desc
+msgid "Type of Continuing Resource"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/srtp.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.srtp.short
+msgid "SrTp"
+msgstr ""
+
+#: staff.marc.008.SER.succ.desc
+msgid "Entry Convention"
+msgstr ""
+
+#: staff.marc.008.SER.succ.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/succ.shtm"
+msgstr ""
+
+#: staff.marc.008.SER.succ.short
+msgid "S/L"
+msgstr ""
+
+#: staff.marc.008.ctry.desc
+msgid "Country of Publication, etc."
+msgstr ""
+
+#: staff.marc.008.ctry.field_end_pos
+#: staff.marc.LDR.elvl.field_end_pos
+#: staff.marc.LDR.elvl.field_start_pos
+msgid "17"
+msgstr ""
+
+#: staff.marc.008.ctry.field_start_pos
+msgid "15"
+msgstr ""
+
+#: staff.marc.008.ctry.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/ctry.shtm"
+msgstr ""
+
+#: staff.marc.008.ctry.short
+msgid "Ctry"
+msgstr ""
+
+#: staff.marc.008.date1.desc
+#: staff.marc.008.date1.short
+msgid "Date 1"
+msgstr ""
+
+#: staff.marc.008.date1.field_end_pos
+msgid "10"
+msgstr ""
+
+#: staff.marc.008.date1.field_start_pos
+#: staff.marc.LDR.blvl.field_end_pos
+#: staff.marc.LDR.blvl.field_start_pos
+msgid "7"
+msgstr ""
+
+#: staff.marc.008.date2.desc
+#: staff.marc.008.date2.short
+msgid "Date 2"
+msgstr ""
+
+#: staff.marc.008.date2.field_end_pos
+msgid "14"
+msgstr ""
+
+#: staff.marc.008.date2.field_start_pos
+msgid "11"
+msgstr ""
+
+#: staff.marc.008.dates
+msgid "Dates"
+msgstr ""
+
+#: staff.marc.008.dates.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/dates.shtm"
+msgstr ""
+
+#: staff.marc.008.dtst.desc
+msgid "Type of Date/Publication Status"
+msgstr ""
+
+#: staff.marc.008.dtst.field_end_pos
+#: staff.marc.008.dtst.field_start_pos
+#: staff.marc.008.entered.field_size
+#: staff.marc.LDR.type.field_end_pos
+#: staff.marc.LDR.type.field_start_pos
+msgid "6"
+msgstr ""
+
+#: staff.marc.008.dtst.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/dtst.shtm"
+msgstr ""
+
+#: staff.marc.008.dtst.short
+msgid "DtSt"
+msgstr ""
+
+#: staff.marc.008.entered.desc
+msgid "Date Entered"
+msgstr ""
+
+#: staff.marc.008.entered.field_end_pos
+#: staff.marc.LDR.rec_stat.field_end_pos
+#: staff.marc.LDR.rec_stat.field_start_pos
+msgid "5"
+msgstr ""
+
+#: staff.marc.008.entered.field_start_pos
+msgid "0"
+msgstr ""
+
+#: staff.marc.008.entered.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/entered.shtm"
+msgstr ""
+
+#: staff.marc.008.entered.short
+msgid "Entered"
+msgstr ""
+
+#: staff.marc.008.lang.desc
+msgid "Language Code"
+msgstr ""
+
+#: staff.marc.008.lang.field_end_pos
+msgid "37"
+msgstr ""
+
+#: staff.marc.008.lang.field_start_pos
+msgid "35"
+msgstr ""
+
+#: staff.marc.008.lang.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/lang.shtm"
+msgstr ""
+
+#: staff.marc.008.lang.short
+msgid "Lang"
+msgstr ""
+
+#: staff.marc.008.mrec.desc
+msgid "Modified Record"
+msgstr ""
+
+#: staff.marc.008.mrec.field_end_pos
+#: staff.marc.008.mrec.field_start_pos
+msgid "38"
+msgstr ""
+
+#: staff.marc.008.mrec.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/mrec.shtm"
+msgstr ""
+
+#: staff.marc.008.mrec.short
+msgid "MRec"
+msgstr ""
+
+#: staff.marc.008.srce.desc
+msgid "Cataloging Source"
+msgstr ""
+
+#: staff.marc.008.srce.field_end_pos
+#: staff.marc.008.srce.field_start_pos
+msgid "39"
+msgstr ""
+
+#: staff.marc.008.srce.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/srce.shtm"
+msgstr ""
+
+#: staff.marc.008.srce.short
+msgid "Srce"
+msgstr ""
+
+#: staff.marc.LDR.blvl.desc
+msgid "Bibliographic Level"
+msgstr ""
+
+#: staff.marc.LDR.blvl.field
+#: staff.marc.LDR.ctrl.field
+#: staff.marc.LDR.desc.field
+#: staff.marc.LDR.elvl.field
+#: staff.marc.LDR.rec_stat.field
+#: staff.marc.LDR.type.field
+msgid "LDR"
+msgstr ""
+
+#: staff.marc.LDR.blvl.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/blvl.shtm"
+msgstr ""
+
+#: staff.marc.LDR.blvl.short
+msgid "BLvl"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.desc
+msgid "Type of Control"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.field_end_pos
+#: staff.marc.LDR.ctrl.field_start_pos
+msgid "8"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/ctrl.shtm"
+msgstr ""
+
+#: staff.marc.LDR.ctrl.short
+msgid "Ctrl"
+msgstr ""
+
+#: staff.marc.LDR.desc.desc
+msgid "Descriptive Cataloging Form"
+msgstr ""
+
+#: staff.marc.LDR.desc.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/desc.shtm"
+msgstr ""
+
+#: staff.marc.LDR.desc.short
+msgid "Desc"
+msgstr ""
+
+#: staff.marc.LDR.elvl.desc
+msgid "Encoding Level"
+msgstr ""
+
+#: staff.marc.LDR.elvl.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/elvl.shtm"
+msgstr ""
+
+#: staff.marc.LDR.elvl.short
+msgid "ELvl"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.desc
+msgid "Record Status"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/rec.shtm"
+msgstr ""
+
+#: staff.marc.LDR.rec_stat.short
+msgid "Rec stat"
+msgstr ""
+
+#: staff.marc.LDR.type.desc
+msgid "Type of Record"
+msgstr ""
+
+#: staff.marc.LDR.type.help
+msgid "http://www.oclc.org/bibformats/en/fixedfield/type.shtm"
+msgstr ""
+
+#: staff.marc.close.editor.key
+msgid "W"
+msgstr ""
+
+#: staff.marc.display.control_fields
+msgid "Toggle Control/Data Fields"
+msgstr ""
+
+#: staff.marc.display.cover_art
+msgid "Toggle Cover Art"
+msgstr ""
+
+#: staff.marc.display.explain
+msgid "Explain Errors"
+msgstr ""
+
+#: staff.marc.display.explain.key
+msgid "X"
+msgstr ""
+
+#: staff.marc.display.fixed.BKS
+msgid "Fixed Fields as BKS"
+msgstr ""
+
+#: staff.marc.display.fixed.COM
+msgid "Fixed Fields as COM"
+msgstr ""
+
+#: staff.marc.display.fixed.MAP
+msgid "Fixed Fields as MAP"
+msgstr ""
+
+#: staff.marc.display.fixed.MIX
+msgid "Fixed Fields as MIX"
+msgstr ""
+
+#: staff.marc.display.fixed.REC
+msgid "Fixed Fields as REC"
+msgstr ""
+
+#: staff.marc.display.fixed.SCO
+msgid "Fixed Fields as SCO"
+msgstr ""
+
+#: staff.marc.display.fixed.SER
+msgid "Fixed Fields as SER"
+msgstr ""
+
+#: staff.marc.display.fixed.VIS
+msgid "Fixed Fields as VIS"
+msgstr ""
+
+#: staff.marc.display.legend
+msgid "Legend"
+msgstr ""
+
+#: staff.marc.display.meta_data
+msgid "Toggle Meta Data"
+msgstr ""
+
+#: staff.marc.editor.keys.help
+msgid "Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = Delete Row;"
+msgstr ""
+
+#: staff.marc.file
+#: staff.marc_editor_interface_label
+msgid "MARC"
+msgstr ""
+
+#: staff.marc.file.close
+msgid "Close Editor"
+msgstr ""
+
+#: staff.marc.file.export
+msgid "Export"
+msgstr ""
+
+#: staff.marc.file.publish
+msgid "Save (to DB)"
+msgstr ""
+
+#: staff.marc.file.reload
+msgid "Reload"
+msgstr ""
+
+#: staff.marc.file.validate
+msgid "Validate"
+msgstr ""
+
+#: staff.marc.groupbox.control
+msgid "Control Fields"
+msgstr ""
+
+#: staff.marc.groupbox.cover
+msgid "Cover Art"
+msgstr ""
+
+#: staff.marc.groupbox.data
+msgid "Data Fields"
+msgstr ""
+
+#: staff.marc.groupbox.fixed
+msgid "Fixed Fields"
+msgstr ""
+
+#: staff.marc.groupbox.meta
+msgid "Meta Data (NOT YET IMPLEMENTED)"
+msgstr ""
+
+#: staff.mbts_balance_owed_label
+msgid "Balance Owed"
+msgstr ""
+
+#: staff.mbts_id_label
+msgid "Bill # "
+msgstr ""
+
+#: staff.mbts_total_owed_label
+msgid "Total Billed"
+msgstr ""
+
+#: staff.mbts_total_paid_label
+msgid "Total Paid"
+msgstr ""
+
+#: staff.mbts_xact_start_label
+msgid "Start"
+msgstr ""
+
+#: staff.mvr_label_doc_id
+msgid "Doc Id"
+msgstr ""
+
+#: staff.next.range
+msgid "Next"
+msgstr ""
+
+#: staff.opac_navigator_interface_label
+msgid "CATALOG NAVIGATOR"
+msgstr ""
+
+#: staff.patron_barcode_entry_interface_label
+#: staff.patron_display_interface_label
+msgid "PATRON"
+msgstr ""
+
+#: staff.patron_display.bills.label
+msgid "Bills:"
+msgstr ""
+
+#: staff.patron_display.checkout.print_receipt_label
+#: staff.patron_display.items.print_receipt_label
+msgid "Print Receipt"
+msgstr ""
+
+#: staff.patron_display.checkout.print_receipt_label.accesskey
+msgid ""
+"_: staff.patron_display.checkout.print_receipt_label.accesskey\n"
+msgstr ""
+
+#: staff.patron_display.checkout.reprint_receipt_label
+msgid "Re-Print Last Receipt"
+msgstr ""
+
+#: staff.patron_display.checkouts.label
+msgid "Check Outs:"
+msgstr ""
+
+#: staff.patron_display.checkouts_overdue.label
+msgid "Overdue:"
+msgstr ""
+
+#: staff.patron_display.contact.caption
+msgid "Identity &amp; Contact Info"
+msgstr ""
+
+#: staff.patron_display.credit.label
+msgid "Credit:"
+msgstr ""
+
+#: staff.patron_display.date_of_birth.label
+msgid "DOB:"
+msgstr ""
+
+#: staff.patron_display.day_phone.label
+msgid "Day Phone:"
+msgstr ""
+
+#: staff.patron_display.email.label
+#: staff.patron_search_form.email.label
+msgid "Email:"
+msgstr ""
+
+#: staff.patron_display.evening_phone.label
+msgid "Evening Phone:"
+msgstr ""
+
+#: staff.patron_display.holds.label
+msgid "Holds:"
+msgstr ""
+
+#: staff.patron_display.holds_available.label
+msgid "Available:"
+msgstr ""
+
+#: staff.patron_display.ident1.label
+msgid "ID 1:"
+msgstr ""
+
+#: staff.patron_display.ident2.label
+msgid "ID 2:"
+msgstr ""
+
+#: staff.patron_display.items_claimed_returned.label
+msgid "Items Claimed Returned:"
+msgstr ""
+
+#: staff.patron_display.library_card.label
+msgid "Library Card:"
+msgstr ""
+
+#: staff.patron_display.mailing.city.label
+msgid "Mailing City:"
+msgstr ""
+
+#: staff.patron_display.mailing.post_code.label
+msgid "Mailing ZIP:"
+msgstr ""
+
+#: staff.patron_display.mailing.state.label
+msgid "Mailing State:"
+msgstr ""
+
+#: staff.patron_display.mailing.street1.label
+msgid "Mailing Address 1:"
+msgstr ""
+
+#: staff.patron_display.mailing.street2.label
+msgid "Mailing Address 2:"
+msgstr ""
+
+#: staff.patron_display.other_phone.label
+msgid "Other Phone:"
+msgstr ""
+
+#: staff.patron_display.physical.city.label
+msgid "Physical City:"
+msgstr ""
+
+#: staff.patron_display.physical.post_code.label
+msgid "Physical ZIP:"
+msgstr ""
+
+#: staff.patron_display.physical.state.label
+msgid "Physical State:"
+msgstr ""
+
+#: staff.patron_display.physical.street1.label
+msgid "Physical Address 1:"
+msgstr ""
+
+#: staff.patron_display.physical.street2.label
+msgid "Physical Address 2:"
+msgstr ""
+
+#: staff.patron_display.physical_address
+msgid "Physical Address"
+msgstr ""
+
+#: staff.patron_display.second_given_name.label
+#: staff.patron_search_form.second_given_name.label
+msgid "Middle Name:"
+msgstr ""
+
+#: staff.patron_display.standing.label
+msgid "Standing:"
+msgstr ""
+
+#: staff.patron_editor_interface_label
+msgid "PATRON EDIT"
+msgstr ""
+
+#: staff.patron_interface_label
+msgid "PATRON "
+msgstr ""
+
+#: staff.patron_navbar.bills
+msgid "Bills"
+msgstr ""
+
+#: staff.patron_navbar.checkout
+msgid "Check Out"
+msgstr ""
+
+#: staff.patron_navbar.holds
+msgid "Holds"
+msgstr ""
+
+#: staff.patron_navbar.info
+msgid "Info"
+msgstr ""
+
+#: staff.patron_navbar.info.accesskey
+msgid "o"
+msgstr ""
+
+#: staff.patron_navbar.items
+msgid "Items Out"
+msgstr ""
+
+#: staff.patron_navbar.refresh
+msgid "Refresh"
+msgstr ""
+
+#: staff.patron_register_interface_label
+msgid "NEW PATRON"
+msgstr ""
+
+#: staff.patron_search_form.caption
+msgid "Search for Patron"
+msgstr ""
+
+#: staff.patron_search_form.city.accesskey
+msgid ""
+"_: staff.patron_search_form.city.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.city.label
+msgid "City:"
+msgstr ""
+
+#: staff.patron_search_form.clear.label
+#: staff.patron_search_form.clear.accesskey
+msgid "&Clear Form"
+msgstr ""
+
+#: staff.patron_search_form.email.accesskey
+msgid ""
+"_: staff.patron_search_form.email.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.family_name.label
+#: staff.patron_search_form.family_name.accesskey
+msgid "&Last Name:"
+msgstr ""
+
+#: staff.patron_search_form.first_given_name.accesskey
+msgid ""
+"_: staff.patron_search_form.first_given_name.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.ident.accesskey
+msgid ""
+"_: staff.patron_search_form.ident.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.ident.label
+msgid "ID:"
+msgstr ""
+
+#: staff.patron_search_form.phone.label
+#: staff.patron_search_form.phone.accesskey
+msgid "&Phone:"
+msgstr ""
+
+#: staff.patron_search_form.post_code.accesskey
+msgid ""
+"_: staff.patron_search_form.post_code.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.post_code.label
+msgid "ZIP:"
+msgstr ""
+
+#: staff.patron_search_form.search.label
+#: staff.patron_search_form.search.accesskey
+msgid "&Search"
+msgstr ""
+
+#: staff.patron_search_form.second_given_name.accesskey
+msgid ""
+"_: staff.patron_search_form.second_given_name.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.state.accesskey
+msgid ""
+"_: staff.patron_search_form.state.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.state.label
+msgid "State:"
+msgstr ""
+
+#: staff.patron_search_form.street1.label
+#: staff.patron_search_form.street1.accesskey
+msgid "A&ddress 1:"
+msgstr ""
+
+#: staff.patron_search_form.street2.accesskey
+msgid ""
+"_: staff.patron_search_form.street2.accesskey\n"
+msgstr ""
+
+#: staff.patron_search_form.street2.label
+msgid "Address 2:"
+msgstr ""
+
+#: staff.patron_search_interface_label
+msgid "PATRON SEARCH"
+msgstr ""
+
+#: staff.patron_stat_cat_editor_interface_label
+msgid "PATRON STAT-CATS"
+msgstr ""
+
+#: staff.previous.range
+msgid "Previous"
+msgstr ""
+
+#: staff.receipt_template_editor_interface_label
+msgid "RECEIPTS"
+msgstr ""
+
+#: staff.record_list.copy_count
+msgid "Copies&#740;"
+msgstr ""
+
+#: staff.record_list.publisher
+#: staff.z39_50.search_class.publisher
+msgid "Publisher"
+msgstr ""
+
+#: staff.retrieving.record
+msgid "Retrieving..."
+msgstr ""
+
+#: staff.survey.wizard.page1
+msgid "Initial Settings"
+msgstr ""
+
+#: staff.survey.wizard.page2
+msgid "Add Questions for Survey:"
+msgstr ""
+
+#: staff.survey.wizard.title
+msgid "Add a Survey Wizard"
+msgstr ""
+
+#: staff.survey_admin_interface_label
+msgid "SURVEY ADMIN"
+msgstr ""
+
+#: staff.volume.attr.owning_lib
+msgid "Owning Library"
+msgstr ""
+
+#: staff.volume.wizard.page1
+msgid "Entering Volumes"
+msgstr ""
+
+#: staff.volume.wizard.page2
+msgid "Entering Copies"
+msgstr ""
+
+#: staff.volume.wizard.page3
+msgid "Entering Barcodes"
+msgstr ""
+
+#: staff.volume.wizard.page4
+msgid "Entering Copy-Level Attribute Defaults"
+msgstr ""
+
+#: staff.volume.wizard.title
+msgid "Batch Add Volumes/Copies Wizard"
+msgstr ""
+
+#: staff.xuleditor_label
+msgid "XUL TEST"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type
+msgid "Item Type"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.all
+msgid "All Formats"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.art
+msgid "Papers/Articles"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.bks
+msgid "Books"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.com
+msgid "Computer files"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.map
+msgid "Maps"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.mix
+msgid "Mixed material"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.rec
+msgid "Sound recordings"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.sco
+msgid "Musical scores"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.url
+msgid "Internet Resources"
+msgstr ""
+
+#: staff.z39_50.search_class.item_type.vis
+msgid "Visual materials"
+msgstr ""
+
+#: staff.z39_50.search_class.lccn
+msgid "LCCN"
+msgstr ""
+
+#: staff.z39_50.search_class.pubdate
+msgid "PubDate"
+msgstr ""
+
+#: staff.z39_50.search_class.tcn
+msgid "Accession #"
+msgstr ""
+
+#: staff.z39_50_import_interface_label
+msgid "Z39.50 IMPORT"
+msgstr ""

Copied: trunk/build/i18n/po/en-US/opac.dtd.pot (from rev 8396, trunk/build/i18n/po/opac.dtd.pot)
===================================================================
--- trunk/build/i18n/po/en-US/opac.dtd.pot	                        (rev 0)
+++ trunk/build/i18n/po/en-US/opac.dtd.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -0,0 +1,2000 @@
+# extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-01-17 14:20-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"X-Generator: Translate Toolkit 1.0.1\n"
+"X-Accelerator-Marker: &\n"
+
+# =================================================================
+# Some generic stuff
+# =================================================================
+#: lang.version
+msgid "remote v1"
+msgstr ""
+
+#: lang.description
+msgid "English"
+msgstr ""
+
+#: lang.author
+msgid "PINES"
+msgstr ""
+
+#: common.all
+msgid "All"
+msgstr ""
+
+#: common.currency
+msgid "$"
+msgstr ""
+
+#: common.name
+msgid "Name"
+msgstr ""
+
+#: common.none
+msgid "None"
+msgstr ""
+
+#: common.title
+msgid "Title"
+msgstr ""
+
+#: common.author
+msgid "Author"
+msgstr ""
+
+#: common.authors
+msgid "Authors"
+msgstr ""
+
+#: common.callnumber
+#: opac.advanced.quick.cn
+msgid "Call Number"
+msgstr ""
+
+#: common.edition
+msgid "Edition"
+msgstr ""
+
+#: common.subject
+msgid "Subject"
+msgstr ""
+
+#: common.series
+msgid "Series"
+msgstr ""
+
+#: common.keyword
+msgid "Keyword"
+msgstr ""
+
+#: common.type
+msgid "Search Type"
+msgstr ""
+
+#: common.isbn
+#: opac.advanced.quick.isbn
+msgid "ISBN"
+msgstr ""
+
+#: common.format
+msgid "Format"
+msgstr ""
+
+# Message displayed while search results are loading
+#: common.loading
+#: myopac.fines.status
+msgid "Loading..."
+msgstr ""
+
+#: common.login
+#: opac.login.login
+msgid "Login"
+msgstr ""
+
+#: common.logout
+msgid "Log Out"
+msgstr ""
+
+#: common.physical
+msgid "Physical Description"
+msgstr ""
+
+#: common.pubdate
+msgid "Publication Date"
+msgstr ""
+
+#: common.publisher
+msgid "Publisher"
+msgstr ""
+
+#: common.results
+msgid "Results"
+msgstr ""
+
+#: common.select
+msgid "Select"
+msgstr ""
+
+#: common.status
+msgid "Status"
+msgstr ""
+
+#: common.at
+msgid "at"
+msgstr ""
+
+#: common.of
+msgid "of"
+msgstr ""
+
+#: common.no
+msgid "No"
+msgstr ""
+
+#: common.yes
+msgid "Yes"
+msgstr ""
+
+#: common.cancel
+#: common.org.cancel
+#: myopac.holds.cancel
+#: myopac.holds.cancel_selected
+msgid "Cancel"
+msgstr ""
+
+#: common.library
+#: rdetail.copyInfo.library
+msgid "Library"
+msgstr ""
+
+#: common.username
+msgid "Username"
+msgstr ""
+
+#: common.password
+msgid "Password"
+msgstr ""
+
+#: common.submit
+msgid "Submit"
+msgstr ""
+
+#: common.close
+msgid "close"
+msgstr ""
+
+#: common.and
+msgid "and"
+msgstr ""
+
+#: common.user_not_found
+msgid "User not found"
+msgstr ""
+
+#: opac.advanced.wizard.title
+#: opac.navigate.advanced
+msgid "Advanced Search"
+msgstr ""
+
+#: common.nowSearching
+msgid "Now searching "
+msgstr ""
+
+#: common.ofAtLeast
+msgid " of at least "
+msgstr ""
+
+#: common.relevancy
+msgid "Match Score: "
+msgstr ""
+
+#: common.tips
+msgid "Tips:"
+msgstr ""
+
+#: common.tips.tip1
+msgid "Click on a folder icon in the sidebar to access related quick searches"
+msgstr ""
+
+#: common.tips.tip2
+msgid "If you don't find what you want try expanding your search using the range selector at the right of the search bar"
+msgstr ""
+
+#: common.org.openAll
+msgid "Expand All"
+msgstr ""
+
+#: common.org.closeAll
+msgid "Close All"
+msgstr ""
+
+#: common.org.loading
+msgid "Loading library selector..."
+msgstr ""
+
+# ==========================================================
+# Tips
+#: common.org.note
+#: tips.label
+msgid "Tip:"
+msgstr ""
+
+#: common.org.notetext
+msgid "Click on a location's name to select it.  Click on the folder icons to expand a section."
+msgstr ""
+
+# =================================================================
+# Footer
+#: opac.basic
+#: footer.basic
+msgid "Basic Catalog (HTML only)"
+msgstr ""
+
+#: common.password_criteria
+msgid "The password must be at least 7 characters in length, "
+"\tcontain at least one letter (a-z/A-Z), "
+"\tand contain at least one number."
+msgstr ""
+
+#: common.a2z.title
+msgid "Title: A to Z"
+msgstr ""
+
+#: common.z2a.title
+msgid "Title: Z to A"
+msgstr ""
+
+#: common.a2z.author
+msgid "Author: A to Z"
+msgstr ""
+
+#: common.z2a.author
+msgid "Author: Z to A"
+msgstr ""
+
+#: common.new2old.pubdate
+msgid "Date: Newest to Oldest"
+msgstr ""
+
+#: common.old2new.pubdate
+msgid "Date: Oldest to Newest"
+msgstr ""
+
+#: opac.style.reddish
+msgid "Reddish"
+msgstr ""
+
+#: holds.where_am_i
+msgid "PINES is a statewide system with both patrons and items "
+"\tassociated with over 250 libraries, holds lists are not as simple as "
+"\t'first come, first served' in PINES.  A complex matrix combining "
+"\tconsideration of item ownership, patron home library, and item purchase "
+"\tdate determines  priorities for holds; the list is dynamic, changing "
+"\twith every hold placed.  Therefore, any indication of a place in the "
+"\tholds list would be inaccurate.  The PINES holds system is designed to "
+"\tobtain a requested item in the fastest and most efficient way possible. "
+"\tYour PINES library will contact you when you hold items become "
+"\tavailable."
+msgstr ""
+
+#: holds.advanced_options
+msgid "If you wish to broaden the scope of your hold to include other "
+"\tversions of this title, select the formats that would be acceptable. "
+"\tThe first available copy will be sent to you."
+msgstr ""
+
+# =================================================================
+# Events and Permissions
+# =================================================================
+#: ilsevent.0
+msgid "Operation Succeeded"
+msgstr ""
+
+#: ilsevent.1000
+msgid "Login failed.  The username or password entered was incorrect."
+msgstr ""
+
+#: ilsevent.1001
+msgid "Login session has timed out or does not exist"
+msgstr ""
+
+#: ilsevent.1002
+msgid "User was not found in the database"
+msgstr ""
+
+#: ilsevent.1200
+msgid "The given username already exists in the database"
+msgstr ""
+
+#: ilsevent.5000
+msgid "Permission Denied"
+msgstr ""
+
+#: ilsperm.CREATE_HOLD
+msgid "User is not allowed to create holds for other users at this location"
+msgstr ""
+
+# =================================================================
+# common/pages
+# =================================================================
+#: common.cn.loading
+msgid "Loading Callnumber Page..."
+msgstr ""
+
+#: common.cn.browsing
+msgid "You are now browsing"
+msgstr ""
+
+#: common.cn.previous
+msgid "&lt;&lt; Previous Page"
+msgstr ""
+
+#: common.cn.shelf
+#: rdetail.extras.browser
+msgid "Shelf Browser"
+msgstr ""
+
+#: common.cn.next
+msgid "Next Page &gt;&gt;"
+msgstr ""
+
+#: common.textsize.title
+msgid "Text Size: "
+msgstr ""
+
+#: common.textsize.regular
+msgid "Regular"
+msgstr ""
+
+# Regular / Large
+#: common.textsize.separator
+msgid "/"
+msgstr ""
+
+#: common.textsize.large
+msgid "Large"
+msgstr ""
+
+#: home.js.disabled
+msgid "JavaScript must be enabled in order for you to use the regular Evergreen Catalog. "
+"However, it seems JavaScript is either disabled or not supported by your browser. "
+"To use the regular Evergreen Catalog, enable JavaScript by changing your browser options, then "
+"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. "
+"<br/><br/>Alternatively, you can use the basic HTML-only catalog "
+"<a style='color: blue; text-decoration: underline;' href='/opac/extras/slimpac/start.html'>here</a>."
+msgstr ""
+
+# =================================================================
+# MyOPAC bookbag page
+# =================================================================
+#: myopac.delete.bookbag
+msgid "This will remove the selected bookbag and all items contained within the bookbag. "
+"Are you sure you wish to continue?"
+msgstr ""
+
+#: myopac.no.bookbags
+msgid "You have not created any bookbags"
+msgstr ""
+
+#: myopac.bookbags.title
+#: myopac.bookbags
+msgid "My Bookbags"
+msgstr ""
+
+#: myopac.bookbag.items
+msgid "# Items"
+msgstr ""
+
+#: myopac.bookbag.shared
+msgid "Shared"
+msgstr ""
+
+#: myopac.bookbag.toggle
+msgid "Share / Hide"
+msgstr ""
+
+#: myopac.bookbag.delete
+msgid "Delete this bookbag?"
+msgstr ""
+
+#: myopac.items
+msgid "Items"
+msgstr ""
+
+#: myopac.view
+msgid "(View)"
+msgstr ""
+
+#: myopac.atom.feed
+msgid "ATOM Feed"
+msgstr ""
+
+#: myopac.bookbag.hide
+msgid "Hide"
+msgstr ""
+
+#: myopac.bookbag.share
+msgid "Share"
+msgstr ""
+
+#: myopac.delete
+msgid "Delete"
+msgstr ""
+
+#: myopac.bookbag.create
+msgid "Create a new Bookbag"
+msgstr ""
+
+#: myopac.bookbag.naming
+msgid "Enter the name of the new Bookbag: "
+msgstr ""
+
+#: myopac.bookbag.share
+msgid "Share this Bookbag"
+msgstr ""
+
+#: myopac.bookbag.no.items
+msgid "The selected bookbag contains no items..."
+msgstr ""
+
+#: myopac.bookbag.remove
+msgid "Remove this item?"
+msgstr ""
+
+#: myopac.remove.link
+msgid "remove"
+msgstr ""
+
+#: myopac.publish.text
+msgid "Sharing a Bookbag means that the contents of the Bookbag will be visible to others. "
+"To see the public view of a shared Bookbag, click the \"View\" link in the "
+"\"Shared\" column of the Bookbag list at the top of this page."
+msgstr ""
+
+#: myopac.item.confirm
+msgid "Are you sure you wish to remove this bookbag item?"
+msgstr ""
+
+#: myopac.publish.confirm
+msgid "Sharing this bookbag will allow the contents "
+"of the bookback to be seen by others.  Are you sure you wish to share this bookbag?"
+msgstr ""
+
+#: myopac.unpublish.confirm
+msgid "Are you sure you wish to hide this bookbag?"
+msgstr ""
+
+#: myopac.update.success
+msgid "The Bookbag was successfully updated."
+msgstr ""
+
+#: myopac.updated.success
+msgid "Bookbag successfully updated"
+msgstr ""
+
+#: myopac.create.warning
+msgid "Warning: Adding items to a bookbag creates a link between you and the "
+"items in the database.  The contents of the bookbag are NOT publicly "
+"viewable unless the bookbag is shared. However, if you prefer not to "
+"have any link between your patron record and a particular item or items, "
+"we suggest that you do not place said items in a bookbag or that you "
+"avoid using bookbags all together.  Thank you."
+msgstr ""
+
+#: myopac.describe.bookbags
+msgid "Bookbags are..."
+msgstr ""
+
+# =================================================================
+# MyOPAC Checked Page
+# =================================================================
+#: myopac.checked.out
+msgid "Total items out:"
+msgstr ""
+
+#: myopac.checked.overdue
+msgid "Total items overdue:"
+msgstr ""
+
+#: myopac.checked.renew
+msgid "Renew Selected Items"
+msgstr ""
+
+#: myopac.checked.renewing
+msgid "Renewing..."
+msgstr ""
+
+#: myopac.checked.renew.remaining
+msgid "Renewals Remaining"
+msgstr ""
+
+#: myopac.checked.noitems
+msgid "You have no items checked out at this time"
+msgstr ""
+
+#: myopac.checked.other.circ
+msgid "Other Circulations"
+msgstr ""
+
+#: myopac.checked.circ.lib
+msgid "Circulating Library"
+msgstr ""
+
+#: myopac.checked.item.type
+msgid "Circulation Type"
+msgstr ""
+
+#: myopac.checked.circ.time
+msgid "Please return by ..."
+msgstr ""
+
+#: myopac.checked.renew.success
+msgid "item(s) successfully renewed"
+msgstr ""
+
+#: myopac.checked.renew.confirm
+msgid "Are you sure you wish to renew the selected item(s)?"
+msgstr ""
+
+#: myopac.checked.renew.fail
+msgid "The system is unable to renew the selected item at this time.  This usually means the item is needed to fulfill a hold.  Please see a librarian for further help."
+msgstr ""
+
+#: myopac.checked.renew.fail2
+msgid "PINES policy prevents the renewal of this item at this time.  Please see a librarian for further details."
+msgstr ""
+
+# =================================================================
+# MyOPAC Fines Page
+# =================================================================
+#: myopac.fines.title
+msgid "Summary"
+msgstr ""
+
+#: myopac.fines.owed
+msgid "Total Owed"
+msgstr ""
+
+#: myopac.fines.paid
+msgid "Total Paid"
+msgstr ""
+
+#: myopac.fines.balance
+msgid "Balance Owed"
+msgstr ""
+
+#: myopac.fines.overdue
+msgid "Overdue Materials"
+msgstr ""
+
+#: myopac.fines.checkout
+msgid "Checkout Date"
+msgstr ""
+
+#: myopac.fines.due
+#: rdetail.cn.due
+msgid "Due Date"
+msgstr ""
+
+#: myopac.fines.returned
+msgid "Date Returned"
+msgstr ""
+
+#: myopac.fines.accruing
+msgid "(fines accruing)"
+msgstr ""
+
+#: myopac.fines.other
+msgid "Other Fees"
+msgstr ""
+
+#: myopac.fines.time.start
+msgid "Transaction Start Time"
+msgstr ""
+
+#: myopac.fines.time.paid
+msgid "Last Payment Time"
+msgstr ""
+
+#: myopac.fines.owed.initial
+msgid "Initial Amount Owed"
+msgstr ""
+
+#: myopac.fines.paid.amount
+msgid "Total Amount Paid"
+msgstr ""
+
+#: myopac.fines.type
+msgid "Billing Type"
+msgstr ""
+
+# =================================================================
+# MyOPAC Holds Page
+# =================================================================
+#: myopac.holds.formats
+msgid "Formats"
+msgstr ""
+
+#: myopac.holds.location
+msgid "Pickup Location"
+msgstr ""
+
+#: myopac.holds.edit
+msgid "Edit"
+msgstr ""
+
+#: myopac.holds.status.none
+msgid "You have no items on hold at this time"
+msgstr ""
+
+#: myopac.holds.status.waiting
+msgid "Waiting for copy"
+msgstr ""
+
+#: myopac.holds.status.intransit
+msgid "In Transit"
+msgstr ""
+
+#: myopac.holds.status.available
+msgid "Ready for Pickup"
+msgstr ""
+
+#: myopac.holds.verify
+msgid "If you wish to cancel the selected hold, click OK, otherwise click Cancel."
+msgstr ""
+
+#: myopac.holds.freeze_selected
+msgid "Freeze"
+msgstr ""
+
+#: myopac.holds.thaw_selected
+msgid "Un-freeze"
+msgstr ""
+
+#: myopac.holds.thaw_date_selected
+msgid "Set Un-freeze date"
+msgstr ""
+
+#: myopac.holds.processing
+msgid "Processing holds... This may take a moment."
+msgstr ""
+
+#: myopac.holds.actions
+msgid "Actions for selected holds"
+msgstr ""
+
+#: myopac.holds.cancel.confirm
+msgid "Are you sure you wish to cancel the selected holds?"
+msgstr ""
+
+#: myopac.holds.freeze.confirm
+msgid "Are you sure you wish to freeze the selected holds? "
+"Note that if an item has already been selected to fulfill the hold, it will not be frozen"
+msgstr ""
+
+#: myopac.holds.thaw.confirm
+msgid "Are you sure you wish to un-freeze the selected holds?"
+msgstr ""
+
+#: myopac.holds.thaw_date.confirm
+msgid "Are you sure you wish to change the un-freeze date for the selected holds?"
+msgstr ""
+
+#: myopac.holds.freeze.select_thaw
+msgid "Select an 'Un-Freeze' date.  This is the date at which the holds will become active again. "
+"If no date is chosen, the holds will remain frozen until they are manually un-frozen."
+msgstr ""
+
+#: opac.holds.freeze
+msgid "Freeze this hold"
+msgstr ""
+
+#: opac.holds.freeze.help
+msgid "A 'frozen' will retain its place in the queue, but will not be fulfilled until it has been unfrozen."
+msgstr ""
+
+#: opac.holds.freeze.thaw_date
+msgid "Automatically un-freeze hold on:"
+msgstr ""
+
+#: opac.holds.freeze.thaw_date.format
+msgid "YYYY-MM-DD"
+msgstr ""
+
+# =================================================================
+# MyOPAC Preferences Page
+# =================================================================
+#: myopac.prefs.title
+msgid "Preferences"
+msgstr ""
+
+#: myopac.prefs.hits
+msgid "Search hits per page"
+msgstr ""
+
+#: myopac.prefs.font
+msgid "Default Font Size"
+msgstr ""
+
+#: myopac.prefs.font.regular
+msgid "Regular Font"
+msgstr ""
+
+#: myopac.prefs.font.large
+msgid "Large Font"
+msgstr ""
+
+#: myopac.prefs.holds.notify
+msgid "Default Hold Notification Method"
+msgstr ""
+
+#: myopac.prefs.holds.both
+msgid "Use Phone and Email"
+msgstr ""
+
+#: myopac.prefs.holds.phone
+msgid "Use Phone Only"
+msgstr ""
+
+#: myopac.prefs.holds.email
+msgid "Use Email Only"
+msgstr ""
+
+#: myopac.prefs.search.location
+msgid "Default Search Location"
+msgstr ""
+
+#: myopac.prefs.search.home
+msgid "Always search my home library by default."
+msgstr ""
+
+#: myopac.prefs.search.range
+msgid "Default Search Range"
+msgstr ""
+
+#: myopac.prefs.save
+msgid "Save Preference Changes"
+msgstr ""
+
+#: myopac.prefs.save.success
+msgid "Preferences successfully updated"
+msgstr ""
+
+#: myopac.prefs.save.failed
+msgid "Preferences update failed!"
+msgstr ""
+
+#: myopac.prefs.help
+msgid "This setting defines how you will be notified of holds that are ready to be picked up from the library. "
+"By default, holds will use the notification style you choose here. "
+"However, you will still have the option to change individual holds regardless of this setting."
+msgstr ""
+
+#: myopac.holds.unfrozen
+msgid "Un-Frozen"
+msgstr ""
+
+#: myopac.holds.frozen.until
+msgid "Frozen Until"
+msgstr ""
+
+# =================================================================
+# MyOPAC Summary page
+# =================================================================
+#: myopac.summary.expired
+msgid "Your account expired on <span id='myopac.expired.date'/>! "
+"Please see a librarian to renew your account."
+msgstr ""
+
+#: myopac.summary.notes
+msgid "* Staff Notes *"
+msgstr ""
+
+#: myopac.summary.phone.day
+msgid "Day Phone"
+msgstr ""
+
+#: myopac.summary.phone.evening
+msgid "Evening Phone"
+msgstr ""
+
+#: myopac.summary.phone.other
+msgid "Other Phone"
+msgstr ""
+
+#: myopac.summary.change
+msgid "Change"
+msgstr ""
+
+#: myopac.summary.username.enter
+msgid "Enter new username:"
+msgstr ""
+
+#: myopac.summary.password.text
+msgid "(not shown)"
+msgstr ""
+
+#: myopac.summary.password.current
+msgid "Enter current password:"
+msgstr ""
+
+#: myopac.summary.password.new
+msgid "Enter new password:"
+msgstr ""
+
+#: myopac.summary.password.reenter
+msgid "Re-enter new password:"
+msgstr ""
+
+#: myopac.summary.email
+msgid "Email Address"
+msgstr ""
+
+#: myopac.summary.email.new
+msgid "Enter new email address:"
+msgstr ""
+
+#: myopac.summary.id.primary
+msgid "Primary Identification"
+msgstr ""
+
+#: myopac.summary.barcode
+msgid "Active Barcode"
+msgstr ""
+
+#: myopac.summary.home
+msgid "Home Library"
+msgstr ""
+
+#: myopac.summary.genesis
+msgid "Account Creation Date"
+msgstr ""
+
+#: myopac.summary.addresses
+msgid "Addresses"
+msgstr ""
+
+#: myopac.summary.address.type
+msgid "Address Type"
+msgstr ""
+
+#: myopac.summary.address.street
+msgid "Street"
+msgstr ""
+
+#: myopac.summary.address.city
+msgid "City"
+msgstr ""
+
+#: myopac.summary.address.county
+msgid "County"
+msgstr ""
+
+#: myopac.summary.address.state
+msgid "State"
+msgstr ""
+
+#: myopac.summary.address.zip
+msgid "Zip"
+msgstr ""
+
+#: myopac.summary.username.error
+msgid "Please enter a username"
+msgstr ""
+
+#: myopac.summary.username.dup
+msgid "The requested username is not available.  Please choose a different username."
+msgstr ""
+
+#: myopac.summary.username.success
+msgid "Username successfully updated"
+msgstr ""
+
+#: myopac.summary.username.failure
+msgid "Username update failed"
+msgstr ""
+
+#: myopac.summary.username.invalid
+msgid "Username cannot contain spaces or have the same format as a barcode"
+msgstr ""
+
+#: myopac.summary.email.error
+msgid "Please enter a valid email address"
+msgstr ""
+
+#: myopac.summary.email.success
+msgid "Email address successfully updated"
+msgstr ""
+
+#: myopac.summary.email.failed
+msgid "Email address update failed"
+msgstr ""
+
+#: myopac.summary.password.error
+msgid "Passwords are empty or do not match"
+msgstr ""
+
+#: myopac.summary.password.success
+#: login.password.success
+msgid "Password successfully updated"
+msgstr ""
+
+#: myopac.summary.password.failure
+msgid "Password update failed"
+msgstr ""
+
+# =================================================================
+# Advanced Search Page
+# =================================================================
+#: opac.advanced.wizard.contains
+msgid "Selected field contains the following words"
+msgstr ""
+
+#: opac.advanced.wizard.nocontains
+msgid "Selected field does <u>not</u> contain the following words"
+msgstr ""
+
+#: opac.advanced.wizard.exact
+msgid "Selected field contains the <u>exact</u> phrase"
+msgstr ""
+
+#: opac.advanced.refined.title
+msgid "Refined Advanced Search"
+msgstr ""
+
+#: opac.advanced.refined.title_contains
+msgid "Title contains the following words"
+msgstr ""
+
+#: opac.advanced.refined.author_contains
+msgid "Author contains the following words"
+msgstr ""
+
+#: opac.advanced.refined.subject_contains
+msgid "Subject contains the following words"
+msgstr ""
+
+#: opac.advanced.refined.series_contains
+msgid "Series contains the following words"
+msgstr ""
+
+#: opac.advanced.refined.contains
+msgid "Contains"
+msgstr ""
+
+#: opac.advanced.refined.nocontains
+msgid "Does not contain"
+msgstr ""
+
+#: opac.advanced.refined.exact
+msgid "Matches Exactly"
+msgstr ""
+
+#: opac.advanced.marc.warning
+msgid "For Librarians"
+msgstr ""
+
+# ==========================================================
+# MARC expert search
+#: opac.advanced.marc.title
+#: search.marc
+msgid "MARC Expert Search"
+msgstr ""
+
+#: opac.advanced.marc.tag
+msgid "MARC Tag"
+msgstr ""
+
+#: opac.advanced.marc.ind1
+msgid "Indicator 1"
+msgstr ""
+
+#: opac.advanced.marc.ind2
+msgid "Indicator 2"
+msgstr ""
+
+#: opac.advanced.marc.subfield
+msgid "Subfield"
+msgstr ""
+
+#: opac.advanced.marc.value
+msgid "Value"
+msgstr ""
+
+#: opac.advanced.marc.addrow
+msgid "Add a new row"
+msgstr ""
+
+#: opac.advanced.quick.title
+#: sidebar.quick.search
+msgid "Quick Search"
+msgstr ""
+
+#: opac.advanced.quick.issn
+msgid "ISSN"
+msgstr ""
+
+#: opac.advanced.quick.lccn
+msgid "LCCN"
+msgstr ""
+
+# title control number
+#: opac.advanced.quick.tcn
+msgid "TCN"
+msgstr ""
+
+#: opac.advanced.quick.barcode
+msgid "Item Barcode"
+msgstr ""
+
+#: search.marc.tag
+msgid "Tag:"
+msgstr ""
+
+#: search.marc.subfield
+msgid "Subfield:"
+msgstr ""
+
+#: search.marc.value
+msgid "Value:"
+msgstr ""
+
+#: search.marc.add.row
+msgid "Add Row"
+msgstr ""
+
+# ==========================================================
+# Status bar
+# ==========================================================
+#: status.results
+msgid "Including results for"
+msgstr ""
+
+# =================================================================
+# More generic stuff
+# =================================================================
+#: opac.session_expiring
+msgid "Your login session will timeout in 1 minute unless there is activity."
+msgstr ""
+
+#: opac.session_expired
+msgid "Your login session has expired"
+msgstr ""
+
+#: navigate.home
+msgid "Home"
+msgstr ""
+
+#: navigate.home.title
+msgid "Go to the Home page"
+msgstr ""
+
+#: opac.navigate.advanced.title
+msgid "Go to the Advanced Search Page"
+msgstr ""
+
+#: navigate.myopac
+#: opac.navigate.myopac
+msgid "My Account"
+msgstr ""
+
+#: navigate.myopac.title
+msgid "Go to My OPAC"
+msgstr ""
+
+#: navigate.login
+msgid "Log in"
+msgstr ""
+
+#: navigate.login.title
+msgid "Log in for personalized features"
+msgstr ""
+
+#: navigate.logout
+#: navigate.logout.title
+msgid "Log out"
+msgstr ""
+
+#: opac.navigate.selectNewOrg
+msgid "Choose a different library"
+msgstr ""
+
+#: opac.navigate.selectOrg
+#: library.select.help
+msgid "Choose a library to search"
+msgstr ""
+
+#: navigate.loggedinas
+msgid "You are logged in as "
+msgstr ""
+
+#: navigate.loggedinas.title
+msgid "Logged in as..."
+msgstr ""
+
+#: navigate.titleGroupResults
+msgid "My Search Results"
+msgstr ""
+
+#: navigate.titleResults
+msgid "My Title Results"
+msgstr ""
+
+#: navigate.title.details
+msgid "My Title Details"
+msgstr ""
+
+#: navigate.record.details
+msgid "Record Details"
+msgstr ""
+
+#: footer.find.library
+msgid "Find a Library Near Me"
+msgstr ""
+
+#: footer.find.url
+msgid "http://www.georgialibraries.org/lib/directories/pineslibdir.html"
+msgstr ""
+
+#: footer.help.url
+msgid "http://open-ils.org/dokuwiki/doku.php?id=evergreen-user:opac_help"
+msgstr ""
+
+#: footer.help
+msgid "Help"
+msgstr ""
+
+#: footer.library.url
+msgid "http://www.georgialibraries.org/public/pines.html"
+msgstr ""
+
+#: footer.library.about
+msgid "About PINES"
+msgstr ""
+
+#: footer.union.url
+msgid "http://www.galileo.usg.edu/"
+msgstr ""
+
+#: footer.union
+msgid "GALILEO"
+msgstr ""
+
+#: footer.copyright
+msgid "Copyright &#xA9; 2006 Georgia Public Library Service"
+msgstr ""
+
+# Introduces the logo for the project
+#: footer.logo
+msgid "Powered by"
+msgstr ""
+
+# =================================================================
+# My OPAC
+# =================================================================
+#: myopac.account
+msgid "Account Summary"
+msgstr ""
+
+#: myopac.checkouts
+msgid "Items Checked Out"
+msgstr ""
+
+#: myopac.holds
+msgid "Items on Hold"
+msgstr ""
+
+#: myopac.fines
+msgid "Fines"
+msgstr ""
+
+#: myopac.preferences
+msgid "Account Preferences"
+msgstr ""
+
+# =================================================================
+# Sidebar
+# =================================================================
+#: sidebar.relevantSubjects.headerLabel
+msgid "Relevant Subjects"
+msgstr ""
+
+#: sidebar.relevantAuthors.headerLabel
+msgid "Relevant Authors"
+msgstr ""
+
+#: sidebar.relevantSeries.headerLabel
+msgid "Relevant Series"
+msgstr ""
+
+#: sidebar.relevantReviews.headerLabel
+#: rdetail.extras.reviews
+msgid "Reviews"
+msgstr ""
+
+#: sidebar.copy.not.found
+msgid "No copy with the requested barcode was found"
+msgstr ""
+
+# =================================================================
+# Search formats
+# =================================================================
+#: opac.search.books
+msgid "Books"
+msgstr ""
+
+#: opac.search.allFormats
+msgid "All Formats"
+msgstr ""
+
+#: opac.search.largePrint
+msgid "Large Print Books"
+msgstr ""
+
+#: opac.search.audioBooks
+msgid "Audiobooks"
+msgstr ""
+
+#: opac.search.videoRecordings
+msgid "Video Recordings"
+msgstr ""
+
+#: opac.search.music
+msgid "Music"
+msgstr ""
+
+#: opac.search.electronic
+msgid "Electronic Resources"
+msgstr ""
+
+#: opac.search.nowSearching
+msgid "Now Searching"
+msgstr ""
+
+# =================================================================
+# Page Titles
+# =================================================================
+#: opac.title.home
+msgid "Evergreen Home"
+msgstr ""
+
+#: opac.title.mresult
+msgid "Evergreen Title Groups"
+msgstr ""
+
+#: opac.title.rresult
+msgid "Evergreen Titles"
+msgstr ""
+
+#: opac.title.myopac
+msgid "Evergreen My Account"
+msgstr ""
+
+#: opac.title.rdetail
+msgid "Evergreen Title Details"
+msgstr ""
+
+#: opac.title.advanced
+msgid "Evergreen Advanced Search"
+msgstr ""
+
+#: opac.title.reqitems
+msgid "Evergreen Request Items"
+msgstr ""
+
+#: opac.title.cnbrowse
+msgid "Evergreen Call Number Browse"
+msgstr ""
+
+#: opac.holds.forMe
+msgid "Place this hold for myself"
+msgstr ""
+
+#: opac.holds.xulRecipient
+msgid "Enter recipient barcode"
+msgstr ""
+
+#: opac.holds.recipient
+msgid "Recipient"
+msgstr ""
+
+#: opac.holds.placeHold
+msgid "Place Hold"
+msgstr ""
+
+#: opac.holds.contactPhone
+msgid "Contact telephone number"
+msgstr ""
+
+#: opac.holds.contactEmail
+msgid "Contact email address"
+msgstr ""
+
+#: opac.holds.pickupLocation
+msgid "Pickup location"
+msgstr ""
+
+#: opac.holds.success
+msgid "Hold was successfully placed"
+msgstr ""
+
+#: opac.holds.failure
+msgid "Hold was not successfully placed"
+msgstr ""
+
+# =================================================================
+# Advanced
+# =================================================================
+#: advanced.search.title
+msgid "Search Input"
+msgstr ""
+
+#: advanced.add.row
+msgid "Add Search Row"
+msgstr ""
+
+#: advanced.search.submit
+msgid "Submit Search"
+msgstr ""
+
+#: advanced.search.filters
+msgid "Search Filters"
+msgstr ""
+
+#: advanced.item.form
+msgid "Item Form"
+msgstr ""
+
+#: advanced.item.type
+msgid "Item Type"
+msgstr ""
+
+#: advanced.link
+msgid "Advanced"
+msgstr ""
+
+#: advanced.basic.link
+msgid "Basic"
+msgstr ""
+
+#: advanced.literary.form
+msgid "Literary&nbsp;Form"
+msgstr ""
+
+#: advanced.non.fiction
+msgid "Non Fiction"
+msgstr ""
+
+#: advanced.fiction
+msgid "Fiction"
+msgstr ""
+
+#: advanced.language
+msgid "Language"
+msgstr ""
+
+#: advanced.audience
+msgid "Audience"
+msgstr ""
+
+#: advanced.adult
+msgid "Adult"
+msgstr ""
+
+#: advanced.juvenile
+msgid "Juvenile"
+msgstr ""
+
+#: advanced.general
+msgid "General"
+msgstr ""
+
+#: advanced.sort.criteria
+msgid "Sort Criteria"
+msgstr ""
+
+#: advanced.search.library
+msgid "Search Library"
+msgstr ""
+
+#: advanced.relevance
+msgid "Relevance"
+msgstr ""
+
+#: advanced.pubdate
+msgid "Publication date"
+msgstr ""
+
+#: advanced.sort.asc
+msgid "Ascending / A to Z"
+msgstr ""
+
+#: advanced.sort.desc
+msgid "Descending / Z to A"
+msgstr ""
+
+#: advanced.frbrize
+msgid "Group Formats and Editions"
+msgstr ""
+
+#: advanced.go
+msgid "Go"
+msgstr ""
+
+# =================================================================
+# Rdetail
+# =================================================================
+#: rdetail.print
+msgid "print these details"
+msgstr ""
+
+#: rdetail.cn.barcode
+msgid "Barcode"
+msgstr ""
+
+#: rdetail.cn.location
+msgid "Location"
+msgstr ""
+
+#: rdetail.cn.hold.age
+msgid "Age Hold Protection"
+msgstr ""
+
+#: rdetail.cn.genesis
+msgid "Create Date"
+msgstr ""
+
+#: rdetail.cn.holdable
+msgid "Holdable"
+msgstr ""
+
+#: rdetail.cn.more
+msgid "more info..."
+msgstr ""
+
+#: rdetail.cn.less
+msgid "less info"
+msgstr ""
+
+#: rdetail.cn.hold
+#: rdetail.copyInfo.hold
+msgid "place hold"
+msgstr ""
+
+#: rdetail.cn.disabled
+msgid "- Disabled -"
+msgstr ""
+
+#: rdetail.cn.note
+msgid "Copy Note"
+msgstr ""
+
+#: rdetail.cn.category
+msgid "Copy Category"
+msgstr ""
+
+#: rdetail.cn.print
+msgid "Print Page"
+msgstr ""
+
+#: rdetail.page.results
+msgid "First results page"
+msgstr ""
+
+# Result # &common.of; #
+#: rdetail.result
+msgid "Result"
+msgstr ""
+
+#: rdetail.start
+msgid "Start"
+msgstr ""
+
+#: rdetail.page.previous
+msgid "Previous page"
+msgstr ""
+
+#: rdetail.page.next
+msgid "Next page"
+msgstr ""
+
+#: rdetail.page.last
+msgid "Last results page"
+msgstr ""
+
+#: rdetail.end
+msgid "End"
+msgstr ""
+
+#: rdetail.more
+msgid "More Actions..."
+msgstr ""
+
+#: rdetail.bookbag.add
+msgid "Add to bookbag"
+msgstr ""
+
+#: rdetail.bookbag.create
+msgid "Create a new bookbag"
+msgstr ""
+
+#: rdetail.record.deleted
+msgid "This record has been deleted from the database. "
+"We recommend that you remove this title from any bookbags it may have been added to."
+msgstr ""
+
+#: rdetail.none
+msgid "(none)"
+msgstr ""
+
+#: rdetail.bookbag.add.success
+msgid "Item successfully added to bookbag"
+msgstr ""
+
+#: rdetail.bookbag.name
+msgid "Enter the name of the new bookbag"
+msgstr ""
+
+#: rdetail.bookbag.create.success
+msgid "Bookbag successfully created"
+msgstr ""
+
+#: rdetail.detailMain.headerLabel
+msgid "Record Summary"
+msgstr ""
+
+#: rdetail.detailMain.subjects
+msgid "Subjects"
+msgstr ""
+
+#: rdetail.detailMain.abstract
+msgid "Abstract"
+msgstr ""
+
+#: rdetail.detailMain.viewMarc
+msgid "View MARC"
+msgstr ""
+
+#: rdetail.detailMain.hideMarc
+msgid "Return to title details"
+msgstr ""
+
+#: rdetail.author.search
+msgid "Perform an author search"
+msgstr ""
+
+#: rdetail.copyInfo.headerLabel
+msgid "Copy Information"
+msgstr ""
+
+#: rdetail.copyInfo.callnumber
+msgid "Callnumber"
+msgstr ""
+
+#: rdetail.copyInfo.local
+msgid "View Copy Information for this location only"
+msgstr ""
+
+#: rdetail.copyInfo.all
+msgid "View copy information for all libraries"
+msgstr ""
+
+#: rdetail.copyInfo.actions
+msgid "Actions"
+msgstr ""
+
+#: rdetail.copyInfo.print
+msgid "Print Call Numbers for this library"
+msgstr ""
+
+#: rdetail.copyInfo.details
+msgid "details"
+msgstr ""
+
+#: rdetail.copyInfo.browse
+msgid "browse"
+msgstr ""
+
+#: rdetail.extras.summary
+msgid "Copy Summary"
+msgstr ""
+
+#: rdetail.extras.toc
+msgid "Table of Contents"
+msgstr ""
+
+#: rdetail.extras.excerpt
+msgid "Excerpt"
+msgstr ""
+
+#: rdetail.extras.author.notes
+msgid "Author Notes"
+msgstr ""
+
+#: rdetail.extras.annotation
+msgid "Annotation"
+msgstr ""
+
+#: rdetail.extras.marc
+msgid "MARC Record"
+msgstr ""
+
+#: rdetail.extras.call.null
+msgid "There are no call numbers for this item at this location."
+msgstr ""
+
+#: rdetail.extras.call.local
+msgid "Local Call Numbers:"
+msgstr ""
+
+#: rdetail.loading
+msgid "Loading copy infomation..."
+msgstr ""
+
+#: rdetail.noneAvailable
+msgid " * There are no copies in this location"
+msgstr ""
+
+#: rdetail.summary.online
+msgid "Online Resources"
+msgstr ""
+
+#: result.sort_by
+msgid "Sort Results by Relevance"
+msgstr ""
+
+#: result.sort_by.title
+msgid "Sort Results by Title"
+msgstr ""
+
+#: result.sort_by.author
+msgid "Sort Results by Author"
+msgstr ""
+
+#: result.sort_by.pubdate
+msgid "Sort Results by Publication Date"
+msgstr ""
+
+#: result.limit2avail
+msgid "Limit to Available"
+msgstr ""
+
+#: result.info.copies
+msgid "Available copies / Total copies"
+msgstr ""
+
+#: result.info.no.items
+msgid "No items with the selected format were found in this location."
+msgstr ""
+
+#: result.info.format.items
+msgid "Listed below are all items in the catalog with the chosen format."
+msgstr ""
+
+#: result.info.show
+msgid "Show records for"
+msgstr ""
+
+#: result.lowhits.few
+msgid "Few hits were returned for your search."
+msgstr ""
+
+#: result.lowhits.zero
+msgid "Zero hits were returned for your search."
+msgstr ""
+
+#: result.lowhits.did.you.mean
+msgid "Maybe you meant:"
+msgstr ""
+
+#: result.lowhits.formats
+msgid "You will find more hits when searching all item formats:"
+msgstr ""
+
+#: result.lowhits.formats.search
+msgid "Search again with all formats?"
+msgstr ""
+
+#: result.lowhits.related
+msgid "You may also like to try these related searches:"
+msgstr ""
+
+#: result.lowhits.expand
+msgid "You may also wish to expand your search range to:"
+msgstr ""
+
+#: result.lowhits.class
+msgid "You can try searching the same terms by:"
+msgstr ""
+
+#: result.lowhits.title
+msgid "title"
+msgstr ""
+
+#: result.lowhits.author
+msgid "author"
+msgstr ""
+
+#: result.lowhits.subject
+msgid "subject"
+msgstr ""
+
+#: result.lowhits.series
+msgid "series"
+msgstr ""
+
+#: result.lowhits.keyword
+msgid "keyword"
+msgstr ""
+
+#: result.table.keyword
+msgid "View titles for this record"
+msgstr ""
+
+#: result.table.author
+msgid "Perform an Author Search"
+msgstr ""
+
+#: common.call.number.label
+msgid "Call Number:"
+msgstr ""
+
+#: common.isbn.label
+msgid "ISBN:"
+msgstr ""
+
+#: common.issn.label
+msgid "ISSN:"
+msgstr ""
+
+#: common.copy.barcode.label
+msgid "Copy Barcode:"
+msgstr ""
+
+#: common.hold.place
+msgid "Place hold for me"
+msgstr ""
+
+#: common.hold.check
+msgid "Checking for possibility of hold fulfillment..."
+msgstr ""
+
+#: common.hold.create
+msgid "Create / Edit a Hold"
+msgstr ""
+
+#: common.hold.update
+msgid "Update Hold"
+msgstr ""
+
+#: common.hold.type.label
+msgid "Hold Type:"
+msgstr ""
+
+#: common.hold.volume
+msgid "Volume Hold"
+msgstr ""
+
+#: common.hold.copy
+msgid "Copy Hold"
+msgstr ""
+
+#: common.hold.advanced
+msgid "Advanced Hold Options"
+msgstr ""
+
+#: common.hold.delivery
+msgid "Please select a physical location where your hold can be delivered."
+msgstr ""
+
+#: common.hold.exists
+msgid "A hold already exists on the requested item."
+msgstr ""
+
+#: common.hold.exists.override
+msgid "A hold already exists on the requested "
+"item. Would you like to create the hold anyway?"
+msgstr ""
+
+#: common.hold.barred
+msgid "PATRON BARRED. Please see any notes in the "
+"\"Staff Notes\" section of your \"My Account\" page or contact your local library."
+msgstr ""
+
+#: common.hold.item.invalid
+msgid "This hold is no longer valid. It's likely that the "
+"target for the hold was deleted from the system.  Please cancel this hold and "
+"place a new one."
+msgstr ""
+
+#: common.hold.patron.invalid
+msgid "The patron barcode entered as the hold recipient is invalid."
+msgstr ""
+
+# Was (??), perhaps change to a button or icon?
+#: common.help
+msgid "(Help)"
+msgstr ""
+
+#: common.phone.format.help
+msgid "The phone number does not have the correct format. The expected format is XXX-YYY-ZZZZ"
+msgstr ""
+
+#: common.hold.failed
+msgid "No items were found that could fulfill the requested holds. "
+"It's possible that choosing a different format will result in a successful hold. "
+"It is also possible that you have exceeded the number of allowable holds. "
+"For further information, please consult your local librarian."
+msgstr ""
+
+#: common.control.click
+msgid "(control-click to select multiple formats)"
+msgstr ""
+
+#: common.format.alternatives
+msgid "Acceptable Alternative Formats:"
+msgstr ""
+
+#: common.phone.format
+msgid "(XXX-YYY-ZZZZ)"
+msgstr ""
+
+#: common.phone.enable
+msgid "Enable phone notifications for this hold?"
+msgstr ""
+
+#: common.email.enable
+msgid "Enable email notifications for this hold?"
+msgstr ""
+
+#: common.email.none
+msgid "(Patron has no configured email address)"
+msgstr ""
+
+#: common.email.set
+msgid "(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> for setting your email address)"
+msgstr ""
+
+#: common.keywords.label
+msgid "Keywords:"
+msgstr ""
+
+#: common.physical.label
+msgid "Physical Description:"
+msgstr ""
+
+#: common.series.label
+msgid "Series:"
+msgstr ""
+
+#: common.subject.label
+msgid "Subject:"
+msgstr ""
+
+#: common.title.label
+msgid "Title:"
+msgstr ""
+
+#: common.author.label
+msgid "Author:"
+msgstr ""
+
+#: common.format.label
+msgid "Format:"
+msgstr ""
+
+#: library.select
+msgid "Find results in"
+msgstr ""
+
+#: library.select.label
+msgid "Choose a different library..."
+msgstr ""
+
+#: login.username
+msgid "Enter your username or library barcode"
+msgstr ""
+
+#: login.password.change
+msgid "Change Password"
+msgstr ""
+
+#: login.first.time
+msgid "This appears to be the first time you have logged in. "
+"You will need to change your password."
+msgstr ""
+
+#: login.password.current.enter
+msgid "Enter your current password"
+msgstr ""
+
+#: login.password.new.enter
+msgid "Enter the new password"
+msgstr ""
+
+#: login.password.new.reenter
+msgid "Re-type the new password for verification"
+msgstr ""
+
+#: login.password.update
+msgid "Update Password"
+msgstr ""
+
+#: login.password.nomatch
+msgid "Passwords do not match"
+msgstr ""
+
+#: login.password.strength
+msgid "The password provided is not strong enough."
+msgstr ""
+
+#: login.barcode.inactive
+msgid "The barcode used to login is marked as inactive.  Please contact your local library."
+msgstr ""
+
+#: login.account.inactive
+msgid "This account has been deactivated.  Please contact your local library."
+msgstr ""
+
+#: login.failed
+msgid "Login failed. The username or password provided was not valid. "
+"Ensure Caps-Lock is off and try again or contact your local library."
+msgstr ""
+
+#: button.go
+msgid "Go!"
+msgstr ""
+
+# =================================================================
+# Slimpac Simple Search
+# =================================================================
+#: slimpac.start.title
+msgid "Simple Search"
+msgstr ""
+
+#: slimpac.start.nowSearching
+msgid "Now searching: "
+msgstr ""
+
+#: slimpac.start.dynamic
+msgid "Dynamic Catalog"
+msgstr ""
+
+# =================================================================
+# Slimpac Advanced Search
+# =================================================================
+#: slimpac.advanced.language
+msgid "Item Language"
+msgstr ""
+
+#: slimpac.advanced.create_date
+msgid "Record Creation Date"
+msgstr ""
+
+#: slimpac.advanced.edit_date
+msgid "Record Edit Date"
+msgstr ""
+
+#: opac.image_provided
+msgid "Image provided by"
+msgstr ""
+
+#: vendor.name
+msgid "Amazon"
+msgstr ""
+
+#: vendor.base_link
+msgid "http://amazon.com/dp/"
+msgstr ""

Deleted: trunk/build/i18n/po/fm_IDL.pot
===================================================================
--- trunk/build/i18n/po/fm_IDL.pot	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/po/fm_IDL.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,2148 +0,0 @@
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2007-12-11 13:27:35-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: field.aihu.org_unit.label:240 field.ancihu.org_unit.label:257
-msgid "Using Library"
-msgstr ""
-
-#: field.rxbt.voided.label:2475
-msgid "Voided Billing Amount"
-msgstr ""
-
-#: field.bre.source.label:524
-msgid "Record Source"
-msgstr ""
-
-#: field.bre.marc.label:522
-msgid "MARC21Slim"
-msgstr ""
-
-#: field.mbts.xact_start.label:179
-msgid "Transaction Start Time"
-msgstr ""
-
-#: field.mrd.vr_format.label:906
-msgid "Video Recording Format"
-msgstr ""
-
-#: field.aua.within_city_limits.label:957
-msgid "Within City Limits?"
-msgstr ""
-
-#: field.rhrr.hold_type.label:2460
-msgid "Hold Request Type"
-msgstr ""
-
-#: field.au.demographic.label:698
-msgid "Demographic Info"
-msgstr ""
-
-#: class.mwp.label:1630
-msgid "Work Payment"
-msgstr ""
-
-#: field.au.ident_value2.label:679
-msgid "Secondary Identification"
-msgstr ""
-
-#: field.mbts.last_payment_note.label:172
-#: field.rccbs.last_payment_note.label:2604
-msgid "Last Payment Note"
-msgstr ""
-
-#: field.au.expire_date.label:671
-msgid "Privilege Expiration Date"
-msgstr ""
-
-#: field.ac.id.label:1346
-msgid "Card ID"
-msgstr ""
-
-#: field.mp.credit_card_payment.label:2029
-#: field.mbp.credit_card_payment.label:2060
-msgid "Credit Card Payment Detail"
-msgstr ""
-
-#: class.rssr.label:2372
-msgid "Simple Record Extracts"
-msgstr ""
-
-#: field.au.id.label:675 field.rud.id.label:2433
-msgid "User ID"
-msgstr ""
-
-#: field.asc.entries.label:1328 field.actsc.entries.label:1358
-msgid "Entries"
-msgstr ""
-
-#: field.acp.dummy_title.label:1784
-msgid "Precat Dummy Title"
-msgstr ""
-
-#: field.acpn.create_date.label:747
-msgid "Note Creation Date/Time"
-msgstr ""
-
-#: field.aua.street2.label:954
-msgid "Street (2)"
-msgstr ""
-
-#: field.mcrp.amount.label:1408 field.mwp.amount.label:1636
-#: field.mgp.amount.label:1657 field.mckp.amount.label:1745
-#: field.mp.amount.label:2021 field.mbp.amount.label:2052
-#: field.mndp.amount.label:2083 field.mdp.amount.label:2106
-#: field.mb.amount.label:2189
-msgid "Amount"
-msgstr ""
-
-#: field.mcrp.id.label:1410
-msgid "Pyament ID"
-msgstr ""
-
-#: field.au.claims_returned_count.label:664
-msgid "Claims-returned Count"
-msgstr ""
-
-#: field.bre.series_field_entries.label:534
-msgid "Indexed Series Field Entries"
-msgstr ""
-
-#: field.rccbs.demographic_general_division.label:2611
-msgid "User Age Demographic"
-msgstr ""
-
-#: field.rccc.dewey.label:2522
-msgid "Call Number Dewey/Prefix"
-msgstr ""
-
-#: field.crahp.name.label:1822 field.crmf.name.label:1834
-msgid "Rule Name"
-msgstr ""
-
-#: field.clfm.code.label:1624
-msgid "LitF Code"
-msgstr ""
-
-#: field.mrd.type_mat.label:905
-msgid "TMat"
-msgstr ""
-
-#: class.mckp.label:1739 field.mdp.check_payment.label:2117
-msgid "Check Payment"
-msgstr ""
-
-#: field.rccc.stat_cat_1.label:2529
-msgid "Legacy CAT1 Link"
-msgstr ""
-
-#: field.mfr.tag.label:770
-msgid "Tag"
-msgstr ""
-
-#: field.aout.org_units.label:1468
-msgid "Org Units"
-msgstr ""
-
-#: field.rccbs.profile_group.label:2617
-msgid "User Profile Group"
-msgstr ""
-
-#: field.ahr.bib_rec.label:1249
-msgid "Bib Record link"
-msgstr ""
-
-#: field.ahn.method.label:1106
-msgid "Notification Method"
-msgstr ""
-
-#: field.au.groups.label:695
-msgid "Additional Permission Groups"
-msgstr ""
-
-#: field.ahr.request_lib.label:1238
-msgid "Requesting Library"
-msgstr ""
-
-#: field.ahtc.source.label:2170
-msgid "Sending Library"
-msgstr ""
-
-#: field.rccc.call_number.label:2520
-msgid "Call Number Link"
-msgstr ""
-
-#: field.ahr.target.label:1243
-msgid "Target Object ID"
-msgstr ""
-
-#: field.circ.checkin_lib.label:1002 field.rodcirc.checkin_lib.label:2667
-msgid "Check In Library"
-msgstr ""
-
-#: field.aua.state.label:952
-msgid "State"
-msgstr ""
-
-#: field.mp.voided.label:2027 field.mbp.voided.label:2058
-#: field.mndp.voided.label:2089 field.mdp.voided.label:2114
-#: field.mb.voided.label:2195
-msgid "Voided?"
-msgstr ""
-
-#: class.citm.label:1148
-msgid "Item Type Map"
-msgstr ""
-
-#: field.rccbs.billing_location_shortname.label:2585
-msgid "Billing Location Short (Policy) Name"
-msgstr ""
-
-#: field.rud.general_division.label:2435
-msgid "General Demographic Division"
-msgstr ""
-
-#: field.asvq.responses.label:151 field.asv.responses.label:1179
-msgid "Responses"
-msgstr ""
-
-#: field.mrd.item_form.label:899
-msgid "Form"
-msgstr ""
-
-#: field.aou.ou_type.label:1281 class.aout.label:1455
-msgid "Organizational Unit Type"
-msgstr ""
-
-#: field.mcrp.payment_ts.label:1412 field.mwp.payment_ts.label:1640
-#: field.mgp.payment_ts.label:1661 field.mckp.payment_ts.label:1751
-msgid "Payment Timestamp"
-msgstr ""
-
-#: field.mfr.ind1.label:766
-msgid "Indicator 1"
-msgstr ""
-
-#: field.mfr.ind2.label:767
-msgid "Indicator 2"
-msgstr ""
-
-#: field.bre.call_numbers.label:511
-msgid "Call Numbers"
-msgstr ""
-
-#: field.mp.payment_ts.label:2024 field.mbp.payment_ts.label:2055
-#: field.mndp.payment_ts.label:2086 field.mdp.payment_ts.label:2109
-msgid "Payment Date/Time"
-msgstr ""
-
-#: field.ac.active.label:1344
-msgid "IsActive?"
-msgstr ""
-
-#: None:723
-msgid "Check-ins Performed as Staff"
-msgstr ""
-
-#: field.au.other_phone.label:684
-msgid "Other Phone"
-msgstr ""
-
-#: field.bre.simple_record.label:536
-msgid "Simple Record Extracts "
-msgstr ""
-
-#: class.actsce.label:1575
-msgid "User Stat Cat Entry"
-msgstr ""
-
-#: field.rccc.stat_cat_2_value.label:2536
-msgid "Legacy CAT2 Value"
-msgstr ""
-
-#: class.acn.label:442 field.acp.call_number.label:1772
-msgid "Call Number/Volume"
-msgstr ""
-
-#: field.mrd.control_type.label:896
-msgid "Ctrl"
-msgstr ""
-
-#: field.au.family_name.label:672
-msgid "Last Name"
-msgstr ""
-
-#: field.rccc.stat_cat_2.label:2530
-msgid "Legacy CAT2 Link"
-msgstr ""
-
-#: field.au.stat_cat_entries.label:655
-msgid "Statistical Category Entries"
-msgstr ""
-
-#: field.mrd.audience.label:892
-msgid "Audn"
-msgstr ""
-
-#: class.ancihu.label:250
-msgid "Non-cataloged In House Use"
-msgstr ""
-
-#: field.ahr.holdable_formats.label:1233
-msgid "Holdable Formats (for M-type hold)"
-msgstr ""
-
-#: field.acp.notes.label:1796
-msgid "Copy Notes"
-msgstr ""
-
-#: field.mbts.total_owed.label:175
-msgid "Total Owed"
-msgstr ""
-
-#: field.au.ident_type2.label:677
-msgid "Secondary Identification Type"
-msgstr ""
-
-#: field.actscecm.stat_cat.label:1943
-msgid "Statistical Category"
-msgstr ""
-
-#: field.mbts.last_payment_ts.label:173
-msgid "Last Payment Timestamp"
-msgstr ""
-
-#: field.ahr.usr.label:1244
-msgid "Hold User"
-msgstr ""
-
-#: class.mdp.label:2101
-msgid "Payments: Desk"
-msgstr ""
-
-#: field.asvr.answer.label:296
-msgid "Answer"
-msgstr ""
-
-#: field.aun.pub.label:194 field.acpn.pub.label:751
-#: field.acpl.opac_visible.label:1125
-msgid "Is OPAC Visible?"
-msgstr ""
-
-#: field.ahr.notifications.label:1248
-msgid "Notifications"
-msgstr ""
-
-#: field.aou.shortname.label:1283
-msgid "Short (Policy) Name"
-msgstr ""
-
-#: field.asvr.answer_date.label:297
-msgid "Answer Date/Time"
-msgstr ""
-
-#: field.rccc.dewey_block_hundreds.label:2534
-msgid "Dewey Block -- Hundreds"
-msgstr ""
-
-#: field.acn.deleted.label:450 field.au.deleted.label:696
-#: field.acp.deleted.label:1780
-msgid "Is Deleted"
-msgstr ""
-
-#: field.acn.edit_date.label:451 field.acp.edit_date.label:1785
-msgid "Last Edit Date/Time"
-msgstr ""
-
-#: field.mbts.xact_type.label:180 field.rccbs.xact_type.label:2598
-msgid "Transaction Type"
-msgstr ""
-
-#: field.mbt.xact_start.label:1557 field.rccbs.xact_start.label:2596
-msgid "Transaction Start Date/Time"
-msgstr ""
-
-#: class.mbts.label:162
-msgid "Billable Transaction Summary"
-msgstr ""
-
-#: field.mb.billing_ts.label:2190
-msgid "Billing Timestamp"
-msgstr ""
-
-#: field.au.billing_address.label:662
-msgid "Physical Address"
-msgstr ""
-
-#: field.mrd.item_lang.label:900
-msgid "Lang"
-msgstr ""
-
-#: field.actsce.stat_cat.label:1582 field.asce.stat_cat.label:2150
-msgid "Stat Cat"
-msgstr ""
-
-#: field.mrd.id.label:898
-msgid "Descriptor ID"
-msgstr ""
-
-#: field.cit.name.label:141
-msgid "Identification Name"
-msgstr ""
-
-#: field.rccc.dewey_range_tens.label:2531
-msgid "Dewey Range -- Tens"
-msgstr ""
-
-#: field.mdp.accepting_usr.label:2112
-msgid "Accepting User"
-msgstr ""
-
-#: field.rssr.biblio_record.label:2388 field.rsr.biblo_record.label:2421
-msgid "Full Bibliographic record"
-msgstr ""
-
-#: field.mb.billing_type.label:2191
-msgid "Billing Type"
-msgstr ""
-
-#: class.iatc.label:2628
-msgid "Inter-system Copy Transit"
-msgstr ""
-
-#: class.aihu.label:233
-msgid "In House Use"
-msgstr ""
-
-#: field.circ.circ_type.label:1030 class.rcirct.label:2441
-#: field.rcirct.type.label:2447 field.rccc.circ_type.label:2509
-#: field.rodcirc.circ_type.label:2694
-msgid "Circulation Type"
-msgstr ""
-
-#: field.ahtc.hold.label:2166
-msgid "Hold requiring Transit"
-msgstr ""
-
-#: field.ahr.transit.label:1224
-msgid "Transit"
-msgstr ""
-
-#: field.aou.ill_address.label:1278
-msgid "ILL Receiving Address"
-msgstr ""
-
-#: field.aout.name.label:1465
-msgid "Type Name"
-msgstr ""
-
-#: field.rssr.author.label:2383 field.rsr.author.label:2407
-msgid "Author (normalized)"
-msgstr ""
-
-#: field.circ.stop_fines_time.label:1021
-#: field.rodcirc.stop_fines_time.label:2686
-msgid "Fine Stop Date/Time"
-msgstr ""
-
-#: field.au.settings.label:653
-msgid "All User Settings"
-msgstr ""
-
-#: field.acn.copies.label:447
-msgid "Copies"
-msgstr ""
-
-#: field.ahr.cancel_time.label:1245
-msgid "Hold Cancel Date/Time"
-msgstr ""
-
-#: field.pgt.perm_interval.label:1848
-msgid "User Expiration Interval"
-msgstr ""
-
-#: field.circ.fine_interval.label:1011 field.rodcirc.fine_interval.label:2676
-msgid "Fine Interval"
-msgstr ""
-
-#: class.mrd.label:887
-msgid "Basic Record Descriptor"
-msgstr ""
-
-#: field.circ.billing_total.label:1031 field.mg.billing_total.label:1524
-#: field.mbt.billing_total.label:1562 field.rodcirc.billing_total.label:2695
-msgid "Billing Totals"
-msgstr ""
-
-#: class.aua.label:941
-msgid "User Address"
-msgstr ""
-
-#: class.aou.label:1269
-msgid "Organizational Unit"
-msgstr ""
-
-#: field.ancc.circ_time.label:1878 field.rccc.xact_start.label:2508
-msgid "Circulation Date/Time"
-msgstr ""
-
-#: field.mwp.id.label:1638 field.mgp.id.label:1659 field.mckp.id.label:1749
-#: field.mp.id.label:2022 field.mbp.id.label:2053 field.mndp.id.label:2084
-#: field.mdp.id.label:2107
-msgid "Payment ID"
-msgstr ""
-
-#: field.rssr.issn.label:2387 field.rsr.issn.label:2414
-msgid "ISSN"
-msgstr ""
-
-#: field.au.usrname.label:694
-msgid "OPAC/Staff Client User Name"
-msgstr ""
-
-#: field.rssr.title.label:2382 field.rsr.title.label:2405
-msgid "Title Proper (normalized)"
-msgstr ""
-
-#: field.ahr.selection_depth.label:1241
-msgid "Item Selection Depth"
-msgstr ""
-
-#: field.circ.circ_lib.label:1005 field.acp.circ_lib.label:1774
-#: field.ancc.circ_lib.label:1877 field.rodcirc.circ_lib.label:2670
-msgid "Circulating Library"
-msgstr ""
-
-#: field.rxpt.unvoided.label:2488
-msgid "Unvoided Paid Amount"
-msgstr ""
-
-#: field.aou.opac_visible.label:1286 field.asc.opac_visible.label:1331
-#: field.actsc.opac_visible.label:1361 field.acp.opac_visible.label:1792
-msgid "OPAC Visible"
-msgstr ""
-
-#: field.cam.code.label:426
-msgid "Audience Code"
-msgstr ""
-
-#: field.rssr.publisher.label:2384 field.rsr.publisher.label:2408
-msgid "Publisher (normalized)"
-msgstr ""
-
-#: field.mbts.usr.label:177
-msgid "Billed User"
-msgstr ""
-
-#: field.circ.max_fine_rule.label:1014 class.crmf.label:1827
-#: field.rodcirc.max_fine_rule.label:2679
-msgid "Max Fine Rule"
-msgstr ""
-
-#: field.rccc.circ_lib_id.label:2507
-msgid "Library Circulation Location Link"
-msgstr ""
-
-#: field.au.alert_message.label:660 field.acp.alert_message.label:1770
-msgid "Alert Message"
-msgstr ""
-
-#: field.rccbs.last_payment_ts.label:2603
-msgid "Last Payment Date/Time"
-msgstr ""
-
-#: field.mbts.id.label:168 field.mg.id.label:1516 field.mbt.id.label:1554
-#: field.mwp.xact.label:1641 field.mgp.xact.label:1662
-#: field.rxbt.xact.label:2473 field.rxpt.xact.label:2487
-#: field.rccbs.id.label:2583
-msgid "Transaction ID"
-msgstr ""
-
-#: field.rssr.quality.label:2379 field.rsr.quality.label:2402
-msgid "Overall Record Quality"
-msgstr ""
-
-#: field.au.barred.label:661
-msgid "Barred"
-msgstr ""
-
-#: field.ahn.notify_time.label:1109
-msgid "Notification Date/Time"
-msgstr ""
-
-#: field.bre.subject_field_entries.label:531
-msgid "Indexed Subject Field Entries"
-msgstr ""
-
-#: class.acpl.label:1116
-msgid "Copy/Shelving Location"
-msgstr ""
-
-#: field.auoi.org_unit.label:110
-msgid "Allowed Org Unit"
-msgstr ""
-
-#: class.clfm.label:1619 field.rccc.lit_form.label:2514
-msgid "Literary Form"
-msgstr ""
-
-#: field.ahr.prev_check_time.label:1237
-msgid "Last Targeting Date/Time"
-msgstr ""
-
-#: field.asvr.response_group_id.label:301
-msgid "Response Group ID"
-msgstr ""
-
-#: class.cifm.label:432
-msgid "Item Form Map"
-msgstr ""
-
-#: class.aus.label:204
-msgid "User Setting"
-msgstr ""
-
-#: field.circ.duration.label:1009 field.cnct.circ_duration.label:1445
-#: field.rodcirc.duration.label:2674
-msgid "Circulation Duration"
-msgstr ""
-
-#: field.rccc.language.label:2513
-msgid "Item Language"
-msgstr ""
-
-#: class.mbp.label:2047
-msgid "Payments: Brick-and-mortar"
-msgstr ""
-
-#: class.actscecm.label:1937
-msgid "User Statistical Category Entry"
-msgstr ""
-
-#: field.ahn.note.label:1107
-msgid "Notification Note"
-msgstr ""
-
-#: field.circ.recuring_fine_rule.label:1018
-#: field.rodcirc.recuring_fine_rule.label:2683
-msgid "Recurring Fine Rule"
-msgstr ""
-
-#: field.circ.duration_rule.label:1010 field.rodcirc.duration_rule.label:2675
-msgid "Circ Duration Rule"
-msgstr ""
-
-#: field.aout.opac_label.label:1466
-msgid "OPAC Label"
-msgstr ""
-
-#: field.asv.required.label:1187
-msgid "Is Required?"
-msgstr ""
-
-#: field.au.survey_responses.label:656
-msgid "Survey Responses"
-msgstr ""
-
-#: field.atc.id.label:275 field.ahtc.id.label:2167 field.iatc.id.label:2645
-msgid "Transit ID"
-msgstr ""
-
-#: field.rccbs.usr_home_ou_name.label:2590
-msgid "User Home Library Name"
-msgstr ""
-
-#: field.au.credit_forward_balance.label:666
-msgid "User Credit Balance"
-msgstr ""
-
-#: class.rsce2.label:2564
-msgid "CAT2 Entry"
-msgstr ""
-
-#: field.aun.create_date.label:191 field.acp.create_date.label:1778
-msgid "Creation Date/Time"
-msgstr ""
-
-#: field.aout.id.label:1464
-msgid "Type ID"
-msgstr ""
-
-#: field.circ.payments.label:1028 field.rodcirc.payments.label:2692
-msgid "Transaction Payments"
-msgstr ""
-
-#: class.bre.label:506
-msgid "Bibliographic Record"
-msgstr ""
-
-#: field.ahr.eligible_copies.label:1250
-msgid "Eligible Copies"
-msgstr ""
-
-#: field.mp.cash_payment.label:2028 field.mbp.cash_payment.label:2059
-msgid "Cash Payment Detail"
-msgstr ""
-
-#: field.mfr.id.label:765
-msgid "Field ID"
-msgstr ""
-
-#: field.bre.tcn_value.label:526 field.rssr.tcn_value.label:2381
-#: field.rsr.tcn_value.label:2404
-msgid "TCN Value"
-msgstr ""
-
-#: field.rccbs.total_owed.label:2601
-msgid "Total Billed"
-msgstr ""
-
-#: class.aun.label:186
-msgid "User Note"
-msgstr ""
-
-#: class.actsc.label:1353
-msgid "User Statistical Category"
-msgstr ""
-
-#: class.pgt.label:1838
-msgid "Permission Group"
-msgstr ""
-
-#: field.mp.forgive_payment.label:2033 field.mbp.forgive_payment.label:2064
-#: field.mndp.forgive_payment.label:2091
-msgid "Forgive Payment Detail"
-msgstr ""
-
-#: field.rhrr.target.label:2459
-msgid "Hold Target"
-msgstr ""
-
-#: field.au.suffix.label:691
-msgid "Suffix/Title"
-msgstr ""
-
-#: field.asvr.effective_date.label:298
-msgid "Effective Answer Date/Time"
-msgstr ""
-
-#: field.acp.deposit.label:1781
-msgid "Is Deposit Required"
-msgstr ""
-
-#: field.ahr.capture_time.label:1225
-msgid "Capture Date/Time"
-msgstr ""
-
-#: field.mbts.balance_owed.label:167 field.rccbs.balance_owed.label:2616
-msgid "Balance Owed"
-msgstr ""
-
-#: field.aua.street1.label:953
-msgid "Street (1)"
-msgstr ""
-
-#: field.rhrr.bib_record.label:2461
-msgid "Target Bib Record"
-msgstr ""
-
-#: class.ac.label:1339
-msgid "Library Card"
-msgstr ""
-
-#: field.au.second_given_name.label:689
-msgid "Middle Name"
-msgstr ""
-
-#: field.aihu.staff.label:241 field.ancihu.staff.label:258
-msgid "Recording Staff"
-msgstr ""
-
-#: field.aou.billing_address.label:1275
-msgid "Billing Address"
-msgstr ""
-
-#: field.acp.stat_cat_entries.label:1768
-msgid "Statistical Catagory Entries"
-msgstr ""
-
-#: field.crahp.id.label:1821 field.crmf.id.label:1833
-msgid "Rule ID"
-msgstr ""
-
-#: field.acp.loan_duration.label:1790
-msgid "Loan Duration"
-msgstr ""
-
-#: field.mrd.item_type.label:901 field.aua.address_type.label:946
-msgid "Type"
-msgstr ""
-
-#: field.ahr.expire_time.label:1228
-msgid "Hold Expire Date/Time"
-msgstr ""
-
-#: field.bre.full_record_entries.label:535
-msgid "Flattened MARC Fields "
-msgstr ""
-
-#: class.mg.label:1510
-msgid "Grocery Transaction"
-msgstr ""
-
-#: field.acn.record.label:456
-msgid "Bib Record"
-msgstr ""
-
-#: field.rccbs.patron_city.label:2613
-msgid "User City"
-msgstr ""
-
-#: field.ahn.hold.label:1104 field.aufh.hold.label:1913
-msgid "Hold"
-msgstr ""
-
-#: field.cifm.value.label:438
-msgid "Item Form"
-msgstr ""
-
-#: class.cit.label:135
-msgid "Identification Type"
-msgstr ""
-
-#: field.ahr.requestor.label:1240
-msgid "Requesting User"
-msgstr ""
-
-#: field.auoi.opt_in_ws.label:107 class.aws.label:121
-msgid "Workstation"
-msgstr ""
-
-#: field.mcrp.xact.label:1413 field.mb.xact.label:2197
-msgid "Transaction"
-msgstr ""
-
-#: field.rccc.circ_lib.label:2506
-msgid "Library Circulation Location Short (Policy) Name"
-msgstr ""
-
-#: field.acp.fine_level.label:1787
-msgid "Fine Level"
-msgstr ""
-
-#: field.rxpt.total.label:2490
-msgid "Total Paid Amount"
-msgstr ""
-
-#: field.aun.id.label:193 field.acpn.id.label:749
-msgid "Note ID"
-msgstr ""
-
-#: field.pgt.application_perm.label:1849
-msgid "Required Permission"
-msgstr ""
-
-#: field.rsr.uniform_title.label:2406
-msgid "Uniform Title (normalized)"
-msgstr ""
-
-#: field.mg.xact_finish.label:1519
-msgid "Transaction Finish Timestamp"
-msgstr ""
-
-#: class.ahr.label:1218
-msgid "Hold Request"
-msgstr ""
-
-#: field.bre.notes.label:529
-msgid "Non-MARC Record Notes"
-msgstr ""
-
-#: field.ancihu.item_type.label:256 field.citm.value.label:1154
-msgid "Item Type"
-msgstr ""
-
-#: field.ahr.phone_notify.label:1235
-msgid "Notifications Phone Number"
-msgstr ""
-
-#: field.mg.billable_transaction.label:1523
-msgid "Billable Transaction link"
-msgstr ""
-
-#: field.circ.id.label:1012 field.rodcirc.id.label:2677
-msgid "Circ ID"
-msgstr ""
-
-#: field.bre.deleted.label:516
-msgid "Is Deleted?"
-msgstr ""
-
-#: field.mbt.billings.label:1560
-msgid "Billing Line Items"
-msgstr ""
-
-#: field.acp.circulate.label:1776
-msgid "Can Circulate"
-msgstr ""
-
-#: field.bre.last_xact_id.label:521
-msgid "Last Transaction ID"
-msgstr ""
-
-#: field.mp.check_payment.label:2031 field.mbp.check_payment.label:2062
-msgid "Check Payment Detail"
-msgstr ""
-
-#: field.ahr.id.label:1234 field.rhrr.id.label:2458
-msgid "Hold ID"
-msgstr ""
-
-#: field.mbts.last_billing_ts.label:170
-msgid "Last Billing Timestamp"
-msgstr ""
-
-#: field.pgt.usergroup.label:1850
-msgid "Is User Group"
-msgstr ""
-
-#: field.rccbs.usr.label:2594
-msgid "User Link"
-msgstr ""
-
-#: field.acpl.circulate.label:1121
-msgid "Can Circulate?"
-msgstr ""
-
-#: field.acp.stat_cat_entry_copy_maps.label:1797
-msgid "Stat-Cat entry maps"
-msgstr ""
-
-#: field.aout.children.label:1460
-msgid "Subordinate Types"
-msgstr ""
-
-#: field.bre.fixed_fields.label:512
-msgid "Fixed Field Entry"
-msgstr ""
-
-#: field.bre.fingerprint.label:519 field.rssr.fingerprint.label:2378
-#: field.rsr.fingerprint.label:2401
-msgid "Fingerprint"
-msgstr ""
-
-#: field.pgt.children.label:1843
-msgid "Child Groups"
-msgstr ""
-
-#: field.aws.owning_lib.label:128 field.acn.owning_lib.label:455
-#: field.asv.owner.label:1185 field.asc.owner.label:1332
-#: field.actsc.owner.label:1362 field.cnct.owning_lib.label:1449
-msgid "Owning Library"
-msgstr ""
-
-#: field.mg.billing_location.label:1515
-msgid "Billing Location"
-msgstr ""
-
-#: field.circ.circ_staff.label:1006 field.ancc.staff.label:1882
-#: field.rodcirc.circ_staff.label:2671
-msgid "Circulating Staff"
-msgstr ""
-
-#: class.asce.label:2143
-msgid "Item Stat Cat Entry"
-msgstr ""
-
-#: field.atc.hold_transit_copy.label:281 class.ahtc.label:2158
-#: field.iatc.hold_transit_copy.label:2651
-msgid "Hold Transit"
-msgstr ""
-
-#: field.asv.opac.label:1184
-msgid "OPAC Surevey?"
-msgstr ""
-
-#: field.aun.creator.label:192
-msgid "Creating Staff"
-msgstr ""
-
-#: field.circ.due_date.label:1008 field.rodcirc.due_date.label:2673
-msgid "Due Date/Time"
-msgstr ""
-
-#: field.asvq.id.label:152
-msgid "Question ID"
-msgstr ""
-
-#: class.mb.label:2184
-msgid "Billing Line Item"
-msgstr ""
-
-#: field.rsr.external_uri.label:2420
-msgid "External URI List (normalized)"
-msgstr ""
-
-#: field.actsce.id.label:1580 field.actscecm.id.label:1942
-#: field.asce.id.label:2148 field.rsce1.id.label:2555
-#: field.rsce2.id.label:2569
-msgid "Entry ID"
-msgstr ""
-
-#: field.acp.age_protect.label:1769
-msgid "Age Hold Protection"
-msgstr ""
-
-#: field.acp.copy_number.label:1777
-msgid "Copy Number on Volume"
-msgstr ""
-
-#: field.mbts.last_payment_type.label:174
-#: field.rccbs.last_payment_type.label:2605
-msgid "Last Payment Type"
-msgstr ""
-
-#: class.mgp.label:1651
-msgid "Goods Payment"
-msgstr ""
-
-#: field.rssr.isbn.label:2386 field.rsr.isbn.label:2413
-msgid "ISBN"
-msgstr ""
-
-#: field.circ.checkin_staff.label:1003 field.rodcirc.checkin_staff.label:2668
-msgid "Check In Staff"
-msgstr ""
-
-#: field.mdp.cash_drawer.label:2113
-msgid "Cash Drawer"
-msgstr ""
-
-#: class.asvr.label:291
-msgid "Survey Response"
-msgstr ""
-
-#: field.au.first_given_name.label:673
-msgid "First Name"
-msgstr ""
-
-#: field.acpl.owning_lib.label:1126
-msgid "Owning Org Unit"
-msgstr ""
-
-#: field.au.permissions.label:652
-msgid "All Permissions"
-msgstr ""
-
-#: field.mbts.xact_finish.label:178
-msgid "Transaction Finish Time"
-msgstr ""
-
-#: field.cit.id.label:140
-msgid "Identification ID"
-msgstr ""
-
-#: field.atc.source_send_time.label:279 field.ahtc.source_send_time.label:2171
-#: field.iatc.source_send_time.label:2649
-msgid "Send Date/Time"
-msgstr ""
-
-#: field.clm.value.label:373
-msgid "Language"
-msgstr ""
-
-#: field.acp.price.label:1793
-msgid "Price"
-msgstr ""
-
-#: field.ac.barcode.label:1345 field.acp.barcode.label:1771
-msgid "Barcode"
-msgstr ""
-
-#: field.pgt.id.label:1845
-msgid "Group ID"
-msgstr ""
-
-#: field.mrd.pub_status.label:903
-msgid "Pub Status"
-msgstr ""
-
-#: field.acp.deposit_amount.label:1782
-msgid "Deposit Amount"
-msgstr ""
-
-#: field.rxbt.total.label:2476
-msgid "Total Billing Amount"
-msgstr ""
-
-#: field.circ.xact_finish.label:1024 field.mbt.xact_finish.label:1556
-#: field.rodcirc.xact_finish.label:2689
-msgid "Transaction Finish Date/Time"
-msgstr ""
-
-#: field.rsr.genre.label:2417
-msgid "Genres (normalized)"
-msgstr ""
-
-#: field.aus.name.label:210 field.acpl.name.label:1124
-#: field.asv.name.label:1183 field.aou.name.label:1280
-#: field.asc.name.label:1330 field.actsc.name.label:1360
-#: field.cnct.name.label:1448
-msgid "Name"
-msgstr ""
-
-#: field.circ.opac_renewal.label:1015 field.rodcirc.opac_renewal.label:2680
-msgid "OPAC Renewal"
-msgstr ""
-
-#: field.rccc.item_type.label:2516
-msgid "MARC Type"
-msgstr ""
-
-#: field.bre.edit_date.label:517
-msgid "Last Edit Data/Time"
-msgstr ""
-
-#: field.clm.code.label:372 field.bre.language.label:528
-msgid "Language Code"
-msgstr ""
-
-#: field.pgt.parent.label:1847
-msgid "Parent Group"
-msgstr ""
-
-#: field.circ.xact_start.label:1025 field.rodcirc.xact_start.label:2690
-msgid "Check Out Date/Time"
-msgstr ""
-
-#: field.rxbt.unvoided.label:2474
-msgid "Unvoided Billing Amount"
-msgstr ""
-
-#: field.circ.billable_transaction.label:1029
-#: field.rodcirc.billable_transaction.label:2693
-msgid "Base Transaction"
-msgstr ""
-
-#: field.rccc.patron_home_lib_shortname.label:2525
-msgid "Patron Home Library Short (Policy) Name"
-msgstr ""
-
-#: field.cnct.in_house.label:1447
-msgid "In House?"
-msgstr ""
-
-#: field.rsr.geographic_subject.label:2416
-msgid "Geographic Subjects (normalized)"
-msgstr ""
-
-#: field.au.card.label:663
-msgid "Current Library Card"
-msgstr ""
-
-#: field.atc.target_copy.label:280 field.ahtc.target_copy.label:2172
-#: field.iatc.target_copy.label:2650
-msgid "Transited Copy"
-msgstr ""
-
-#: field.actsce.value.label:1583 field.rsce1.value.label:2557
-#: field.rsce2.value.label:2571
-msgid "Entry Value"
-msgstr ""
-
-#: field.acpn.creator.label:748
-msgid "Note Creator"
-msgstr ""
-
-#: field.aou.holds_address.label:1276
-msgid "Holds Receiving Address"
-msgstr ""
-
-#: field.mfr.record.label:768 field.mrd.record.label:904
-msgid "Bib Record Entry"
-msgstr ""
-
-#: field.rccbs.usr_home_ou.label:2591
-msgid "User Home Library Link"
-msgstr ""
-
-#: field.rccc.dewey_block_tens.label:2533
-msgid "Dewey Block -- Tens"
-msgstr ""
-
-#: field.acp.id.label:1789
-msgid "Copy ID"
-msgstr ""
-
-#: field.au.day_phone.label:667
-msgid "Daytime Phone"
-msgstr ""
-
-#: field.circ.target_copy.label:1022 field.rodcirc.target_copy.label:2687
-msgid "Circulating Item"
-msgstr ""
-
-#: field.ahr.email_notify.label:1227
-msgid "Notify by Email?"
-msgstr ""
-
-#: field.circ.payment_total.label:1032 field.mg.payment_total.label:1525
-#: field.mbt.payment_total.label:1563 field.rodcirc.payment_total.label:2696
-msgid "Payment Totals"
-msgstr ""
-
-#: field.rccc.patron_id.label:2523
-msgid "Patron Link"
-msgstr ""
-
-#: field.mp.goods_payment.label:2034 field.mbp.goods_payment.label:2065
-#: field.mndp.goods_payment.label:2092
-msgid "Goods Payment Detail"
-msgstr ""
-
-#: field.au.notes.label:697
-msgid "User Notes"
-msgstr ""
-
-#: field.asc.id.label:1329 field.actsc.id.label:1359
-msgid "Stat Cat ID"
-msgstr ""
-
-#: field.aus.value.label:212 field.asce.value.label:2151
-msgid "Value"
-msgstr ""
-
-#: field.bre.tcn_source.label:525 field.rssr.tcn_source.label:2380
-#: field.rsr.tcn_source.label:2403
-msgid "TCN Source"
-msgstr ""
-
-#: class.rsce1.label:2550
-msgid "CAT1 Entry"
-msgstr ""
-
-#: field.mrd.enc_level.label:897
-msgid "ELvl"
-msgstr ""
-
-#: field.ahtc.dest.label:2164
-msgid "Destination Library"
-msgstr ""
-
-#: class.aufh.label:1905
-msgid "Unfulfilled Hold Targets"
-msgstr ""
-
-#: field.rccc.dewey_range_hundreds.label:2532
-msgid "Dewey Range -- Hundreds"
-msgstr ""
-
-#: field.rccc.copy_id.label:2510
-msgid "Copy Link"
-msgstr ""
-
-#: field.ahr.selection_ou.label:1242
-msgid "Selection Locus"
-msgstr ""
-
-#: field.rsr.series_statement.label:2411
-msgid "Series Statement (normalized)"
-msgstr ""
-
-#: class.rccbs.label:2578
-msgid "Classic Open Transaction Summary"
-msgstr ""
-
-#: class.cnct.label:1440
-msgid "Non-cataloged Type"
-msgstr ""
-
-#: field.asvq.question.label:153 field.asvr.question.label:300
-#: field.asva.question.label:1865
-msgid "Question"
-msgstr ""
-
-#: field.ahtc.prev_hop.label:2169
-msgid "Previous Stop"
-msgstr ""
-
-#: field.atc.source.label:278 field.iatc.source.label:2648
-msgid "Source"
-msgstr ""
-
-#: class.ahn.label:1099
-msgid "Hold Notification"
-msgstr ""
-
-#: field.rcirct.id.label:2446
-msgid "Circulation ID"
-msgstr ""
-
-#: field.aua.county.label:949
-msgid "County"
-msgstr ""
-
-#: field.rsr.topic_subject.label:2415
-msgid "Topic Subjects (normalized)"
-msgstr ""
-
-#: field.rccbs.barcode.label:2593
-msgid "User Barcode"
-msgstr ""
-
-#: field.au.profile.label:688
-msgid "Main (Profile) Permission Group"
-msgstr ""
-
-#: field.mfr.subfield.label:769
-msgid "Subfield"
-msgstr ""
-
-#: field.acn.creator.label:449 field.acp.creator.label:1779
-msgid "Creating User"
-msgstr ""
-
-#: field.acp.holdable.label:1788
-msgid "Is Holdable"
-msgstr ""
-
-#: field.acn.editor.label:452 field.bre.editor.label:518
-#: field.acp.editor.label:1786
-msgid "Last Editing User"
-msgstr ""
-
-#: field.circ.max_fine.label:1013 field.crmf.amount.label:1832
-#: field.rodcirc.max_fine.label:2678
-msgid "Max Fine Amount"
-msgstr ""
-
-#: field.ahtc.copy_status.label:2163
-msgid "Copy Status at Transit"
-msgstr ""
-
-#: field.ahr.hold_type.label:1232
-msgid "Hold Type"
-msgstr ""
-
-#: field.mrd.bib_level.label:893
-msgid "BLvl"
-msgstr ""
-
-#: field.mp.credit_payment.label:2030 field.mbp.credit_payment.label:2061
-msgid "Credit Payment Detail"
-msgstr ""
-
-#: field.ahr.request_time.label:1239
-msgid "Request Date/Time"
-msgstr ""
-
-#: field.rccbs.xact_finish.label:2597
-msgid "Transaction End Date/Time"
-msgstr ""
-
-#: class.crahp.label:1815
-msgid "Age Hold Protection Rule"
-msgstr ""
-
-#: field.au.hold_requests.label:651
-msgid "All Hold Requests"
-msgstr ""
-
-#: field.au.master_account.label:682
-msgid "Is Group Lead Account"
-msgstr ""
-
-#: field.ahr.frozen.label:1251
-msgid "Currently Frozen"
-msgstr ""
-
-#: field.mfr.value.label:771
-msgid "Normalized Value"
-msgstr ""
-
-#: field.mcrp.accepting_usr.label:1407 field.mwp.accepting_usr.label:1635
-#: field.mgp.accepting_usr.label:1656 field.mckp.accepting_usr.label:1744
-msgid "Accepting Staff Member"
-msgstr ""
-
-#: field.rccc.demographic_general_division.label:2519
-msgid "Patron Age Demographic"
-msgstr ""
-
-#: field.rsr.corporate_subject.label:2419
-msgid "Corporate Name Subjects (normalized)"
-msgstr ""
-
-#: class.rodcirc.label:2662
-msgid "Overdue Circulation"
-msgstr ""
-
-#: field.bre.active.label:513
-msgid "Is Active?"
-msgstr ""
-
-#: field.crahp.prox.label:1823
-msgid "Allowed Proximity"
-msgstr ""
-
-#: field.ahr.fulfillment_time.label:1231
-msgid "Fulfillment Date/Time"
-msgstr ""
-
-#: field.mg.note.label:1517 field.mwp.note.label:1639
-#: field.mgp.note.label:1660 field.mckp.note.label:1750
-#: field.mp.note.label:2023 field.mbp.note.label:2054
-#: field.mndp.note.label:2085 field.mdp.note.label:2108
-#: field.mb.note.label:2193
-msgid "Note"
-msgstr ""
-
-#: field.aua.id.label:950
-msgid "Address ID"
-msgstr ""
-
-#: field.rccbs.patron_county.label:2612
-msgid "User County"
-msgstr ""
-
-#: field.acn.id.label:453
-msgid "Call Number/Volume ID"
-msgstr ""
-
-#: class.asc.label:1323
-msgid "Asset Statistical Category"
-msgstr ""
-
-#: class.au.label:643
-msgid "ILS User"
-msgstr ""
-
-#: class.asvq.label:145
-msgid "User Survey Question"
-msgstr ""
-
-#: field.circ.phone_renewal.label:1016 field.rodcirc.phone_renewal.label:2681
-msgid "Phone Renewal"
-msgstr ""
-
-#: field.mbt.payments.label:1561
-msgid "Payment Line Items"
-msgstr ""
-
-#: field.bre.quality.label:523
-msgid "Overall Quality"
-msgstr ""
-
-#: field.au.active.label:659
-msgid "Active"
-msgstr ""
-
-#: field.au.addresses.label:648
-msgid "All Addresses"
-msgstr ""
-
-#: field.mdp.cash_payment.label:2115
-msgid "Cash Payment"
-msgstr ""
-
-#: field.ahr.fulfillment_lib.label:1229
-msgid "Fulfilling Library"
-msgstr ""
-
-#: field.aua.post_code.label:951
-msgid "Postal Code"
-msgstr ""
-
-#: field.mb.voider.label:2196
-msgid "Voiding Staff Member"
-msgstr ""
-
-#: field.mcrp.note.label:1411
-msgid "Payment Note"
-msgstr ""
-
-#: field.mbts.total_paid.label:176 field.rccbs.total_paid.label:2600
-msgid "Total Paid"
-msgstr ""
-
-#: field.ahtc.transit_copy.label:2173
-msgid "Base Transit"
-msgstr ""
-
-#: field.aufh.fail_time.label:1912
-msgid "Retargeting Date/Time"
-msgstr ""
-
-#: None:725
-msgid "Circulations Performed as Staff"
-msgstr ""
-
-#: field.asvr.id.label:299 field.asva.id.label:1864
-msgid "Answer ID"
-msgstr ""
-
-#: field.mcrp.payment.label:1415 field.mwp.payment.label:1642
-#: field.mgp.payment.label:1663 field.mckp.payment.label:1753
-msgid "Payment link"
-msgstr ""
-
-#: field.aua.city.label:947
-msgid "City"
-msgstr ""
-
-#: field.acpl.holdable.label:1122
-msgid "Is Holdable?"
-msgstr ""
-
-#: field.bre.create_date.label:514 field.au.create_date.label:665
-#: field.circ.create_date.label:1026
-msgid "Record Creation Date/Time"
-msgstr ""
-
-#: field.rccc.item_form.label:2515
-msgid "MARC Form"
-msgstr ""
-
-#: field.rccc.patron_city.label:2527
-msgid "Patron City"
-msgstr ""
-
-#: field.aou.children.label:1274
-msgid "Subordinate Organizational Units"
-msgstr ""
-
-#: field.asva.responses.label:1862
-msgid "Responses using this Answer"
-msgstr ""
-
-#: field.ahr.thaw_date.label:1252
-msgid "Thaw Date (if frozen)"
-msgstr ""
-
-#: class.circ.label:997 field.rccc.id.label:2505
-msgid "Circulation"
-msgstr ""
-
-#: field.asvr.usr.label:303
-msgid "Responding User"
-msgstr ""
-
-#: class.rccc.label:2500
-msgid "Classic Circulation View"
-msgstr ""
-
-#: field.aihu.use_time.label:242 field.ancihu.use_time.label:259
-msgid "Use Date/Time"
-msgstr ""
-
-#: field.aihu.id.label:238 field.ancihu.id.label:255
-msgid "Use ID"
-msgstr ""
-
-#: field.atc.dest_recv_time.label:274 field.ahtc.dest_recv_time.label:2165
-#: field.iatc.dest_recv_time.label:2644
-msgid "Receive Date/Time"
-msgstr ""
-
-#: field.asv.poll.label:1186
-msgid "Poll Style?"
-msgstr ""
-
-#: field.rssr.pubdate.label:2385 field.rsr.pubdate.label:2409
-msgid "Publication Year (normalized)"
-msgstr ""
-
-#: field.cnct.id.label:1446
-msgid "Non-cat Type ID"
-msgstr ""
-
-#: field.asva.answer.label:1863
-msgid "Answer Text"
-msgstr ""
-
-#: field.acpn.owning_copy.label:750
-msgid "Copy"
-msgstr ""
-
-#: field.aout.can_have_vols.label:1462
-msgid "Can Have Volumes?"
-msgstr ""
-
-#: field.bre.id.label:520 field.aufh.id.label:1914 field.rssr.id.label:2377
-#: field.rsr.id.label:2399
-msgid "Record ID"
-msgstr ""
-
-#: class.cam.label:421
-msgid "Audience Map"
-msgstr ""
-
-#: field.au.email.label:669 field.aou.email.label:1284
-msgid "Email Address"
-msgstr ""
-
-#: field.clfm.description.label:1625
-msgid "LitF Description"
-msgstr ""
-
-#: field.au.passwd.label:685
-msgid "Password (obfuscated)"
-msgstr ""
-
-#: field.aihu.item.label:239 class.acp.label:1763
-msgid "Item"
-msgstr ""
-
-#: field.cam.value.label:428
-msgid "Audience"
-msgstr ""
-
-#: field.aout.parent.label:1467
-msgid "Parent Type"
-msgstr ""
-
-#: class.rud.label:2428
-msgid "User Demographics"
-msgstr ""
-
-#: field.atc.prev_hop.label:277 field.iatc.prev_hop.label:2647
-msgid "Previous Hop (unused)"
-msgstr ""
-
-#: field.circ.usr.label:1023 field.ancc.patron.label:1881
-#: field.rodcirc.usr.label:2688
-msgid "Patron"
-msgstr ""
-
-#: class.mcrp.label:1402
-msgid "House Credit Payment"
-msgstr ""
-
-#: field.acp.dummy_author.label:1783
-msgid "Precat Dummy Author"
-msgstr ""
-
-#: field.au.cards.label:649
-msgid "All Library Cards"
-msgstr ""
-
-#: field.rxpt.voided.label:2489
-msgid "Voided (Returned) Paid Amount"
-msgstr ""
-
-#: field.mbts.last_billing_note.label:169
-#: field.rccbs.last_billing_note.label:2608
-msgid "Last Billing Note"
-msgstr ""
-
-#: field.rccbs.billing_location.label:2587
-msgid "Billing Location Link"
-msgstr ""
-
-#: field.mrd.cat_form.label:894
-msgid "Cat Form"
-msgstr ""
-
-#: field.atc.dest.label:273 field.iatc.dest.label:2643
-msgid "Destination"
-msgstr ""
-
-#: field.au.evening_phone.label:670
-msgid "Evening Phone"
-msgstr ""
-
-#: field.au.ident_type.label:676
-msgid "Primary Identification Type"
-msgstr ""
-
-#: class.mndp.label:2078
-msgid "Payments: Non-drawer Staff"
-msgstr ""
-
-#: field.pgt.name.label:1846
-msgid "Group Name"
-msgstr ""
-
-#: field.mckp.xact.label:1752
-msgid "Transaction link"
-msgstr ""
-
-#: class.clm.label:367
-msgid "Language Map"
-msgstr ""
-
-#: field.bre.author_field_entries.label:533
-msgid "Indexed Author Field Entries"
-msgstr ""
-
-#: field.aou.phone.label:1285
-msgid "Phone Number"
-msgstr ""
-
-#: field.acn.create_date.label:448
-msgid "Create Date/Time"
-msgstr ""
-
-#: class.atc.label:267
-msgid "Copy Transit"
-msgstr ""
-
-#: field.au.super_user.label:692
-msgid "Is Super User"
-msgstr ""
-
-#: class.mfr.label:760
-msgid "Flattened MARC Fields"
-msgstr ""
-
-#: field.acp.circ_as_type.label:1773
-msgid "Circulation Type (MARC)"
-msgstr ""
-
-#: field.auoi.staff.label:108
-msgid "Staff Member"
-msgstr ""
-
-#: field.aws.id.label:126
-msgid "Workstation ID"
-msgstr ""
-
-#: class.acpn.label:742
-msgid "Copy Note"
-msgstr ""
-
-#: field.atc.persistant_transfer.label:276
-#: field.iatc.persistant_transfer.label:2646
-msgid "Is Persistent? (unused)"
-msgstr ""
-
-#: field.rccc.patron_zip.label:2528
-msgid "Patron ZIP Code"
-msgstr ""
-
-#: field.ahtc.persistant_transfer.label:2168
-msgid "Is Persistent?"
-msgstr ""
-
-#: field.au.net_access_level.label:683
-msgid "Internet Access Level"
-msgstr ""
-
-#: field.ancc.item_type.label:1880
-msgid "Non-cat Item Type"
-msgstr ""
-
-#: field.rccbs.patron_zip.label:2614
-msgid "User ZIP Code"
-msgstr ""
-
-#: field.mcrp.payment_type.label:1414 field.mwp.payment_type.label:1643
-#: field.mgp.payment_type.label:1664 field.mckp.payment_type.label:1754
-#: field.mp.payment_type.label:2025 field.mbp.payment_type.label:2056
-#: field.mndp.payment_type.label:2087 field.mdp.payment_type.label:2110
-msgid "Payment Type"
-msgstr ""
-
-#: field.mdp.credit_card_payment.label:2116
-msgid "Credit Card Payment"
-msgstr ""
-
-#: field.au.usrgroup.label:693
-msgid "Family Linkage or other Group"
-msgstr ""
-
-#: field.ahn.id.label:1105
-msgid "Notification ID"
-msgstr ""
-
-#: field.rccbs.last_billing_ts.label:2607
-msgid "Last Billing Date/Time"
-msgstr ""
-
-#: field.mcrp.amount_collected.label:1409
-#: field.mwp.amount_collected.label:1637 field.mgp.amount_collected.label:1658
-#: field.mckp.amount_collected.label:1746
-msgid "Amount Collected"
-msgstr ""
-
-#: field.ahr.current_copy.label:1226
-msgid "Currently Targeted Copy"
-msgstr ""
-
-#: field.aout.depth.label:1463
-msgid "Type Depth"
-msgstr ""
-
-#: field.rccc.stat_cat_1_value.label:2535
-msgid "Legacy CAT1 Value"
-msgstr ""
-
-#: class.auoi.label:101
-msgid "User Sharing Opt-in"
-msgstr ""
-
-#: field.rccc.profile_group.label:2518
-msgid "Patron Profile Group"
-msgstr ""
-
-#: field.rccbs.usr_home_ou_shortname.label:2589
-msgid "User Home Library Short (Policy) Name"
-msgstr ""
-
-#: field.au.dob.label:668 field.rud.dob.label:2434
-msgid "Date of Birth"
-msgstr ""
-
-#: field.mckp.cash_drawer.label:1747
-msgid "Workstation link"
-msgstr ""
-
-#: field.aun.title.label:195 field.acpn.title.label:752
-msgid "Note Title"
-msgstr ""
-
-#: field.auoi.id.label:106
-msgid "Opt-in ID"
-msgstr ""
-
-#: field.asvq.answers.label:150
-msgid "Answers"
-msgstr ""
-
-#: field.bre.creator.label:515
-msgid "Record Creator"
-msgstr ""
-
-#: field.acpl.id.label:1123
-msgid "Location ID"
-msgstr ""
-
-#: field.rccc.owning_lib_name.label:2512
-msgid "Owning Library Short (Policy) Name"
-msgstr ""
-
-#: class.ancc.label:1872
-msgid "Non-cataloged Circulation"
-msgstr ""
-
-#: class.asva.label:1857
-msgid "Survey Answer"
-msgstr ""
-
-#: class.mbt.label:1549 field.mp.xact.label:2026 field.mbp.xact.label:2057
-#: field.mndp.xact.label:2088 field.mdp.xact.label:2111
-msgid "Billable Transaction"
-msgstr ""
-
-#: field.rccc.patron_home_lib.label:2524
-msgid "Patron Home Library Link"
-msgstr ""
-
-#: field.aou.parent_ou.label:1282
-msgid "Parent Organizational Unit"
-msgstr ""
-
-#: field.circ.billings.label:1027 field.rodcirc.billings.label:2691
-msgid "Transaction Billings"
-msgstr ""
-
-#: field.au.photo_url.label:686
-msgid "Photo URL"
-msgstr ""
-
-#: class.mp.label:2016
-msgid "Payments: All"
-msgstr ""
-
-#: field.asv.questions.label:1178
-msgid "Questions"
-msgstr ""
-
-#: field.cifm.code.label:437
-msgid "Item Form Code"
-msgstr ""
-
-#: field.clfm.value.label:1626
-msgid "LitF Name"
-msgstr ""
-
-#: field.aun.value.label:197 field.acpn.value.label:753
-msgid "Note Content"
-msgstr ""
-
-#: field.asv.start_date.label:1188
-msgid "Survey Start Date/Time"
-msgstr ""
-
-#: field.au.checkouts.label:650
-msgid "All Circulations"
-msgstr ""
-
-#: field.aws.name.label:127
-msgid "Workstation Name"
-msgstr ""
-
-#: field.mckp.check_number.label:1748
-msgid "Check Number"
-msgstr ""
-
-#: field.rsr.summary.label:2412
-msgid "Summary (normalized)"
-msgstr ""
-
-#: field.au.ident_value.label:678
-msgid "Primary Identification"
-msgstr ""
-
-#: field.ahr.fulfillment_staff.label:1230
-msgid "Fulfilling Staff"
-msgstr ""
-
-#: field.mrd.char_encoding.label:895
-msgid "Character Encoding"
-msgstr ""
-
-#: field.mp.work_payment.label:2032 field.mbp.work_payment.label:2063
-#: field.mndp.work_payment.label:2090
-msgid "Work Payment Detail"
-msgstr ""
-
-#: field.ancc.id.label:1879
-msgid "Non-cat Circulation ID"
-msgstr ""
-
-#: field.auoi.usr.label:109 field.aun.usr.label:196 field.aus.usr.label:211
-#: field.aua.usr.label:955 field.ac.usr.label:1347 field.mg.usr.label:1518
-#: field.mbt.usr.label:1555 field.actscecm.target_usr.label:1945
-msgid "User"
-msgstr ""
-
-#: field.mg.billings.label:1521
-msgid "Billings"
-msgstr ""
-
-#: field.mrd.lit_form.label:902
-msgid "LitF"
-msgstr ""
-
-#: field.rccbs.billing_location_name.label:2586
-msgid "Billing Location Name"
-msgstr ""
-
-#: field.circ.stop_fines.label:1020 field.rodcirc.stop_fines.label:2685
-msgid "Fine Stop Reason"
-msgstr ""
-
-#: field.acp.ref.label:1794
-msgid "Is Reference"
-msgstr ""
-
-#: field.aua.valid.label:956
-msgid "Valid Address?"
-msgstr ""
-
-#: field.acp.status.label:1795
-msgid "Copy Status"
-msgstr ""
-
-#: field.asvq.survey.label:154 field.asvr.survey.label:302
-#: class.asv.label:1173
-msgid "Survey"
-msgstr ""
-
-#: field.mb.id.label:2192
-msgid "Billing ID"
-msgstr ""
-
-#: field.acp.circulations.label:1798
-msgid "Circulations"
-msgstr ""
-
-#: field.aus.id.label:209
-msgid "Setting ID"
-msgstr ""
-
-#: field.au.mailing_address.label:681 field.aou.mailing_address.label:1279
-msgid "Mailing Address"
-msgstr ""
-
-#: field.acn.label.label:454 field.rccc.call_number_label.label:2521
-msgid "Call Number Label"
-msgstr ""
-
-#: field.au.standing_penalties.label:654
-msgid "Standing Penalties"
-msgstr ""
-
-#: field.asv.id.label:1182
-msgid "Survey ID"
-msgstr ""
-
-#: field.bre.metarecord.label:527 field.rsr.metarecord.label:2400
-msgid "Metarecord"
-msgstr ""
-
-#: field.aout.can_have_users.label:1461
-msgid "Can Have Users?"
-msgstr ""
-
-#: field.au.prefix.label:687
-msgid "Prefix"
-msgstr ""
-
-#: field.rccc.patron_county.label:2526
-msgid "Patron County"
-msgstr ""
-
-#: field.actsce.owner.label:1581 field.asce.owner.label:2149
-#: field.rsce1.owner.label:2556 field.rsce2.owner.label:2570
-msgid "Entry Owner"
-msgstr ""
-
-#: field.rccc.circ_modifier.label:2511
-msgid "Circ Modifier"
-msgstr ""
-
-#: field.rsr.series_title.label:2410
-msgid "Series Title (normalized)"
-msgstr ""
-
-#: field.mbt.grocery.label:1558
-msgid "Grocery Billing link"
-msgstr ""
-
-#: field.actscecm.stat_cat_entry.label:1944
-msgid "Entry Text"
-msgstr ""
-
-#: field.aufh.current_copy.label:1911
-msgid "Non-fulfilling Copy"
-msgstr ""
-
-#: field.acp.location.label:1791 field.rccc.shelving_location.label:2517
-msgid "Shelving Location"
-msgstr ""
-
-#: field.aou.id.label:1277
-msgid "Organizational Unit ID"
-msgstr ""
-
-#: field.ahr.pickup_lib.label:1236
-msgid "Pickup Library"
-msgstr ""
-
-#: field.cam.description.label:427 field.asv.description.label:1180
-#: field.pgt.description.label:1844
-msgid "Description"
-msgstr ""
-
-#: field.bre.keyword_field_entries.label:530
-msgid "Indexed Keyword Field Entries"
-msgstr ""
-
-#: field.aufh.circ_lib.label:1910
-msgid "Non-fulfilling Library"
-msgstr ""
-
-#: field.au.home_ou.label:674
-msgid "Home Library"
-msgstr ""
-
-#: field.mbt.circulation.label:1559
-msgid "Circulation Billing link"
-msgstr ""
-
-#: field.atc.copy_status.label:272 field.iatc.copy_status.label:2642
-msgid "Pretransit Copy Status"
-msgstr ""
-
-#: field.crahp.age.label:1820
-msgid "Item Age"
-msgstr ""
-
-#: field.au.standing.label:690
-msgid "Standing (unused)"
-msgstr ""
-
-#: field.rsr.name_subject.label:2418
-msgid "Personal Name Subjects (normalized)"
-msgstr ""
-
-#: field.asv.usr_summary.label:1189
-msgid "Display in User Summary"
-msgstr ""
-
-#: field.ahn.notify_staff.label:1108
-msgid "Notifying Staff"
-msgstr ""
-
-#: field.aua.country.label:948
-msgid "Country"
-msgstr ""
-
-#: field.circ.checkin_time.label:1004 field.rodcirc.checkin_time.label:2669
-msgid "Check In Date/Time"
-msgstr ""
-
-#: field.mg.payments.label:1522
-msgid "Payments"
-msgstr ""
-
-#: field.mbts.last_billing_type.label:171
-#: field.rccbs.last_billing_type.label:2609
-msgid "Last Billing Type"
-msgstr ""
-
-#: field.circ.recuring_fine.label:1017 field.rodcirc.recuring_fine.label:2682
-msgid "Recurring Fine Amount"
-msgstr ""
-
-#: field.asv.end_date.label:1181
-msgid "Survey End Date/Time"
-msgstr ""
-
-#: field.mg.xact_start.label:1520
-msgid "Transaction Start Timestamp"
-msgstr ""
-
-#: field.bre.title_field_entries.label:532
-msgid "Indexed Title Field Entries"
-msgstr ""
-
-#: field.acp.circ_modifier.label:1775
-msgid "Circulation Modifier"
-msgstr ""
-
-#: field.auoi.opt_in_ts.label:111
-msgid "Opt-in Date/Time"
-msgstr ""
-
-#: field.circ.desk_renewal.label:1007 field.rodcirc.desk_renewal.label:2672
-msgid "Desk Renewal"
-msgstr ""
-
-#: field.citm.code.label:1153
-msgid "Item Type Code"
-msgstr ""
-
-#: field.circ.renewal_remaining.label:1019
-#: field.rodcirc.renewal_remaining.label:2684
-msgid "Remaining Renewals"
-msgstr ""
-
-#: field.mb.void_time.label:2194
-msgid "Void Timestamp"
-msgstr ""
-
-#: None:718
-msgid "Billable Transactions"
-msgstr ""

Deleted: trunk/build/i18n/po/ils_events.xml.pot
===================================================================
--- trunk/build/i18n/po/ils_events.xml.pot	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/po/ils_events.xml.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,852 +0,0 @@
-# 
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2007-12-20 14:06:08-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8-bit\n"
-
-#: 1208.TITLE_LAST_COPY:66
-msgid "The last copy attached to a title is being removed or deleted"
-msgstr ""
-
-#: 1603.CONTAINER_USER_BUCKET_ITEM_NOT_FOUND:441
-msgid "The requested container_user_bucket_item was not found"
-msgstr ""
-
-#: 1598.MONEY_USER_CIRCULATION_SUMMARY_NOT_FOUND:426
-msgid "The requested money_user_circulation_summary was not found"
-msgstr ""
-
-#: 1621.CONTAINER_COPY_BUCKET_NOT_FOUND:494
-msgid "The requested container_copy_bucket was not found"
-msgstr ""
-
-#: 1218.ITEM_AGE_PROTECTED:104
-msgid "This item is too new to have a hold placed on it"
-msgstr ""
-
-#: 1214.PATRON_DUP_IDENT1:87
-msgid "The selected primary identification type and value are in use by another patron"
-msgstr ""
-
-#: 1561.PERMISSION_PERM_LIST_NOT_FOUND:318
-msgid "The requested permission_perm_list was not found"
-msgstr ""
-
-#: 1213.PATRON_BARRED:83
-msgid "The patron is barred"
-msgstr ""
-
-#: 1591.METABIB_SERIES_FIELD_ENTRY_NOT_FOUND:405
-msgid "The requested metabib_series_field_entry was not found"
-msgstr ""
-
-#: 8002.OFFLINE_FILE_ERROR:688
-msgid " An offline file or directory could not be created or accessed "
-msgstr ""
-
-#: 1502.ASSET_COPY_NOT_FOUND:173
-msgid ""
-"\n"
-"\t\t\tSomeone attempted to retrieve a copy object from the \n"
-"\t\t\tsystem and the object was not found.\n"
-"\t\t"
-msgstr ""
-
-#: 1639.REPORTER_SCHEDULE_NOT_FOUND:548
-msgid "The requested reporter_schedule was not found"
-msgstr ""
-
-#: 0.SUCCESS:14
-msgid " "
-msgstr ""
-
-#: 7006.COPY_IS_REFERENCE:638
-msgid " Copy is reference material "
-msgstr ""
-
-#: 1609.CONFIG_RULES_RECURING_FINE_NOT_FOUND:459
-msgid "The requested config_rules_recuring_fine was not found"
-msgstr ""
-
-#: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:456
-msgid "The requested metabib_subject_field_entry was not found"
-msgstr ""
-
-#: 2001.DATABASE_UPDATE_FAILED:596
-msgid "The attempt to write to the DB failed"
-msgstr ""
-
-#: 1507.CONTAINER_ITEM_NOT_FOUND:196
-msgid ""
-"\n"
-"\t\t\tSomeone attempted to retrieve a container item object from the \n"
-"\t\t\tsystem and the object was not found.\n"
-"\t\t"
-msgstr ""
-
-#: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:253
-msgid "The requested action_survey_response was not found"
-msgstr ""
-
-#: 1555.MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:301
-msgid "The requested money_open_billable_transaction_summary was not found"
-msgstr ""
-
-#: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:298
-msgid "The requested config_rules_circ_duration was not found"
-msgstr ""
-
-#: 1607.ACTION_OPEN_CIRCULATION_NOT_FOUND:453
-msgid "The requested action_open_circulation was not found"
-msgstr ""
-
-#: 1559.METABIB_FULL_REC_NOT_FOUND:312
-msgid "The requested metabib_full_rec was not found"
-msgstr ""
-
-#: 1527.OPEN_TCN_NOT_FOUND:219
-msgid "No TCN could be found that does not collide with existing records"
-msgstr ""
-
-#: 8000.OFFLINE_SESSION_ACTIVE:682
-msgid " An offline session for this location is currently processing "
-msgstr ""
-
-#: 1563.METABIB_KEYWORD_FIELD_ENTRY_NOT_FOUND:324
-msgid "The requested metabib_keyword_field_entry was not found"
-msgstr ""
-
-#: 1546.CONFIG_AUDIENCE_MAP_NOT_FOUND:277
-msgid "The requested config_audience_map was not found"
-msgstr ""
-
-#: 1001.NO_SESSION:26
-msgid "User login session has either timed out or does not exist"
-msgstr ""
-
-#: 1525.BILLING_NOT_FOUND:215
-msgid " Requested billing note does not exist "
-msgstr ""
-
-#: 8001.OFFLINE_SESSION_FILE_EXISTS:685
-msgid " An offline file for this workstation exists within this session "
-msgstr ""
-
-#: 1529.ACTOR_WORKSTATION_NOT_FOUND:227
-msgid "The requested actor_workstation was not found"
-msgstr ""
-
-#: 1227.COPY_DELETE_WARNING:140
-msgid "The copy in question is not in an ideal status for deleting"
-msgstr ""
-
-#: 1223.PATRON_NO_PHONE:122
-msgid "The user does not have a valid phone number assigned"
-msgstr ""
-
-#: 1002.ACTOR_USER_NOT_FOUND:29
-msgid "Someone attempted to retrieve a user from the system and the user was not found"
-msgstr ""
-
-#: 1636.REPORTER_OUTPUT_FOLDER_NOT_FOUND:539
-msgid "The requested reporter_output_folder was not found"
-msgstr ""
-
-#: 1217.PATRON_INACTIVE:101
-msgid "This account is marked as inactive"
-msgstr ""
-
-#: 1637.REPORTER_REPORT_FOLDER_NOT_FOUND:542
-msgid "The requested reporter_report_folder was not found"
-msgstr ""
-
-#: 1545.PERM_EX_NOT_FOUND:274
-msgid "The requested perm_ex was not found"
-msgstr ""
-
-#: 1553.ACTOR_ORG_UNIT_CLOSED_DATE_NOT_FOUND:295
-msgid "The requested actor_org_unit_closed_date was not found"
-msgstr ""
-
-#: 1541.AUTHORITY_RECORD_DESCRIPTOR_NOT_FOUND:262
-msgid "The requested authority_record_descriptor was not found"
-msgstr ""
-
-#: 7011.COPY_STATUS_LOST:653
-msgid "Copy has is marked as lost"
-msgstr ""
-
-#: 1587.CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND:393
-msgid "The requested container_call_number_bucket was not found"
-msgstr ""
-
-#: 1229.VOLUME_DELETED:147
-msgid "The requested volume is marked as deleted"
-msgstr ""
-
-#: 1635.REPORTER_REPORT_NOT_FOUND:536
-msgid "The requested reporter_report was not found"
-msgstr ""
-
-#: 1631.MONEY_COLLECTIONS_TRACKER_NOT_FOUND:524
-#: 1632.CONFIG_RULES_AGE_HOLD_PROTECT_NOT_FOUND:527
-#: 1633.MONEY_DESK_PAYMENT_NOT_FOUND:530
-msgid "The requested money_collections_tracker was not found"
-msgstr ""
-
-#: 5000.PERM_FAILURE:605
-msgid "Permission Denied"
-msgstr ""
-
-#: 7015.NEGATIVE_PATRON_BALANCE:665
-msgid "This requested action would result in a negative patron balance"
-msgstr ""
-
-#: 1569.ACTOR_USER_STANDING_PENALTY_NOT_FOUND:342
-msgid "The requested actor_user_standing_penalty was not found"
-msgstr ""
-
-#: 1200.USERNAME_EXISTS:39
-msgid "The given username already exists in the database"
-msgstr ""
-
-#: 9000.REPORT_TEMPLATE_EXISTS:716
-msgid " A report template with the given name and folder already exists"
-msgstr ""
-
-#: 1602.ACTOR_STAT_CAT_ENTRY_NOT_FOUND:438
-msgid "The requested actor_stat_cat_entry was not found"
-msgstr ""
-
-#: 1710.CONTAINER_EXISTS:588
-msgid "User has already created a bucket with the requested name"
-msgstr ""
-
-#: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:358
-msgid "The requested container_biblio_record_entry_bucket was not found"
-msgstr ""
-
-#: 1701.COPY_LOCATION_EXISTS:561
-msgid " The copy location object already exists "
-msgstr ""
-
-#: 1703.WORKSTATION_NAME_EXISTS:567
-msgid " A workstation with that name already exists "
-msgstr ""
-
-#: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:488
-msgid "The requested actor_stat_cat_entry_user_map was not found"
-msgstr ""
-
-#: 8007.OFFLINE_SESSION_EXISTS:703
-msgid " A session with the given name already exists "
-msgstr ""
-
-#: 1558.ASSET_COPY_NOTE_NOT_FOUND:309
-msgid "The requested asset_copy_note was not found"
-msgstr ""
-
-#: 7017.ROUTE_TO_COPY_LOCATION:674
-msgid ""
-" \n"
-"\t\tA copy needs to be routed to a copy location.  The location\n"
-"\t\tshould be specified within the event with a 'location' key\n"
-"\t\t"
-msgstr ""
-
-#: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:182
-msgid ""
-"\n"
-"\t\t\tSomeone attempted to retrieve a transit object from the \n"
-"\t\t\tsystem and the object was not found.\n"
-"\t\t"
-msgstr ""
-
-#: 1624.MONEY_PAYMENT_NOT_FOUND:503
-msgid "The requested money_payment was not found"
-msgstr ""
-
-#: 1596.ACTOR_ORG_UNIT_TYPE_NOT_FOUND:420
-msgid "The requested actor_org_unit_type was not found"
-msgstr ""
-
-#: 1004.Z3950_BAD_QUERY:35
-msgid "The Z query is not formatted correctly"
-msgstr ""
-
-#: 1205.CARD_EXISTS:57
-msgid "The given user barcode already exists"
-msgstr ""
-
-#: 1584.ACTOR_ORG_ADDRESS_NOT_FOUND:385
-msgid "The requested actor_org_address was not found"
-msgstr ""
-
-#: 1501.BIBLIO_RECORD_ENTRY_NOT_FOUND:167
-msgid "The requested biblio_record_entry was not found"
-msgstr ""
-
-#: 1613.PERMISSION_GRP_TREE_NOT_FOUND:470
-msgid "The requested permission_grp_tree was not found"
-msgstr ""
-
-#: 1523.TITLE_NOTE_NOT_FOUND:212
-msgid " Requested title note does not exist "
-msgstr ""
-
-#: 9001.REPORT_REPORT_EXISTS:720
-msgid " A report with the given name and folder already exists"
-msgstr ""
-
-#: 1536.ACTION_IN_HOUSE_USE_NOT_FOUND:248
-msgid "The requested action_in_house_use was not found"
-msgstr ""
-
-#: 7016.ITEM_ON_HOLDS_SHELF:668
-msgid "This requested item is currently on the holds shelf"
-msgstr ""
-
-#: 7005.LOCATION_CIRC_NOT_ALLOWED:635
-msgid " Location does not allow materials to circulate "
-msgstr ""
-
-#: 1562.METABIB_METARECORD_SOURCE_MAP_NOT_FOUND:321
-msgid "The requested metabib_metarecord_source_map was not found"
-msgstr ""
-
-#: 1531.ACTION_SURVEY_QUESTION_NOT_FOUND:233
-msgid "The requested action_survey_question was not found"
-msgstr ""
-
-#: 1612.CONFIG_RULES_MAX_FINE_NOT_FOUND:467
-msgid "The requested config_rules_max_fine was not found"
-msgstr ""
-
-#: 1557.ACTOR_ORG_UNIT_SETTING_NOT_FOUND:306
-msgid "The requested actor_org_unit_setting was not found"
-msgstr ""
-
-#: 7009.CIRC_CLAIMS_RETURNED:647
-msgid " Requested circulation is marked claims returned "
-msgstr ""
-
-#: 1629.PERMISSION_USR_GRP_MAP_NOT_FOUND:517
-msgid "The requested permission_usr_grp_map was not found"
-msgstr ""
-
-#: 1606.MONEY_WORK_PAYMENT_NOT_FOUND:450
-msgid "The requested money_work_payment was not found"
-msgstr ""
-
-#: 2000.BAD_PARAMS:593
-msgid "Invalid parameters were encountered in a method"
-msgstr ""
-
-#: 1564.MONEY_CASH_PAYMENT_NOT_FOUND:327
-msgid "The requested money_cash_payment was not found"
-msgstr ""
-
-#: 1221.ORG_CANNOT_HAVE_VOLS:115
-msgid "The selected location cannot have volumes attached"
-msgstr ""
-
-#: 1704.TCN_EXISTS:570
-msgid "A record already exists with the requested TCN value"
-msgstr ""
-
-#: 1.UNKNOWN:17
-msgid "Placeholder event.  Used for development only"
-msgstr ""
-
-#: 1622.BIBLIO_RECORD_NODE_NOT_FOUND:497
-msgid "The requested biblio_record_node was not found"
-msgstr ""
-
-#: 8003.OFFLINE_PARAM_ERROR:691
-msgid " Missing params in offline upload "
-msgstr ""
-
-#: 1534.ACTOR_USER_SETTING_NOT_FOUND:242
-msgid "The requested actor_user_setting was not found"
-msgstr ""
-
-#: 1211.BILL_ALREADY_VOIDED:76
-msgid "The selecte bill has already been voided"
-msgstr ""
-
-#: 1222.PATRON_NO_EMAIL_ADDRESS:119
-msgid "The user does not have a valid email address assigned"
-msgstr ""
-
-#: 7001.PATRON_BAD_STANDING:622
-msgid ""
-"\n"
-"\t\t\tThe patron in question is not able to check out materials because\n"
-"\t\t\ttheir account is in bad standing\n"
-"\t\t"
-msgstr ""
-
-#: 1215.CIRC_EXCEEDS_COPY_RANGE:94
-msgid ""
-"\n"
-"\t\t\tThe selected copy may not circulate because the recipient's home \n"
-"\t\t\tlocation is not within the copy's circulation range\n"
-"\t\t"
-msgstr ""
-
-#: 1605.CONFIG_LIT_FORM_MAP_NOT_FOUND:447
-msgid "The requested config_lit_form_map was not found"
-msgstr ""
-
-#: 1567.METABIB_RECORD_DESCRIPTOR_NOT_FOUND:336
-msgid "The requested metabib_record_descriptor was not found"
-msgstr ""
-
-#: 1702.OPEN_CIRCULATION_EXISTS:564
-msgid " There is an open circulation on the requested item "
-msgstr ""
-
-#: 8009.OFFLINE_NO_ORG:709 8010.OFFLINE_SESSION_COMPLETE:712
-msgid " No org id was provided "
-msgstr ""
-
-#: 1630.ACTOR_USER_NOTE_NOT_FOUND:520
-msgid "The requested actor_user_note was not found"
-msgstr ""
-
-#: 1508.ASSET_CALL_NUMBER_NOT_FOUND:199
-msgid "Requested asset_call_number was not found"
-msgstr ""
-
-#: 1209.Z3950_LOGIN_FAILED:69
-msgid "The login failed"
-msgstr ""
-
-#: 1543.MONEY_CREDIT_CARD_PAYMENT_NOT_FOUND:268
-msgid "The requested money_credit_card_payment was not found"
-msgstr ""
-
-#: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:473
-msgid "The requested action_survey_answer was not found"
-msgstr ""
-
-#: 1535.METABIB_AUTHOR_FIELD_ENTRY_NOT_FOUND:245
-msgid "The requested metabib_author_field_entry was not found"
-msgstr ""
-
-#: 1626.ASSET_STAT_CAT_ENTRY_NOT_FOUND:509
-msgid "The requested asset_stat_cat_entry was not found"
-msgstr ""
-
-#: 1595.CONFIG_NON_CATALOGED_TYPE_NOT_FOUND:417
-msgid "The requested config_non_cataloged_type was not found"
-msgstr ""
-
-#: 1225.TRANSIT_ABORT_NOT_ALLOWED:128
-msgid "The transit on this item may not be aborted due to the state the item is in"
-msgstr ""
-
-#: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:265
-msgid "The requested config_language_map was not found"
-msgstr ""
-
-#: 1206.VOLUME_NOT_EMPTY:60
-msgid "The selected volume has copies attached"
-msgstr ""
-
-#: 1540.AUTHORITY_RECORD_ENTRY_NOT_FOUND:259
-msgid "The requested authority_record_entry was not found"
-msgstr ""
-
-#: 1203.COPY_BAD_STATUS:48
-msgid "The given copy is not in a standard circulation status"
-msgstr ""
-
-#: 1601.MONEY_BILLABLE_TRANSACTION_NOT_FOUND:435
-msgid "The requested money_billable_transaction was not found"
-msgstr ""
-
-#: 7004.COPY_NOT_AVAILABLE:632
-msgid " Copy is not available "
-msgstr ""
-
-#: 1550.MONEY_OPEN_USER_SUMMARY_NOT_FOUND:287
-msgid "The requested money_open_user_summary was not found"
-msgstr ""
-
-#: 1207.REFUND_EXCEEDS_BALANCE:63
-msgid "A refund greater than the negative balance on a transaction was provided"
-msgstr ""
-
-#: 3.NO_CHANGE:20
-msgid "No change occurred"
-msgstr ""
-
-#: 1201.CIRC_PERMIT_BAD_KEY:42
-msgid "A checkout was attempted without a valid checkout permit key"
-msgstr ""
-
-#: 1593.MONEY_CREDIT_PAYMENT_NOT_FOUND:411
-msgid "The requested money_credit_payment was not found"
-msgstr ""
-
-#: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:485
-msgid "The requested metabib_title_field_entry was not found"
-msgstr ""
-
-#: 1202.ITEM_NOT_CATALOGED:45
-msgid "The requested item is not cataloged in the database"
-msgstr ""
-
-#: 1628.MONEY_BILLING_NOT_FOUND:514
-msgid "The requested money_billing was not found"
-msgstr ""
-
-#: 1544.CONFIG_METABIB_FIELD_NOT_FOUND:271
-msgid "The requested config_metabib_field was not found"
-msgstr ""
-
-#: 2002.DATABASE_QUERY_FAILED:599
-msgid "The attempt to query to the DB failed"
-msgstr ""
-
-#: 1549.CONFIG_STANDING_NOT_FOUND:284
-msgid "The requested config_standing was not found"
-msgstr ""
-
-#: 1210.INCORRECT_PASSWORD:73
-msgid "The provided password is not correct"
-msgstr ""
-
-#: 1582.CONFIG_ITEM_TYPE_MAP_NOT_FOUND:379
-msgid "The requested config_item_type_map was not found"
-msgstr ""
-
-#: 1530.CONFIG_IDENTIFICATION_TYPE_NOT_FOUND:230
-msgid "The requested config_identification_type was not found"
-msgstr ""
-
-#: 1579.ASSET_COPY_LOCATION_NOT_FOUND:370
-msgid "The requested asset_copy_location was not found"
-msgstr ""
-
-#: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:347
-msgid "The requested asset_call_number_note was not found"
-msgstr ""
-
-#: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:222
-msgid "Requested address was not found"
-msgstr ""
-
-#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:626
-msgid "The patron in question has the maximum number of items already checked out"
-msgstr ""
-
-#: 1003.Z3950_SEARCH_FAILED:32
-msgid "The Z search did not succeed"
-msgstr ""
-
-#: 1533.ACTOR_USR_NOTE_NOT_FOUND:239
-msgid "The requested actor_usr_note was not found"
-msgstr ""
-
-#: 1620.PERMISSION_GRP_PERM_MAP_NOT_FOUND:491
-msgid "The requested permission_grp_perm_map was not found"
-msgstr ""
-
-#: 1204.CIRC_BAD_STATUS:54
-msgid ""
-"\n"
-"\t\t\tThe given circulation is not in a standard status or\n"
-"\t\t\tthe circulation was never fully closed properly\n"
-"\t\t"
-msgstr ""
-
-#: 1709.MAX_HOLDS:585
-msgid "User has reached the maximum number of holds"
-msgstr ""
-
-#: 1706.ITEM_BARCODE_EXISTS:576
-msgid "An item with the same barcode exists"
-msgstr ""
-
-#: 7014.COPY_IN_TRANSIT:662
-msgid "Copy is in transit"
-msgstr ""
-
-#: 1219.COPY_REMOTE_CIRC_LIB:107 1220.ITEM_NOT_HOLDABLE:111
-msgid "A copy with a remote circulating library (circ_lib) was encountered"
-msgstr ""
-
-#: 7000.ROUTE_ITEM:615
-msgid ""
-" \n"
-"\t\t\tA copy needs to be routed to a different location\t\n"
-"\t\t\tThe destination location will be specified by an 'org' key\n"
-"\t\t\twithin the event object\n"
-"\t\t"
-msgstr ""
-
-#: 7007.COPY_NEEDED_FOR_HOLD:641
-msgid " Copy is needed to fulfil a hold "
-msgstr ""
-
-#: 7010.COPY_ALERT_MESSAGE:650
-msgid " The requested copy has an alert message attached "
-msgstr ""
-
-#: 1231.RECORD_NOT_EMPTY:154
-msgid "The selected bib record has volumes attached"
-msgstr ""
-
-#: 1503.ACTION_HOLD_REQUEST_NOT_FOUND:176
-msgid "The requested action_hold_request was not found"
-msgstr ""
-
-#: 1212.PATRON_EXCEEDS_OVERDUE_COUNT:79
-msgid "The patron has too many overdue items"
-msgstr ""
-
-#: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:367
-msgid "The requested action_hold_notification was not found"
-msgstr ""
-
-#: 1610.MONEY_CHECK_PAYMENT_NOT_FOUND:462
-msgid "The requested money_check_payment was not found"
-msgstr ""
-
-#: 1623.PERMISSION_USR_PERM_MAP_NOT_FOUND:500
-msgid "The requested permission_usr_perm_map was not found"
-msgstr ""
-
-#: 1581.ASSET_STAT_CAT_ENTRY_COPY_MAP_NOT_FOUND:376
-msgid "The requested asset_stat_cat_entry_copy_map was not found"
-msgstr ""
-
-#: 1547.CONFIG_ITEM_FORM_MAP_NOT_FOUND:280
-msgid "The requested config_item_form_map was not found"
-msgstr ""
-
-#: 1592.CONTAINER_USER_BUCKET_NOT_FOUND:408
-msgid "The requested container_user_bucket was not found"
-msgstr ""
-
-#: 1617.ACTION_UNFULFILLED_HOLD_LIST_NOT_FOUND:482
-msgid "The requested action_unfulfilled_hold_list was not found"
-msgstr ""
-
-#: 1552.ACTOR_ORG_UNIT_HOURS_OF_OPERATION_NOT_FOUND:292
-msgid "The requested actor_org_unit_hours_of_operation was not found"
-msgstr ""
-
-#: 1576.EX_NOT_FOUND:361
-msgid "The requested ex was not found"
-msgstr ""
-
-#: 8004.OFFLINE_CONFIG_ERROR:694 8005.OFFLINE_CHECKSUM_FAILED:697
-#: 8006.OFFLINE_SESSION_NOT_FOUND:700
-msgid " Offline server is not configured properly "
-msgstr ""
-
-#: 1568.CONFIG_COPY_STATUS_NOT_FOUND:339
-msgid "The requested config_copy_status was not found"
-msgstr ""
-
-#: 1539.CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND:256
-msgid "The requested container_copy_bucket_item was not found"
-msgstr ""
-
-#: 1590.ACTOR_STAT_CAT_NOT_FOUND:402
-msgid "The requested actor_stat_cat was not found"
-msgstr ""
-
-#: 7003.COPY_CIRC_NOT_ALLOWED:629
-msgid " Target copy is not allowed to circulate "
-msgstr ""
-
-#: 7008.MAX_RENEWALS_REACHED:644
-msgid " Circulation has no more renewals remaining "
-msgstr ""
-
-#: 1577.ACTION_HOLD_COPY_MAP_NOT_FOUND:364
-msgid "The requested action_hold_copy_map was not found"
-msgstr ""
-
-#: 1638.REPORTER_TEMPLATE_FOLDER_NOT_FOUND:545
-msgid "The requested reporter_template_folder was not found"
-msgstr ""
-
-#: 1500.ACTION_CIRCULATION_NOT_FOUND:164
-msgid ""
-"\n"
-"\t\t\tSomeone attempted to retrieve a circulation object from the system and \n"
-"\t\t\tthe object was not found.\n"
-"\t\t"
-msgstr ""
-
-#: 1226.REFUND_EXCEEDS_DESK_PAYMENTS:135
-msgid ""
-"\n"
-"\t\t\tThis refund amount is not allowed because it exceeds \n"
-"\t\t\tthe total amount of desk payments for this transaction.\n"
-"\t\t"
-msgstr ""
-
-#: 1616.MONEY_OPEN_USER_CIRCULATION_SUMMARY_NOT_FOUND:479
-msgid "The requested money_open_user_circulation_summary was not found"
-msgstr ""
-
-#: 1583.ACTION_SURVEY_NOT_FOUND:382
-msgid "The requested action_survey was not found"
-msgstr ""
-
-#: 1625.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND:506
-msgid "The requested container_biblio_record_entry_bucket_item was not found"
-msgstr ""
-
-#: 1000.LOGIN_FAILED:23
-msgid "User login failed"
-msgstr ""
-
-#: 1599.MONEY_GROCERY_NOT_FOUND:429
-msgid "The requested money_grocery was not found"
-msgstr ""
-
-#: 7012.COPY_STATUS_MISSING:656
-msgid "Copy has is marked as missing"
-msgstr ""
-
-#: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:236
-msgid "The requested money_billable_transaction_summary was not found"
-msgstr ""
-
-#: 2003.INTERNAL_SERVER_ERROR:602
-msgid "There was an internal server error"
-msgstr ""
-
-#: 8008.OFFLINE_INVALID_SESSION:706
-msgid " The session name is invalid "
-msgstr ""
-
-#: 1597.BIBLIO_RECORD_NOTE_NOT_FOUND:423
-msgid "The requested biblio_record_note was not found"
-msgstr ""
-
-#: 1588.ASSET_STAT_CAT_NOT_FOUND:396
-msgid "The requested asset_stat_cat was not found"
-msgstr ""
-
-#: 1224.PATRON_ACCOUNT_EXPIRED:125
-msgid "The patron's account has expired"
-msgstr ""
-
-#: 1560.METABIB_METARECORD_NOT_FOUND:315
-msgid "The requested metabib_metarecord was not found"
-msgstr ""
-
-#: 1707.HOLD_EXISTS:579
-msgid "User already has an open hold on the selected item"
-msgstr ""
-
-#: 1506.CONTAINER_NOT_FOUND:190
-msgid ""
-"\n"
-"\t\t\tSomeone attempted to retrieve a container object from the \n"
-"\t\t\tsystem and the object was not found.\n"
-"\t\t"
-msgstr ""
-
-#: 1566.MONEY_FORGIVE_PAYMENT_NOT_FOUND:333
-msgid "The requested money_forgive_payment was not found"
-msgstr ""
-
-#: 1230.XACT_COLLISION:150
-msgid "The saved item has been edited by another user"
-msgstr ""
-
-#: 1700.NON_CAT_TYPE_EXISTS:558
-msgid " The non-cataloged type object already exists "
-msgstr ""
-
-#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:582
-msgid "A duplicate money.collections_tracker object already exists in the database"
-msgstr ""
-
-#: 1634.REPORTER_TEMPLATE_NOT_FOUND:533
-msgid "The requested reporter_template was not found"
-msgstr ""
-
-#: 1600.CONFIG_BIB_SOURCE_NOT_FOUND:432
-msgid "The requested config_bib_source was not found"
-msgstr ""
-
-#: 1228.BIB_RECORD_DELETED:144
-msgid "The requested bib record is marked as deleted"
-msgstr ""
-
-#: 1705.VOLUME_LABEL_EXISTS:573
-msgid "A volume with the same label, title and owning library exists"
-msgstr ""
-
-#: 1589.ACTOR_CARD_NOT_FOUND:399
-msgid "The requested actor_card was not found"
-msgstr ""
-
-#: 1216.PATRON_CARD_INACTIVE:98
-msgid "The patron's card is not active"
-msgstr ""
-
-#: 7013.PATRON_EXCEEDS_FINES:659
-msgid "The patron in question has reached the maximum fine amount"
-msgstr ""
-
-#: 1586.ACTOR_ORG_UNIT_NOT_FOUND:390
-msgid "The requested actor_org_unit was not found"
-msgstr ""
-
-#: 1574.CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND:355
-msgid "The requested container_call_number_bucket_item was not found"
-msgstr ""
-
-#: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:204
-msgid "The requested action_hold_transit_copy was not found"
-msgstr ""
-
-#: 1594.AUTHORITY_FULL_REC_NOT_FOUND:414
-msgid "The requested authority_full_rec was not found"
-msgstr ""
-
-#: 1565.ACTOR_PROFILE_NOT_FOUND:330
-msgid "The requested actor_profile was not found"
-msgstr ""
-
-#: 1580.METABIB_VIRTUAL_RECORD_NOT_FOUND:373
-msgid "The requested metabib_virtual_record was not found"
-msgstr ""
-
-#: 1640.ACTOR_USR_ORG_UNIT_OPT_IN_NOT_FOUND:551
-msgid "The requested actor_usr_org_unit_opt_in was not found"
-msgstr ""
-
-#: 1572.AUTHORITY_RECORD_NOTE_NOT_FOUND:350
-msgid "The requested authority_record_note was not found"
-msgstr ""
-
-#: 1520.WORKSTATION_NOT_FOUND:209
-msgid " Requested workstation object does not exist "
-msgstr ""
-
-#: 1615.ACTION_NON_CATALOGED_CIRCULATION_NOT_FOUND:476
-msgid "The requested action_non_cataloged_circulation was not found"
-msgstr ""
-
-#: 1604.MONEY_USER_SUMMARY_NOT_FOUND:444
-msgid "The requested money_user_summary was not found"
-msgstr ""

Deleted: trunk/build/i18n/po/lang.dtd.pot
===================================================================
--- trunk/build/i18n/po/lang.dtd.pot	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/po/lang.dtd.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,3645 +0,0 @@
-# extracted from ../../Open-ILS/web/opac/locale/en-US/lang.dtd
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: Evergreen 1.4\n"
-"Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2007-11-19 13:21-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
-"X-Accelerator-Marker: &\n"
-
-#: lang.version
-msgid "remote v1"
-msgstr ""
-
-#: lang.description
-msgid "English"
-msgstr ""
-
-#: lang.author
-msgid "PINES"
-msgstr ""
-
-#: common.check_date.description
-msgid "Check today's date above."
-msgstr ""
-
-#: common.check_barcode.description
-msgid "Check barcode?"
-msgstr ""
-
-#: common.date_helper
-msgid "or choose one of these"
-msgstr ""
-
-#: common.date_helper.3_days
-msgid "Today + 3 days"
-msgstr ""
-
-#: common.date_helper.7_days
-msgid "Today + 7 days"
-msgstr ""
-
-#: common.date_helper.14_days
-msgid "Today + 14 days"
-msgstr ""
-
-#: common.date_helper.30_days
-msgid "Today + 30 days"
-msgstr ""
-
-#: common.due_date.description
-msgid "Enter the item due date:"
-msgstr ""
-
-#: common.enter.label
-#: common.enter.accesskey
-#: staff.circ.offline_checkin.step2a.label
-#: staff.circ.offline_checkin.step2a.accesskey
-msgid "&Enter"
-msgstr ""
-
-#: common.enter_barcode.description
-msgid "Enter the item barcode:"
-msgstr ""
-
-#: common.title
-#: staff.cat.search_title
-#: staff.mvr_label_title
-#: staff.record_list.title
-#: staff.z39_50.search_class.title
-msgid "Title"
-msgstr ""
-
-#: common.author
-#: staff.cat.search_author
-#: staff.mvr_label_author
-#: staff.record_list.author
-#: staff.z39_50.search_class.author
-msgid "Author"
-msgstr ""
-
-#: common.subject
-#: staff.cat.search_subject
-msgid "Subject"
-msgstr ""
-
-#: common.series
-msgid "Series"
-msgstr ""
-
-#: common.keyword
-#: staff.cat.search_all
-msgid "Keyword"
-msgstr ""
-
-#: common.type
-#: staff.ahr_hold_type_label
-#: staff.cat.search_type
-#: staff.marc.LDR.type.short
-msgid "Type"
-msgstr ""
-
-#: common.isbn
-#: staff.record_list.isbn
-#: staff.z39_50.search_class.isbn
-msgid "ISBN"
-msgstr ""
-
-#: common.format
-#: staff.cat.search_format
-msgid "Format"
-msgstr ""
-
-#: common.login
-#: staff.auth.login_header
-msgid "Login"
-msgstr ""
-
-#: common.logout
-msgid "Log Out"
-msgstr ""
-
-#: common.at
-msgid "at"
-msgstr ""
-
-#: common.of
-#: staff.displaying.of
-msgid "of"
-msgstr ""
-
-#: common.cancel
-msgid "Cancel"
-msgstr ""
-
-#: common.library
-msgid "Library"
-msgstr ""
-
-#: common.step1.label
-msgid "Step 1)"
-msgstr ""
-
-#: common.step2.label
-#: common.step2.accesskey
-msgid "Step &2)"
-msgstr ""
-
-#: common.step3.label
-#: common.step3.accesskey
-msgid "Step &3)"
-msgstr ""
-
-#: common.step4.label
-#: common.step4.accesskey
-msgid "Step &4)"
-msgstr ""
-
-#: common.step5.label
-msgid "Step 5)"
-msgstr ""
-
-#: common.step6.label
-msgid "Step 6)"
-msgstr ""
-
-#: common.username
-msgid "Username"
-msgstr ""
-
-#: common.username.label
-#: common.username.accesskey
-msgid "&Username:"
-msgstr ""
-
-#: common.password
-#: staff.au_password_label
-msgid "Password"
-msgstr ""
-
-#: common.submit
-#: staff.auth.submit_prompt
-#: staff.circ.checkin.submit_label
-#: staff.circ.hold_capture.submit_label
-#: staff.patron_display.checkout.submit_label
-msgid "Submit"
-msgstr ""
-
-#: common.user_not_found
-msgid "User not found"
-msgstr ""
-
-#: common.unimplemented
-msgid "Not Yet Implemented"
-msgstr ""
-
-#: common.delete_transactions.label
-msgid "Delete selected transaction"
-msgstr ""
-
-#: common.save_transactions.label
-#: common.save_transactions.accesskey
-msgid "&Save these transactions"
-msgstr ""
-
-#: ilsevent.1000
-msgid "Login failed.  The username or password entered was incorrect."
-msgstr ""
-
-#: ilsevent.1001
-msgid "Login session has timed out or does not exist"
-msgstr ""
-
-#: ilsevent.1002
-msgid "User was not found in the database"
-msgstr ""
-
-#: ilsevent.5000
-msgid "Permission Denied"
-msgstr ""
-
-#: ilsperm.CREATE_HOLD
-msgid "User is not allowed to create holds for other users at this location"
-msgstr ""
-
-#: common.cancel.accesskey
-#: staff.cat.fixed.SCO.key
-#: staff.copy.close.key
-#: staff.main.auth.debug.clear.accesskey
-#: staff.main.menu.circ.checkin.key
-#: staff.main.menu.circ.claimed_returned.key
-#: staff.main.menu.circ.key
-#: staff.main.menu.edit.copy.key
-#: staff.main.menu.file.close.key
-#: staff.marc.display.fixed.SCO.key
-#: staff.marc.file.close.key
-#: staff.patron_navbar.checkout.accesskey
-msgid "C"
-msgstr ""
-
-#: common.login.accesskey
-#: staff.auth.logoff_prompt.key
-#: staff.cat.search_count_copy.key
-#: staff.cat.search_location.key
-#: staff.checkin.reprint_receipt_label.accesskey
-#: staff.hold_capture.reprint_receipt_label.accesskey
-#: staff.main.menu.circ.lost.key
-#: staff.marc.display.legend.key
-#: staff.patron_display.checkout.reprint_receipt_label.accesskey
-msgid "L"
-msgstr ""
-
-#: common.password.accesskey
-#: staff.auth.password_prompt.accesskey
-#: staff.auth.password_prompt.key
-#: staff.cat.fixed.MAP.key
-#: staff.main.menu.circ.barcode.retrieve_patron.accesskey
-#: staff.main.menu.circ.patron_status.key
-#: staff.main.menu.edit.paste.key
-#: staff.marc.display.fixed.MAP.key
-#: staff.patron_display.items.print_receipt_label.accesskey
-#: staff.previous.range.key
-msgid "P"
-msgstr ""
-
-#: staff.about.title
-msgid "About"
-msgstr ""
-
-#: staff.acp_label_barcode
-#: staff.browse_list.barcode
-#: staff.copy.attr.barcode
-msgid "Barcode"
-msgstr ""
-
-#: staff.acp_label_call_number
-#: staff.browse_list.callnumber
-#: staff.cat.search_callnumber
-#: staff.volume.attr.callnumber
-msgid "Call Number"
-msgstr ""
-
-#: staff.acp_label_circ_as_type
-msgid "Circ As Type"
-msgstr ""
-
-#: staff.acp_label_circ_lib
-msgid "Circ Lib"
-msgstr ""
-
-#: staff.acp_label_circ_modifier
-#: staff.browse_list.circ_modifier
-msgid "Circ Modifier"
-msgstr ""
-
-#: staff.acp_label_copy_number
-#: staff.browse_list.copy_number
-msgid "Copy Number"
-msgstr ""
-
-#: staff.acp_label_deposit
-#: staff.browse_list.deposit
-msgid "Deposit"
-msgstr ""
-
-#: staff.acp_label_deposit_amount
-#: staff.browse_list.deposit_amount
-msgid "Deposit Amount"
-msgstr ""
-
-#: staff.acp_label_fine_level
-#: staff.browse_list.fine_level
-#: staff.copy.attr.fine_level
-msgid "Fine Level"
-msgstr ""
-
-#: staff.acp_label_id
-msgid "Copy ID"
-msgstr ""
-
-#: staff.acp_label_loan_duration
-#: staff.browse_list.loan_duration
-#: staff.copy.attr.loan_duration
-msgid "Loan Duration"
-msgstr ""
-
-#: staff.acp_label_location
-#: staff.browse_list.location2
-#: staff.cat.search_count_copy
-#: staff.cat.search_location
-msgid "Location"
-msgstr ""
-
-#: staff.acp_label_price
-#: staff.browse_list.price
-#: staff.copy.attr.price
-msgid "Price"
-msgstr ""
-
-#: staff.acp_label_status
-#: staff.ahr_status_label
-#: staff.browse_list.status
-#: staff.checkin_label_status
-#: staff.main.auth.status
-#: staff.patron_display.status.caption
-msgid "Status"
-msgstr ""
-
-#: staff.ahr_capture_time_label
-msgid "Capture Time"
-msgstr ""
-
-#: staff.ahr_current_copy_label
-msgid "Current Copy"
-msgstr ""
-
-#: staff.ahr_email_notify_label
-msgid "Email Notify"
-msgstr ""
-
-#: staff.ahr_expire_time_label
-msgid "Expire Time"
-msgstr ""
-
-#: staff.ahr_fulfillment_time_label
-msgid "Fulfillment Time"
-msgstr ""
-
-#: staff.ahr_holdable_formats_label
-msgid "Holdable Formats"
-msgstr ""
-
-#: staff.ahr_id_label
-msgid "Hold Id"
-msgstr ""
-
-#: staff.ahr_ischanged_label
-#: staff.au_ischanged_label
-msgid "Ischanged"
-msgstr ""
-
-#: staff.ahr_isdeleted_label
-#: staff.au_isdeleted_label
-msgid "Isdeleted"
-msgstr ""
-
-#: staff.ahr_isnew_label
-#: staff.au_isnew_label
-msgid "Isnew"
-msgstr ""
-
-#: staff.ahr_phone_notify_label
-msgid "Phone Notify"
-msgstr ""
-
-#: staff.ahr_pickup_lib_label
-msgid "Pickup Lib"
-msgstr ""
-
-#: staff.ahr_prev_check_time_label
-msgid "Prev Check Time"
-msgstr ""
-
-#: staff.ahr_request_time_label
-msgid "Request Time"
-msgstr ""
-
-#: staff.ahr_requestor_label
-msgid "Requestor"
-msgstr ""
-
-#: staff.ahr_selection_depth_label
-msgid "Selection Depth"
-msgstr ""
-
-#: staff.ahr_target_label
-msgid "Target"
-msgstr ""
-
-#: staff.ahr_usr_label
-msgid "Usr"
-msgstr ""
-
-#: staff.au_active_label
-#: staff.au_label_active
-msgid "Active"
-msgstr ""
-
-#: staff.au_addresses_label
-msgid "Addresses"
-msgstr ""
-
-#: staff.au_alert_message_label
-msgid "Alert Message"
-msgstr ""
-
-#: staff.au_billing_address_label
-#: staff.circ.offline_register.billing_address.label
-msgid "Billing Address"
-msgstr ""
-
-#: staff.au_card_label
-msgid "Card"
-msgstr ""
-
-#: staff.au_cards_label
-msgid "Cards"
-msgstr ""
-
-#: staff.au_checkouts_label
-msgid "Checkouts"
-msgstr ""
-
-#: staff.au_claims_returned_count_label
-msgid "Claims Returned Count"
-msgstr ""
-
-#: staff.au_create_date_label
-msgid "Create Date"
-msgstr ""
-
-#: staff.au_credit_forward_balance_label
-msgid "Credit Forward Balance"
-msgstr ""
-
-#: staff.au_day_phone_label
-msgid "Day Phone"
-msgstr ""
-
-#: staff.au_dob_label
-msgid "Dob"
-msgstr ""
-
-#: staff.au_email_label
-msgid "Email"
-msgstr ""
-
-#: staff.au_evening_phone_label
-msgid "Evening Phone"
-msgstr ""
-
-#: staff.au_expire_date_label
-msgid "Expire Date"
-msgstr ""
-
-#: staff.au_family_name_label
-#: staff.au_label_family_name
-msgid "Family Name"
-msgstr ""
-
-#: staff.au_first_given_name_label
-msgid "First Given Name"
-msgstr ""
-
-#: staff.au_hold_requests_label
-msgid "Hold Requests"
-msgstr ""
-
-#: staff.au_home_ou_label
-msgid "Home Ou"
-msgstr ""
-
-#: staff.au_id_label
-msgid "User Id"
-msgstr ""
-
-#: staff.au_ident_type2_label
-msgid "Ident Type2"
-msgstr ""
-
-#: staff.au_ident_type_label
-msgid "Ident Type"
-msgstr ""
-
-#: staff.au_ident_value2_label
-msgid "Ident Value2"
-msgstr ""
-
-#: staff.au_ident_value_label
-msgid "Ident Value"
-msgstr ""
-
-#: staff.au_label_first_given_name
-msgid "First Name"
-msgstr ""
-
-#: staff.au_label_id
-msgid "Record ID"
-msgstr ""
-
-#: staff.au_label_prefix
-#: staff.au_prefix_label
-msgid "Prefix"
-msgstr ""
-
-#: staff.au_label_second_given_name
-msgid "Middle Name"
-msgstr ""
-
-#: staff.au_label_suffix
-#: staff.au_suffix_label
-msgid "Suffix"
-msgstr ""
-
-#: staff.au_last_xact_id_label
-msgid "Last Xact Id"
-msgstr ""
-
-#: staff.au_mailing_address_label
-#: staff.patron_display.mailing_address
-msgid "Mailing Address"
-msgstr ""
-
-#: staff.au_master_account_label
-msgid "Master Account"
-msgstr ""
-
-#: staff.au_net_access_level_label
-msgid "Net Access Level"
-msgstr ""
-
-#: staff.au_other_phone_label
-msgid "Other Phone"
-msgstr ""
-
-#: staff.au_passwd_label
-msgid "Passwd"
-msgstr ""
-
-#: staff.au_photo_url_label
-msgid "Photo Url"
-msgstr ""
-
-#: staff.au_profile_label
-msgid "Profile"
-msgstr ""
-
-#: staff.au_second_given_name_label
-msgid "Second Given Name"
-msgstr ""
-
-#: staff.au_settings_label
-msgid "Settings"
-msgstr ""
-
-#: staff.au_standing_label
-msgid "Standing"
-msgstr ""
-
-#: staff.au_stat_cat_entries_label
-msgid "Stat Cat Entries"
-msgstr ""
-
-#: staff.au_super_user_label
-msgid "Super User"
-msgstr ""
-
-#: staff.au_survey_responses_label
-msgid "Survey Responses"
-msgstr ""
-
-#: staff.au_usrgroup_label
-msgid "Usrgroup"
-msgstr ""
-
-#: staff.au_usrname_label
-msgid "Usrname"
-msgstr ""
-
-#: staff.admin.survey.available.label
-msgid "Available to:"
-msgstr ""
-
-#: staff.admin.survey.description.label
-msgid "Description:"
-msgstr ""
-
-#: staff.admin.survey.end.label
-msgid "End:"
-msgstr ""
-
-#: staff.admin.survey.format.label
-msgid "Poll Format:"
-msgstr ""
-
-#: staff.admin.survey.name.label
-#: staff.auth.name_prompt
-msgid "Name:"
-msgstr ""
-
-#: staff.admin.survey.opac_visible.label
-msgid "OPAC Visible:"
-msgstr ""
-
-#: staff.admin.survey.required.label
-msgid "Required:"
-msgstr ""
-
-#: staff.admin.survey.save_question.label
-#: staff.admin.survey.save_question.accesskey
-msgid "Save this &Question"
-msgstr ""
-
-#: staff.admin.survey.staff_client.label
-msgid "Staff Client:"
-msgstr ""
-
-#: staff.admin.survey.start.label
-msgid "Start:"
-msgstr ""
-
-#: staff.auth.logoff_prompt
-msgid "Log Off"
-msgstr ""
-
-#: staff.auth.logoff_prompt.accesskey
-msgid "f"
-msgstr ""
-
-#: staff.auth.name_prompt.key
-#: staff.main.menu.file.new.key
-#: staff.next.range.key
-msgid "N"
-msgstr ""
-
-#: staff.auth.password_prompt
-msgid "Password:"
-msgstr ""
-
-#: staff.auth.quit_prompt
-msgid "Exit Evergreen"
-msgstr ""
-
-#: staff.auth.quit_prompt.key
-msgid "x"
-msgstr ""
-
-#: staff.auth.submit_prompt.key
-#: staff.cat.fixed.SER.key
-#: staff.cat.search_submit.key
-#: staff.circ.checkin.submit_label.accesskey
-#: staff.circ.hold_capture.submit_label.accesskey
-#: staff.copy.save.key
-#: staff.main.auth.offline.interface.accesskey
-#: staff.main.menu.cat.bib_search.key
-#: staff.main.menu.circ.special.key
-#: staff.main.menu.file.save.key
-#: staff.marc.display.fixed.SER.key
-#: staff.marc.file.publish.key
-#: staff.patron_display.checkout.submit_label.accesskey
-msgid "S"
-msgstr ""
-
-#: staff.auth.title
-msgid "Evergreen Staff Client 3"
-msgstr ""
-
-#: staff.auth.version
-msgid "Evergreen 0.1.0 20051202"
-msgstr ""
-
-#: staff.bills_current_payment_label
-msgid "Current Payment"
-msgstr ""
-
-#: staff.bills_information
-msgid "Information"
-msgstr ""
-
-#: staff.bills_interface_label
-msgid "BILLS"
-msgstr ""
-
-#: staff.bills_money_label
-msgid "Money"
-msgstr ""
-
-#: staff.bills_total_owed_label
-msgid "Total Owed"
-msgstr ""
-
-#: staff.bills_wizard_label
-msgid "Bill Patron"
-msgstr ""
-
-#: staff.bills_xact_dates_label
-msgid "Record / Dates"
-msgstr ""
-
-#: staff.browse_list.circ_as_type
-msgid "Circulate As"
-msgstr ""
-
-#: staff.browse_list.circ_lib
-msgid "Circulating Lib"
-msgstr ""
-
-#: staff.browse_list.circulate
-msgid "Circulate"
-msgstr ""
-
-#: staff.browse_list.create_date
-msgid "Creation Date"
-msgstr ""
-
-#: staff.browse_list.creator
-msgid "Creator"
-msgstr ""
-
-#: staff.browse_list.edit_date
-msgid "Edit Date"
-msgstr ""
-
-#: staff.browse_list.editor
-msgid "Editor"
-msgstr ""
-
-#: staff.browse_list.library
-msgid "Owning Lib"
-msgstr ""
-
-#: staff.browse_list.location
-msgid "Location/Barcode"
-msgstr ""
-
-#: staff.browse_list.opac_visible
-#: staff.copy.notes.opac
-msgid "OPAC"
-msgstr ""
-
-#: staff.browse_list.ref
-#: staff.copy.attr.shelving_location.example5
-msgid "Reference"
-msgstr ""
-
-#: staff.browse_list.shelving_loc
-#: staff.copy.attr.shelving_location
-msgid "Shelving Location"
-msgstr ""
-
-#: staff.browse_list.win_title
-#: staff.record_list.win_title
-msgid "Cataloging"
-msgstr ""
-
-#: staff.cat.fixed.BKS
-msgid "BKS"
-msgstr ""
-
-#: staff.cat.fixed.BKS.key
-#: staff.copy.bucket.key
-#: staff.main.menu.cat.add_bib.key
-#: staff.main.menu.cat.bib_status.key
-#: staff.main.menu.cat.copy_status.accesskey
-#: staff.main.menu.circ.barcode.show_item.accesskey
-#: staff.main.menu.edit.buckets.copies.accesskey
-#: staff.main.menu.edit.buckets.key
-#: staff.marc.display.fixed.BKS.key
-#: staff.patron_navbar.bills.accesskey
-msgid "B"
-msgstr ""
-
-#: staff.cat.fixed.COM
-msgid "COM"
-msgstr ""
-
-#: staff.cat.fixed.COM.key
-#: staff.cat.search_order.key
-#: staff.main.menu.circ.checkout.key
-#: staff.main.menu.file.open.key
-#: staff.marc.display.fixed.COM.key
-msgid "O"
-msgstr ""
-
-#: staff.cat.fixed.MAP
-msgid "MAP"
-msgstr ""
-
-#: staff.cat.fixed.MIX
-msgid "MIX"
-msgstr ""
-
-#: staff.cat.fixed.MIX.key
-#: staff.main.menu.cat.dedup.key
-#: staff.main.menu.circ.missing.key
-#: staff.marc.display.fixed.MIX.key
-#: staff.marc.file.key
-msgid "M"
-msgstr ""
-
-#: staff.cat.fixed.REC
-msgid "REC"
-msgstr ""
-
-#: staff.cat.fixed.REC.key
-#: staff.checkin_patron.retrieve.accesskey
-#: staff.copy.reload.key
-#: staff.hold_capture_patron.retrieve.accesskey
-#: staff.main.auth.retest.accesskey
-#: staff.main.menu.circ.patron_registration.key
-#: staff.main.menu.edit.buckets.records.accesskey
-#: staff.main.menu.edit.redo.key
-#: staff.main.menu.entity.patron.register.key
-#: staff.marc.display.fixed.REC.key
-#: staff.marc.file.reload.key
-#: staff.patron_navbar.refresh.accesskey
-#: staff.patron_navbar.retrieve.accesskey
-msgid "R"
-msgstr ""
-
-#: staff.cat.fixed.SCO
-msgid "SCO"
-msgstr ""
-
-#: staff.cat.fixed.SER
-msgid "SER"
-msgstr ""
-
-#: staff.cat.fixed.VIS
-msgid "VIS"
-msgstr ""
-
-#: staff.cat.fixed.VIS.key
-#: staff.cat.search_advanced.key
-#: staff.main.menu.cat.add_volume.key
-#: staff.main.menu.cat.volume_status.key
-#: staff.main.menu.edit.buckets.volumes.accesskey
-#: staff.marc.display.fixed.VIS.key
-#: staff.marc.file.validate.key
-msgid "V"
-msgstr ""
-
-#: staff.cat.opac.add_bucket.label
-#: staff.cat.opac.add_bucket.accesskey
-msgid "Add to &Bucket"
-msgstr ""
-
-#: staff.cat.opac.bib_in_new_tab.label
-msgid "Duplicate in New Tab"
-msgstr ""
-
-#: staff.cat.opac.copy_browse.label
-#: staff.cat.opac.copy_browse.accesskey
-msgid "&Holdings Maintenance"
-msgstr ""
-
-#: staff.cat.opac.default.label
-msgid "Set bottom interface as Default"
-msgstr ""
-
-#: staff.cat.opac.marc_edit.label
-#: staff.cat.opac.marc_edit.accesskey
-msgid "MARC &Edit"
-msgstr ""
-
-#: staff.cat.opac.marc_view.label
-#: staff.cat.opac.marc_view.accesskey
-msgid "MARC &View"
-msgstr ""
-
-#: staff.cat.opac.mark_for_overlay.label
-#: staff.cat.opac.mark_for_overlay.accesskey
-msgid "&Mark for Overlay"
-msgstr ""
-
-#: staff.cat.opac.delete_record.label
-#: staff.cat.opac.delete_record.accesskey
-msgid "&Delete Record"
-msgstr ""
-
-#: staff.cat.opac.menu.label
-#: staff.cat.opac.menu.accesskey
-msgid "&Actions for this Record"
-msgstr ""
-
-#: staff.cat.opac.opac_view.label
-#: staff.cat.opac.opac_view.accesskey
-msgid "&OPAC View"
-msgstr ""
-
-#: staff.cat.opac.record_end.label
-#: staff.cat.opac.record_end.accesskey
-msgid "&End"
-msgstr ""
-
-#: staff.cat.opac.record_next.label
-#: staff.cat.opac.record_next.accesskey
-msgid "&Next"
-msgstr ""
-
-#: staff.cat.opac.record_prev.label
-#: staff.cat.opac.record_prev.accesskey
-msgid "&Previous"
-msgstr ""
-
-#: staff.cat.opac.record_start.label
-#: staff.cat.opac.record_start.accesskey
-msgid "&Start"
-msgstr ""
-
-#: staff.cat.opac.refresh_me.label
-msgid "Reset Display"
-msgstr ""
-
-#: staff.cat.opac.remove_me.label
-msgid "Remove this Frame"
-msgstr ""
-
-#: staff.cat.opac.view_holds.label
-#: staff.cat.opac.view_holds.accesskey
-msgid "View Hold&s"
-msgstr ""
-
-#: staff.cat.popup.add_to_bucket
-#: staff.copy.bucket
-msgid "Add to Bucket"
-msgstr ""
-
-#: staff.cat.popup.add_to_bucket.key
-msgid ""
-"_: staff.cat.popup.add_to_bucket.key\n"
-msgstr ""
-
-#: staff.cat.popup.browse.record.tab.key
-msgid ""
-"_: staff.cat.popup.browse.record.tab.key\n"
-msgstr ""
-
-#: staff.cat.popup.browse.record.window.key
-msgid ""
-"_: staff.cat.popup.browse.record.window.key\n"
-msgstr ""
-
-#: staff.cat.popup.browse_record.tab
-msgid "View Copies (Tab)"
-msgstr ""
-
-#: staff.cat.popup.browse_record.window
-msgid "View Copies (Window)"
-msgstr ""
-
-#: staff.cat.popup.edit.record.tab.key
-msgid ""
-"_: staff.cat.popup.edit.record.tab.key\n"
-msgstr ""
-
-#: staff.cat.popup.edit.record.window.key
-msgid ""
-"_: staff.cat.popup.edit.record.window.key\n"
-msgstr ""
-
-#: staff.cat.popup.edit_record.tab
-msgid "Edit Record (Tab)"
-msgstr ""
-
-#: staff.cat.popup.edit_record.window
-msgid "Edit Record (Window)"
-msgstr ""
-
-#: staff.cat.search_advanced
-msgid "Advanced"
-msgstr ""
-
-#: staff.cat.search_barcode
-msgid "Item Barcode"
-msgstr ""
-
-#: staff.cat.search_count_copy_show
-msgid "Show Only These Records"
-msgstr ""
-
-#: staff.cat.search_criteria
-msgid "Search Criteria"
-msgstr ""
-
-#: staff.cat.search_format.key
-#: staff.main.menu.circ.found.key
-#: staff.main.menu.edit.find.key
-#: staff.main.menu.file.key
-#: staff.marc.display.control_fields.key
-msgid "F"
-msgstr ""
-
-#: staff.cat.search_id
-msgid "System ID"
-msgstr ""
-
-#: staff.cat.search_isbn
-msgid "ISBN/ISSN"
-msgstr ""
-
-#: staff.cat.search_order
-msgid "Order"
-msgstr ""
-
-#: staff.cat.search_pubyear
-#: staff.record_list.pubyear
-msgid "Pub Year"
-msgstr ""
-
-#: staff.cat.search_submit
-#: staff.main.menu.search.label
-msgid "Search"
-msgstr ""
-
-#: staff.cat.search_tcn
-#: staff.record_list.tcn
-msgid "TCN"
-msgstr ""
-
-#: staff.cat.search_term
-msgid "Terms"
-msgstr ""
-
-#: staff.cat.search_term.key
-msgid "e"
-msgstr ""
-
-#: staff.cat.search_type.key
-#: staff.main.menu.file.new_tab.key
-msgid "T"
-msgstr ""
-
-#: staff.cat.test
-msgid "Test"
-msgstr ""
-
-#: staff.cat.test.key
-#: staff.main.menu.edit.key
-#: staff.marc.display.meta_data.key
-#: staff.marc.file.export.key
-#: staff.patron_navbar.edit.accesskey
-msgid "E"
-msgstr ""
-
-#: staff.cat.title
-msgid "TCN goes here"
-msgstr ""
-
-#: staff.cat.type_of_material
-msgid "All"
-msgstr ""
-
-#: staff.cat.type_of_material.a
-msgid "Language Material"
-msgstr ""
-
-#: staff.cat.type_of_material.c
-msgid "Notated Music"
-msgstr ""
-
-#: staff.cat.type_of_material.d
-msgid "Manuscript Notated Music"
-msgstr ""
-
-#: staff.cat.type_of_material.e
-msgid "Cartographic Material"
-msgstr ""
-
-#: staff.cat.type_of_material.f
-msgid "Manuscript Cartographic Material"
-msgstr ""
-
-#: staff.cat.type_of_material.g
-msgid "Projected Medium"
-msgstr ""
-
-#: staff.cat.type_of_material.i
-msgid "Nonmusical Sound Recording"
-msgstr ""
-
-#: staff.cat.type_of_material.j
-msgid "Musical Sound Recording"
-msgstr ""
-
-#: staff.cat.type_of_material.k
-msgid "Two-dimensional Nonprojectable Graphic"
-msgstr ""
-
-#: staff.cat.type_of_material.m
-msgid "Computer File"
-msgstr ""
-
-#: staff.cat.type_of_material.o
-msgid "Kit"
-msgstr ""
-
-#: staff.cat.type_of_material.p
-msgid "Mixed Material"
-msgstr ""
-
-#: staff.cat.type_of_material.r
-msgid "Three-dimensional Artifact or Naturally Occuring Object"
-msgstr ""
-
-#: staff.cat.type_of_material.t
-msgid "Manuscript Language Material"
-msgstr ""
-
-#: staff.checkin.auto_print_label
-#: staff.hold_capture.auto_print_label
-#: staff.patron_display.checkout.auto_print_label
-msgid "Auto-Print"
-msgstr ""
-
-#: staff.checkin.auto_print_label.accesskey
-#: staff.copy.notes.add.key
-#: staff.hold_capture.auto_print_label.accesskey
-#: staff.main.menu.edit.select_all.key
-#: staff.main.menu.tabs.close.accesskey
-#: staff.marc.display.cover_art.key
-#: staff.patron_display.checkout.auto_print_label.accesskey
-msgid "A"
-msgstr ""
-
-#: staff.checkin.done_label
-#: staff.hold_capture.done_label
-#: staff.patron_display.checkout.done_label
-msgid "Done"
-msgstr ""
-
-#: staff.checkin.done_label.accesskey
-#: staff.copy.notes.delete.key
-#: staff.hold_capture.done_label.accesskey
-#: staff.main.menu.edit.delete.key
-#: staff.marc.display.key
-#: staff.patron_display.checkout.done_label.accesskey
-msgid "D"
-msgstr ""
-
-#: staff.checkin.print_receipt_label
-#: staff.hold_capture.print_receipt_label
-msgid "Print List"
-msgstr ""
-
-#: staff.checkin.print_receipt_label.accesskey
-msgid ""
-"_: staff.checkin.print_receipt_label.accesskey\n"
-msgstr ""
-
-#: staff.checkin.reprint_receipt_label
-#: staff.hold_capture.reprint_receipt_label
-msgid "Re-Print Last List"
-msgstr ""
-
-#: staff.checkin_interface_label
-msgid "CHECK IN"
-msgstr ""
-
-#: staff.checkin_label_route_to
-msgid "Route To"
-msgstr ""
-
-#: staff.checkin_label_text
-msgid "Message"
-msgstr ""
-
-#: staff.checkin_patron.name.label
-#: staff.hold_capture_patron.name.label
-#: staff.patron_display.name.label
-msgid "Patron Name"
-msgstr ""
-
-#: staff.checkin_patron.retrieve
-#: staff.hold_capture_patron.retrieve
-#: staff.patron.context_display
-#: staff.patron_navbar.retrieve
-msgid "Retrieve Patron"
-msgstr ""
-
-#: staff.checkout_interface_label
-msgid "CHECK OUT"
-msgstr ""
-
-#: staff.circ.offline.main.label
-msgid "Evergreen Offline"
-msgstr ""
-
-#: staff.circ.offline.server_time.tooltiptext
-msgid "Estimated Server Time - Click to adjust"
-msgstr ""
-
-#: staff.circ.offline.cmd_checkout.label
-#: staff.circ.offline.cmd_checkout.accesskey
-msgid "&Check Out"
-msgstr ""
-
-#: staff.circ.offline.cmd_renew.label
-#: staff.circ.offline.cmd_renew.accesskey
-msgid "&Renew"
-msgstr ""
-
-#: staff.circ.offline.cmd_in_house_use.label
-#: staff.circ.offline.cmd_in_house_use.accesskey
-msgid "In &House Use"
-msgstr ""
-
-#: staff.circ.offline.cmd_checkin.label
-#: staff.circ.offline.cmd_checkin.accesskey
-msgid "Check &In"
-msgstr ""
-
-#: staff.circ.offline.cmd_register_patron.label
-#: staff.circ.offline.cmd_register_patron.accesskey
-msgid "Register &Patron"
-msgstr ""
-
-#: staff.circ.offline.cmd_print_last_receipt.label
-#: staff.circ.offline.cmd_print_last_receipt.accesskey
-msgid "&Last Receipt"
-msgstr ""
-
-#: staff.circ.offline.cmd_exit.label
-#: staff.circ.offline.cmd_exit.accesskey
-msgid "E&xit"
-msgstr ""
-
-#: staff.circ.offline_checkin.main.label
-msgid "Standalone Check In"
-msgstr ""
-
-#: staff.circ.offline_checkin.step3.description
-msgid "Repeat Steps 2 until done."
-msgstr ""
-
-#: staff.circ.offline.finish.description
-#: staff.mbts_xact_finish_label
-msgid "Finish"
-msgstr ""
-
-#: staff.circ.offline.print.description
-msgid "Print receipt?"
-msgstr ""
-
-#: staff.circ.offline_checkout.main.label
-msgid "Standalone Check Out"
-msgstr ""
-
-#: staff.circ.offline_checkout.step2.description
-msgid "Enter the patron's barcode:"
-msgstr ""
-
-#: staff.circ.offline_checkout.step5.description
-#: staff.circ.offline_renew.step5.label
-msgid "Repeat Steps 3 and 4 until done."
-msgstr ""
-
-#: staff.circ.offline_in_house_use.main.label
-msgid "Standalone In House Use"
-msgstr ""
-
-#: staff.circ.offline_in_house_use.uses.label
-msgid "Enter the number of uses for the item:"
-msgstr ""
-
-#: staff.circ.offline_in_house_use.step4.description
-msgid "Repeat Steps 2 and 3 until done."
-msgstr ""
-
-#: staff.circ.offline_register.main.label
-msgid "Standalone Patron Registration"
-msgstr ""
-
-#: staff.circ.offline_register.x_home_ou.label
-#: staff.patron_display.home_ou.label
-msgid "Home Library:"
-msgstr ""
-
-#: staff.circ.offline_register.x_profile.label
-#: staff.patron_display.profile.label
-msgid "Profile:"
-msgstr ""
-
-#: staff.circ.offline_register.barcode.label
-msgid "New Barcode:"
-msgstr ""
-
-#: staff.circ.offline_register.passwd.label
-msgid "New Password:"
-msgstr ""
-
-#: staff.circ.offline_register.family_name.label
-#: staff.patron_display.family_name.label
-msgid "Last Name:"
-msgstr ""
-
-#: staff.circ.offline_register.first_given_name.label
-#: staff.patron_display.first_given_name.label
-#: staff.patron_search_form.first_given_name.label
-msgid "First Name:"
-msgstr ""
-
-#: staff.circ.offline_register.dob.label
-msgid "Date of Birth:"
-msgstr ""
-
-#: staff.circ.offline_register.x_ident_type.label
-msgid "Ident Type:"
-msgstr ""
-
-#: staff.circ.offline_register.ident_value.label
-msgid "Ident Value:"
-msgstr ""
-
-#: staff.circ.offline_register.street1.label
-msgid "Line 1"
-msgstr ""
-
-#: staff.circ.offline_register.street2.label
-msgid "Line 2"
-msgstr ""
-
-#: staff.circ.offline_register.city.label
-msgid "City"
-msgstr ""
-
-#: staff.circ.offline_register.state.label
-msgid "State"
-msgstr ""
-
-#: staff.circ.offline_register.state.default_value
-msgid "GA"
-msgstr ""
-
-#: staff.circ.offline_register.post_code.label
-msgid "Postal Code"
-msgstr ""
-
-#: staff.circ.offline_register.country.label
-msgid "Country"
-msgstr ""
-
-#: staff.circ.offline_register.country.default_value
-msgid "USA"
-msgstr ""
-
-#: staff.circ.offline_register.submit.label
-#: staff.circ.offline_register.submit.accesskey
-msgid "&Save patron registration"
-msgstr ""
-
-#: staff.circ.offline_renew.main.label
-msgid "Standalone Renew"
-msgstr ""
-
-#: staff.circ.offline_renew.p_barcode.description
-msgid "(Optional) Enter the patron's barcode:"
-msgstr ""
-
-#: staff.circ.checkin.caption
-#: staff.circ.context_checkin
-msgid "Check In"
-msgstr ""
-
-#: staff.circ.checkin.scan_label
-#: staff.circ.hold_capture.scan_label
-#: staff.patron_display.checkout.scan_label
-msgid "Enter Barcode:"
-msgstr ""
-
-#: staff.circ.checkin.scan_label.accesskey
-#: staff.circ.hold_capture.scan_label.accesskey
-#: staff.main.menu.cat.key
-#: staff.patron_display.checkout.scan_label.accesskey
-msgid "a"
-msgstr ""
-
-#: staff.circ.context_cancel_hold
-msgid "Cancel Hold"
-msgstr ""
-
-#: staff.circ.context_edit
-msgid "Edit Copy"
-msgstr ""
-
-#: staff.circ.context_lost
-msgid "Mark as Lost"
-msgstr ""
-
-#: staff.circ.context_missing
-msgid "Mark as Missing"
-msgstr ""
-
-#: staff.circ.context_opac
-msgid "Show Title in OPAC"
-msgstr ""
-
-#: staff.circ.context_renew
-#: staff.main.menu.circ.renew.label
-msgid "Renew"
-msgstr ""
-
-#: staff.circ.hold_capture.caption
-msgid "Capture Hold"
-msgstr ""
-
-#: staff.circ_label_due_date
-msgid "Due Date"
-msgstr ""
-
-#: staff.circ_label_id
-msgid "Circ Id"
-msgstr ""
-
-#: staff.circ_label_renewal_remaining
-msgid "Remaining Renewals"
-msgstr ""
-
-#: staff.circ_label_xact_finish
-msgid "Checkin Date"
-msgstr ""
-
-#: staff.circ_label_xact_start
-msgid "Checkout Date"
-msgstr ""
-
-#: staff.copies_editor_interface_label
-msgid "COPIES EDIT"
-msgstr ""
-
-#: staff.copy.attr.circulate
-msgid "Circulate?"
-msgstr ""
-
-#: staff.copy.attr.circulate.no
-#: staff.copy.attr.deposit.no
-#: staff.copy.attr.notes_viewable.example2
-#: staff.copy.attr.opac_visible.no
-#: staff.copy.attr.reference_material.no
-msgid "No"
-msgstr ""
-
-#: staff.copy.attr.circulate.yes
-#: staff.copy.attr.deposit.yes
-#: staff.copy.attr.notes_viewable.example1
-#: staff.copy.attr.opac_visible.yes
-#: staff.copy.attr.reference_material.yes
-msgid "Yes"
-msgstr ""
-
-#: staff.copy.attr.circulating_lib
-msgid "Circulating Library"
-msgstr ""
-
-#: staff.copy.attr.copy_available
-msgid "Copy Status: Available?"
-msgstr ""
-
-#: staff.copy.attr.copy_status
-msgid "Copy Status"
-msgstr ""
-
-#: staff.copy.attr.deposit
-msgid "Deposit?"
-msgstr ""
-
-#: staff.copy.attr.deposit_amount
-msgid "Amount"
-msgstr ""
-
-#: staff.copy.attr.deposit_notes
-msgid "Deposit Notes"
-msgstr ""
-
-#: staff.copy.attr.fine_level.high
-msgid "High"
-msgstr ""
-
-#: staff.copy.attr.fine_level.low
-msgid "Low"
-msgstr ""
-
-#: staff.copy.attr.fine_level.normal
-#: staff.copy.attr.loan_duration.normal
-msgid "Normal"
-msgstr ""
-
-#: staff.copy.attr.holds_protection
-msgid "Holds Protection"
-msgstr ""
-
-#: staff.copy.attr.holds_protection.example1
-msgid "3 months (facility)"
-msgstr ""
-
-#: staff.copy.attr.holds_protection.example2
-msgid "6 months (region)"
-msgstr ""
-
-#: staff.copy.attr.holds_protection.example3
-msgid "No hold protection"
-msgstr ""
-
-#: staff.copy.attr.holds_protection.example4
-msgid "Not holdable"
-msgstr ""
-
-#: staff.copy.attr.home_lib
-msgid "Home Library"
-msgstr ""
-
-#: staff.copy.attr.loan_duration.long
-msgid "Long"
-msgstr ""
-
-#: staff.copy.attr.loan_duration.short
-msgid "Short"
-msgstr ""
-
-#: staff.copy.attr.notes
-msgid "Copy Notes"
-msgstr ""
-
-#: staff.copy.attr.notes_viewable
-msgid "Copy Notes Patron Viewable?"
-msgstr ""
-
-#: staff.copy.attr.opac_visible
-msgid "OPAC Visible?"
-msgstr ""
-
-#: staff.copy.attr.reference_material
-msgid "Reference Material?"
-msgstr ""
-
-#: staff.copy.attr.shelving_location.example1
-msgid "Stacks"
-msgstr ""
-
-#: staff.copy.attr.shelving_location.example10
-msgid "Paperback"
-msgstr ""
-
-#: staff.copy.attr.shelving_location.example2
-msgid "Audio-Visual"
-msgstr ""
-
-#: staff.copy.attr.shelving_location.example3
-msgid "Children's Room"
-msgstr ""
-
-#: staff.copy.attr.shelving_location.example4
-msgid "Garden Room"
-msgstr ""
-
-#: staff.copy.attr.shelving_location.example6
-msgid "Ready Reference"
-msgstr ""
-
-#: staff.copy.attr.shelving_location.example7
-msgid "Behind Circulation Desk"
-msgstr ""
-
-#: staff.copy.attr.shelving_location.example8
-#: staff.marc.display
-msgid "Display"
-msgstr ""
-
-#: staff.copy.attr.shelving_location.example9
-msgid "Health"
-msgstr ""
-
-#: staff.copy.attr.stat.audience
-msgid "Audience"
-msgstr ""
-
-#: staff.copy.attr.stat.audience.example1
-msgid "Adult"
-msgstr ""
-
-#: staff.copy.attr.stat.audience.example2
-msgid "Juvenile"
-msgstr ""
-
-#: staff.copy.attr.stat.audience.example3
-msgid "Preschool"
-msgstr ""
-
-#: staff.copy.attr.stat.audience.example4
-msgid "Primary"
-msgstr ""
-
-#: staff.copy.attr.stat.audience.example5
-msgid "Pre-adolescent"
-msgstr ""
-
-#: staff.copy.attr.stat.audience.example6
-msgid "Young adult"
-msgstr ""
-
-#: staff.copy.attr.stat.audience.example7
-msgid "General"
-msgstr ""
-
-#: staff.copy.attr.stat.genre
-msgid "Genre"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example1
-msgid "Adventure"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example10
-msgid "Spy"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example11
-msgid "Thriller"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example12
-msgid "War"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example13
-msgid "Western"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example14
-msgid "Religious fiction"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example15
-msgid "Shortstory"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example16
-#: staff.marc.008.BKS.biog.desc
-msgid "Biography"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example17
-#: staff.copy.attr.stat.genre.example4
-msgid "Holiday"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example18
-msgid "Nonfiction"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example2
-msgid "Fantasy"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example3
-msgid "Historical"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example5
-msgid "Horror"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example6
-msgid "Humor"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example7
-msgid "Mystery"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example8
-msgid "Romance"
-msgstr ""
-
-#: staff.copy.attr.stat.genre.example9
-msgid "Sci-fi"
-msgstr ""
-
-#: staff.copy.clone
-msgid "Clone Copy"
-msgstr ""
-
-#: staff.copy.clone.key
-msgid ""
-"_: staff.copy.clone.key\n"
-msgstr ""
-
-#: staff.copy.close
-msgid "Close Window"
-msgstr ""
-
-#: staff.copy.default.attr
-msgid "Default Attributes"
-msgstr ""
-
-#: staff.copy.default.attr.value
-#: staff.copy.local.attr.value
-#: staff.copy.pines.attr.value
-msgid "Value"
-msgstr ""
-
-#: staff.copy.delete
-msgid "Delete Copy"
-msgstr ""
-
-#: staff.copy.delete.key
-msgid ""
-"_: staff.copy.delete.key\n"
-msgstr ""
-
-#: staff.copy.edit_categories
-msgid "Edit Categories"
-msgstr ""
-
-#: staff.copy.edit_entries
-msgid "Edit Entries"
-msgstr ""
-
-#: staff.copy.local.attr
-msgid "Local Attributes"
-msgstr ""
-
-#: staff.copy.notes
-msgid "Note"
-msgstr ""
-
-#: staff.copy.notes.add
-msgid "Add Note"
-msgstr ""
-
-#: staff.copy.notes.date
-msgid "Date"
-msgstr ""
-
-#: staff.copy.notes.delete
-msgid "Delete Note"
-msgstr ""
-
-#: staff.copy.notes.from
-msgid "From"
-msgstr ""
-
-#: staff.copy.pines.attr
-msgid "PINES Attributes"
-msgstr ""
-
-#: staff.copy.reload
-msgid "Reload Copy"
-msgstr ""
-
-#: staff.copy.save
-msgid "Save Copy"
-msgstr ""
-
-#: staff.copy.title
-msgid "Barcode goes here"
-msgstr ""
-
-#: staff.copy.transfer
-msgid "Transfer Copy"
-msgstr ""
-
-#: staff.copy.transfer.key
-msgid ""
-"_: staff.copy.transfer.key\n"
-msgstr ""
-
-#: staff.copy.wizard.title
-msgid "Batch Add Copies Wizard"
-msgstr ""
-
-#: staff.copy_browser_interface_label
-msgid "COPIES"
-msgstr ""
-
-#: staff.copy_stat_cat_editor_interface_label
-msgid "COPY STAT-CATS"
-msgstr ""
-
-#: staff.display_patron_interface_label
-msgid "DISPLAY PATRON"
-msgstr ""
-
-#: staff.displaying.hits_per_page
-msgid "Results per page"
-msgstr ""
-
-#: staff.displaying.results
-msgid "Displaying results"
-msgstr ""
-
-#: staff.fieldmapper_label
-msgid "FIELDMAPPER"
-msgstr ""
-
-#: staff.filter_console_label
-msgid "FCONSOLE"
-msgstr ""
-
-#: staff.hold_capture.print_receipt_label.accesskey
-msgid ""
-"_: staff.hold_capture.print_receipt_label.accesskey\n"
-msgstr ""
-
-#: staff.hold_capture_interface_label
-msgid "HOLD CAPTURE"
-msgstr ""
-
-#: staff.holds_status_available
-msgid "Available"
-msgstr ""
-
-#: staff.holds_status_in_transit
-msgid "In Transit"
-msgstr ""
-
-#: staff.holds_status_waiting_for_capture
-msgid "Copy found, waiting for capture"
-msgstr ""
-
-#: staff.holds_status_waiting_for_copy
-msgid "Waiting for available copy"
-msgstr ""
-
-#: staff.items_out_interface_label
-msgid "ITEMS OUT"
-msgstr ""
-
-#: staff.javascript_console_label
-msgid "CONSOLE"
-msgstr ""
-
-#: staff.javascript_shell_label
-msgid "JS SHELL"
-msgstr ""
-
-#: staff.main.auth.caption
-msgid "Authentication"
-msgstr ""
-
-#: staff.main.auth.caption
-msgid "Startup / Shutdown"
-msgstr ""
-
-#: staff.main.auth.debug.caption
-msgid "Debug Options"
-msgstr ""
-
-#: staff.main.auth.debug.clear
-#: staff.main.menu.admin.clear_cache.label
-msgid "Clear Cache"
-msgstr ""
-
-#: staff.main.auth.debug.javascript
-msgid "Javascript Console"
-msgstr ""
-
-#: staff.main.auth.debug.javascript.accesskey
-msgid "J"
-msgstr ""
-
-#: staff.main.auth.hostname
-msgid "Hostname"
-msgstr ""
-
-#: staff.main.auth.hostname.accesskey
-#: staff.main.menu.circ.hold_capture.key
-#: staff.main.menu.circ.place_hold.key
-#: staff.main.menu.help.key
-#: staff.patron_navbar.holds.accesskey
-msgid "H"
-msgstr ""
-
-#: staff.main.auth.offline.caption
-msgid "Offline Use"
-msgstr ""
-
-#: staff.main.auth.offline.export
-msgid "Export Transactions"
-msgstr ""
-
-#: staff.main.auth.offline.import
-msgid "Import Transactions"
-msgstr ""
-
-#: staff.main.auth.offline.interface
-msgid "Standalone Interface"
-msgstr ""
-
-#: staff.main.auth.retest
-msgid "Re-Test Server"
-msgstr ""
-
-#: staff.main.auth.server
-msgid "Server"
-msgstr ""
-
-#: staff.main.auth.version
-msgid "Version"
-msgstr ""
-
-#: staff.main.auth.workstation
-msgid "Workstation"
-msgstr ""
-
-#: staff.main.menu.acquisitions.key
-msgid "q"
-msgstr ""
-
-#: staff.main.menu.acquisitions.label
-msgid "Acquisitions"
-msgstr ""
-
-#: staff.main.menu.admin.accesskey
-#: staff.main.menu.admin.developer.accesskey
-msgid "-"
-msgstr ""
-
-#: staff.main.menu.admin.browse_holds.label
-#: staff.main.menu.admin.browse_holds.accesskey
-msgid "&Browse Unfulfilled Holds for this Pickup Lib"
-msgstr ""
-
-#: staff.main.menu.admin.change_session.label
-msgid "Operator Change: New"
-msgstr ""
-
-#: staff.main.menu.admin.clear_cache.accesskey
-#: staff.marc.008.SER.cont.field_size
-#: staff.marc.008.ctry.field_size
-#: staff.marc.008.lang.field_size
-msgid "3"
-msgstr ""
-
-#: staff.main.menu.admin.cmd_console.label
-#: staff.main.menu.admin.cmd_console.accesskey
-msgid "&Javascript Console"
-msgstr ""
-
-#: staff.main.menu.admin.cmd_shell.label
-#: staff.main.menu.admin.cmd_shell.accesskey
-msgid "Javascript S&hell"
-msgstr ""
-
-#: staff.main.menu.admin.cmd_test.label
-msgid "Test Module"
-msgstr ""
-
-#: staff.main.menu.admin.copy_location_edit.label
-#: staff.main.menu.admin.copy_location_edit.accesskey
-msgid "Copy &Location Editor"
-msgstr ""
-
-#: staff.main.menu.admin.developer.label
-msgid "For developers..."
-msgstr ""
-
-#: staff.main.menu.admin.download_patrons.label
-#: staff.main.menu.admin.download_patrons.accesskey
-msgid "&Download Offline Patron List"
-msgstr ""
-
-#: staff.main.menu.admin.fieldmapper.label
-#: staff.main.menu.admin.fieldmapper.accesskey
-msgid "Field&mapper"
-msgstr ""
-
-#: staff.main.menu.admin.key
-msgid "i"
-msgstr ""
-
-#: staff.main.menu.admin.label
-msgid "Admin"
-msgstr ""
-
-#: staff.main.menu.admin.local_admin.label
-#: staff.main.menu.admin.local_admin.accesskey
-msgid "&Local System Administration"
-msgstr ""
-
-#: staff.main.menu.admin.non_cat_type_edit.label
-#: staff.main.menu.admin.non_cat_type_edit.accesskey
-msgid "&Non-Cataloged Type Editor"
-msgstr ""
-
-#: staff.main.menu.admin.offline_xacts.label
-#: staff.main.menu.admin.offline_xacts.accesskey
-msgid "Offline &Transaction Management"
-msgstr ""
-
-#: staff.main.menu.admin.public_opac.label
-#: staff.main.menu.admin.public_opac.accesskey
-msgid "&Public OPAC"
-msgstr ""
-
-#: staff.main.menu.admin.restore_all_tabs.label
-msgid "Unhide Tabs"
-msgstr ""
-
-#: staff.main.menu.admin.extension_manager.label
-msgid "Extension Manager"
-msgstr ""
-
-#: staff.main.menu.admin.theme_manager.label
-msgid "Theme Manager"
-msgstr ""
-
-#: staff.main.menu.admin.about_config.label
-msgid "about:config"
-msgstr ""
-
-#: staff.main.menu.admin.stat_cat_edit.label
-#: staff.main.menu.admin.stat_cat_edit.accesskey
-msgid "Statistical &Category Editor"
-msgstr ""
-
-#: staff.main.menu.admin.survey_wizard.label
-#: staff.main.menu.admin.survey_wizard.accesskey
-msgid "&Survey Wizard"
-msgstr ""
-
-#: staff.main.menu.admin.template_edit.label
-#: staff.main.menu.admin.template_edit.accesskey
-msgid "&Receipt Template Editor"
-msgstr ""
-
-#: staff.main.menu.admin.user_edit.label
-#: staff.main.menu.admin.user_edit.accesskey
-msgid "&User Permission Editor"
-msgstr ""
-
-#: staff.main.menu.admin.xuleditor.label
-#: staff.main.menu.admin.xuleditor.accesskey
-msgid "&XUL Test"
-msgstr ""
-
-#: staff.main.menu.admin.venkman.label
-msgid "Venkman"
-msgstr ""
-
-#: staff.main.menu.cat.label
-#: staff.main.menu.cat.accesskey
-msgid "Catalo&ging"
-msgstr ""
-
-#: staff.main.menu.cat.add_bib.label
-msgid "Add Bib Record"
-msgstr ""
-
-#: staff.main.menu.cat.add_copy.key
-#: staff.main.menu.cat.copy_status.key
-#: staff.main.menu.circ.copy_status.key
-#: staff.patron_navbar.items.accesskey
-msgid "I"
-msgstr ""
-
-#: staff.main.menu.cat.add_copy.label
-msgid "Add Item"
-msgstr ""
-
-#: staff.main.menu.cat.add_volume.label
-msgid "Add Volume"
-msgstr ""
-
-#: staff.main.menu.cat.bib_search.label
-msgid "Search the Catalog"
-msgstr ""
-
-#: staff.main.menu.cat.bib_status.label
-msgid "Display Bib Record"
-msgstr ""
-
-#: staff.main.menu.cat.copy_status.label
-#: staff.main.menu.circ.copy_status.label
-msgid "Display Item"
-msgstr ""
-
-#: staff.main.menu.cat.create_marc.label
-#: staff.main.menu.cat.create_marc.accesskey
-msgid "Create &New Marc Record"
-msgstr ""
-
-#: staff.main.menu.cat.dedup.label
-msgid "Merge/Transfer Interface"
-msgstr ""
-
-#: staff.main.menu.cat.edit_copy_buckets.label
-#: staff.main.menu.cat.edit_copy_buckets.accesskey
-msgid "Manage Copy &Buckets"
-msgstr ""
-
-#: staff.main.menu.cat.edit_record_buckets.label
-#: staff.main.menu.cat.edit_record_buckets.accesskey
-msgid "Manage &Record Buckets"
-msgstr ""
-
-#: staff.main.menu.cat.edit_volume_buckets.label
-#: staff.main.menu.cat.edit_volume_buckets.accesskey
-msgid "Manage &Volume Buckets"
-msgstr ""
-
-#: staff.main.menu.cat.edit_user_buckets.label
-#: staff.main.menu.cat.edit_user_buckets.accesskey
-msgid "Manage &User Buckets"
-msgstr ""
-
-#: staff.main.menu.cat.retrieve_last_record.label
-#: staff.main.menu.cat.retrieve_last_record.accesskey
-msgid "Retrieve &Last Record"
-msgstr ""
-
-#: staff.main.menu.cat.search_tcn.label
-#: staff.main.menu.cat.search_tcn.accesskey
-msgid "Retrieve record by &TCN"
-msgstr ""
-
-#: staff.main.menu.cat.volume_status.label
-msgid "Display Volume"
-msgstr ""
-
-#: staff.main.menu.cat.z39_50_import.label
-#: staff.main.menu.cat.z39_50_import.accesskey
-msgid "Import Record from &Z39.50"
-msgstr ""
-
-#: staff.main.menu.circ.barcode.retrieve_patron
-msgid "Retrieve Patron by Barcode"
-msgstr ""
-
-#: staff.main.menu.circ.barcode.show_item
-msgid "Show Item Status by Barcode"
-msgstr ""
-
-#: staff.main.menu.circ.checkin.label
-msgid "Check In Items"
-msgstr ""
-
-#: staff.main.menu.circ.checkout.label
-msgid "Check Out Items"
-msgstr ""
-
-#: staff.main.menu.circ.claimed_returned.label
-msgid "Mark as \"Claimed Returned\""
-msgstr ""
-
-#: staff.main.menu.circ.found.label
-msgid "Mark Found"
-msgstr ""
-
-#: staff.main.menu.circ.hold_browse.label
-#: staff.main.menu.circ.hold_browse.accesskey
-msgid "&Browse Holds Shelf"
-msgstr ""
-
-#: staff.main.menu.circ.hold_capture.label
-msgid "Capture Holds"
-msgstr ""
-
-#: staff.main.menu.circ.hold_pull.label
-#: staff.main.menu.circ.hold_pull.accesskey
-msgid "Pull Li&st for Hold Requests"
-msgstr ""
-
-#: staff.main.menu.circ.in_house.label
-#: staff.main.menu.circ.in_house.accesskey
-msgid "Record &In-House Use"
-msgstr ""
-
-#: staff.main.menu.circ.label
-msgid "Circulation"
-msgstr ""
-
-#: staff.main.menu.circ.lost.label
-msgid "Mark Lost"
-msgstr ""
-
-#: staff.main.menu.circ.mark_used.key
-#: staff.main.menu.edit.buckets.users.accesskey
-#: staff.main.menu.edit.undo.key
-msgid "U"
-msgstr ""
-
-#: staff.main.menu.circ.mark_used.label
-msgid "Mark Used"
-msgstr ""
-
-#: staff.main.menu.circ.missing.label
-msgid "Mark Missing"
-msgstr ""
-
-#: staff.main.menu.circ.offline.label
-#: staff.main.menu.circ.offline.accesskey
-msgid "Enter O&ffline Interface"
-msgstr ""
-
-#: staff.main.menu.circ.patron_registration.label
-msgid "Register Patron"
-msgstr ""
-
-#: staff.main.menu.circ.patron_retrieve.label
-#: staff.main.menu.circ.patron_retrieve.accesskey
-msgid "Retrieve &Last Patron"
-msgstr ""
-
-#: staff.main.menu.circ.patron_status.label
-msgid "Display Patron"
-msgstr ""
-
-#: staff.main.menu.circ.place_hold.label
-#: staff.main.menu.circ.place_hold.accesskey
-msgid "Place &Hold"
-msgstr ""
-
-#: staff.main.menu.circ.quick_add.key
-#: staff.main.menu.quit.accesskey
-msgid "Q"
-msgstr ""
-
-#: staff.main.menu.circ.quick_add.label
-msgid "Quick Add"
-msgstr ""
-
-#: staff.main.menu.circ.renew.key
-msgid "n"
-msgstr ""
-
-#: staff.main.menu.circ.reprint.label
-#: staff.main.menu.circ.reprint.accesskey
-msgid "Re-Print &Last"
-msgstr ""
-
-#: staff.main.menu.circ.special.label
-msgid "Special Circulation"
-msgstr ""
-
-#: staff.main.menu.edit.buckets.copies
-msgid "Copy Buckets"
-msgstr ""
-
-#: staff.main.menu.edit.buckets.label
-msgid "Manage Buckets"
-msgstr ""
-
-#: staff.main.menu.edit.buckets.records
-msgid "Record Buckets"
-msgstr ""
-
-#: staff.main.menu.edit.buckets.volumes
-msgid "Volume Buckets"
-msgstr ""
-
-#: staff.main.menu.edit.buckets.users
-msgid "User Buckets"
-msgstr ""
-
-#: staff.main.menu.edit.copy.label
-msgid "Copy"
-msgstr ""
-
-#: staff.main.menu.edit.cut.key
-msgid "t"
-msgstr ""
-
-#: staff.main.menu.edit.cut.label
-msgid "Cut"
-msgstr ""
-
-#: staff.main.menu.edit.delete.label
-msgid "Delete"
-msgstr ""
-
-#: staff.main.menu.edit.find.label
-msgid "Find"
-msgstr ""
-
-#: staff.main.menu.edit.find_again.key
-msgid "g"
-msgstr ""
-
-#: staff.main.menu.edit.find_again.label
-msgid "Find Again"
-msgstr ""
-
-#: staff.main.menu.edit.label
-#: staff.patron_navbar.edit
-msgid "Edit"
-msgstr ""
-
-#: staff.main.menu.edit.paste.label
-msgid "Paste"
-msgstr ""
-
-#: staff.main.menu.edit.redo.label
-msgid "Redo"
-msgstr ""
-
-#: staff.main.menu.edit.select_all.label
-msgid "Select All"
-msgstr ""
-
-#: staff.main.menu.edit.undo.label
-msgid "Undo"
-msgstr ""
-
-#: staff.main.menu.entity.bib.key
-msgid ""
-"_: staff.main.menu.entity.bib.key\n"
-msgstr ""
-
-#: staff.main.menu.entity.bib.label
-msgid "Bib Records"
-msgstr ""
-
-#: staff.main.menu.entity.copy.key
-msgid ""
-"_: staff.main.menu.entity.copy.key\n"
-msgstr ""
-
-#: staff.main.menu.entity.copy.label
-msgid "Items"
-msgstr ""
-
-#: staff.main.menu.entity.patron.key
-msgid ""
-"_: staff.main.menu.entity.patron.key\n"
-msgstr ""
-
-#: staff.main.menu.entity.patron.label
-msgid "Patrons"
-msgstr ""
-
-#: staff.main.menu.entity.volume.key
-msgid ""
-"_: staff.main.menu.entity.volume.key\n"
-msgstr ""
-
-#: staff.main.menu.entity.volume.label
-msgid "Volumes"
-msgstr ""
-
-#: staff.main.menu.file.close.label
-#: staff.main.menu.file.close.accesskey
-msgid "Close &Window"
-msgstr ""
-
-#: staff.main.menu.file.close_tab.label
-#: staff.main.menu.file.close_tab.accesskey
-msgid "&Close Tab"
-msgstr ""
-
-#: staff.main.menu.file.close_tab.key
-msgid ""
-"_: staff.main.menu.file.close_tab.key\n"
-msgstr ""
-
-#: staff.main.menu.file.label
-msgid "File"
-msgstr ""
-
-#: staff.main.menu.file.new.label
-msgid "New Window"
-msgstr ""
-
-#: staff.main.menu.file.new_tab.label
-msgid "New Tab"
-msgstr ""
-
-#: staff.main.menu.file.open.label
-msgid "Open Session"
-msgstr ""
-
-#: staff.main.menu.file.save.label
-msgid "Save Session"
-msgstr ""
-
-#: staff.main.menu.help.label
-msgid "Help"
-msgstr ""
-
-#: staff.main.menu.quit
-msgid "Quit Program"
-msgstr ""
-
-#: staff.main.menu.replace_barcode.label
-msgid "Replace Barcode"
-msgstr ""
-
-#: staff.main.menu.reports.key
-msgid ""
-"_: staff.main.menu.reports.key\n"
-msgstr ""
-
-#: staff.main.menu.reports.label
-msgid "Reports"
-msgstr ""
-
-#: staff.main.menu.search.catalog.label
-#: staff.main.menu.search.catalog.accesskey
-msgid "the &Catalog"
-msgstr ""
-
-#: staff.main.menu.search.copies.label
-#: staff.main.menu.search.copies.accesskey
-msgid "for copies by &Barcode"
-msgstr ""
-
-#: staff.main.menu.search.key
-msgid "r"
-msgstr ""
-
-#: staff.main.menu.search.patrons.label
-#: staff.main.menu.search.patrons.accesskey
-msgid "for &Patrons"
-msgstr ""
-
-#: staff.main.menu.search.patrons_barcode.label
-#: staff.main.menu.search.patrons_barcode.accesskey
-msgid "for patro&n by Barcode"
-msgstr ""
-
-#: staff.main.menu.search.record.label
-#: staff.main.menu.search.record.accesskey
-msgid "for record by &TCN"
-msgstr ""
-
-#: staff.main.menu.serials.key
-msgid "l"
-msgstr ""
-
-#: staff.main.menu.serials.label
-#: staff.z39_50.search_class.item_type.ser
-msgid "Serials"
-msgstr ""
-
-#: staff.main.menu.tabs.close
-msgid "Close All Tabs"
-msgstr ""
-
-#: staff.main.menu.title
-msgid "Evergreen Staff Client"
-msgstr ""
-
-#: staff.main.simple_auth.authorization.label
-msgid "Authorization"
-msgstr ""
-
-#: staff.main.simple_auth.authorize.label
-#: staff.main.simple_auth.authorize.accesskey
-msgid "&Authorization"
-msgstr ""
-
-#: staff.main.simple_auth.exception.label
-msgid "Exception"
-msgstr ""
-
-#: staff.main.test.example_template.label
-msgid "Hello world!"
-msgstr ""
-
-#: staff.marc.008.BKS.MAP.indx.desc
-msgid "Index"
-msgstr ""
-
-#: staff.marc.008.BKS.MAP.indx.field
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field
-#: staff.marc.008.BKS.SER.conf.field
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field
-#: staff.marc.008.BKS.biog.field
-#: staff.marc.008.BKS.cont.field
-#: staff.marc.008.BKS.fest.field
-#: staff.marc.008.BKS.ills.field
-#: staff.marc.008.BKS.litf.field
-#: staff.marc.008.MAP.VIS.form.field
-#: staff.marc.008.SER.alph.field
-#: staff.marc.008.SER.cont.field
-#: staff.marc.008.SER.entw.field
-#: staff.marc.008.SER.freq.field
-#: staff.marc.008.SER.issn.field
-#: staff.marc.008.SER.orig.field
-#: staff.marc.008.SER.regl.field
-#: staff.marc.008.SER.srtp.field
-#: staff.marc.008.SER.succ.field
-#: staff.marc.008.ctry.field
-#: staff.marc.008.date1.field
-#: staff.marc.008.date2.field
-#: staff.marc.008.dtst.field
-#: staff.marc.008.entered.field
-#: staff.marc.008.lang.field
-#: staff.marc.008.mrec.field
-#: staff.marc.008.srce.field
-msgid "008"
-msgstr ""
-
-#: staff.marc.008.BKS.MAP.indx.field_end_pos
-#: staff.marc.008.BKS.MAP.indx.field_start_pos
-msgid "31"
-msgstr ""
-
-#: staff.marc.008.BKS.MAP.indx.field_size
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_size
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_size
-#: staff.marc.008.BKS.SER.conf.field_size
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_size
-#: staff.marc.008.BKS.biog.field_size
-#: staff.marc.008.BKS.fest.field_size
-#: staff.marc.008.BKS.litf.field_size
-#: staff.marc.008.MAP.VIS.form.field_size
-#: staff.marc.008.SER.alph.field_size
-#: staff.marc.008.SER.entw.field_size
-#: staff.marc.008.SER.freq.field_size
-#: staff.marc.008.SER.issn.field_size
-#: staff.marc.008.SER.orig.field_size
-#: staff.marc.008.SER.regl.field_size
-#: staff.marc.008.SER.srtp.field_size
-#: staff.marc.008.SER.succ.field_size
-#: staff.marc.008.dtst.field_size
-#: staff.marc.008.mrec.field_size
-#: staff.marc.008.srce.field_size
-#: staff.marc.LDR.blvl.field_size
-#: staff.marc.LDR.ctrl.field_size
-#: staff.marc.LDR.desc.field_size
-#: staff.marc.LDR.elvl.field_size
-#: staff.marc.LDR.rec_stat.field_size
-#: staff.marc.LDR.type.field_size
-msgid "1"
-msgstr ""
-
-#: staff.marc.008.BKS.MAP.indx.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/indx.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.MAP.indx.short
-msgid "Indx"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.desc
-#: staff.marc.008.MAP.VIS.form.desc
-msgid "Form of Item"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_end_pos
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.field_start_pos
-msgid "23"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.help
-#: staff.marc.008.MAP.VIS.form.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/form.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.MIX.SCO.REC.form.short
-#: staff.marc.008.MAP.VIS.form.short
-msgid "Form"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.desc
-msgid "Government Publication"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_end_pos
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.field_start_pos
-msgid "28"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/gpub.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.VIS.MAP.COM.gpub.short
-msgid "GPub"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.conf.desc
-msgid "Conference Publication"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.conf.field_end_pos
-#: staff.marc.008.BKS.SER.conf.field_start_pos
-#: staff.marc.008.MAP.VIS.form.field_end_pos
-#: staff.marc.008.MAP.VIS.form.field_start_pos
-msgid "29"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.conf.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/conf.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.SER.conf.short
-msgid "Conf"
-msgstr ""
-
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.desc
-msgid "Target Audience"
-msgstr ""
-
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_end_pos
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.field_start_pos
-#: staff.marc.008.SER.orig.field_end_pos
-#: staff.marc.008.SER.orig.field_start_pos
-msgid "22"
-msgstr ""
-
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/audn.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.VIS.SCO.REC.COM.audn.short
-msgid "Audn"
-msgstr ""
-
-#: staff.marc.008.BKS.biog.field_end_pos
-#: staff.marc.008.BKS.biog.field_start_pos
-#: staff.marc.008.SER.succ.field_end_pos
-#: staff.marc.008.SER.succ.field_start_pos
-msgid "34"
-msgstr ""
-
-#: staff.marc.008.BKS.biog.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/biog.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.biog.short
-msgid "Biog"
-msgstr ""
-
-#: staff.marc.008.BKS.cont.desc
-#: staff.marc.008.SER.cont.desc
-msgid "Nature of Contents"
-msgstr ""
-
-#: staff.marc.008.BKS.cont.field_end_pos
-#: staff.marc.008.SER.cont.field_end_pos
-msgid "27"
-msgstr ""
-
-#: staff.marc.008.BKS.cont.field_size
-#: staff.marc.008.BKS.ills.field_size
-#: staff.marc.008.date1.field_size
-#: staff.marc.008.date2.field_size
-msgid "4"
-msgstr ""
-
-#: staff.marc.008.BKS.cont.field_start_pos
-#: staff.marc.008.SER.entw.field_end_pos
-#: staff.marc.008.SER.entw.field_start_pos
-msgid "24"
-msgstr ""
-
-#: staff.marc.008.BKS.cont.help
-#: staff.marc.008.SER.cont.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/cont.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.cont.short
-#: staff.marc.008.SER.cont.short
-msgid "Cont"
-msgstr ""
-
-#: staff.marc.008.BKS.fest.desc
-msgid "Festschrift"
-msgstr ""
-
-#: staff.marc.008.BKS.fest.field_end_pos
-#: staff.marc.008.BKS.fest.field_start_pos
-msgid "30"
-msgstr ""
-
-#: staff.marc.008.BKS.fest.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/fest.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.fest.short
-msgid "Fest"
-msgstr ""
-
-#: staff.marc.008.BKS.ills.desc
-msgid "Illustrations"
-msgstr ""
-
-#: staff.marc.008.BKS.ills.field_end_pos
-#: staff.marc.008.SER.srtp.field_end_pos
-#: staff.marc.008.SER.srtp.field_start_pos
-msgid "21"
-msgstr ""
-
-#: staff.marc.008.BKS.ills.field_start_pos
-#: staff.marc.008.SER.freq.field_end_pos
-#: staff.marc.008.SER.freq.field_start_pos
-#: staff.marc.LDR.desc.field_end_pos
-#: staff.marc.LDR.desc.field_start_pos
-msgid "18"
-msgstr ""
-
-#: staff.marc.008.BKS.ills.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/ills.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.ills.short
-msgid "Ills"
-msgstr ""
-
-#: staff.marc.008.BKS.litf.desc
-msgid "Literary Form"
-msgstr ""
-
-#: staff.marc.008.BKS.litf.field_end_pos
-#: staff.marc.008.BKS.litf.field_start_pos
-#: staff.marc.008.SER.alph.field_end_pos
-#: staff.marc.008.SER.alph.field_start_pos
-msgid "33"
-msgstr ""
-
-#: staff.marc.008.BKS.litf.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/litf.shtm"
-msgstr ""
-
-#: staff.marc.008.BKS.litf.short
-msgid "LitF"
-msgstr ""
-
-#: staff.marc.008.SER.alph.desc
-msgid "Original Alphabet or Script of Title"
-msgstr ""
-
-#: staff.marc.008.SER.alph.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/alph.shtm"
-msgstr ""
-
-#: staff.marc.008.SER.alph.short
-msgid "Alph"
-msgstr ""
-
-#: staff.marc.008.SER.cont.field_start_pos
-msgid "25"
-msgstr ""
-
-#: staff.marc.008.SER.entw.desc
-msgid "Nature of Entire Work"
-msgstr ""
-
-#: staff.marc.008.SER.entw.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/entw.shtm"
-msgstr ""
-
-#: staff.marc.008.SER.entw.short
-msgid "EntW"
-msgstr ""
-
-#: staff.marc.008.SER.freq.desc
-msgid "Frequency"
-msgstr ""
-
-#: staff.marc.008.SER.freq.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/freq.shtm"
-msgstr ""
-
-#: staff.marc.008.SER.freq.short
-msgid "Freq"
-msgstr ""
-
-#: staff.marc.008.SER.issn.desc
-msgid "ISSN Center"
-msgstr ""
-
-#: staff.marc.008.SER.issn.field_end_pos
-#: staff.marc.008.SER.issn.field_start_pos
-msgid "20"
-msgstr ""
-
-#: staff.marc.008.SER.issn.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/issn.shtm"
-msgstr ""
-
-#: staff.marc.008.SER.issn.short
-#: staff.record_list.issn
-#: staff.z39_50.search_class.issn
-msgid "ISSN"
-msgstr ""
-
-#: staff.marc.008.SER.orig.desc
-msgid "Form of Original Item"
-msgstr ""
-
-#: staff.marc.008.SER.orig.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/orig.shtm"
-msgstr ""
-
-#: staff.marc.008.SER.orig.short
-msgid "Orig"
-msgstr ""
-
-#: staff.marc.008.SER.regl.desc
-msgid "Regularity"
-msgstr ""
-
-#: staff.marc.008.SER.regl.field_end_pos
-#: staff.marc.008.SER.regl.field_start_pos
-msgid "19"
-msgstr ""
-
-#: staff.marc.008.SER.regl.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/regl.shtm"
-msgstr ""
-
-#: staff.marc.008.SER.regl.short
-msgid "Regl"
-msgstr ""
-
-#: staff.marc.008.SER.srtp.desc
-msgid "Type of Continuing Resource"
-msgstr ""
-
-#: staff.marc.008.SER.srtp.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/srtp.shtm"
-msgstr ""
-
-#: staff.marc.008.SER.srtp.short
-msgid "SrTp"
-msgstr ""
-
-#: staff.marc.008.SER.succ.desc
-msgid "Entry Convention"
-msgstr ""
-
-#: staff.marc.008.SER.succ.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/succ.shtm"
-msgstr ""
-
-#: staff.marc.008.SER.succ.short
-msgid "S/L"
-msgstr ""
-
-#: staff.marc.008.ctry.desc
-msgid "Country of Publication, etc."
-msgstr ""
-
-#: staff.marc.008.ctry.field_end_pos
-#: staff.marc.LDR.elvl.field_end_pos
-#: staff.marc.LDR.elvl.field_start_pos
-msgid "17"
-msgstr ""
-
-#: staff.marc.008.ctry.field_start_pos
-msgid "15"
-msgstr ""
-
-#: staff.marc.008.ctry.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/ctry.shtm"
-msgstr ""
-
-#: staff.marc.008.ctry.short
-msgid "Ctry"
-msgstr ""
-
-#: staff.marc.008.date1.desc
-#: staff.marc.008.date1.short
-msgid "Date 1"
-msgstr ""
-
-#: staff.marc.008.date1.field_end_pos
-msgid "10"
-msgstr ""
-
-#: staff.marc.008.date1.field_start_pos
-#: staff.marc.LDR.blvl.field_end_pos
-#: staff.marc.LDR.blvl.field_start_pos
-msgid "7"
-msgstr ""
-
-#: staff.marc.008.date2.desc
-#: staff.marc.008.date2.short
-msgid "Date 2"
-msgstr ""
-
-#: staff.marc.008.date2.field_end_pos
-msgid "14"
-msgstr ""
-
-#: staff.marc.008.date2.field_start_pos
-msgid "11"
-msgstr ""
-
-#: staff.marc.008.dates
-msgid "Dates"
-msgstr ""
-
-#: staff.marc.008.dates.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/dates.shtm"
-msgstr ""
-
-#: staff.marc.008.dtst.desc
-msgid "Type of Date/Publication Status"
-msgstr ""
-
-#: staff.marc.008.dtst.field_end_pos
-#: staff.marc.008.dtst.field_start_pos
-#: staff.marc.008.entered.field_size
-#: staff.marc.LDR.type.field_end_pos
-#: staff.marc.LDR.type.field_start_pos
-msgid "6"
-msgstr ""
-
-#: staff.marc.008.dtst.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/dtst.shtm"
-msgstr ""
-
-#: staff.marc.008.dtst.short
-msgid "DtSt"
-msgstr ""
-
-#: staff.marc.008.entered.desc
-msgid "Date Entered"
-msgstr ""
-
-#: staff.marc.008.entered.field_end_pos
-#: staff.marc.LDR.rec_stat.field_end_pos
-#: staff.marc.LDR.rec_stat.field_start_pos
-msgid "5"
-msgstr ""
-
-#: staff.marc.008.entered.field_start_pos
-msgid "0"
-msgstr ""
-
-#: staff.marc.008.entered.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/entered.shtm"
-msgstr ""
-
-#: staff.marc.008.entered.short
-msgid "Entered"
-msgstr ""
-
-#: staff.marc.008.lang.desc
-msgid "Language Code"
-msgstr ""
-
-#: staff.marc.008.lang.field_end_pos
-msgid "37"
-msgstr ""
-
-#: staff.marc.008.lang.field_start_pos
-msgid "35"
-msgstr ""
-
-#: staff.marc.008.lang.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/lang.shtm"
-msgstr ""
-
-#: staff.marc.008.lang.short
-msgid "Lang"
-msgstr ""
-
-#: staff.marc.008.mrec.desc
-msgid "Modified Record"
-msgstr ""
-
-#: staff.marc.008.mrec.field_end_pos
-#: staff.marc.008.mrec.field_start_pos
-msgid "38"
-msgstr ""
-
-#: staff.marc.008.mrec.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/mrec.shtm"
-msgstr ""
-
-#: staff.marc.008.mrec.short
-msgid "MRec"
-msgstr ""
-
-#: staff.marc.008.srce.desc
-msgid "Cataloging Source"
-msgstr ""
-
-#: staff.marc.008.srce.field_end_pos
-#: staff.marc.008.srce.field_start_pos
-msgid "39"
-msgstr ""
-
-#: staff.marc.008.srce.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/srce.shtm"
-msgstr ""
-
-#: staff.marc.008.srce.short
-msgid "Srce"
-msgstr ""
-
-#: staff.marc.LDR.blvl.desc
-msgid "Bibliographic Level"
-msgstr ""
-
-#: staff.marc.LDR.blvl.field
-#: staff.marc.LDR.ctrl.field
-#: staff.marc.LDR.desc.field
-#: staff.marc.LDR.elvl.field
-#: staff.marc.LDR.rec_stat.field
-#: staff.marc.LDR.type.field
-msgid "LDR"
-msgstr ""
-
-#: staff.marc.LDR.blvl.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/blvl.shtm"
-msgstr ""
-
-#: staff.marc.LDR.blvl.short
-msgid "BLvl"
-msgstr ""
-
-#: staff.marc.LDR.ctrl.desc
-msgid "Type of Control"
-msgstr ""
-
-#: staff.marc.LDR.ctrl.field_end_pos
-#: staff.marc.LDR.ctrl.field_start_pos
-msgid "8"
-msgstr ""
-
-#: staff.marc.LDR.ctrl.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/ctrl.shtm"
-msgstr ""
-
-#: staff.marc.LDR.ctrl.short
-msgid "Ctrl"
-msgstr ""
-
-#: staff.marc.LDR.desc.desc
-msgid "Descriptive Cataloging Form"
-msgstr ""
-
-#: staff.marc.LDR.desc.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/desc.shtm"
-msgstr ""
-
-#: staff.marc.LDR.desc.short
-msgid "Desc"
-msgstr ""
-
-#: staff.marc.LDR.elvl.desc
-msgid "Encoding Level"
-msgstr ""
-
-#: staff.marc.LDR.elvl.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/elvl.shtm"
-msgstr ""
-
-#: staff.marc.LDR.elvl.short
-msgid "ELvl"
-msgstr ""
-
-#: staff.marc.LDR.rec_stat.desc
-msgid "Record Status"
-msgstr ""
-
-#: staff.marc.LDR.rec_stat.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/rec.shtm"
-msgstr ""
-
-#: staff.marc.LDR.rec_stat.short
-msgid "Rec stat"
-msgstr ""
-
-#: staff.marc.LDR.type.desc
-msgid "Type of Record"
-msgstr ""
-
-#: staff.marc.LDR.type.help
-msgid "http://www.oclc.org/bibformats/en/fixedfield/type.shtm"
-msgstr ""
-
-#: staff.marc.close.editor.key
-msgid "W"
-msgstr ""
-
-#: staff.marc.display.control_fields
-msgid "Toggle Control/Data Fields"
-msgstr ""
-
-#: staff.marc.display.cover_art
-msgid "Toggle Cover Art"
-msgstr ""
-
-#: staff.marc.display.explain
-msgid "Explain Errors"
-msgstr ""
-
-#: staff.marc.display.explain.key
-msgid "X"
-msgstr ""
-
-#: staff.marc.display.fixed.BKS
-msgid "Fixed Fields as BKS"
-msgstr ""
-
-#: staff.marc.display.fixed.COM
-msgid "Fixed Fields as COM"
-msgstr ""
-
-#: staff.marc.display.fixed.MAP
-msgid "Fixed Fields as MAP"
-msgstr ""
-
-#: staff.marc.display.fixed.MIX
-msgid "Fixed Fields as MIX"
-msgstr ""
-
-#: staff.marc.display.fixed.REC
-msgid "Fixed Fields as REC"
-msgstr ""
-
-#: staff.marc.display.fixed.SCO
-msgid "Fixed Fields as SCO"
-msgstr ""
-
-#: staff.marc.display.fixed.SER
-msgid "Fixed Fields as SER"
-msgstr ""
-
-#: staff.marc.display.fixed.VIS
-msgid "Fixed Fields as VIS"
-msgstr ""
-
-#: staff.marc.display.legend
-msgid "Legend"
-msgstr ""
-
-#: staff.marc.display.meta_data
-msgid "Toggle Meta Data"
-msgstr ""
-
-#: staff.marc.editor.keys.help
-msgid "Control+D = Delimiter Symbol ; Control+Enter = Insert Row ; Control+Delete = Delete Row;"
-msgstr ""
-
-#: staff.marc.file
-#: staff.marc_editor_interface_label
-msgid "MARC"
-msgstr ""
-
-#: staff.marc.file.close
-msgid "Close Editor"
-msgstr ""
-
-#: staff.marc.file.export
-msgid "Export"
-msgstr ""
-
-#: staff.marc.file.publish
-msgid "Save (to DB)"
-msgstr ""
-
-#: staff.marc.file.reload
-msgid "Reload"
-msgstr ""
-
-#: staff.marc.file.validate
-msgid "Validate"
-msgstr ""
-
-#: staff.marc.groupbox.control
-msgid "Control Fields"
-msgstr ""
-
-#: staff.marc.groupbox.cover
-msgid "Cover Art"
-msgstr ""
-
-#: staff.marc.groupbox.data
-msgid "Data Fields"
-msgstr ""
-
-#: staff.marc.groupbox.fixed
-msgid "Fixed Fields"
-msgstr ""
-
-#: staff.marc.groupbox.meta
-msgid "Meta Data (NOT YET IMPLEMENTED)"
-msgstr ""
-
-#: staff.mbts_balance_owed_label
-msgid "Balance Owed"
-msgstr ""
-
-#: staff.mbts_id_label
-msgid "Bill # "
-msgstr ""
-
-#: staff.mbts_total_owed_label
-msgid "Total Billed"
-msgstr ""
-
-#: staff.mbts_total_paid_label
-msgid "Total Paid"
-msgstr ""
-
-#: staff.mbts_xact_start_label
-msgid "Start"
-msgstr ""
-
-#: staff.mvr_label_doc_id
-msgid "Doc Id"
-msgstr ""
-
-#: staff.next.range
-msgid "Next"
-msgstr ""
-
-#: staff.opac_navigator_interface_label
-msgid "CATALOG NAVIGATOR"
-msgstr ""
-
-#: staff.patron_barcode_entry_interface_label
-#: staff.patron_display_interface_label
-msgid "PATRON"
-msgstr ""
-
-#: staff.patron_display.bills.label
-msgid "Bills:"
-msgstr ""
-
-#: staff.patron_display.checkout.print_receipt_label
-#: staff.patron_display.items.print_receipt_label
-msgid "Print Receipt"
-msgstr ""
-
-#: staff.patron_display.checkout.print_receipt_label.accesskey
-msgid ""
-"_: staff.patron_display.checkout.print_receipt_label.accesskey\n"
-msgstr ""
-
-#: staff.patron_display.checkout.reprint_receipt_label
-msgid "Re-Print Last Receipt"
-msgstr ""
-
-#: staff.patron_display.checkouts.label
-msgid "Check Outs:"
-msgstr ""
-
-#: staff.patron_display.checkouts_overdue.label
-msgid "Overdue:"
-msgstr ""
-
-#: staff.patron_display.contact.caption
-msgid "Identity &amp; Contact Info"
-msgstr ""
-
-#: staff.patron_display.credit.label
-msgid "Credit:"
-msgstr ""
-
-#: staff.patron_display.date_of_birth.label
-msgid "DOB:"
-msgstr ""
-
-#: staff.patron_display.day_phone.label
-msgid "Day Phone:"
-msgstr ""
-
-#: staff.patron_display.email.label
-#: staff.patron_search_form.email.label
-msgid "Email:"
-msgstr ""
-
-#: staff.patron_display.evening_phone.label
-msgid "Evening Phone:"
-msgstr ""
-
-#: staff.patron_display.holds.label
-msgid "Holds:"
-msgstr ""
-
-#: staff.patron_display.holds_available.label
-msgid "Available:"
-msgstr ""
-
-#: staff.patron_display.ident1.label
-msgid "ID 1:"
-msgstr ""
-
-#: staff.patron_display.ident2.label
-msgid "ID 2:"
-msgstr ""
-
-#: staff.patron_display.items_claimed_returned.label
-msgid "Items Claimed Returned:"
-msgstr ""
-
-#: staff.patron_display.library_card.label
-msgid "Library Card:"
-msgstr ""
-
-#: staff.patron_display.mailing.city.label
-msgid "Mailing City:"
-msgstr ""
-
-#: staff.patron_display.mailing.post_code.label
-msgid "Mailing ZIP:"
-msgstr ""
-
-#: staff.patron_display.mailing.state.label
-msgid "Mailing State:"
-msgstr ""
-
-#: staff.patron_display.mailing.street1.label
-msgid "Mailing Address 1:"
-msgstr ""
-
-#: staff.patron_display.mailing.street2.label
-msgid "Mailing Address 2:"
-msgstr ""
-
-#: staff.patron_display.other_phone.label
-msgid "Other Phone:"
-msgstr ""
-
-#: staff.patron_display.physical.city.label
-msgid "Physical City:"
-msgstr ""
-
-#: staff.patron_display.physical.post_code.label
-msgid "Physical ZIP:"
-msgstr ""
-
-#: staff.patron_display.physical.state.label
-msgid "Physical State:"
-msgstr ""
-
-#: staff.patron_display.physical.street1.label
-msgid "Physical Address 1:"
-msgstr ""
-
-#: staff.patron_display.physical.street2.label
-msgid "Physical Address 2:"
-msgstr ""
-
-#: staff.patron_display.physical_address
-msgid "Physical Address"
-msgstr ""
-
-#: staff.patron_display.second_given_name.label
-#: staff.patron_search_form.second_given_name.label
-msgid "Middle Name:"
-msgstr ""
-
-#: staff.patron_display.standing.label
-msgid "Standing:"
-msgstr ""
-
-#: staff.patron_editor_interface_label
-msgid "PATRON EDIT"
-msgstr ""
-
-#: staff.patron_interface_label
-msgid "PATRON "
-msgstr ""
-
-#: staff.patron_navbar.bills
-msgid "Bills"
-msgstr ""
-
-#: staff.patron_navbar.checkout
-msgid "Check Out"
-msgstr ""
-
-#: staff.patron_navbar.holds
-msgid "Holds"
-msgstr ""
-
-#: staff.patron_navbar.info
-msgid "Info"
-msgstr ""
-
-#: staff.patron_navbar.info.accesskey
-msgid "o"
-msgstr ""
-
-#: staff.patron_navbar.items
-msgid "Items Out"
-msgstr ""
-
-#: staff.patron_navbar.refresh
-msgid "Refresh"
-msgstr ""
-
-#: staff.patron_register_interface_label
-msgid "NEW PATRON"
-msgstr ""
-
-#: staff.patron_search_form.caption
-msgid "Search for Patron"
-msgstr ""
-
-#: staff.patron_search_form.city.accesskey
-msgid ""
-"_: staff.patron_search_form.city.accesskey\n"
-msgstr ""
-
-#: staff.patron_search_form.city.label
-msgid "City:"
-msgstr ""
-
-#: staff.patron_search_form.clear.label
-#: staff.patron_search_form.clear.accesskey
-msgid "&Clear Form"
-msgstr ""
-
-#: staff.patron_search_form.email.accesskey
-msgid ""
-"_: staff.patron_search_form.email.accesskey\n"
-msgstr ""
-
-#: staff.patron_search_form.family_name.label
-#: staff.patron_search_form.family_name.accesskey
-msgid "&Last Name:"
-msgstr ""
-
-#: staff.patron_search_form.first_given_name.accesskey
-msgid ""
-"_: staff.patron_search_form.first_given_name.accesskey\n"
-msgstr ""
-
-#: staff.patron_search_form.ident.accesskey
-msgid ""
-"_: staff.patron_search_form.ident.accesskey\n"
-msgstr ""
-
-#: staff.patron_search_form.ident.label
-msgid "ID:"
-msgstr ""
-
-#: staff.patron_search_form.phone.label
-#: staff.patron_search_form.phone.accesskey
-msgid "&Phone:"
-msgstr ""
-
-#: staff.patron_search_form.post_code.accesskey
-msgid ""
-"_: staff.patron_search_form.post_code.accesskey\n"
-msgstr ""
-
-#: staff.patron_search_form.post_code.label
-msgid "ZIP:"
-msgstr ""
-
-#: staff.patron_search_form.search.label
-#: staff.patron_search_form.search.accesskey
-msgid "&Search"
-msgstr ""
-
-#: staff.patron_search_form.second_given_name.accesskey
-msgid ""
-"_: staff.patron_search_form.second_given_name.accesskey\n"
-msgstr ""
-
-#: staff.patron_search_form.state.accesskey
-msgid ""
-"_: staff.patron_search_form.state.accesskey\n"
-msgstr ""
-
-#: staff.patron_search_form.state.label
-msgid "State:"
-msgstr ""
-
-#: staff.patron_search_form.street1.label
-#: staff.patron_search_form.street1.accesskey
-msgid "A&ddress 1:"
-msgstr ""
-
-#: staff.patron_search_form.street2.accesskey
-msgid ""
-"_: staff.patron_search_form.street2.accesskey\n"
-msgstr ""
-
-#: staff.patron_search_form.street2.label
-msgid "Address 2:"
-msgstr ""
-
-#: staff.patron_search_interface_label
-msgid "PATRON SEARCH"
-msgstr ""
-
-#: staff.patron_stat_cat_editor_interface_label
-msgid "PATRON STAT-CATS"
-msgstr ""
-
-#: staff.previous.range
-msgid "Previous"
-msgstr ""
-
-#: staff.receipt_template_editor_interface_label
-msgid "RECEIPTS"
-msgstr ""
-
-#: staff.record_list.copy_count
-msgid "Copies&#740;"
-msgstr ""
-
-#: staff.record_list.publisher
-#: staff.z39_50.search_class.publisher
-msgid "Publisher"
-msgstr ""
-
-#: staff.retrieving.record
-msgid "Retrieving..."
-msgstr ""
-
-#: staff.survey.wizard.page1
-msgid "Initial Settings"
-msgstr ""
-
-#: staff.survey.wizard.page2
-msgid "Add Questions for Survey:"
-msgstr ""
-
-#: staff.survey.wizard.title
-msgid "Add a Survey Wizard"
-msgstr ""
-
-#: staff.survey_admin_interface_label
-msgid "SURVEY ADMIN"
-msgstr ""
-
-#: staff.volume.attr.owning_lib
-msgid "Owning Library"
-msgstr ""
-
-#: staff.volume.wizard.page1
-msgid "Entering Volumes"
-msgstr ""
-
-#: staff.volume.wizard.page2
-msgid "Entering Copies"
-msgstr ""
-
-#: staff.volume.wizard.page3
-msgid "Entering Barcodes"
-msgstr ""
-
-#: staff.volume.wizard.page4
-msgid "Entering Copy-Level Attribute Defaults"
-msgstr ""
-
-#: staff.volume.wizard.title
-msgid "Batch Add Volumes/Copies Wizard"
-msgstr ""
-
-#: staff.xuleditor_label
-msgid "XUL TEST"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type
-msgid "Item Type"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.all
-msgid "All Formats"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.art
-msgid "Papers/Articles"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.bks
-msgid "Books"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.com
-msgid "Computer files"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.map
-msgid "Maps"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.mix
-msgid "Mixed material"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.rec
-msgid "Sound recordings"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.sco
-msgid "Musical scores"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.url
-msgid "Internet Resources"
-msgstr ""
-
-#: staff.z39_50.search_class.item_type.vis
-msgid "Visual materials"
-msgstr ""
-
-#: staff.z39_50.search_class.lccn
-msgid "LCCN"
-msgstr ""
-
-#: staff.z39_50.search_class.pubdate
-msgid "PubDate"
-msgstr ""
-
-#: staff.z39_50.search_class.tcn
-msgid "Accession #"
-msgstr ""
-
-#: staff.z39_50_import_interface_label
-msgid "Z39.50 IMPORT"
-msgstr ""

Deleted: trunk/build/i18n/po/opac.dtd.pot
===================================================================
--- trunk/build/i18n/po/opac.dtd.pot	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/po/opac.dtd.pot	2008-01-17 18:57:17 UTC (rev 8405)
@@ -1,2000 +0,0 @@
-# extracted from ../../Open-ILS/web/opac/locale/en-US/opac.dtd
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-12-11 13:27-0400\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-"X-Generator: Translate Toolkit 1.0.1\n"
-"X-Accelerator-Marker: &\n"
-
-# =================================================================
-# Some generic stuff
-# =================================================================
-#: lang.version
-msgid "remote v1"
-msgstr ""
-
-#: lang.description
-msgid "English"
-msgstr ""
-
-#: lang.author
-msgid "PINES"
-msgstr ""
-
-#: common.all
-msgid "All"
-msgstr ""
-
-#: common.currency
-msgid "$"
-msgstr ""
-
-#: common.name
-msgid "Name"
-msgstr ""
-
-#: common.none
-msgid "None"
-msgstr ""
-
-#: common.title
-msgid "Title"
-msgstr ""
-
-#: common.author
-msgid "Author"
-msgstr ""
-
-#: common.authors
-msgid "Authors"
-msgstr ""
-
-#: common.callnumber
-#: opac.advanced.quick.cn
-msgid "Call Number"
-msgstr ""
-
-#: common.edition
-msgid "Edition"
-msgstr ""
-
-#: common.subject
-msgid "Subject"
-msgstr ""
-
-#: common.series
-msgid "Series"
-msgstr ""
-
-#: common.keyword
-msgid "Keyword"
-msgstr ""
-
-#: common.type
-msgid "Search Type"
-msgstr ""
-
-#: common.isbn
-#: opac.advanced.quick.isbn
-msgid "ISBN"
-msgstr ""
-
-#: common.format
-msgid "Format"
-msgstr ""
-
-# Message displayed while search results are loading
-#: common.loading
-#: myopac.fines.status
-msgid "Loading..."
-msgstr ""
-
-#: common.login
-#: opac.login.login
-msgid "Login"
-msgstr ""
-
-#: common.logout
-msgid "Log Out"
-msgstr ""
-
-#: common.physical
-msgid "Physical Description"
-msgstr ""
-
-#: common.pubdate
-msgid "Publication Date"
-msgstr ""
-
-#: common.publisher
-msgid "Publisher"
-msgstr ""
-
-#: common.results
-msgid "Results"
-msgstr ""
-
-#: common.select
-msgid "Select"
-msgstr ""
-
-#: common.status
-msgid "Status"
-msgstr ""
-
-#: common.at
-msgid "at"
-msgstr ""
-
-#: common.of
-msgid "of"
-msgstr ""
-
-#: common.no
-msgid "No"
-msgstr ""
-
-#: common.yes
-msgid "Yes"
-msgstr ""
-
-#: common.cancel
-#: common.org.cancel
-#: myopac.holds.cancel
-#: myopac.holds.cancel_selected
-msgid "Cancel"
-msgstr ""
-
-#: common.library
-#: rdetail.copyInfo.library
-msgid "Library"
-msgstr ""
-
-#: common.username
-msgid "Username"
-msgstr ""
-
-#: common.password
-msgid "Password"
-msgstr ""
-
-#: common.submit
-msgid "Submit"
-msgstr ""
-
-#: common.close
-msgid "close"
-msgstr ""
-
-#: common.and
-msgid "and"
-msgstr ""
-
-#: common.user_not_found
-msgid "User not found"
-msgstr ""
-
-#: opac.advanced.wizard.title
-#: opac.navigate.advanced
-msgid "Advanced Search"
-msgstr ""
-
-#: common.nowSearching
-msgid "Now searching "
-msgstr ""
-
-#: common.ofAtLeast
-msgid " of at least "
-msgstr ""
-
-#: common.relevancy
-msgid "Match Score: "
-msgstr ""
-
-#: common.tips
-msgid "Tips:"
-msgstr ""
-
-#: common.tips.tip1
-msgid "Click on a folder icon in the sidebar to access related quick searches"
-msgstr ""
-
-#: common.tips.tip2
-msgid "If you don't find what you want try expanding your search using the range selector at the right of the search bar"
-msgstr ""
-
-#: common.org.openAll
-msgid "Expand All"
-msgstr ""
-
-#: common.org.closeAll
-msgid "Close All"
-msgstr ""
-
-#: common.org.loading
-msgid "Loading library selector..."
-msgstr ""
-
-# ==========================================================
-# Tips
-#: common.org.note
-#: tips.label
-msgid "Tip:"
-msgstr ""
-
-#: common.org.notetext
-msgid "Click on a location's name to select it.  Click on the folder icons to expand a section."
-msgstr ""
-
-# =================================================================
-# Footer
-#: opac.basic
-#: footer.basic
-msgid "Basic Catalog (HTML only)"
-msgstr ""
-
-#: common.password_criteria
-msgid "The password must be at least 7 characters in length, "
-"\tcontain at least one letter (a-z/A-Z), "
-"\tand contain at least one number."
-msgstr ""
-
-#: common.a2z.title
-msgid "Title: A to Z"
-msgstr ""
-
-#: common.z2a.title
-msgid "Title: Z to A"
-msgstr ""
-
-#: common.a2z.author
-msgid "Author: A to Z"
-msgstr ""
-
-#: common.z2a.author
-msgid "Author: Z to A"
-msgstr ""
-
-#: common.new2old.pubdate
-msgid "Date: Newest to Oldest"
-msgstr ""
-
-#: common.old2new.pubdate
-msgid "Date: Oldest to Newest"
-msgstr ""
-
-#: opac.style.reddish
-msgid "Reddish"
-msgstr ""
-
-#: holds.where_am_i
-msgid "PINES is a statewide system with both patrons and items "
-"\tassociated with over 250 libraries, holds lists are not as simple as "
-"\t'first come, first served' in PINES.  A complex matrix combining "
-"\tconsideration of item ownership, patron home library, and item purchase "
-"\tdate determines  priorities for holds; the list is dynamic, changing "
-"\twith every hold placed.  Therefore, any indication of a place in the "
-"\tholds list would be inaccurate.  The PINES holds system is designed to "
-"\tobtain a requested item in the fastest and most efficient way possible. "
-"\tYour PINES library will contact you when you hold items become "
-"\tavailable."
-msgstr ""
-
-#: holds.advanced_options
-msgid "If you wish to broaden the scope of your hold to include other "
-"\tversions of this title, select the formats that would be acceptable. "
-"\tThe first available copy will be sent to you."
-msgstr ""
-
-# =================================================================
-# Events and Permissions
-# =================================================================
-#: ilsevent.0
-msgid "Operation Succeeded"
-msgstr ""
-
-#: ilsevent.1000
-msgid "Login failed.  The username or password entered was incorrect."
-msgstr ""
-
-#: ilsevent.1001
-msgid "Login session has timed out or does not exist"
-msgstr ""
-
-#: ilsevent.1002
-msgid "User was not found in the database"
-msgstr ""
-
-#: ilsevent.1200
-msgid "The given username already exists in the database"
-msgstr ""
-
-#: ilsevent.5000
-msgid "Permission Denied"
-msgstr ""
-
-#: ilsperm.CREATE_HOLD
-msgid "User is not allowed to create holds for other users at this location"
-msgstr ""
-
-# =================================================================
-# common/pages
-# =================================================================
-#: common.cn.loading
-msgid "Loading Callnumber Page..."
-msgstr ""
-
-#: common.cn.browsing
-msgid "You are now browsing"
-msgstr ""
-
-#: common.cn.previous
-msgid "&lt;&lt; Previous Page"
-msgstr ""
-
-#: common.cn.shelf
-#: rdetail.extras.browser
-msgid "Shelf Browser"
-msgstr ""
-
-#: common.cn.next
-msgid "Next Page &gt;&gt;"
-msgstr ""
-
-#: common.textsize.title
-msgid "Text Size: "
-msgstr ""
-
-#: common.textsize.regular
-msgid "Regular"
-msgstr ""
-
-# Regular / Large
-#: common.textsize.separator
-msgid "/"
-msgstr ""
-
-#: common.textsize.large
-msgid "Large"
-msgstr ""
-
-#: home.js.disabled
-msgid "JavaScript must be enabled in order for you to use the regular Evergreen Catalog. "
-"However, it seems JavaScript is either disabled or not supported by your browser. "
-"To use the regular Evergreen Catalog, enable JavaScript by changing your browser options, then "
-"<a style='color: blue; text-decoration: underline;' href='/'>try again</a>. "
-"<br/><br/>Alternatively, you can use the basic HTML-only catalog "
-"<a style='color: blue; text-decoration: underline;' href='/opac/extras/slimpac/start.html'>here</a>."
-msgstr ""
-
-# =================================================================
-# MyOPAC bookbag page
-# =================================================================
-#: myopac.delete.bookbag
-msgid "This will remove the selected bookbag and all items contained within the bookbag. "
-"Are you sure you wish to continue?"
-msgstr ""
-
-#: myopac.no.bookbags
-msgid "You have not created any bookbags"
-msgstr ""
-
-#: myopac.bookbags.title
-#: myopac.bookbags
-msgid "My Bookbags"
-msgstr ""
-
-#: myopac.bookbag.items
-msgid "# Items"
-msgstr ""
-
-#: myopac.bookbag.shared
-msgid "Shared"
-msgstr ""
-
-#: myopac.bookbag.toggle
-msgid "Share / Hide"
-msgstr ""
-
-#: myopac.bookbag.delete
-msgid "Delete this bookbag?"
-msgstr ""
-
-#: myopac.items
-msgid "Items"
-msgstr ""
-
-#: myopac.view
-msgid "(View)"
-msgstr ""
-
-#: myopac.atom.feed
-msgid "ATOM Feed"
-msgstr ""
-
-#: myopac.bookbag.hide
-msgid "Hide"
-msgstr ""
-
-#: myopac.bookbag.share
-msgid "Share"
-msgstr ""
-
-#: myopac.delete
-msgid "Delete"
-msgstr ""
-
-#: myopac.bookbag.create
-msgid "Create a new Bookbag"
-msgstr ""
-
-#: myopac.bookbag.naming
-msgid "Enter the name of the new Bookbag: "
-msgstr ""
-
-#: myopac.bookbag.share
-msgid "Share this Bookbag"
-msgstr ""
-
-#: myopac.bookbag.no.items
-msgid "The selected bookbag contains no items..."
-msgstr ""
-
-#: myopac.bookbag.remove
-msgid "Remove this item?"
-msgstr ""
-
-#: myopac.remove.link
-msgid "remove"
-msgstr ""
-
-#: myopac.publish.text
-msgid "Sharing a Bookbag means that the contents of the Bookbag will be visible to others. "
-"To see the public view of a shared Bookbag, click the \"View\" link in the "
-"\"Shared\" column of the Bookbag list at the top of this page."
-msgstr ""
-
-#: myopac.item.confirm
-msgid "Are you sure you wish to remove this bookbag item?"
-msgstr ""
-
-#: myopac.publish.confirm
-msgid "Sharing this bookbag will allow the contents "
-"of the bookback to be seen by others.  Are you sure you wish to share this bookbag?"
-msgstr ""
-
-#: myopac.unpublish.confirm
-msgid "Are you sure you wish to hide this bookbag?"
-msgstr ""
-
-#: myopac.update.success
-msgid "The Bookbag was successfully updated."
-msgstr ""
-
-#: myopac.updated.success
-msgid "Bookbag successfully updated"
-msgstr ""
-
-#: myopac.create.warning
-msgid "Warning: Adding items to a bookbag creates a link between you and the "
-"items in the database.  The contents of the bookbag are NOT publicly "
-"viewable unless the bookbag is shared. However, if you prefer not to "
-"have any link between your patron record and a particular item or items, "
-"we suggest that you do not place said items in a bookbag or that you "
-"avoid using bookbags all together.  Thank you."
-msgstr ""
-
-#: myopac.describe.bookbags
-msgid "Bookbags are..."
-msgstr ""
-
-# =================================================================
-# MyOPAC Checked Page
-# =================================================================
-#: myopac.checked.out
-msgid "Total items out:"
-msgstr ""
-
-#: myopac.checked.overdue
-msgid "Total items overdue:"
-msgstr ""
-
-#: myopac.checked.renew
-msgid "Renew Selected Items"
-msgstr ""
-
-#: myopac.checked.renewing
-msgid "Renewing..."
-msgstr ""
-
-#: myopac.checked.renew.remaining
-msgid "Renewals Remaining"
-msgstr ""
-
-#: myopac.checked.noitems
-msgid "You have no items checked out at this time"
-msgstr ""
-
-#: myopac.checked.other.circ
-msgid "Other Circulations"
-msgstr ""
-
-#: myopac.checked.circ.lib
-msgid "Circulating Library"
-msgstr ""
-
-#: myopac.checked.item.type
-msgid "Circulation Type"
-msgstr ""
-
-#: myopac.checked.circ.time
-msgid "Please return by ..."
-msgstr ""
-
-#: myopac.checked.renew.success
-msgid "item(s) successfully renewed"
-msgstr ""
-
-#: myopac.checked.renew.confirm
-msgid "Are you sure you wish to renew the selected item(s)?"
-msgstr ""
-
-#: myopac.checked.renew.fail
-msgid "The system is unable to renew the selected item at this time.  This usually means the item is needed to fulfill a hold.  Please see a librarian for further help."
-msgstr ""
-
-#: myopac.checked.renew.fail2
-msgid "PINES policy prevents the renewal of this item at this time.  Please see a librarian for further details."
-msgstr ""
-
-# =================================================================
-# MyOPAC Fines Page
-# =================================================================
-#: myopac.fines.title
-msgid "Summary"
-msgstr ""
-
-#: myopac.fines.owed
-msgid "Total Owed"
-msgstr ""
-
-#: myopac.fines.paid
-msgid "Total Paid"
-msgstr ""
-
-#: myopac.fines.balance
-msgid "Balance Owed"
-msgstr ""
-
-#: myopac.fines.overdue
-msgid "Overdue Materials"
-msgstr ""
-
-#: myopac.fines.checkout
-msgid "Checkout Date"
-msgstr ""
-
-#: myopac.fines.due
-#: rdetail.cn.due
-msgid "Due Date"
-msgstr ""
-
-#: myopac.fines.returned
-msgid "Date Returned"
-msgstr ""
-
-#: myopac.fines.accruing
-msgid "(fines accruing)"
-msgstr ""
-
-#: myopac.fines.other
-msgid "Other Fees"
-msgstr ""
-
-#: myopac.fines.time.start
-msgid "Transaction Start Time"
-msgstr ""
-
-#: myopac.fines.time.paid
-msgid "Last Payment Time"
-msgstr ""
-
-#: myopac.fines.owed.initial
-msgid "Initial Amount Owed"
-msgstr ""
-
-#: myopac.fines.paid.amount
-msgid "Total Amount Paid"
-msgstr ""
-
-#: myopac.fines.type
-msgid "Billing Type"
-msgstr ""
-
-# =================================================================
-# MyOPAC Holds Page
-# =================================================================
-#: myopac.holds.formats
-msgid "Formats"
-msgstr ""
-
-#: myopac.holds.location
-msgid "Pickup Location"
-msgstr ""
-
-#: myopac.holds.edit
-msgid "Edit"
-msgstr ""
-
-#: myopac.holds.status.none
-msgid "You have no items on hold at this time"
-msgstr ""
-
-#: myopac.holds.status.waiting
-msgid "Waiting for copy"
-msgstr ""
-
-#: myopac.holds.status.intransit
-msgid "In Transit"
-msgstr ""
-
-#: myopac.holds.status.available
-msgid "Ready for Pickup"
-msgstr ""
-
-#: myopac.holds.verify
-msgid "If you wish to cancel the selected hold, click OK, otherwise click Cancel."
-msgstr ""
-
-#: myopac.holds.freeze_selected
-msgid "Freeze"
-msgstr ""
-
-#: myopac.holds.thaw_selected
-msgid "Un-freeze"
-msgstr ""
-
-#: myopac.holds.thaw_date_selected
-msgid "Set Un-freeze date"
-msgstr ""
-
-#: myopac.holds.processing
-msgid "Processing holds... This may take a moment."
-msgstr ""
-
-#: myopac.holds.actions
-msgid "Actions for selected holds"
-msgstr ""
-
-#: myopac.holds.cancel.confirm
-msgid "Are you sure you wish to cancel the selected holds?"
-msgstr ""
-
-#: myopac.holds.freeze.confirm
-msgid "Are you sure you wish to freeze the selected holds? "
-"Note that if an item has already been selected to fulfill the hold, it will not be frozen"
-msgstr ""
-
-#: myopac.holds.thaw.confirm
-msgid "Are you sure you wish to un-freeze the selected holds?"
-msgstr ""
-
-#: myopac.holds.thaw_date.confirm
-msgid "Are you sure you wish to change the un-freeze date for the selected holds?"
-msgstr ""
-
-#: myopac.holds.freeze.select_thaw
-msgid "Select an 'Un-Freeze' date.  This is the date at which the holds will become active again. "
-"If no date is chosen, the holds will remain frozen until they are manually un-frozen."
-msgstr ""
-
-#: opac.holds.freeze
-msgid "Freeze this hold"
-msgstr ""
-
-#: opac.holds.freeze.help
-msgid "A 'frozen' will retain its place in the queue, but will not be fulfilled until it has been unfrozen."
-msgstr ""
-
-#: opac.holds.freeze.thaw_date
-msgid "Automatically un-freeze hold on:"
-msgstr ""
-
-#: opac.holds.freeze.thaw_date.format
-msgid "YYYY-MM-DD"
-msgstr ""
-
-# =================================================================
-# MyOPAC Preferences Page
-# =================================================================
-#: myopac.prefs.title
-msgid "Preferences"
-msgstr ""
-
-#: myopac.prefs.hits
-msgid "Search hits per page"
-msgstr ""
-
-#: myopac.prefs.font
-msgid "Default Font Size"
-msgstr ""
-
-#: myopac.prefs.font.regular
-msgid "Regular Font"
-msgstr ""
-
-#: myopac.prefs.font.large
-msgid "Large Font"
-msgstr ""
-
-#: myopac.prefs.holds.notify
-msgid "Default Hold Notification Method"
-msgstr ""
-
-#: myopac.prefs.holds.both
-msgid "Use Phone and Email"
-msgstr ""
-
-#: myopac.prefs.holds.phone
-msgid "Use Phone Only"
-msgstr ""
-
-#: myopac.prefs.holds.email
-msgid "Use Email Only"
-msgstr ""
-
-#: myopac.prefs.search.location
-msgid "Default Search Location"
-msgstr ""
-
-#: myopac.prefs.search.home
-msgid "Always search my home library by default."
-msgstr ""
-
-#: myopac.prefs.search.range
-msgid "Default Search Range"
-msgstr ""
-
-#: myopac.prefs.save
-msgid "Save Preference Changes"
-msgstr ""
-
-#: myopac.prefs.save.success
-msgid "Preferences successfully updated"
-msgstr ""
-
-#: myopac.prefs.save.failed
-msgid "Preferences update failed!"
-msgstr ""
-
-#: myopac.prefs.help
-msgid "This setting defines how you will be notified of holds that are ready to be picked up from the library. "
-"By default, holds will use the notification style you choose here. "
-"However, you will still have the option to change individual holds regardless of this setting."
-msgstr ""
-
-#: myopac.holds.unfrozen
-msgid "Un-Frozen"
-msgstr ""
-
-#: myopac.holds.frozen.until
-msgid "Frozen Until"
-msgstr ""
-
-# =================================================================
-# MyOPAC Summary page
-# =================================================================
-#: myopac.summary.expired
-msgid "Your account expired on <span id='myopac.expired.date'/>! "
-"Please see a librarian to renew your account."
-msgstr ""
-
-#: myopac.summary.notes
-msgid "* Staff Notes *"
-msgstr ""
-
-#: myopac.summary.phone.day
-msgid "Day Phone"
-msgstr ""
-
-#: myopac.summary.phone.evening
-msgid "Evening Phone"
-msgstr ""
-
-#: myopac.summary.phone.other
-msgid "Other Phone"
-msgstr ""
-
-#: myopac.summary.change
-msgid "Change"
-msgstr ""
-
-#: myopac.summary.username.enter
-msgid "Enter new username:"
-msgstr ""
-
-#: myopac.summary.password.text
-msgid "(not shown)"
-msgstr ""
-
-#: myopac.summary.password.current
-msgid "Enter current password:"
-msgstr ""
-
-#: myopac.summary.password.new
-msgid "Enter new password:"
-msgstr ""
-
-#: myopac.summary.password.reenter
-msgid "Re-enter new password:"
-msgstr ""
-
-#: myopac.summary.email
-msgid "Email Address"
-msgstr ""
-
-#: myopac.summary.email.new
-msgid "Enter new email address:"
-msgstr ""
-
-#: myopac.summary.id.primary
-msgid "Primary Identification"
-msgstr ""
-
-#: myopac.summary.barcode
-msgid "Active Barcode"
-msgstr ""
-
-#: myopac.summary.home
-msgid "Home Library"
-msgstr ""
-
-#: myopac.summary.genesis
-msgid "Account Creation Date"
-msgstr ""
-
-#: myopac.summary.addresses
-msgid "Addresses"
-msgstr ""
-
-#: myopac.summary.address.type
-msgid "Address Type"
-msgstr ""
-
-#: myopac.summary.address.street
-msgid "Street"
-msgstr ""
-
-#: myopac.summary.address.city
-msgid "City"
-msgstr ""
-
-#: myopac.summary.address.county
-msgid "County"
-msgstr ""
-
-#: myopac.summary.address.state
-msgid "State"
-msgstr ""
-
-#: myopac.summary.address.zip
-msgid "Zip"
-msgstr ""
-
-#: myopac.summary.username.error
-msgid "Please enter a username"
-msgstr ""
-
-#: myopac.summary.username.dup
-msgid "The requested username is not available.  Please choose a different username."
-msgstr ""
-
-#: myopac.summary.username.success
-msgid "Username successfully updated"
-msgstr ""
-
-#: myopac.summary.username.failure
-msgid "Username update failed"
-msgstr ""
-
-#: myopac.summary.username.invalid
-msgid "Username cannot contain spaces or have the same format as a barcode"
-msgstr ""
-
-#: myopac.summary.email.error
-msgid "Please enter a valid email address"
-msgstr ""
-
-#: myopac.summary.email.success
-msgid "Email address successfully updated"
-msgstr ""
-
-#: myopac.summary.email.failed
-msgid "Email address update failed"
-msgstr ""
-
-#: myopac.summary.password.error
-msgid "Passwords are empty or do not match"
-msgstr ""
-
-#: myopac.summary.password.success
-#: login.password.success
-msgid "Password successfully updated"
-msgstr ""
-
-#: myopac.summary.password.failure
-msgid "Password update failed"
-msgstr ""
-
-# =================================================================
-# Advanced Search Page
-# =================================================================
-#: opac.advanced.wizard.contains
-msgid "Selected field contains the following words"
-msgstr ""
-
-#: opac.advanced.wizard.nocontains
-msgid "Selected field does <u>not</u> contain the following words"
-msgstr ""
-
-#: opac.advanced.wizard.exact
-msgid "Selected field contains the <u>exact</u> phrase"
-msgstr ""
-
-#: opac.advanced.refined.title
-msgid "Refined Advanced Search"
-msgstr ""
-
-#: opac.advanced.refined.title_contains
-msgid "Title contains the following words"
-msgstr ""
-
-#: opac.advanced.refined.author_contains
-msgid "Author contains the following words"
-msgstr ""
-
-#: opac.advanced.refined.subject_contains
-msgid "Subject contains the following words"
-msgstr ""
-
-#: opac.advanced.refined.series_contains
-msgid "Series contains the following words"
-msgstr ""
-
-#: opac.advanced.refined.contains
-msgid "Contains"
-msgstr ""
-
-#: opac.advanced.refined.nocontains
-msgid "Does not contain"
-msgstr ""
-
-#: opac.advanced.refined.exact
-msgid "Matches Exactly"
-msgstr ""
-
-#: opac.advanced.marc.warning
-msgid "For Librarians"
-msgstr ""
-
-# ==========================================================
-# MARC expert search
-#: opac.advanced.marc.title
-#: search.marc
-msgid "MARC Expert Search"
-msgstr ""
-
-#: opac.advanced.marc.tag
-msgid "MARC Tag"
-msgstr ""
-
-#: opac.advanced.marc.ind1
-msgid "Indicator 1"
-msgstr ""
-
-#: opac.advanced.marc.ind2
-msgid "Indicator 2"
-msgstr ""
-
-#: opac.advanced.marc.subfield
-msgid "Subfield"
-msgstr ""
-
-#: opac.advanced.marc.value
-msgid "Value"
-msgstr ""
-
-#: opac.advanced.marc.addrow
-msgid "Add a new row"
-msgstr ""
-
-#: opac.advanced.quick.title
-#: sidebar.quick.search
-msgid "Quick Search"
-msgstr ""
-
-#: opac.advanced.quick.issn
-msgid "ISSN"
-msgstr ""
-
-#: opac.advanced.quick.lccn
-msgid "LCCN"
-msgstr ""
-
-# title control number
-#: opac.advanced.quick.tcn
-msgid "TCN"
-msgstr ""
-
-#: opac.advanced.quick.barcode
-msgid "Item Barcode"
-msgstr ""
-
-#: search.marc.tag
-msgid "Tag:"
-msgstr ""
-
-#: search.marc.subfield
-msgid "Subfield:"
-msgstr ""
-
-#: search.marc.value
-msgid "Value:"
-msgstr ""
-
-#: search.marc.add.row
-msgid "Add Row"
-msgstr ""
-
-# ==========================================================
-# Status bar
-# ==========================================================
-#: status.results
-msgid "Including results for"
-msgstr ""
-
-# =================================================================
-# More generic stuff
-# =================================================================
-#: opac.session_expiring
-msgid "Your login session will timeout in 1 minute unless there is activity."
-msgstr ""
-
-#: opac.session_expired
-msgid "Your login session has expired"
-msgstr ""
-
-#: navigate.home
-msgid "Home"
-msgstr ""
-
-#: navigate.home.title
-msgid "Go to the Home page"
-msgstr ""
-
-#: opac.navigate.advanced.title
-msgid "Go to the Advanced Search Page"
-msgstr ""
-
-#: navigate.myopac
-#: opac.navigate.myopac
-msgid "My Account"
-msgstr ""
-
-#: navigate.myopac.title
-msgid "Go to My OPAC"
-msgstr ""
-
-#: navigate.login
-msgid "Log in"
-msgstr ""
-
-#: navigate.login.title
-msgid "Log in for personalized features"
-msgstr ""
-
-#: navigate.logout
-#: navigate.logout.title
-msgid "Log out"
-msgstr ""
-
-#: opac.navigate.selectNewOrg
-msgid "Choose a different library"
-msgstr ""
-
-#: opac.navigate.selectOrg
-#: library.select.help
-msgid "Choose a library to search"
-msgstr ""
-
-#: navigate.loggedinas
-msgid "You are logged in as "
-msgstr ""
-
-#: navigate.loggedinas.title
-msgid "Logged in as..."
-msgstr ""
-
-#: navigate.titleGroupResults
-msgid "My Search Results"
-msgstr ""
-
-#: navigate.titleResults
-msgid "My Title Results"
-msgstr ""
-
-#: navigate.title.details
-msgid "My Title Details"
-msgstr ""
-
-#: navigate.record.details
-msgid "Record Details"
-msgstr ""
-
-#: footer.find.library
-msgid "Find a Library Near Me"
-msgstr ""
-
-#: footer.find.url
-msgid "http://www.georgialibraries.org/lib/directories/pineslibdir.html"
-msgstr ""
-
-#: footer.help.url
-msgid "http://open-ils.org/dokuwiki/doku.php?id=evergreen-user:opac_help"
-msgstr ""
-
-#: footer.help
-msgid "Help"
-msgstr ""
-
-#: footer.library.url
-msgid "http://www.georgialibraries.org/public/pines.html"
-msgstr ""
-
-#: footer.library.about
-msgid "About PINES"
-msgstr ""
-
-#: footer.union.url
-msgid "http://www.galileo.usg.edu/"
-msgstr ""
-
-#: footer.union
-msgid "GALILEO"
-msgstr ""
-
-#: footer.copyright
-msgid "Copyright &#xA9; 2006 Georgia Public Library Service"
-msgstr ""
-
-# Introduces the logo for the project
-#: footer.logo
-msgid "Powered by"
-msgstr ""
-
-# =================================================================
-# My OPAC
-# =================================================================
-#: myopac.account
-msgid "Account Summary"
-msgstr ""
-
-#: myopac.checkouts
-msgid "Items Checked Out"
-msgstr ""
-
-#: myopac.holds
-msgid "Items on Hold"
-msgstr ""
-
-#: myopac.fines
-msgid "Fines"
-msgstr ""
-
-#: myopac.preferences
-msgid "Account Preferences"
-msgstr ""
-
-# =================================================================
-# Sidebar
-# =================================================================
-#: sidebar.relevantSubjects.headerLabel
-msgid "Relevant Subjects"
-msgstr ""
-
-#: sidebar.relevantAuthors.headerLabel
-msgid "Relevant Authors"
-msgstr ""
-
-#: sidebar.relevantSeries.headerLabel
-msgid "Relevant Series"
-msgstr ""
-
-#: sidebar.relevantReviews.headerLabel
-#: rdetail.extras.reviews
-msgid "Reviews"
-msgstr ""
-
-#: sidebar.copy.not.found
-msgid "No copy with the requested barcode was found"
-msgstr ""
-
-# =================================================================
-# Search formats
-# =================================================================
-#: opac.search.books
-msgid "Books"
-msgstr ""
-
-#: opac.search.allFormats
-msgid "All Formats"
-msgstr ""
-
-#: opac.search.largePrint
-msgid "Large Print Books"
-msgstr ""
-
-#: opac.search.audioBooks
-msgid "Audiobooks"
-msgstr ""
-
-#: opac.search.videoRecordings
-msgid "Video Recordings"
-msgstr ""
-
-#: opac.search.music
-msgid "Music"
-msgstr ""
-
-#: opac.search.electronic
-msgid "Electronic Resources"
-msgstr ""
-
-#: opac.search.nowSearching
-msgid "Now Searching"
-msgstr ""
-
-# =================================================================
-# Page Titles
-# =================================================================
-#: opac.title.home
-msgid "Evergreen Home"
-msgstr ""
-
-#: opac.title.mresult
-msgid "Evergreen Title Groups"
-msgstr ""
-
-#: opac.title.rresult
-msgid "Evergreen Titles"
-msgstr ""
-
-#: opac.title.myopac
-msgid "Evergreen My Account"
-msgstr ""
-
-#: opac.title.rdetail
-msgid "Evergreen Title Details"
-msgstr ""
-
-#: opac.title.advanced
-msgid "Evergreen Advanced Search"
-msgstr ""
-
-#: opac.title.reqitems
-msgid "Evergreen Request Items"
-msgstr ""
-
-#: opac.title.cnbrowse
-msgid "Evergreen Call Number Browse"
-msgstr ""
-
-#: opac.holds.forMe
-msgid "Place this hold for myself"
-msgstr ""
-
-#: opac.holds.xulRecipient
-msgid "Enter recipient barcode"
-msgstr ""
-
-#: opac.holds.recipient
-msgid "Recipient"
-msgstr ""
-
-#: opac.holds.placeHold
-msgid "Place Hold"
-msgstr ""
-
-#: opac.holds.contactPhone
-msgid "Contact telephone number"
-msgstr ""
-
-#: opac.holds.contactEmail
-msgid "Contact email address"
-msgstr ""
-
-#: opac.holds.pickupLocation
-msgid "Pickup location"
-msgstr ""
-
-#: opac.holds.success
-msgid "Hold was successfully placed"
-msgstr ""
-
-#: opac.holds.failure
-msgid "Hold was not successfully placed"
-msgstr ""
-
-# =================================================================
-# Advanced
-# =================================================================
-#: advanced.search.title
-msgid "Search Input"
-msgstr ""
-
-#: advanced.add.row
-msgid "Add Search Row"
-msgstr ""
-
-#: advanced.search.submit
-msgid "Submit Search"
-msgstr ""
-
-#: advanced.search.filters
-msgid "Search Filters"
-msgstr ""
-
-#: advanced.item.form
-msgid "Item Form"
-msgstr ""
-
-#: advanced.item.type
-msgid "Item Type"
-msgstr ""
-
-#: advanced.link
-msgid "Advanced"
-msgstr ""
-
-#: advanced.basic.link
-msgid "Basic"
-msgstr ""
-
-#: advanced.literary.form
-msgid "Literary&nbsp;Form"
-msgstr ""
-
-#: advanced.non.fiction
-msgid "Non Fiction"
-msgstr ""
-
-#: advanced.fiction
-msgid "Fiction"
-msgstr ""
-
-#: advanced.language
-msgid "Language"
-msgstr ""
-
-#: advanced.audience
-msgid "Audience"
-msgstr ""
-
-#: advanced.adult
-msgid "Adult"
-msgstr ""
-
-#: advanced.juvenile
-msgid "Juvenile"
-msgstr ""
-
-#: advanced.general
-msgid "General"
-msgstr ""
-
-#: advanced.sort.criteria
-msgid "Sort Criteria"
-msgstr ""
-
-#: advanced.search.library
-msgid "Search Library"
-msgstr ""
-
-#: advanced.relevance
-msgid "Relevance"
-msgstr ""
-
-#: advanced.pubdate
-msgid "Publication date"
-msgstr ""
-
-#: advanced.sort.asc
-msgid "Ascending / A to Z"
-msgstr ""
-
-#: advanced.sort.desc
-msgid "Descending / Z to A"
-msgstr ""
-
-#: advanced.frbrize
-msgid "Group Formats and Editions"
-msgstr ""
-
-#: advanced.go
-msgid "Go"
-msgstr ""
-
-# =================================================================
-# Rdetail
-# =================================================================
-#: rdetail.print
-msgid "print these details"
-msgstr ""
-
-#: rdetail.cn.barcode
-msgid "Barcode"
-msgstr ""
-
-#: rdetail.cn.location
-msgid "Location"
-msgstr ""
-
-#: rdetail.cn.hold.age
-msgid "Age Hold Protection"
-msgstr ""
-
-#: rdetail.cn.genesis
-msgid "Create Date"
-msgstr ""
-
-#: rdetail.cn.holdable
-msgid "Holdable"
-msgstr ""
-
-#: rdetail.cn.more
-msgid "more info..."
-msgstr ""
-
-#: rdetail.cn.less
-msgid "less info"
-msgstr ""
-
-#: rdetail.cn.hold
-#: rdetail.copyInfo.hold
-msgid "place hold"
-msgstr ""
-
-#: rdetail.cn.disabled
-msgid "- Disabled -"
-msgstr ""
-
-#: rdetail.cn.note
-msgid "Copy Note"
-msgstr ""
-
-#: rdetail.cn.category
-msgid "Copy Category"
-msgstr ""
-
-#: rdetail.cn.print
-msgid "Print Page"
-msgstr ""
-
-#: rdetail.page.results
-msgid "First results page"
-msgstr ""
-
-# Result # &common.of; #
-#: rdetail.result
-msgid "Result"
-msgstr ""
-
-#: rdetail.start
-msgid "Start"
-msgstr ""
-
-#: rdetail.page.previous
-msgid "Previous page"
-msgstr ""
-
-#: rdetail.page.next
-msgid "Next page"
-msgstr ""
-
-#: rdetail.page.last
-msgid "Last results page"
-msgstr ""
-
-#: rdetail.end
-msgid "End"
-msgstr ""
-
-#: rdetail.more
-msgid "More Actions..."
-msgstr ""
-
-#: rdetail.bookbag.add
-msgid "Add to bookbag"
-msgstr ""
-
-#: rdetail.bookbag.create
-msgid "Create a new bookbag"
-msgstr ""
-
-#: rdetail.record.deleted
-msgid "This record has been deleted from the database. "
-"We recommend that you remove this title from any bookbags it may have been added to."
-msgstr ""
-
-#: rdetail.none
-msgid "(none)"
-msgstr ""
-
-#: rdetail.bookbag.add.success
-msgid "Item successfully added to bookbag"
-msgstr ""
-
-#: rdetail.bookbag.name
-msgid "Enter the name of the new bookbag"
-msgstr ""
-
-#: rdetail.bookbag.create.success
-msgid "Bookbag successfully created"
-msgstr ""
-
-#: rdetail.detailMain.headerLabel
-msgid "Record Summary"
-msgstr ""
-
-#: rdetail.detailMain.subjects
-msgid "Subjects"
-msgstr ""
-
-#: rdetail.detailMain.abstract
-msgid "Abstract"
-msgstr ""
-
-#: rdetail.detailMain.viewMarc
-msgid "View MARC"
-msgstr ""
-
-#: rdetail.detailMain.hideMarc
-msgid "Return to title details"
-msgstr ""
-
-#: rdetail.author.search
-msgid "Perform an author search"
-msgstr ""
-
-#: rdetail.copyInfo.headerLabel
-msgid "Copy Information"
-msgstr ""
-
-#: rdetail.copyInfo.callnumber
-msgid "Callnumber"
-msgstr ""
-
-#: rdetail.copyInfo.local
-msgid "View Copy Information for this location only"
-msgstr ""
-
-#: rdetail.copyInfo.all
-msgid "View copy information for all libraries"
-msgstr ""
-
-#: rdetail.copyInfo.actions
-msgid "Actions"
-msgstr ""
-
-#: rdetail.copyInfo.print
-msgid "Print Call Numbers for this library"
-msgstr ""
-
-#: rdetail.copyInfo.details
-msgid "details"
-msgstr ""
-
-#: rdetail.copyInfo.browse
-msgid "browse"
-msgstr ""
-
-#: rdetail.extras.summary
-msgid "Copy Summary"
-msgstr ""
-
-#: rdetail.extras.toc
-msgid "Table of Contents"
-msgstr ""
-
-#: rdetail.extras.excerpt
-msgid "Excerpt"
-msgstr ""
-
-#: rdetail.extras.author.notes
-msgid "Author Notes"
-msgstr ""
-
-#: rdetail.extras.annotation
-msgid "Annotation"
-msgstr ""
-
-#: rdetail.extras.marc
-msgid "MARC Record"
-msgstr ""
-
-#: rdetail.extras.call.null
-msgid "There are no call numbers for this item at this location."
-msgstr ""
-
-#: rdetail.extras.call.local
-msgid "Local Call Numbers:"
-msgstr ""
-
-#: rdetail.loading
-msgid "Loading copy infomation..."
-msgstr ""
-
-#: rdetail.noneAvailable
-msgid " * There are no copies in this location"
-msgstr ""
-
-#: rdetail.summary.online
-msgid "Online Resources"
-msgstr ""
-
-#: result.sort_by
-msgid "Sort Results by Relevance"
-msgstr ""
-
-#: result.sort_by.title
-msgid "Sort Results by Title"
-msgstr ""
-
-#: result.sort_by.author
-msgid "Sort Results by Author"
-msgstr ""
-
-#: result.sort_by.pubdate
-msgid "Sort Results by Publication Date"
-msgstr ""
-
-#: result.limit2avail
-msgid "Limit to Available"
-msgstr ""
-
-#: result.info.copies
-msgid "Available copies / Total copies"
-msgstr ""
-
-#: result.info.no.items
-msgid "No items with the selected format were found in this location."
-msgstr ""
-
-#: result.info.format.items
-msgid "Listed below are all items in the catalog with the chosen format."
-msgstr ""
-
-#: result.info.show
-msgid "Show records for"
-msgstr ""
-
-#: result.lowhits.few
-msgid "Few hits were returned for your search."
-msgstr ""
-
-#: result.lowhits.zero
-msgid "Zero hits were returned for your search."
-msgstr ""
-
-#: result.lowhits.did.you.mean
-msgid "Maybe you meant:"
-msgstr ""
-
-#: result.lowhits.formats
-msgid "You will find more hits when searching all item formats:"
-msgstr ""
-
-#: result.lowhits.formats.search
-msgid "Search again with all formats?"
-msgstr ""
-
-#: result.lowhits.related
-msgid "You may also like to try these related searches:"
-msgstr ""
-
-#: result.lowhits.expand
-msgid "You may also wish to expand your search range to:"
-msgstr ""
-
-#: result.lowhits.class
-msgid "You can try searching the same terms by:"
-msgstr ""
-
-#: result.lowhits.title
-msgid "title"
-msgstr ""
-
-#: result.lowhits.author
-msgid "author"
-msgstr ""
-
-#: result.lowhits.subject
-msgid "subject"
-msgstr ""
-
-#: result.lowhits.series
-msgid "series"
-msgstr ""
-
-#: result.lowhits.keyword
-msgid "keyword"
-msgstr ""
-
-#: result.table.keyword
-msgid "View titles for this record"
-msgstr ""
-
-#: result.table.author
-msgid "Perform an Author Search"
-msgstr ""
-
-#: common.call.number.label
-msgid "Call Number:"
-msgstr ""
-
-#: common.isbn.label
-msgid "ISBN:"
-msgstr ""
-
-#: common.issn.label
-msgid "ISSN:"
-msgstr ""
-
-#: common.copy.barcode.label
-msgid "Copy Barcode:"
-msgstr ""
-
-#: common.hold.place
-msgid "Place hold for me"
-msgstr ""
-
-#: common.hold.check
-msgid "Checking for possibility of hold fulfillment..."
-msgstr ""
-
-#: common.hold.create
-msgid "Create / Edit a Hold"
-msgstr ""
-
-#: common.hold.update
-msgid "Update Hold"
-msgstr ""
-
-#: common.hold.type.label
-msgid "Hold Type:"
-msgstr ""
-
-#: common.hold.volume
-msgid "Volume Hold"
-msgstr ""
-
-#: common.hold.copy
-msgid "Copy Hold"
-msgstr ""
-
-#: common.hold.advanced
-msgid "Advanced Hold Options"
-msgstr ""
-
-#: common.hold.delivery
-msgid "Please select a physical location where your hold can be delivered."
-msgstr ""
-
-#: common.hold.exists
-msgid "A hold already exists on the requested item."
-msgstr ""
-
-#: common.hold.exists.override
-msgid "A hold already exists on the requested "
-"item. Would you like to create the hold anyway?"
-msgstr ""
-
-#: common.hold.barred
-msgid "PATRON BARRED. Please see any notes in the "
-"\"Staff Notes\" section of your \"My Account\" page or contact your local library."
-msgstr ""
-
-#: common.hold.item.invalid
-msgid "This hold is no longer valid. It's likely that the "
-"target for the hold was deleted from the system.  Please cancel this hold and "
-"place a new one."
-msgstr ""
-
-#: common.hold.patron.invalid
-msgid "The patron barcode entered as the hold recipient is invalid."
-msgstr ""
-
-# Was (??), perhaps change to a button or icon?
-#: common.help
-msgid "(Help)"
-msgstr ""
-
-#: common.phone.format.help
-msgid "The phone number does not have the correct format. The expected format is XXX-YYY-ZZZZ"
-msgstr ""
-
-#: common.hold.failed
-msgid "No items were found that could fulfill the requested holds. "
-"It's possible that choosing a different format will result in a successful hold. "
-"It is also possible that you have exceeded the number of allowable holds. "
-"For further information, please consult your local librarian."
-msgstr ""
-
-#: common.control.click
-msgid "(control-click to select multiple formats)"
-msgstr ""
-
-#: common.format.alternatives
-msgid "Acceptable Alternative Formats:"
-msgstr ""
-
-#: common.phone.format
-msgid "(XXX-YYY-ZZZZ)"
-msgstr ""
-
-#: common.phone.enable
-msgid "Enable phone notifications for this hold?"
-msgstr ""
-
-#: common.email.enable
-msgid "Enable email notifications for this hold?"
-msgstr ""
-
-#: common.email.none
-msgid "(Patron has no configured email address)"
-msgstr ""
-
-#: common.email.set
-msgid "(See <a class='classic_link' id='holds.no_email.my_account'>My Account</a> for setting your email address)"
-msgstr ""
-
-#: common.keywords.label
-msgid "Keywords:"
-msgstr ""
-
-#: common.physical.label
-msgid "Physical Description:"
-msgstr ""
-
-#: common.series.label
-msgid "Series:"
-msgstr ""
-
-#: common.subject.label
-msgid "Subject:"
-msgstr ""
-
-#: common.title.label
-msgid "Title:"
-msgstr ""
-
-#: common.author.label
-msgid "Author:"
-msgstr ""
-
-#: common.format.label
-msgid "Format:"
-msgstr ""
-
-#: library.select
-msgid "Find results in"
-msgstr ""
-
-#: library.select.label
-msgid "Choose a different library..."
-msgstr ""
-
-#: login.username
-msgid "Enter your username or library barcode"
-msgstr ""
-
-#: login.password.change
-msgid "Change Password"
-msgstr ""
-
-#: login.first.time
-msgid "This appears to be the first time you have logged in. "
-"You will need to change your password."
-msgstr ""
-
-#: login.password.current.enter
-msgid "Enter your current password"
-msgstr ""
-
-#: login.password.new.enter
-msgid "Enter the new password"
-msgstr ""
-
-#: login.password.new.reenter
-msgid "Re-type the new password for verification"
-msgstr ""
-
-#: login.password.update
-msgid "Update Password"
-msgstr ""
-
-#: login.password.nomatch
-msgid "Passwords do not match"
-msgstr ""
-
-#: login.password.strength
-msgid "The password provided is not strong enough."
-msgstr ""
-
-#: login.barcode.inactive
-msgid "The barcode used to login is marked as inactive.  Please contact your local library."
-msgstr ""
-
-#: login.account.inactive
-msgid "This account has been deactivated.  Please contact your local library."
-msgstr ""
-
-#: login.failed
-msgid "Login failed. The username or password provided was not valid. "
-"Ensure Caps-Lock is off and try again or contact your local library."
-msgstr ""
-
-#: button.go
-msgid "Go!"
-msgstr ""
-
-# =================================================================
-# Slimpac Simple Search
-# =================================================================
-#: slimpac.start.title
-msgid "Simple Search"
-msgstr ""
-
-#: slimpac.start.nowSearching
-msgid "Now searching: "
-msgstr ""
-
-#: slimpac.start.dynamic
-msgid "Dynamic Catalog"
-msgstr ""
-
-# =================================================================
-# Slimpac Advanced Search
-# =================================================================
-#: slimpac.advanced.language
-msgid "Item Language"
-msgstr ""
-
-#: slimpac.advanced.create_date
-msgid "Record Creation Date"
-msgstr ""
-
-#: slimpac.advanced.edit_date
-msgid "Record Edit Date"
-msgstr ""
-
-#: opac.image_provided
-msgid "Image provided by"
-msgstr ""
-
-#: vendor.name
-msgid "Amazon"
-msgstr ""
-
-#: vendor.base_link
-msgid "http://amazon.com/dp/"
-msgstr ""

Modified: trunk/build/i18n/tests/testpo.py
===================================================================
--- trunk/build/i18n/tests/testpo.py	2008-01-17 18:00:50 UTC (rev 8404)
+++ trunk/build/i18n/tests/testpo.py	2008-01-17 18:57:17 UTC (rev 8405)
@@ -14,10 +14,13 @@
     po_sources = ('../../Open-ILS/web/opac/locale/en-US/*.dtd',
         '../../Open-ILS/xul/staff_client/chrome/locale/en-US/*.properties',
         '../../Open-ILS/examples/fm_IDL.xml',
+        '../../Open-ILS/src/extras/ils_events.xml',
         '../../Open-ILS/src/sql/Pg/950.data.seed-values.sql')
 
-    po_tmp_files = ('tests/tmp/po/test.properties.pot', 'tests/tmp/po/ll-LL/temp.properties.po')
-    pot_dir = 'tests/tmp/po'
+    po_tmp_files = ('tests/tmp/po/en-US/test.properties.pot', 'tests/tmp/po/ll-LL/temp.properties.po')
+    pot_dir = 'tests/tmp/po/en-US'
+    po_in_dir = 'POINDIR=tests/tmp/po'
+    po_out_dir = 'POOUTDIR=tests/tmp/po'
     locale = 'll-LL'
     locale_dir = 'tests/tmp/po/ll-LL'
     project_dir = 'tests/tmp/locale'
@@ -25,19 +28,20 @@
     newdir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
 
     def setUp(self):
-        print os.getcwd()
         os.chdir(self.newdir)
         self.tearDown()
         devnull = open('/dev/null', 'w')
         os.mkdir('tests/tmp')
         os.mkdir(self.project_dir)
         subprocess.Popen(('cp', '-r', 'po', 'tests/tmp'), 0, None, None, devnull, devnull).wait()
-        subprocess.Popen(('make', 'LOCALE=ll-LL', 'POINDIR=tests/tmp/po', 'POOUTDIR=tests/tmp/po', 'newpot'), 0, None, None, devnull, devnull).wait()
-        subprocess.Popen(('make', 'LOCALE=ll-LL', 'POINDIR=tests/tmp/po', 'POOUTDIR=tests/tmp/po', 'newpo'), 0, None, None, devnull, devnull).wait()
-        subprocess.Popen(('make', 'LOCALE=ll-LL', 'PROJECT=tests/tmp/locale', 'POINDIR=tests/tmp/po', 'POOUTDIR=tests/tmp/po', 'newproject'), 0, None, None, devnull, devnull).wait()
+        subprocess.Popen(('make', 'LOCALE=ll-LL', 'POTSRC=tests/tmp/po/en-US', self.po_in_dir, self.po_out_dir, 'newpot'), 0, None, None, devnull, devnull).wait()
+        subprocess.Popen(('make', 'LOCALE=ll-LL', 'POTSRC=tests/tmp/po/en-US', self.po_in_dir, self.po_out_dir, 'newpo'), 0, None, None, devnull, devnull).wait()
+        subprocess.Popen(('make', 'LOCALE=ll-LL', 'PROJECT=tests/tmp/locale', self.po_in_dir, 'newproject'), 0, None, None, devnull, devnull).wait()
         devnull.close()
 
     def tearDown(self):
+        devnull = open('/dev/null', 'w')
+        subprocess.Popen(('cp', '-r', 'tests/tmp', 'done'), 0, None, None, devnull, devnull).wait()
         for root, dirs, files in os.walk(os.path.join(self.newdir, 'tests/tmp'), topdown=False):
             for name in files:
                 os.remove(os.path.join(root, name))
@@ -101,7 +105,7 @@
 
         # Regenerate the project files to get the translated strings in place
         devnull = open('/dev/null', 'w')
-        subprocess.Popen(('make', 'LOCALE=ll-LL', 'POINDIR=tests/tmp/po', 'POOUTDIR=tests/tmp/po', 'updateproject'), 0, None, None, devnull, devnull).wait()
+        subprocess.Popen(('make', 'LOCALE=ll-LL', self.po_in_dir, self.po_out_dir, 'updateproject'), 0, None, None, devnull, devnull).wait()
 
         self.assertEqual(filecmp.cmp(commonprops, testprops), 1)
 
@@ -136,7 +140,7 @@
 
         # Update the PO files to get the translated strings in place
         devnull = open('/dev/null', 'w')
-        subprocess.Popen(('make', 'LOCALE=ll-LL', 'POINDIR=tests/tmp/po', 'POOUTDIR=tests/tmp/po', 'updatepo'), 0, None, None, devnull, devnull).wait()
+        subprocess.Popen(('make', 'LOCALE=ll-LL', self.po_in_dir, self.po_out_dir, 'updatepo'), 0, None, None, devnull, devnull).wait()
 
         commonprops = os.path.join(self.locale_dir, 'common.properties.po')
         tempprops = os.path.join(self.locale_dir, 'temp.properties.po')



More information about the open-ils-commits mailing list