Tpac links for search the catalog, advanced search, and browse the catalog have incon... user/gcollum/tpac_search_links
authorGarry Collum <gcollum@gmail.com>
Tue, 17 Sep 2013 19:14:41 +0000 (15:14 -0400)
committerGarry Collum <gcollum@gmail.com>
Tue, 17 Sep 2013 19:14:41 +0000 (15:14 -0400)
Added labels and classes to the said links for greater configurability.

Signed-off-by: Garry Collum <gcollum@gmail.com>
40 files changed:
Open-ILS/src/templates/opac/advanced.tt2
Open-ILS/src/templates/opac/browse.tt2
Open-ILS/src/templates/opac/css/style.css.tt2
Open-ILS/src/templates/opac/parts/searchbar.tt2
build/i18n/po/AutoFieldWidget.js/AutoFieldWidget.js.pot
build/i18n/po/Searcher.js/Searcher.js.pot
build/i18n/po/TranslatorPopup.js/TranslatorPopup.js.pot
build/i18n/po/URLVerify.js/URLVerify.js.pot
build/i18n/po/User.js/User.js.pot
build/i18n/po/XULTermLoader.js/XULTermLoader.js.pot
build/i18n/po/acq.js/acq.js.pot
build/i18n/po/admin.properties/admin.properties.pot
build/i18n/po/auth.properties/auth.properties.pot
build/i18n/po/authority.js/authority.js.pot
build/i18n/po/capture.js/capture.js.pot
build/i18n/po/cat.properties/cat.properties.pot
build/i18n/po/circ.properties/circ.properties.pot
build/i18n/po/common.properties/common.properties.pot
build/i18n/po/conify.dtd/conify.dtd.pot
build/i18n/po/conify.js/conify.js.pot
build/i18n/po/db.seed/db.seed.pot
build/i18n/po/fm_IDL.dtd/fm_IDL.dtd.pot
build/i18n/po/ils_events.xml/ils_events.xml.pot
build/i18n/po/lang.dtd/lang.dtd.pot
build/i18n/po/match_set.js/match_set.js.pot
build/i18n/po/offline.properties/offline.properties.pot
build/i18n/po/opac.dtd/opac.dtd.pot
build/i18n/po/opac.js/opac.js.pot
build/i18n/po/patron.properties/patron.properties.pot
build/i18n/po/pickup_and_return.js/pickup_and_return.js.pot
build/i18n/po/pull_list.js/pull_list.js.pot
build/i18n/po/register.js/register.js.pot
build/i18n/po/reports.dtd/reports.dtd.pot
build/i18n/po/reports.js/reports.js.pot
build/i18n/po/reservation.js/reservation.js.pot
build/i18n/po/selfcheck.js/selfcheck.js.pot
build/i18n/po/serial.js/serial.js.pot
build/i18n/po/serial.properties/serial.properties.pot
build/i18n/po/tpac/tpac.pot
build/i18n/po/vandelay.js/vandelay.js.pot

index 38f01fb..9d3929c 100644 (file)
@@ -8,10 +8,10 @@
     <div id="search-wrapper">
         <div id="search-box">
             <span class="search_catalog_lbl">[% l('Search the Catalog') %]</span>
-            <span><a href="[% mkurl(ctx.opac_root _ '/home') %]"
+            <span class="adv_search_catalog_lbl"><a href="[% mkurl(ctx.opac_root _ '/home') %]"
                     id="home_adv_search_link">[%l('Basic Search')%]</a></span>
 
-            <span><a href="[% mkurl(ctx.opac_root _ '/browse') %]">[%
+            <span class="browse_the_catalog_lbl"><a href="[% mkurl(ctx.opac_root _ '/browse') %]">[%
                     l('Browse the Catalog')%]</a></span>
         </div>
         <div id="adv_search_parent">
index 24e5457..54dec17 100644 (file)
@@ -17,9 +17,9 @@
           # INCLUDE "opac/parts/searchbar.tt2" %]
         <div id="search-box">
             <span class="search_catalog_lbl"><a href="[% mkurl(ctx.opac_root _ '/home', {}, depart_list) %]">[% l('Search the Catalog') %]</a></span>
-            <span><a href="[% mkurl(ctx.opac_root _ '/advanced', {}, depart_list) %]"
+            <span class="adv_search_catalog_lbl"><a href="[% mkurl(ctx.opac_root _ '/advanced', {}, depart_list) %]"
                     id="home_adv_search_link">[%l('Advanced Search')%]</a></span>
-            <span>[% l('Browse the Catalog') %]</span>
+            <span class="browse_the_catalog_lbl">[% l('Browse the Catalog') %]</span>
         </div>
     </div>
     <div id="content-wrapper">
index 0a5d71b..f363528 100644 (file)
@@ -887,6 +887,14 @@ table.acct_notes th {
     font-size: [% css_fonts.size_bigger %];
 }
 
+.adv_search_catalog_lbl {
+    font-size: [% css_fonts.size_bigger %];
+}
+
+.browse_the_catalog_lbl {
+    font-size: [% css_fonts.size_bigger %];
+}
+
 .lbl1 {
     font-size: [% css_fonts.size_bigger %];
     font-weight:bold;
index 84d6008..6cac5f8 100644 (file)
@@ -5,8 +5,8 @@
     [%- END %]
     <div id="search-box">
         <span class="search_catalog_lbl">[% l('Search the Catalog') %]</span>
-        <a href="[% mkurl(ctx.opac_root _ '/advanced') %]"
-            id="home_adv_search_link">[% l('Advanced Search') %]</a>
+        <span class="adv_search_catalog_lbl"><a href="[% mkurl(ctx.opac_root _ '/advanced') %]"
+            id="home_adv_search_link">[% l('Advanced Search') %]</a></span>
         <span class="browse_the_catalog_lbl"><a href="[% mkurl(ctx.opac_root _ '/browse', {}, ['fi:has_browse_entry']) %]">[% l('Browse the Catalog') %]</a></span>
     </div>
     <div class="searchbar">[%- l('Search ');
index 76a9892..3a7a8c5 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2011-04-18 21:45:32-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:43-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index ab8e72b..e6b843a 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2011-04-18 21:45:32-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:43-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index a2b657b..49f1a62 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2011-04-18 21:45:32-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:44-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 57289ef..a6c6c54 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-06-06 12:12:00-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:43-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 68418b4..c46d541 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2011-04-18 21:45:31-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:43-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 16c1582..32a2f67 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-02-21 11:20:55-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:44-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24,7 +24,9 @@ msgid "You have already loaded the maximum number of terms."
 msgstr ""
 
 #: XULTermLoader.js:TERM_LIMIT_SOME
-msgid "Could not load all terms from the file without exceeding maximum number of terms. Some data not included."
+msgid ""
+"Could not load all terms from the file without exceeding maximum number of "
+"terms. Some data not included."
 msgstr ""
 
 #: XULTermLoader.js:CHOOSE_FILE
index 24d0b26..b58ac20 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-03-15 19:42:04-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,9 @@ msgstr ""
 "Content-Transfer-Encoding: 8-bit\n"
 
 #: acq.js:ADD_LI_TO_PO_BAD_LI_STATE
-msgid "The selected lineitem is not in a state that can be added to a purchase order"
+msgid ""
+"The selected lineitem is not in a state that can be added to a purchase "
+"order"
 msgstr ""
 
 #: acq.js:NO_LI_TO_CLAIM
@@ -25,16 +27,15 @@ msgid ""
 "Continue?"
 msgstr ""
 
-#: acq.js:FUND_LIST_ROLLOVER_SUMMARY_FUNDS
-msgid "<b>${1}</b> funds propagated for fiscal year ${0} for the selected locations"
-msgstr ""
-
 #: acq.js:ONE_LI_ATTR_SEARCH_AT_A_TIME
-msgid "You cannot both type in an attribute value search and search for an uploaded file of terms at the same time."
+msgid ""
+"You cannot both type in an attribute value search and search for an uploaded"
+" file of terms at the same time."
 msgstr ""
 
 #: acq.js:PREPAYMENT_REQUIRED_REMINDER
-msgid "This PO requires prepayment.  Are you certain you're ready to activate it?"
+msgid ""
+"This PO requires prepayment.  Are you certain you're ready to activate it?"
 msgstr ""
 
 #: acq.js:DFA_NOT_ALL
@@ -42,7 +43,11 @@ msgid "Could not record all of your applications of distribution formulas."
 msgstr ""
 
 #: acq.js:INVOICE_EXTRA_COPIES
-msgid "You are attempting to invoice <b>${0}</b> more copies than originally ordered.  <br/><br/>To add these items to the original order, select a fund and choose 'Add New Items' below.  <br/>After saving the invoice, you may finish editing and importing the new copies from the lineitem details page."
+msgid ""
+"You are attempting to invoice <b>${0}</b> more copies than originally "
+"ordered.  <br/><br/>To add these items to the original order, select a fund "
+"and choose 'Add New Items' below.  <br/>After saving the invoice, you may "
+"finish editing and importing the new copies from the lineitem details page."
 msgstr ""
 
 #: acq.js:LI_ATTR_SEARCH_CHOOSE_FILE
@@ -72,7 +77,9 @@ msgid ""
 msgstr ""
 
 #: acq.js:INVOICE_ITEM_DETAILS
-msgid "${0} <br/> ${1} <br/> ${2}. <br/> Estimated Price: $${3}. <br/> Lineitem ID: ${4} <br/> PO: ${5} <br/> Order Date: ${6}"
+msgid ""
+"${0} <br/> ${1} <br/> ${2}. <br/> Estimated Price: $${3}. <br/> Lineitem ID:"
+" ${4} <br/> PO: ${5} <br/> Order Date: ${6}"
 msgstr ""
 
 #: acq.js:XUL_RECORD_DETAIL_PAGE
@@ -80,7 +87,9 @@ msgid "Record Details"
 msgstr ""
 
 #: acq.js:INVOICE_IDENT_COLLIDE
-msgid "There is already an invoice in the system with the given combination of 'Vendor Invoice ID' and 'Provider,' which is not allowed."
+msgid ""
+"There is already an invoice in the system with the given combination of "
+"'Vendor Invoice ID' and 'Provider,' which is not allowed."
 msgstr ""
 
 #: acq.js:CONFIRM_DELETE_MAPPING
@@ -148,7 +157,9 @@ msgid "Print"
 msgstr ""
 
 #: acq.js:INVOICE_ITEM_PO_DETAILS
-msgid "<b>${0}</b><br/><a href='${1}/acq/po/view/${2}'>PO #${3} ${4}</a><br/>Total Estimated Cost: $${5}"
+msgid ""
+"<b>${0}</b><br/><a href='${1}/acq/po/view/${2}'>PO #${3} ${4}</a><br/>Total "
+"Estimated Cost: $${5}"
 msgstr ""
 
 #: acq.js:LI_CANCEL_CONFIRM
@@ -168,7 +179,11 @@ msgid "Unnamed"
 msgstr ""
 
 #: acq.js:DEL_LI_FROM_PO
-msgid "That item has already been ordered!  Deleting it now will not revoke or modify any order that has been placed with a vendor.  Deleting the item may put the system's idea of your purchase order in a state that is inconsistent with reality.  Are you sure you mean to do this?"
+msgid ""
+"That item has already been ordered!  Deleting it now will not revoke or "
+"modify any order that has been placed with a vendor.  Deleting the item may "
+"put the system's idea of your purchase order in a state that is inconsistent"
+" with reality.  Are you sure you mean to do this?"
 msgstr ""
 
 #: acq.js:CREATE_PO_ASSETS_CONFIRM
@@ -215,6 +230,10 @@ msgstr ""
 msgid "Invoices"
 msgstr ""
 
+#: acq.js:PO_ALREADY_ACTIVATED
+msgid "Activated"
+msgstr ""
+
 #: acq.js:INVOICE_NUMBER
 msgid "Invoice #${0}"
 msgstr ""
@@ -274,12 +293,18 @@ msgstr ""
 msgid "Recv'd"
 msgstr ""
 
+#: acq.js:FUND_LIST_ROLLOVER_SUMMARY_FUNDS
+msgid "${1} funds propagated for fiscal year ${0} for the selected locations"
+msgstr ""
+
 #: acq.js:NUM_CLAIMS_EXISTING
 msgid "Claims (${0} existing)"
 msgstr ""
 
 #: acq.js:FUND_LIST_ROLLOVER_SUMMARY_ROLLOVER_AMOUNT
-msgid "<b>$${1}</b> unspent money rolled over to fiscal year ${0} for the selected locations"
+msgid ""
+"<b>$${1}</b> unspent money rolled over to fiscal year ${0} for the selected "
+"locations"
 msgstr ""
 
 #: acq.js:DFA_TIP
index 5477735..fabf4cd 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-28 14:17-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 5bc85ef..45cacdf 100644 (file)
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-18 21:45-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.8.1\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
 "X-Accelerator-Marker: &\n"
 
 #: staff.auth.controller.not_configured
index 096d7b5..5cb4187 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2012-04-28 14:18:00-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index cb7ff0d..56e149d 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-02-21 11:20:55-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -64,7 +64,9 @@ msgid "Printed by"
 msgstr ""
 
 #: capture.js:NO_PAYLOAD
-msgid "We did not receive further information from the server about this attempt to capture."
+msgid ""
+"We did not receive further information from the server about this attempt to"
+" capture."
 msgstr ""
 
 #: capture.js:CAPTURE_TRANSIT_SOURCE
index e4e1f77..3b2e120 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-04 13:44-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index fef6820..5eb778e 100644 (file)
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-15 19:41+0000\n"
+"POT-Creation-Date: 2013-09-10 14:54-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.7.0\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
 "X-Accelerator-Marker: &\n"
 
 #: staff.circ.alert
@@ -1262,6 +1262,10 @@ msgstr ""
 msgid "Transit Copy ID"
 msgstr ""
 
+#: staff.circ.utils.transit_copy_status
+msgid "Transit Copy Status"
+msgstr ""
+
 #: staff.circ.utils.request_lib
 msgid "Request Library (Full Name)"
 msgstr ""
@@ -1290,6 +1294,10 @@ msgstr ""
 msgid "Cancel Time"
 msgstr ""
 
+#: staff.circ.utils.hold.behind_desk
+msgid "Behind Desk"
+msgstr ""
+
 #. # Controlled entry for why the hold was cancelled
 #: staff.circ.utils.hold_cancel_cause
 msgid "Cancel Cause"
@@ -1329,6 +1337,7 @@ msgid "Suspended"
 msgstr ""
 
 #: staff.circ.utils.hold_status.8
+msgctxt "staff.circ.utils.hold_status.8"
 msgid "Wrong Shelf"
 msgstr ""
 
@@ -1348,6 +1357,11 @@ msgstr ""
 msgid "Reshelve"
 msgstr ""
 
+#: staff.circ.utils.hold_post_clear_shelf_action.pl_changed
+msgctxt "staff.circ.utils.hold_post_clear_shelf_action.pl_changed"
+msgid "Wrong Shelf"
+msgstr ""
+
 #: staff.circ.utils.frozen
 msgid "Frozen?"
 msgstr ""
@@ -1369,6 +1383,10 @@ msgstr ""
 msgid "Pickup Library (Full Name)"
 msgstr ""
 
+#: staff.circ.utils.current_shelf_lib
+msgid "Current Shelf Library (Full Name)"
+msgstr ""
+
 #: staff.circ.utils.current_copy.none
 msgid "No Copy"
 msgstr ""
index 997846d..a99c50e 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-12-20 09:37-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -141,6 +141,10 @@ msgstr ""
 msgid "[ %1$s %2$s @ %3$s ]"
 msgstr ""
 
+#: staff.checkout_column_label_service
+msgid "Service"
+msgstr ""
+
 #: staff.acp_label_barcode
 msgctxt "staff.acp_label_barcode"
 msgid "Barcode"
@@ -261,6 +265,10 @@ msgstr ""
 msgid "Pickup Library"
 msgstr ""
 
+#: staff.ahr_current_shelf_lib_label
+msgid "Current Shelf Library"
+msgstr ""
+
 #: staff.ahr_prev_check_time_label
 msgid "Previous Check Time"
 msgstr ""
index fa91cdd..4a90209 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-28 14:16-0400\n"
+"POT-Creation-Date: 2013-09-10 14:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 8242e18..b8ea880 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-03-15 19:42:05-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:42-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -124,7 +124,9 @@ msgid "Problem fetching Mailing Address for ${0}"
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_AOU
-msgid "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved changes to one or more organizational units. Click OK to "
+"save these changes, or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:SURVEY_SAVE_ADD
@@ -172,7 +174,9 @@ msgid "Unable to load selected item."
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_PGT
-msgid "There are unsaved modified permission maps. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved modified permission maps. Click OK to save these changes, "
+"or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:SUCCESS_SAVING_MAILING
@@ -196,11 +200,15 @@ msgid "Are you sure you want to delete ${0}?"
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_PPL
-msgid "There are unsaved modified permissions. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved modified permissions. Click OK to save these changes, or "
+"Cancel to abandon them."
 msgstr ""
 
 #: conify.js:CONFIRM_UNSAVED_CHANGES
-msgid "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved changes to one or more organization types. Click OK to "
+"save these changes, or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:ERROR_FETCHING_HOURS
@@ -316,7 +324,9 @@ msgid "Problem fetching organizational unit data"
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_CCS
-msgid "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved changes to one or more copy statuses. Click OK to save "
+"these changes, or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:OPAC_VISIBLE
@@ -368,7 +378,9 @@ msgid "${0}: ${1}"
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_CAM
-msgid "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved changes to one or more ${0} codes. Click OK to save these "
+"changes, or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:ERROR_CALLING_METHOD_PGT
index ec5e3a2..fd64044 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-03-15 19:42:02-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:06-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11,4318 +11,11633 @@ msgstr ""
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-# id::cmf.label__27 id::vqbrad.description__11
-#: 950.data.seed-values.sql:170 950.data.seed-values.sql:4821
-msgid "Internal ID"
-msgstr ""
-
-# id::ccvm.value__461
-#: 950.data.seed-values.sql:6303
-msgid "Vai"
-msgstr ""
-
-# id::cmc.label__title id::cza.label__5 id::cza.label__14 id::cza.label__23
-#: 950.data.seed-values.sql:97 950.data.seed-values.sql:371
-#: 950.data.seed-values.sql:392 950.data.seed-values.sql:411
-msgid "Title"
-msgstr ""
-
 # id::cmf.label__1
-#: 950.data.seed-values.sql:112
+#: 950.data.seed-values.sql:114
 msgid "Series Title"
 msgstr ""
 
 # id::ccvm.value__520
-#: 950.data.seed-values.sql:6368
+#: 950.data.seed-values.sql:6520
 msgid "Poetry"
 msgstr ""
 
-# id::ccs.name__6
-#: 950.data.seed-values.sql:303
-msgid "In transit"
-msgstr ""
-
 # id::ccvm.value__339
-#: 950.data.seed-values.sql:6181
+#: 950.data.seed-values.sql:6333
 msgid "Palauan"
 msgstr ""
 
-# id::ccs.name__15
-#: 950.data.seed-values.sql:312
-msgid "On reservation shelf"
+# id::ppl.description__545
+#: 950.data.seed-values.sql:1598
+msgid ""
+"Allows users to save and load sets of filters for filter dialogs, available "
+"in certain staff interfaces"
 msgstr ""
 
 # id::ccvm.value__226
-#: 950.data.seed-values.sql:6068
+#: 950.data.seed-values.sql:6220
 msgid "Kyrgyz"
 msgstr ""
 
-# id::ccvm.value__552
-#: 950.data.seed-values.sql:6407
-msgid "Blu-ray disc"
-msgstr ""
-
-# id::ccvm.value__531
-#: 950.data.seed-values.sql:6384
-msgid "Serial component part"
-msgstr ""
-
-# id::ccvm.value__312
-#: 950.data.seed-values.sql:6154
-msgid "Niuean"
-msgstr ""
-
-# id::ccvm.value__131
-#: 950.data.seed-values.sql:5973
-msgid "Fanti"
+# id::vqbrad.description__16
+#: 950.data.seed-values.sql:4977
+msgid "Z39.50 Source"
 msgstr ""
 
 # id::coust.label__config.settings_group.opac
-#: 950.data.seed-values.sql:2509
+#: 950.data.seed-values.sql:2568
 msgid "OPAC"
 msgstr ""
 
-# id::crcd.name__1
-#: 950.data.seed-values.sql:244
-msgid "7_days_0_renew"
+# id::ccvm.value__317
+#: 950.data.seed-values.sql:6311
+msgid "Norwegian"
 msgstr ""
 
-# id::cza.label__3 id::cza.label__12 id::cza.label__21
-#: 950.data.seed-values.sql:367 950.data.seed-values.sql:388
-#: 950.data.seed-values.sql:407
+# id::cza.label__3 id::cza.label__12 id::cza.label__21 id::czifm.label__5
+#: 950.data.seed-values.sql:376 950.data.seed-values.sql:397
+#: 950.data.seed-values.sql:416 950.data.seed-values.sql:12905
 msgid "LCCN"
 msgstr ""
 
-# id::ccvm.value__274
-#: 950.data.seed-values.sql:6116
-msgid "Masai"
-msgstr ""
-
-# id::ccvm.value__40
-#: 950.data.seed-values.sql:5882
-msgid "Bambara"
-msgstr ""
-
-# id::ccvm.value__395
-#: 950.data.seed-values.sql:6237
-msgid "Sindhi"
-msgstr ""
-
 # id::ccvm.value__258
-#: 950.data.seed-values.sql:6100
+#: 950.data.seed-values.sql:6252
 msgid "Ganda"
 msgstr ""
 
-# id::csp.label__22
-#: 950.data.seed-values.sql:33
-msgid "Alerting block on Circ"
+# id::coust.label__acq.fund.rollover_distrib_forms
+#: 950.data.seed-values.sql:12883
+msgid "Rollover Distribution Formulae Funds"
 msgstr ""
 
-# id::ccvm.value__370
-#: 950.data.seed-values.sql:6212
-msgid "Santali"
+# id::csp.label__22
+#: 950.data.seed-values.sql:35
+msgid "Alerting block on Circ"
 msgstr ""
 
 # id::ccvm.value__110
-#: 950.data.seed-values.sql:5952
+#: 950.data.seed-values.sql:6104
 msgid "Duala"
 msgstr ""
 
-# id::cmf.label__21
-#: 950.data.seed-values.sql:158
-msgid "ISMN"
-msgstr ""
-
-# id::ccvm.value__465
-#: 950.data.seed-values.sql:6307
-msgid "Votic"
-msgstr ""
-
-# id::ccvm.value__522 id::ccvm.value__553
-#: 950.data.seed-values.sql:6370 950.data.seed-values.sql:6408
-msgid "Unknown"
-msgstr ""
-
-# id::cubt.label__folks%3Acirc.view
-#: 950.data.seed-values.sql:4894
-msgid "View Circulations"
-msgstr ""
-
-# id::aou.name__5
-#: 950.data.seed-values.sql:454
-msgid "Example Branch 2"
-msgstr ""
-
-# id::ccvm.value__443
-#: 950.data.seed-values.sql:6285
-msgid "Tsonga"
+# id::coust.label__acq.upload.default.vandelay.merge_on_single
+#: 950.data.seed-values.sql:12639
+msgid "Upload Merge on Single Match by Default"
 msgstr ""
 
-# id::pgt.name__6 id::coust.label__config.settings_group.system
-#: 950.data.seed-values.sql:1608 950.data.seed-values.sql:2500
-msgid "Acquisitions"
+# id::coust.description__ui.patron.edit.au.ident_value2.suggest
+#: 950.data.seed-values.sql:4482
+msgid ""
+"The ident_value2 field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__216
-#: 950.data.seed-values.sql:6058
-msgid "Kanuri"
+# id::coust.label__ui.patron.registration.require_address
+#: 950.data.seed-values.sql:4713
+msgid "Require at least one address for Patron Registration"
 msgstr ""
 
-# id::ccvm.value__457
-#: 950.data.seed-values.sql:6299
-msgid "Umbundu"
+# id::ppl.description__531
+#: 950.data.seed-values.sql:1570
+msgid "Allows a user to create/retrieve/update/delete address alerts"
 msgstr ""
 
 # id::crrf.name__2
-#: 950.data.seed-values.sql:286
+#: 950.data.seed-values.sql:291
 msgid "10_cent_per_day"
 msgstr ""
 
 # id::cmc.label__keyword
-#: 950.data.seed-values.sql:96
+#: 950.data.seed-values.sql:98
 msgid "Keyword"
 msgstr ""
 
 # id::cubt.label__folks%3Acirc.renew
-#: 950.data.seed-values.sql:4895
+#: 950.data.seed-values.sql:5047
 msgid "Renew Circulations"
 msgstr ""
 
-# id::acsaf.name__70
-#: 950.data.seed-values.sql:10235
-msgid "See Also Tracing -- Chronological Subdivision"
+# id::coust.label__acq.upload.default.vandelay.match_set
+#: 950.data.seed-values.sql:12554
+msgid "Upload Default Match Set"
 msgstr ""
 
-# id::vie.description__overlay.missing.sysid
-#: 950.data.seed-values.sql:9479
-msgid "Overlay failed due to missing system id"
+# id::ppl.description__248
+#: 950.data.seed-values.sql:1006
+msgid "DELETE_SURVEY"
 msgstr ""
 
-# id::ccvm.value__72
-#: 950.data.seed-values.sql:5914
-msgid "Celtic (Other)"
+# id::acsaf.name__3
+#: 950.data.seed-values.sql:10471
+msgid "Heading -- Meeting Name"
 msgstr ""
 
-# id::cst.value__2
-#: 950.data.seed-values.sql:19
-msgid "Barred"
+# id::coust.label__circ.longoverdue_immediately_available
+#: 950.data.seed-values.sql:12963
+msgid "Long-Overdue Items Usable on Checkin"
 msgstr ""
 
-# id::ccvm.value__176
-#: 950.data.seed-values.sql:6018
-msgid "Hiligaynon"
+# id::coust.description__circ.hold_shelf_status_delay
+#: 950.data.seed-values.sql:3036
+msgid ""
+"The purpose is to provide an interval of time after an item goes into the "
+"on-holds-shelf status before it appears to patrons that it is actually on "
+"the holds shelf.  This gives staff time to process the item before it shows "
+"as ready-for-pickup. Examples: \"5 days\", \"1 hour\""
 msgstr ""
 
-# id::ccvm.value__210
-#: 950.data.seed-values.sql:6052
-msgid "Kachin"
+# id::ppl.description__427
+#: 950.data.seed-values.sql:1362
+msgid "ADMIN_USER_SETTING_GROUP"
 msgstr ""
 
-# id::acsaf.name__3
-#: 950.data.seed-values.sql:10190
-msgid "Heading -- Meeting Name"
+# id::cgf.label__cat.bib.use_id_for_tcn
+#: 950.data.seed-values.sql:9154
+msgid "Cat: Use Internal ID for TCN Value"
 msgstr ""
 
-# id::crmf.name__4
-#: 950.data.seed-values.sql:274
-msgid "overdue_max"
+# id::csp.label__33
+#: 950.data.seed-values.sql:72
+msgid "Patron had an invalid evening phone number"
 msgstr ""
 
-# id::coust.label__config.settings_group.recall
-#: 950.data.seed-values.sql:2515
-msgid "Recalls"
+# id::ccvm.value__299
+#: 950.data.seed-values.sql:6293
+msgid "Nahuatl"
 msgstr ""
 
-# id::pgt.name__15
-#: 950.data.seed-values.sql:1630
-msgid "Volunteers"
+# id::cust.label__history.hold.retention_start
+# id::cust.description__history.hold.retention_start
+#: 950.data.seed-values.sql:9330 950.data.seed-values.sql:9331
+msgid "Historical Hold Retention Start Date"
 msgstr ""
 
-# id::ccvm.value__518
-#: 950.data.seed-values.sql:6366
-msgid "Short stories"
+# id::aout.name__5
+#: 950.data.seed-values.sql:450
+msgid "Bookmobile"
 msgstr ""
 
-# id::ccvm.value__334
-#: 950.data.seed-values.sql:6176
-msgid "Pangasinan"
+# id::ccvm.value__217
+#: 950.data.seed-values.sql:6211
+msgid "Kawi"
 msgstr ""
 
-# id::cgf.label__history.circ.retention_age
-# id::cust.label__history.circ.retention_age
-# id::cust.description__history.circ.retention_age
-#: 950.data.seed-values.sql:8981 950.data.seed-values.sql:9031
-#: 950.data.seed-values.sql:9032
-msgid "Historical Circulation Retention Age"
+# id::coust.label__ui.patron.edit.au.claims_never_checked_out_count.suggest
+#: 950.data.seed-values.sql:4245
+msgid "Suggest claims_never_checked_out_count field on patron registration"
 msgstr ""
 
-# id::at.name__b
-#: 950.data.seed-values.sql:10307
-msgid "LC subject headings for children's literature"
+# id::coust.label__circ.hold_boundary.hard
+#: 950.data.seed-values.sql:2997
+msgid "Hard boundary"
 msgstr ""
 
-# id::coust.label__config.settings_group.global
-#: 950.data.seed-values.sql:2511
-msgid "Global"
+# id::csc.name__13 id::csc.name__59
+#: 950.data.seed-values.sql:10943 950.data.seed-values.sql:11729
+msgid "Virgin Mobile"
 msgstr ""
 
-# id::aiit.name__TAX
-#: 950.data.seed-values.sql:8887
-msgid "Tax"
+# id::at.name__v
+#: 950.data.seed-values.sql:10607
+msgid "Repertoire de vedettes-matiere"
 msgstr ""
 
-# id::ccvm.value__336
-#: 950.data.seed-values.sql:6178
-msgid "Pampanga"
+# id::ccvm.value__369
+#: 950.data.seed-values.sql:6363
+msgid "Sasak"
 msgstr ""
 
-# id::ccvm.value__299
-#: 950.data.seed-values.sql:6141
-msgid "Nahuatl"
+# id::ppl.description__221
+#: 950.data.seed-values.sql:952
+msgid "CREATE_ORG_UNIT"
 msgstr ""
 
-# id::ccvm.value__478
-#: 950.data.seed-values.sql:6320
-msgid "Yiddish"
+# id::ccs.name__0
+#: 950.data.seed-values.sql:302
+msgid "Available"
 msgstr ""
 
-# id::ccvm.value__93
-#: 950.data.seed-values.sql:5935
-msgid "Creoles and Pidgins, Portuguese-based (Other)"
+# id::crcd.name__6
+#: 950.data.seed-values.sql:259
+msgid "35_days_1_renew"
 msgstr ""
 
-# id::ccvm.value__438
-#: 950.data.seed-values.sql:6280
-msgid "Tongan"
+# id::coust.description__opac.username_regex
+#: 950.data.seed-values.sql:3967
+msgid ""
+"Regular expression defining the patron username format, used for patron "
+"registration and self-service username changing only"
 msgstr ""
 
-# id::ccvm.value__189
-#: 950.data.seed-values.sql:6031
-msgid "Ijo"
+# id::ppl.description__149
+#: 950.data.seed-values.sql:808
+msgid "Allow a user to view a funding source"
 msgstr ""
 
-# id::aiit.name__ITM
-#: 950.data.seed-values.sql:8891
-msgid "Non-library Item"
+# id::coust.label__circ.holds.target_when_closed
+#: 950.data.seed-values.sql:4765
+msgid "Target copies for a hold even if copy's circ lib is closed"
 msgstr ""
 
-# id::ccvm.value__153
-#: 950.data.seed-values.sql:5995
-msgid "Gilbertese"
+# id::coust.description__ui.patron_search.result_cap
+#: 950.data.seed-values.sql:4725
+msgid ""
+"So for example, if you search for John Doe, normally you would get at most "
+"50 results.  This setting allows you to raise or lower that limit."
 msgstr ""
 
-# id::ccs.name__14
-#: 950.data.seed-values.sql:311
-msgid "Damaged"
+# id::ppl.description__73
+#: 950.data.seed-values.sql:656
+msgid "Allow a user to delete a copy location"
 msgstr ""
 
-# id::cust.label__history.hold.retention_start
-# id::cust.description__history.hold.retention_start
-#: 950.data.seed-values.sql:9052 950.data.seed-values.sql:9053
-msgid "Historical Hold Retention Start Date"
+# id::ccs.name__16
+#: 950.data.seed-values.sql:320
+msgid "Long Overdue"
 msgstr ""
 
-# id::aout.name__5
-#: 950.data.seed-values.sql:441
-msgid "Bookmobile"
+# id::coust.label__cat.z3950.batch.max_results
+#: 950.data.seed-values.sql:12941
+msgid "Maximum Z39.50 Batch Search Results"
 msgstr ""
 
-# id::ccvm.value__217
-#: 950.data.seed-values.sql:6059
-msgid "Kawi"
+# id::csp.label__20
+#: 950.data.seed-values.sql:33
+msgid "Alerting Note, no blocks"
 msgstr ""
 
-# id::at.name__d
-#: 950.data.seed-values.sql:10309
-msgid "National Agricultural Library subject authority file"
+# id::coust.description__circ.transit.suppress_non_hold
+#: 950.data.seed-values.sql:3594
+msgid ""
+"If set to a non-empty value, Non-Hold Transits will be suppressed between "
+"this OU and others with the same value. If set to an empty value, transits "
+"will not be suppressed."
 msgstr ""
 
-# id::coust.label__config.settings_group.gui
-#: 950.data.seed-values.sql:2502
-msgid "GUI"
+# id::coust.description__circ.lost.xact_open_on_zero
+#: 950.data.seed-values.sql:12312
+msgid ""
+"Leave transaction open when lost balance equals zero.  This leaves the lost "
+"copy on the patron record when it is paid"
 msgstr ""
 
-# id::ccvm.value__228
-#: 950.data.seed-values.sql:6070
-msgid "Konkani"
+# id::ppl.description__328
+#: 950.data.seed-values.sql:1166
+msgid "UPDATE_ORG_UNIT_SETTING.credit.payments.allow"
 msgstr ""
 
-# id::ccvm.value__302
-#: 950.data.seed-values.sql:6144
-msgid "Nauru"
+# id::cbt.name__4 id::coust.label__circ.lost_materials_processing_fee
+# id::coust.description__circ.lost_materials_processing_fee
+#: 950.data.seed-values.sql:487 950.data.seed-values.sql:3267
+#: 950.data.seed-values.sql:3270
+msgid "Lost Materials Processing Fee"
 msgstr ""
 
-# id::ccvm.value__494
-#: 950.data.seed-values.sql:6338
-msgid "General"
+# id::ppl.description__95
+#: 950.data.seed-values.sql:700
+msgid "Allow a user to view uploaded offline script information"
 msgstr ""
 
-# id::ccvm.value__369
-#: 950.data.seed-values.sql:6211
-msgid "Sasak"
+# id::pgt.name__14
+#: 950.data.seed-values.sql:1647
+msgid "Data Review"
 msgstr ""
 
-# id::ccs.name__0
-#: 950.data.seed-values.sql:297
-msgid "Available"
+# id::csc.name__43
+#: 950.data.seed-values.sql:11457
+msgid "Chariton Valley Wireless"
 msgstr ""
 
-# id::crcd.name__6
-#: 950.data.seed-values.sql:254
-msgid "35_days_1_renew"
+# id::ppl.description__50
+#: 950.data.seed-values.sql:610
+msgid "Allow a user to edit copies in batch"
 msgstr ""
 
-# id::ccvm.value__247
-#: 950.data.seed-values.sql:6089
-msgid "Latin"
+# id::ppl.description__416
+#: 950.data.seed-values.sql:1340
+msgid "ADMIN_INVOICE_PAYMENT_METHOD"
 msgstr ""
 
-# id::ccvm.value__485
-#: 950.data.seed-values.sql:6327
-msgid "Zulu"
+# id::ppl.description__232
+#: 950.data.seed-values.sql:974
+msgid "DELETE_COPY_STATUS"
 msgstr ""
 
-# id::ccvm.value__542
-#: 950.data.seed-values.sql:6397
-msgid "Quadruplex"
+# id::coust.label__opac.patron.jump_to_details_on_single_hit
+#: 950.data.seed-values.sql:4791
+msgid "Jump to details on 1 hit (public)"
 msgstr ""
 
-# id::ccvm.value__150
-#: 950.data.seed-values.sql:5992
-msgid "Georgian"
+# id::ccvm.value__143
+#: 950.data.seed-values.sql:6137
+msgid "Gã"
 msgstr ""
 
-# id::ccvm.value__192
-#: 950.data.seed-values.sql:6034
-msgid "Iloko"
+# id::ccvm.value__536
+#: 950.data.seed-values.sql:6541
+msgid "Serial"
 msgstr ""
 
-# id::ccvm.value__arc
-#: 950.data.seed-values.sql:5862
-msgid "Aramaic"
+# id::ccvm.value__462
+#: 950.data.seed-values.sql:6456
+msgid "Venda"
 msgstr ""
 
-# id::ccvm.value__432
-#: 950.data.seed-values.sql:6274
-msgid "Tigrinya"
+# id::cgf.label__circ.holds.usr_not_requestor
+#: 950.data.seed-values.sql:9108
+msgid ""
+"Holds: When testing hold matrix matchpoints, use the profile group of the "
+"receiving user instead of that of the requestor (affects staff-placed holds)"
 msgstr ""
 
-# id::ccvm.value__78 id::ccvm.value__440
-#: 950.data.seed-values.sql:5920 950.data.seed-values.sql:6282
-msgid "Truk"
+# id::coust.description__circ.pre_cat_copy_circ_lib
+#: 950.data.seed-values.sql:3414
+msgid ""
+"Override the default circ lib of \"here\" with a pre-configured circ lib for"
+" pre-cat items.  The value should be the \"shortname\" (aka policy name) of "
+"the org unit"
 msgstr ""
 
-# id::ccvm.value__430
-#: 950.data.seed-values.sql:6272
-msgid "Tibetan"
+# id::ccvm.value__327
+#: 950.data.seed-values.sql:6321
+msgid "Oriya"
 msgstr ""
 
-# id::cza.label__7 id::cza.label__16 id::cza.label__25
-# id::vqbrad.description__12
-#: 950.data.seed-values.sql:375 950.data.seed-values.sql:396
-#: 950.data.seed-values.sql:415 950.data.seed-values.sql:4822
-msgid "Publisher"
+# id::ppl.description__120
+#: 950.data.seed-values.sql:750
+msgid "Allow a user to add/remove users to/from the \"User\" group"
 msgstr ""
 
-# id::ccvm.value__197
-#: 950.data.seed-values.sql:6039
-msgid "Ingush"
+# id::cmf.label__2
+#: 950.data.seed-values.sql:117
+msgid "Abbreviated Title"
 msgstr ""
 
-# id::csp.label__20
-#: 950.data.seed-values.sql:31
-msgid "Alerting Note, no blocks"
+# id::i18n_l.name__en-CA
+#: 950.data.seed-values.sql:341
+msgid "English (Canada)"
 msgstr ""
 
-# id::ccvm.value__114
-#: 950.data.seed-values.sql:5956
-msgid "Dzongkha"
+# id::acsaf.name__11
+#: 950.data.seed-values.sql:10485
+msgid "Heading -- Form Subdivision"
 msgstr ""
 
-# id::ccvm.value__166 id::ccvm.value__167
-#: 950.data.seed-values.sql:6008 950.data.seed-values.sql:6009
-msgid "Guarani"
+# id::coust.description__ui.patron.edit.au.evening_phone.show
+#: 950.data.seed-values.sql:4437
+msgid ""
+"The evening_phone field will be shown on the patron registration screen. "
+"Showing a field makes it appear with required fields even when not required."
+" If the field is required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__188
-#: 950.data.seed-values.sql:6030
-msgid "Sichuan Yi"
+# id::coust.description__ui.patron.edit.au.day_phone.suggest
+#: 950.data.seed-values.sql:4320
+msgid ""
+"The day_phone field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__60
-#: 950.data.seed-values.sql:5902
-msgid "Batak"
+# id::ppl.description__133
+#: 950.data.seed-values.sql:776
+msgid "Allow a user to renew an item past the maximum renewal count"
 msgstr ""
 
-# id::ccvm.value__107
-#: 950.data.seed-values.sql:5949
-msgid "Divehi"
+# id::ppl.description__320
+#: 950.data.seed-values.sql:1150
+msgid "UPDATE_ORG_UNIT_SETTING_ALL"
 msgstr ""
 
-# id::ccvm.value__376
-#: 950.data.seed-values.sql:6218
-msgid "Irish, Old (to 1100)"
+# id::csc.region__19
+#: 950.data.seed-values.sql:11043
+msgid "Alaska, USA"
 msgstr ""
 
-# id::cbt.name__4
-#: 950.data.seed-values.sql:478
-msgid "Lost Materials Processing Fee"
+# id::coust.label__format.time
+#: 950.data.seed-values.sql:3825
+msgid "Format Times with this pattern."
 msgstr ""
 
-# id::ccvm.value__175
-#: 950.data.seed-values.sql:6017
-msgid "Herero"
+# id::ccvm.value__261
+#: 950.data.seed-values.sql:6255
+msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
-# id::pgt.name__14
-#: 950.data.seed-values.sql:1628
-msgid "Data Review"
+# id::coust.description__circ.checkout_fills_related_hold
+#: 950.data.seed-values.sql:2897
+msgid ""
+"When a patron checks out an item and they have no holds that directly target"
+" the item, the system will attempt to find a hold for the patron that could "
+"be fulfilled by the checked out item and fulfills it"
 msgstr ""
 
-# id::crcd.name__3
-#: 950.data.seed-values.sql:248
-msgid "3_months_0_renew"
+# id::coust.description__ui.patron.edit.au.evening_phone.regex
+#: 950.data.seed-values.sql:4419
+msgid ""
+"The Regular Expression for validation on the evening_phone field in patron "
+"registration."
 msgstr ""
 
-# id::acsaf.name__8
-#: 950.data.seed-values.sql:10194
-msgid "Heading -- General Subdivision"
+# id::coust.description__circ.holds.target_skip_me
+#: 950.data.seed-values.sql:3216
+msgid "When true, don't target any copies at this org unit for holds"
 msgstr ""
 
-# id::pgt.name__12
-#: 950.data.seed-values.sql:1622
-msgid "System Administrator"
+# id::coust.label__ui.patron.edit.au.email.regex
+#: 950.data.seed-values.sql:4371
+msgid "Regex for email field on patron registration"
 msgstr ""
 
-# id::ccvm.value__248
-#: 950.data.seed-values.sql:6090
-msgid "Latvian"
+# id::coust.label__lib.courier_code
+#: 950.data.seed-values.sql:3870
+msgid "Courier Code"
 msgstr ""
 
-# id::ccvm.value__119
-#: 950.data.seed-values.sql:5961
-msgid "English"
+# id::ccvm.value__apa
+#: 950.data.seed-values.sql:6012
+msgid "Apache languages"
 msgstr ""
 
-# id::ccvm.value__487
-#: 950.data.seed-values.sql:6331
-msgid "Unknown or unspecified"
+# id::ppl.description__400
+#: 950.data.seed-values.sql:1308
+msgid "ADMIN_ASSET_COPY_TEMPLATE"
 msgstr ""
 
-# id::csg.label__sms
-#: 950.data.seed-values.sql:2519
-msgid "SMS Text Messages"
+# id::ppl.description__188
+#: 950.data.seed-values.sql:886
+msgid "Allows a user to create a purchase order"
 msgstr ""
 
-# id::ccvm.value__495
-#: 950.data.seed-values.sql:6339
-msgid "Juvenile"
+# id::coust.label__circ.staff_client.receipt.header_text
+#: 950.data.seed-values.sql:3555
+msgid "Content of header_text include"
 msgstr ""
 
-# id::ccvm.value__77
-#: 950.data.seed-values.sql:5919
-msgid "Chinese"
+# id::vie.description__import.item.invalid.deposit_amount
+#: 950.data.seed-values.sql:9768
+msgid "Invalid value for \"deposit_amount\""
 msgstr ""
 
-# id::at.name__r
-#: 950.data.seed-values.sql:10312
-msgid "Art and Architecture Thesaurus"
+# id::coust.label__circ.pre_cat_copy_circ_lib
+#: 950.data.seed-values.sql:3411
+msgid "Pre-cat Item Circ Lib"
 msgstr ""
 
-# id::ccvm.value__190
-#: 950.data.seed-values.sql:6032
-msgid "Inuktitut"
+# id::ccvm.value__509
+#: 950.data.seed-values.sql:6507
+msgid "Computer file"
 msgstr ""
 
-# id::ccvm.value__295
-#: 950.data.seed-values.sql:6137
-msgid "Munda (Other)"
+# id::csc.name__53
+#: 950.data.seed-values.sql:11627
+msgid "Nextel"
 msgstr ""
 
-# id::ccvm.value__344
-#: 950.data.seed-values.sql:6186
-msgid "Pali"
+# id::acqim.name__EDI
+#: 950.data.seed-values.sql:9079
+msgid "EDI"
 msgstr ""
 
-# id::ccvm.value__143
-#: 950.data.seed-values.sql:5985
-msgid "Gã"
+# id::ppl.description__323
+#: 950.data.seed-values.sql:1156
+msgid "UPDATE_ORG_UNIT_SETTING.auth.opac_timeout"
 msgstr ""
 
-# id::ccvm.value__477
-#: 950.data.seed-values.sql:6319
-msgid "Yapese"
+# id::ath.description__vandelay.queued_auth_record.email
+#: 950.data.seed-values.sql:9876
+msgid ""
+"An email has been requested for records in an Importer Authority Queue."
 msgstr ""
 
-# id::ccvm.value__ara
-#: 950.data.seed-values.sql:5861
-msgid "Arabic"
+# id::ath.description__circ.format.missing_pieces.slip.print
+#: 950.data.seed-values.sql:9438
+msgid "A missing pieces slip needs to be formatted for printing."
 msgstr ""
 
-# id::ccvm.value__462
-#: 950.data.seed-values.sql:6304
-msgid "Venda"
+# id::coust.label__circ.reshelving_complete.interval
+#: 950.data.seed-values.sql:3420
+msgid "Change reshelving status interval"
 msgstr ""
 
-# id::ccvm.value__550
-#: 950.data.seed-values.sql:6405
-msgid "8 mm."
+# id::coust.description__circ.checkout_fills_related_hold_exact_match_only
+#: 950.data.seed-values.sql:2906
+msgid ""
+"When filling related holds on checkout only match on items that are valid "
+"for opportunistic capture for the hold. Without this set a Title or Volume "
+"hold could match when the item is not holdable. With this set only holdable "
+"items will match."
 msgstr ""
 
-# id::pgt.name__3
-#: 950.data.seed-values.sql:1602
-msgid "Staff"
+# id::ppl.description__24
+#: 950.data.seed-values.sql:558
+msgid ""
+"Allow a user to continue to renew an item even if it is required for a hold"
 msgstr ""
 
-# id::ccvm.value''in__169
-#: 950.data.seed-values.sql:6011
-msgid "Gwich"
+# id::coust.description__ui.patron.edit.au.claims_never_checked_out_count.suggest
+#: 950.data.seed-values.sql:4248
+msgid ""
+"The claims_never_checked_out_count field will be suggested on the patron "
+"registration screen. Suggesting a field makes it appear when suggested "
+"fields are shown. If the field is shown or required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__202
-#: 950.data.seed-values.sql:6044
-msgid "Iroquoian (Other)"
+# id::ccvm.description__520
+#: 950.data.seed-values.sql:6520
+msgid "The item is a poem or collection of poems."
 msgstr ""
 
-# id::ccvm.value__240
-#: 950.data.seed-values.sql:6082
-msgid "Kutenai"
+# id::ccvm.value__216
+#: 950.data.seed-values.sql:6210
+msgid "Kanuri"
 msgstr ""
 
-# id::ccvm.value__327
-#: 950.data.seed-values.sql:6169
-msgid "Oriya"
+# id::ccvm.value__149
+#: 950.data.seed-values.sql:6143
+msgid "Germanic (Other)"
 msgstr ""
 
-# id::cuat.label__9
-#: 950.data.seed-values.sql:11718
-msgid "Verification via opensrf"
+# id::cbs.source__1
+#: 950.data.seed-values.sql:3
+msgid "oclc"
 msgstr ""
 
-# id::cmf.label__2
-#: 950.data.seed-values.sql:115
-msgid "Abbreviated Title"
+# id::coust.label__circ.missing_pieces.copy_status
+#: 950.data.seed-values.sql:3303
+msgid "Item Status for Missing Pieces"
 msgstr ""
 
-# id::ccvm.value__322
-#: 950.data.seed-values.sql:6164
-msgid "Nyankole"
+# id::cuat.label__19
+#: 950.data.seed-values.sql:12023
+msgid "Self-Check Proxy Login"
 msgstr ""
 
-# id::acsaf.name__10
-#: 950.data.seed-values.sql:10196
-msgid "Heading -- Chronological Subdivision"
+# id::ccvm.value__533
+#: 950.data.seed-values.sql:6538
+msgid "Subunit"
 msgstr ""
 
-# id::coust.label__config.settings_group.receipt_template
-#: 950.data.seed-values.sql:2518
-msgid "Receipt Template"
+# id::ccvm.value__51
+#: 950.data.seed-values.sql:6045
+msgid "Bihari"
 msgstr ""
 
-# id::i18n_l.name__en-CA
-#: 950.data.seed-values.sql:332
-msgid "English (Canada)"
+# id::ccvm.value__470
+#: 950.data.seed-values.sql:6464
+msgid "Welsh"
 msgstr ""
 
-# id::ccvm.value__178
-#: 950.data.seed-values.sql:6020
-msgid "Hindi"
+# id::coust.label__circ.hold_stalling.soft
+#: 950.data.seed-values.sql:3042
+msgid "Soft stalling interval"
 msgstr ""
 
-# id::ccvm.value__127
-#: 950.data.seed-values.sql:5969
-msgid "Ewondo"
+# id::csc.name__35
+#: 950.data.seed-values.sql:11321
+msgid "Alltel (Allied Wireless)"
 msgstr ""
 
-# id::i18n_l.description__es-MX
-#: 950.data.seed-values.sql:348
-msgid "Mexican Spanish"
+# id::ccvm.value__159
+#: 950.data.seed-values.sql:6153
+msgid "German, Old High (ca. 750-1050)"
 msgstr ""
 
-# id::acsaf.name__11
-#: 950.data.seed-values.sql:10197
-msgid "Heading -- Form Subdivision"
+# id::ccvm.value__424
+#: 950.data.seed-values.sql:6418
+msgid "Temne"
 msgstr ""
 
-# id::ccvm.value__abk
-#: 950.data.seed-values.sql:5844
-msgid "Abkhaz"
+# id::coust.label__cat.spine.line.width
+#: 950.data.seed-values.sql:2822
+msgid "Spine label line width"
 msgstr ""
 
-# id::cmf.label__4
-#: 950.data.seed-values.sql:119
-msgid "Alternate Title"
+# id::coust.label__acq.fund.allow_rollover_without_money
+#: 950.data.seed-values.sql:12286
+msgid "Allow funds to be rolled over without bringing the money along"
 msgstr ""
 
-# id::ccvm.value__87
-#: 950.data.seed-values.sql:5929
-msgid "Chamic languages"
+# id::coust.description__ui.patron.edit.au.claims_never_checked_out_count.show
+#: 950.data.seed-values.sql:4239
+msgid ""
+"The claims_never_checked_out_count field will be shown on the patron "
+"registration screen. Showing a field makes it appear with required fields "
+"even when not required. If the field is required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__515
-#: 950.data.seed-values.sql:6363
-msgid "Novels"
+# id::ppl.description__479
+#: 950.data.seed-values.sql:1466
+msgid "VIEW_SERIAL_SUBSCRIPTION"
 msgstr ""
 
-# id::ccvm.value__473
-#: 950.data.seed-values.sql:6315
-msgid "Wolof"
+# id::coust.label__circ.grace.extend.all
+#: 950.data.seed-values.sql:2979
+msgid "Auto-Extending Grace Periods extend for all closed dates"
 msgstr ""
 
-# id::ccvm.value__57
-#: 950.data.seed-values.sql:5899
-msgid "Bosnian"
+# id::ppl.description__97
+#: 950.data.seed-values.sql:704
+msgid "Allow a user to change the due date on an item to any date"
 msgstr ""
 
-# id::ccvm.value__357
-#: 950.data.seed-values.sql:6199
-msgid "Romani"
+# id::crcd.name__8
+#: 950.data.seed-values.sql:263
+msgid "1_hour_2_renew"
 msgstr ""
 
-# id::ccvm.value__463
-#: 950.data.seed-values.sql:6305
-msgid "Vietnamese"
+# id::coust.label__ui.patron.edit.ac.barcode.regex
+#: 950.data.seed-values.sql:4272
+msgid "Regex for barcodes on patron registration"
 msgstr ""
 
-# id::aout.opac_label__4
-#: 950.data.seed-values.sql:439
-msgid "This Specialized Library"
+# id::coust.label__circ.charge_lost_on_zero
+# id::coust.description__circ.charge_lost_on_zero
+#: 950.data.seed-values.sql:2867 950.data.seed-values.sql:2870
+msgid "Charge lost on zero"
 msgstr ""
 
-# id::ccvm.value__287
-#: 950.data.seed-values.sql:6129
-msgid "Manchu"
+# id::ppl.description__76
+#: 950.data.seed-values.sql:662
+msgid ""
+"Allow a user to see if another user has permission to place a hold on a "
+"given copy"
 msgstr ""
 
-# id::csp.label__21
-#: 950.data.seed-values.sql:32
-msgid "Note, no blocks"
+# id::ccvm.value__205
+#: 950.data.seed-values.sql:6199
+msgid "Japanese"
 msgstr ""
 
-# id::aou.name__1
-#: 950.data.seed-values.sql:446
-msgid "Example Consortium"
+# id::coust.label__circ.fines.truncate_to_max_fine
+#: 950.data.seed-values.sql:12345
+msgid "Truncate fines to max fine amount"
 msgstr ""
 
-# id::i18n_l.name__ru-RU id::i18n_l.description__ru-RU id::ccvm.value__360
-#: 950.data.seed-values.sql:350 950.data.seed-values.sql:351
-#: 950.data.seed-values.sql:6202
-msgid "Russian"
+# id::coust.description__acq.copy_creator_uses_receiver
+#: 950.data.seed-values.sql:2600
+msgid ""
+"When receiving a copy in acquisitions, set the copy \"creator\" to be the "
+"staff that received the copy"
 msgstr ""
 
-# id::ccvm.value__543
-#: 950.data.seed-values.sql:6398
-msgid "Laserdisc"
+# id::coust.label__opac.staff.jump_to_details_on_single_hit
+#: 950.data.seed-values.sql:4783
+msgid "Jump to details on 1 hit (staff client)"
 msgstr ""
 
-# id::ccvm.value__148
-#: 950.data.seed-values.sql:5990
-msgid "Gbaya"
+# id::ppl.description__473
+#: 950.data.seed-values.sql:1454
+msgid "VIEW_CIRC_MATRIX_MATCHPOINT"
 msgstr ""
 
-# id::ccvm.value__218
-#: 950.data.seed-values.sql:6060
-msgid "Kazakh"
+# id::coust.label__ui.general.button_bar
+#: 950.data.seed-values.sql:4110
+msgid "Button bar"
 msgstr ""
 
-# id::ccvm.value__433
-#: 950.data.seed-values.sql:6275
-msgid "Tiv"
+# id::vie.description__import.item.invalid.price
+#: 950.data.seed-values.sql:9766
+msgid "Invalid value for \"price\""
 msgstr ""
 
-# id::ccvm.value__458
-#: 950.data.seed-values.sql:6300
-msgid "Undetermined"
+# id::coust.label__cat.marc_control_number_identifier
+#: 950.data.seed-values.sql:2795
+msgid "Defines the control number identifier used in 003 and 035 fields."
 msgstr ""
 
-# id::ccvm.value__181
-#: 950.data.seed-values.sql:6023
-msgid "Hiri Motu"
+# id::ccvm.value__407 id::ccvm.value__414
+#: 950.data.seed-values.sql:6401 950.data.seed-values.sql:6408
+msgid "Swazi"
 msgstr ""
 
-# id::coust.label__config.settings_group.holds
-#: 950.data.seed-values.sql:2506
-msgid "Holds"
+# id::coust.label__ui.patron.edit.au.other_phone.regex
+#: 950.data.seed-values.sql:4533
+msgid "Regex for other_phone field on patron registration"
 msgstr ""
 
-# id::cnal.name__3
-#: 950.data.seed-values.sql:321
-msgid "No Access"
+# id::ccvm.value__194
+#: 950.data.seed-values.sql:6188
+msgid "Indic (Other)"
 msgstr ""
 
-# id::i18n_l.description__en-CA
-#: 950.data.seed-values.sql:333
-msgid "Canadian English"
+# id::cbs.source__2
+#: 950.data.seed-values.sql:5
+msgid "System Local"
 msgstr ""
 
-# id::aiit.name__SUB
-#: 950.data.seed-values.sql:8892
-msgid "Serial Subscription"
+# id::csc.name__65
+#: 950.data.seed-values.sql:11833
+msgid "Helio"
 msgstr ""
 
-# id::ccvm.value__58
-#: 950.data.seed-values.sql:5900
-msgid "Braj"
+# id::cust.label__opac.default_phone id::cust.description__opac.default_phone
+#: 950.data.seed-values.sql:10672 950.data.seed-values.sql:10678
+msgid "Default Phone Number"
 msgstr ""
 
-# id::ccvm.value__44
-#: 950.data.seed-values.sql:5886
-msgid "Baltic (Other)"
+# id::ccvm.value__309
+#: 950.data.seed-values.sql:6303
+msgid "Newari"
 msgstr ""
 
-# id::vie.description__import.item.invalid.deposit_amount
-#: 950.data.seed-values.sql:9490
-msgid "Invalid value for \"deposit_amount\""
+# id::ppl.description__200
+#: 950.data.seed-values.sql:910
+msgid "Allows staff to edit the note for a bill on a transaction"
 msgstr ""
 
-# id::ccvm.value__516
-#: 950.data.seed-values.sql:6364
-msgid "Humor, satires, etc."
+# id::ppl.description__296
+#: 950.data.seed-values.sql:1102
+msgid "DELETE_BIB_IMPORT_QUEUE"
 msgstr ""
 
-# id::cuat.label__7
-#: 950.data.seed-values.sql:11715
-msgid "SIP2 Proxy Login"
+# id::coust.description__ui.patron.default_ident_type
+#: 950.data.seed-values.sql:4149
+msgid "This is the default Ident Type for new users in the patron editor."
 msgstr ""
 
-# id::ccvm.value__509
-#: 950.data.seed-values.sql:6355
-msgid "Computer file"
+# id::ath.description__vandelay.queued_bib_record.print
+#: 950.data.seed-values.sql:9821
+msgid "Print output has been requested for records in an Importer Bib Queue."
 msgstr ""
 
-# id::ccvm.value__342
-#: 950.data.seed-values.sql:6184
-msgid "Philippine (Other)"
+# id::coust.description__format.date
+#: 950.data.seed-values.sql:3819
+msgid ""
+"Format Dates with this pattern (examples: \"yyyy-MM-dd\" for \"2010-04-26\","
+" \"MMM d, yyyy\" for \"Apr 26, 2010\")"
 msgstr ""
 
-# id::acsaf.name__51
-#: 950.data.seed-values.sql:10223
-msgid "Subdivision Linking Entry -- Form Subdivision"
+# id::ccvm.value__319
+#: 950.data.seed-values.sql:6313
+msgid "Nubian languages"
 msgstr ""
 
-# id::ccvm.value__151
-#: 950.data.seed-values.sql:5993
-msgid "German"
+# id::i18n_l.name__hy-AM id::i18n_l.description__hy-AM id::ccvm.value__arm
+#: 950.data.seed-values.sql:350 950.data.seed-values.sql:351
+#: 950.data.seed-values.sql:6016
+msgid "Armenian"
 msgstr ""
 
-# id::acqim.name__EDI
-#: 950.data.seed-values.sql:8894
-msgid "EDI"
+# id::coust.label__ui.staff.require_initials
+#: 950.data.seed-values.sql:4731
+msgid ""
+"Require staff initials for entry/edit of item/patron/penalty notes/messages."
 msgstr ""
 
-# id::vie.description__import.item.duplicate.barcode
-#: 950.data.seed-values.sql:9474
-msgid "Import failed due to barcode collision"
+# id::ccvm.value__361
+#: 950.data.seed-values.sql:6355
+msgid "Sandawe"
 msgstr ""
 
-# id::coust.label__config.settings_group.lib
-#: 950.data.seed-values.sql:2503
-msgid "Library"
+# id::ppl.description__121
+#: 950.data.seed-values.sql:752
+msgid "Allow a user to add/remove users to/from the \"Patron\" group"
 msgstr ""
 
-# id::ccvm.value__384
-#: 950.data.seed-values.sql:6226
-msgid "Slavic (Other)"
+# id::ccvm.value__bad
+#: 950.data.seed-values.sql:6030
+msgid "Banda"
 msgstr ""
 
-# id::ccvm.value__42
-#: 950.data.seed-values.sql:5884
-msgid "Basque"
+# id::csc.name__47
+#: 950.data.seed-values.sql:11525
+msgid "Syringa Wireless"
 msgstr ""
 
-# id::ccvm.value__446
-#: 950.data.seed-values.sql:6288
-msgid "Tumbuka"
+# id::vie.description__import.item.invalid.copy_number
+#: 950.data.seed-values.sql:9774
+msgid "Invalid value for \"copy_number\""
 msgstr ""
 
-# id::cbs.source__1
-#: 950.data.seed-values.sql:3
-msgid "oclc"
+# id::coust.description__ui.patron.edit.aua.county.require
+#: 950.data.seed-values.sql:4635
+msgid "The county field will be required on the patron registration screen."
 msgstr ""
 
-# id::pgt.name__11 id::coust.label__config.settings_group.serial
-#: 950.data.seed-values.sql:1619 950.data.seed-values.sql:2514
-msgid "Serials"
+# id::ccs.name__5
+#: 950.data.seed-values.sql:307
+msgid "In process"
 msgstr ""
 
-# id::ccvm.value__56
-#: 950.data.seed-values.sql:5898
-msgid "Bantu (Other)"
+# id::ppl.description__251
+#: 950.data.seed-values.sql:1012
+msgid "DELETE_XML_TRANSFORM"
 msgstr ""
 
-# id::acsaf.name__1
-#: 950.data.seed-values.sql:10188
-msgid "Heading -- Personal Name"
+# id::coust.label__circ.staff_client.receipt.alert_text
+#: 950.data.seed-values.sql:3528
+msgid "Content of alert_text include"
 msgstr ""
 
-# id::acsaf.name__43
-#: 950.data.seed-values.sql:10216
-msgid "Established Heading Linking Entry -- Meeting Name"
+# id::coust.description__acq.fund.balance_limit.warn
+#: 950.data.seed-values.sql:2636
+msgid ""
+"When the amount remaining in the fund, including spent money and "
+"encumbrances, goes below this percentage, attempts to spend from the fund "
+"will result in a warning to the staff."
 msgstr ""
 
-# id::ccvm.value__277
-#: 950.data.seed-values.sql:6119
-msgid "Mandar"
+# id::coust.label__circ.hold_stalling_hard
+#: 950.data.seed-values.sql:3051
+msgid "Hard stalling interval"
 msgstr ""
 
-# id::ccvm.value__530
-#: 950.data.seed-values.sql:6383
-msgid "Monographic component part"
+# id::ccvm.value__493
+#: 950.data.seed-values.sql:6489
+msgid "Specialized"
 msgstr ""
 
-# id::coust.label__vandelay
-#: 950.data.seed-values.sql:2520
-msgid "Vandelay"
+# id::i18n_l.description__en-US
+#: 950.data.seed-values.sql:336
+msgid "American English"
 msgstr ""
 
-# id::ccvm.value__497
-#: 950.data.seed-values.sql:6343
-msgid "Manuscript language material"
+# id::ccvm.value__313
+#: 950.data.seed-values.sql:6307
+msgid "Norwegian (Nynorsk)"
 msgstr ""
 
-# id::ccvm.value__75
-#: 950.data.seed-values.sql:5917
-msgid "Chechen"
+# id::cust.label__opac.hits_per_page id::cust.description__opac.hits_per_page
+#: 950.data.seed-values.sql:2523 950.data.seed-values.sql:2524
+msgid "Hits per Page"
 msgstr ""
 
-# id::ccvm.value__324
-#: 950.data.seed-values.sql:6166
-msgid "Nzima"
+# id::coust.label__circ.void_longoverdue_proc_fee_on_checkin
+# id::coust.description__circ.void_longoverdue_proc_fee_on_checkin
+#: 950.data.seed-values.sql:13040 950.data.seed-values.sql:13046
+msgid "Void Processing Fee on Long-Overdue Item Return"
 msgstr ""
 
-# id::ccvm.value__112
-#: 950.data.seed-values.sql:5954
-msgid "Dutch"
+# id::cmf.label__8
+#: 950.data.seed-values.sql:130
+msgid "Personal Author"
 msgstr ""
 
-# id::ccvm.value__232 id::ccvm.value__239
-#: 950.data.seed-values.sql:6074 950.data.seed-values.sql:6081
-msgid "Kusaie"
+# id::ccvm.value__264
+#: 950.data.seed-values.sql:6258
+msgid "Madurese"
 msgstr ""
 
-# id::ccvm.value__117
-#: 950.data.seed-values.sql:5959
-msgid "Ekajuk"
+# id::coust.description__ui.patron.edit.au.claims_returned_count.suggest
+#: 950.data.seed-values.sql:4266
+msgid ""
+"The claims_returned_count field will be suggested on the patron registration"
+" screen. Suggesting a field makes it appear when suggested fields are shown."
+" If the field is shown or required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__163
-#: 950.data.seed-values.sql:6005
-msgid "Grebo"
+# id::ppl.description__449
+#: 950.data.seed-values.sql:1406
+msgid "DELETE_INVOICE_ITEM_TYPE"
 msgstr ""
 
-# id::coust.label__config.settings_group.finances
-#: 950.data.seed-values.sql:2512
-msgid "Finances"
+# id::ccvm.value__362
+#: 950.data.seed-values.sql:6356
+msgid "Sango (Ubangi Creole)"
 msgstr ""
 
-# id::crcd.name__2
-#: 950.data.seed-values.sql:246
-msgid "28_days_2_renew"
+# id::ccvm.value__220
+#: 950.data.seed-values.sql:6214
+msgid "Khasi"
 msgstr ""
 
-# id::ccvm.value__308
-#: 950.data.seed-values.sql:6150
-msgid "Nepali"
+# id::vie.description__import.item.invalid.circ_as_type
+#: 950.data.seed-values.sql:9776
+msgid "Invalid value for \"circ_as_type\""
 msgstr ""
 
-# id::ccvm.value__393
-#: 950.data.seed-values.sql:6235
-msgid "Skolt Sami"
+# id::csc.name__31
+#: 950.data.seed-values.sql:11253
+msgid "Bluegrass Cellular"
 msgstr ""
 
-# id::i18n_l.name__fi-FI id::i18n_l.description__fi-FI id::ccvm.value__133
-#: 950.data.seed-values.sql:335 950.data.seed-values.sql:336
-#: 950.data.seed-values.sql:5975
-msgid "Finnish"
+# id::ppl.description__541
+#: 950.data.seed-values.sql:1590
+msgid ""
+"Allows a user to create, edit, and delete custom toolbars for workstations"
 msgstr ""
 
-# id::ccvm.value__51
-#: 950.data.seed-values.sql:5893
-msgid "Bihari"
+# id::ccvm.value__266
+#: 950.data.seed-values.sql:6260
+msgid "Marshallese"
 msgstr ""
 
-# id::ccvm.value__470
-#: 950.data.seed-values.sql:6312
-msgid "Welsh"
+# id::ccvm.value__476
+#: 950.data.seed-values.sql:6470
+msgid "Yao (Africa)"
 msgstr ""
 
-# id::ccvm.value__331
-#: 950.data.seed-values.sql:6173
-msgid "Turkish, Ottoman"
+# id::ath.description__vandelay.import_items.csv
+#: 950.data.seed-values.sql:9898
+msgid ""
+"CSV output has been requested for Import Items from records in an Importer "
+"Bib Queue."
 msgstr ""
 
-# id::cmf.label__19 id::cza.label__6 id::cza.label__15 id::cza.label__24
-# id::vqbrad.description__6
-#: 950.data.seed-values.sql:154 950.data.seed-values.sql:373
-#: 950.data.seed-values.sql:394 950.data.seed-values.sql:413
-#: 950.data.seed-values.sql:4816
-msgid "ISSN"
+# id::coust.label__ui.patron.edit.au.barred.suggest
+#: 950.data.seed-values.sql:4227
+msgid "Suggest barred field on patron registration"
 msgstr ""
 
-# id::ccvm.value__234
-#: 950.data.seed-values.sql:6076
-msgid "Kru"
+# id::ppl.description__450
+#: 950.data.seed-values.sql:1408
+msgid "DELETE_INVOICE_METHOD"
 msgstr ""
 
-# id::coust.label__config.settings_group.booking
-#: 950.data.seed-values.sql:2516
-msgid "Booking"
+# id::ccs.name__9
+#: 950.data.seed-values.sql:311
+msgid "On order"
 msgstr ""
 
-# id::ccvm.value__159
-#: 950.data.seed-values.sql:6001
-msgid "German, Old High (ca. 750-1050)"
+# id::coust.description__circ.password_reset_request_time_to_live
+#: 950.data.seed-values.sql:3387
+msgid ""
+"Length of time (in seconds) a self-serve password reset request should "
+"remain active."
 msgstr ""
 
-# id::ccvm.value__424
-#: 950.data.seed-values.sql:6266
-msgid "Temne"
+# id::coust.label__circ.holds.uncancel.reset_request_time
+#: 950.data.seed-values.sql:3222
+msgid "Reset request time on un-cancel"
 msgstr ""
 
-# id::ccvm.value__206
-#: 950.data.seed-values.sql:6048
-msgid "Judeo-Persian"
+# id::ppl.description__302
+#: 950.data.seed-values.sql:1114
+msgid "UPDATE_AUTHORITY_IMPORT_QUEUE"
 msgstr ""
 
-# id::cubt.label__folks
-#: 950.data.seed-values.sql:4891
-msgid "Friends"
+# id::ccvm.value__ady
+#: 950.data.seed-values.sql:6000
+msgid "Adygei"
 msgstr ""
 
-# id::csp.label__1
-#: 950.data.seed-values.sql:23
-msgid "Patron exceeds fine threshold"
+# id::coust.description__circ.hold_boundary.soft
+#: 950.data.seed-values.sql:3009
+msgid "Holds: Soft boundary"
 msgstr ""
 
-# id::ccvm.value__102
-#: 950.data.seed-values.sql:5944
-msgid "Dayak"
+# id::coust.label__ui.patron.edit.au.ident_value2.show
+#: 950.data.seed-values.sql:4470
+msgid "Show ident_value2 field on patron registration"
 msgstr ""
 
-# id::ccvm.value__160
-#: 950.data.seed-values.sql:6002
-msgid "Gondi"
+# id::ppl.description__448
+#: 950.data.seed-values.sql:1404
+msgid "DELETE_COPY_BTYPE"
 msgstr ""
 
-# id::ccvm.value__182
-#: 950.data.seed-values.sql:6024
-msgid "Hungarian"
+# id::coust.description__ui.patron.edit.default_suggested
+#: 950.data.seed-values.sql:4689
+msgid ""
+"Instead of All fields, show just suggested fields in patron registration by "
+"default."
 msgstr ""
 
-# id::ccvm.value__bak
-#: 950.data.seed-values.sql:5880
-msgid "Bashkir"
+# id::aout.opac_label__1
+#: 950.data.seed-values.sql:439
+msgid "Everywhere"
 msgstr ""
 
-# id::ccvm.value__212
-#: 950.data.seed-values.sql:6054
-msgid "Kamba"
+# id::ppl.description__457
+#: 950.data.seed-values.sql:1422
+msgid "UPDATE_BIBLIO_FINGERPRINT"
 msgstr ""
 
-# id::i18n_l.name__es-MX
-#: 950.data.seed-values.sql:347
-msgid "Spanish (Mexico)"
+# id::acs.description__1
+#: 950.data.seed-values.sql:10453
+msgid "Library of Congress standard authority record control semantics"
 msgstr ""
 
-# id::ccvm.value__507
-#: 950.data.seed-values.sql:6353
-msgid "Nonmusical sound recording"
+# id::ppl.description__113
+#: 950.data.seed-values.sql:736
+msgid "Allow a user to create a new closed date for a location"
 msgstr ""
 
-# id::pgt.name__2
-#: 950.data.seed-values.sql:1600
-msgid "Patrons"
+# id::ccvm.value__445
+#: 950.data.seed-values.sql:6439
+msgid "Turkmen"
 msgstr ""
 
-# id::aiit.name__SHP
-#: 950.data.seed-values.sql:8889
-msgid "Shipping Charge"
+# id::ccvm.value__435
+#: 950.data.seed-values.sql:6429
+msgid "Tlingit"
 msgstr ""
 
-# id::ccvm.value__304
-#: 950.data.seed-values.sql:6146
-msgid "Ndebele (South Africa)"
+# id::ppl.description__17
+#: 950.data.seed-values.sql:544
+msgid "Allow a user to import a MARC record via the Z39.50 interface"
 msgstr ""
 
-# id::crcd.name__8
-#: 950.data.seed-values.sql:258
-msgid "1_hour_2_renew"
+# id::ppl.description__199
+#: 950.data.seed-values.sql:908
+msgid "Allows staff to manually change a patron's claims returned count"
 msgstr ""
 
-# id::ccvm.value__517
-#: 950.data.seed-values.sql:6365
-msgid "Letters"
+# id::ahrcc.label__1
+#: 950.data.seed-values.sql:2470
+msgid "Untargeted expiration"
 msgstr ""
 
-# id::ccvm.value__268
-#: 950.data.seed-values.sql:6110
-msgid "Makasar"
+# id::coust.label__circ.checkout_fills_related_hold_exact_match_only
+#: 950.data.seed-values.sql:2903
+msgid "Checkout Fills Related Hold On Valid Copy Only"
 msgstr ""
 
-# id::cmc.label__series
-#: 950.data.seed-values.sql:100
-msgid "Series"
+# id::coust.description__circ.hold_expire_interval
+#: 950.data.seed-values.sql:3027
+msgid ""
+"Amount of time after a hold is placed before the hold expires.  Example "
+"\"100 days\""
 msgstr ""
 
-# id::ccvm.value__afa
-#: 950.data.seed-values.sql:5849
-msgid "Afroasiatic (Other)"
+# id::acsaf.name__61
+#: 950.data.seed-values.sql:10516
+msgid "See From Tracing -- Personal Name"
 msgstr ""
 
-# id::ccs.name__4
-#: 950.data.seed-values.sql:301
-msgid "Missing"
+# id::csc.name__40
+#: 950.data.seed-values.sql:11406
+msgid "Cellular One (Dobson) / O2 / Orange"
 msgstr ""
 
-# id::ccvm.value__53
-#: 950.data.seed-values.sql:5895
-msgid "Edo"
+# id::cit.name__2
+#: 950.data.seed-values.sql:243
+msgid "SSN"
 msgstr ""
 
-# id::ccvm.value__225
-#: 950.data.seed-values.sql:6067
-msgid "Kinyarwanda"
+# id::ccvm.value__436
+#: 950.data.seed-values.sql:6430
+msgid "Tamashek"
 msgstr ""
 
-# id::ccvm.value__191
-#: 950.data.seed-values.sql:6033
-msgid "Interlingue"
+# id::coust.label__ui.admin.work_log.max_entries
+#: 950.data.seed-values.sql:4038
+msgid "Work Log: Maximum Actions Logged"
 msgstr ""
 
-# id::cuat.label__24
-#: 950.data.seed-values.sql:11736
-msgid "EZProxy Verification"
+# id::coust.label__ui.patron.edit.au.juvenile.suggest
+#: 950.data.seed-values.sql:4497
+msgid "Suggest juvenile field on patron registration"
 msgstr ""
 
-# id::ccs.name__12
-#: 950.data.seed-values.sql:309
-msgid "Reserves"
+# id::ccvm.value__208
+#: 950.data.seed-values.sql:6202
+msgid "Kara-Kalpak"
 msgstr ""
 
-# id::ccvm.value__174
-#: 950.data.seed-values.sql:6016
-msgid "Hebrew"
+# id::ccvm.value__412
+#: 950.data.seed-values.sql:6406
+msgid "Swahili"
 msgstr ""
 
-# id::ccvm.value__121 id::ccvm.value__123
-#: 950.data.seed-values.sql:5963 950.data.seed-values.sql:5965
-msgid "Esperanto"
+# id::aiit.name__ITM
+#: 950.data.seed-values.sql:9076
+msgid "Non-library Item"
 msgstr ""
 
-# id::vie.description__import.item.invalid.price
-#: 950.data.seed-values.sql:9488
-msgid "Invalid value for \"price\""
+# id::ppl.description__112
+#: 950.data.seed-values.sql:734
+msgid "Allow a user to update a closed date interval for a given location"
 msgstr ""
 
-# id::ccvm.value__92
-#: 950.data.seed-values.sql:5934
-msgid "Creoles and Pidgins, French-based (Other)"
+# id::coust.description__ui.patron.edit.aua.post_code.example
+#: 950.data.seed-values.sql:4671
+msgid ""
+"The Example for validation on the post_code field in patron registration."
 msgstr ""
 
-# id::ccvm.value__407 id::ccvm.value__414
-#: 950.data.seed-values.sql:6249 950.data.seed-values.sql:6256
-msgid "Swazi"
+# id::ppl.description__547
+#: 950.data.seed-values.sql:1602
+msgid ""
+"When granted, newly added lineitem identifiers will propagate to linked bib "
+"records"
 msgstr ""
 
-# id::ccvm.value__246 id::ccvm.value__389
-#: 950.data.seed-values.sql:6088 950.data.seed-values.sql:6231
-msgid "Sami"
+# id::ccvm.value__83
+#: 950.data.seed-values.sql:6077
+msgid "Cherokee"
 msgstr ""
 
-# id::ccvm.value__194
-#: 950.data.seed-values.sql:6036
-msgid "Indic (Other)"
+# id::atreact.description__ApplyPatronPenalty
+#: 950.data.seed-values.sql:7778
+msgid ""
+"Applies the configured penalty to a patron.  Required named environment "
+"variables are \"user\", which refers to the user object, and "
+"\"context_org\", which refers to the org_unit object that acts as the focus "
+"for the penalty."
 msgstr ""
 
-# id::ccvm.value__423
-#: 950.data.seed-values.sql:6265
-msgid "Telugu"
+# id::coust.label__circ.max_accept_return_of_longoverdue
+#: 950.data.seed-values.sql:12993
+msgid "Long-Overdue Max Return Interval"
 msgstr ""
 
-# id::cmc.label__author id::cza.label__4 id::cza.label__13 id::cza.label__22
-#: 950.data.seed-values.sql:98 950.data.seed-values.sql:369
-#: 950.data.seed-values.sql:390 950.data.seed-values.sql:409
-msgid "Author"
+# id::cbt.name__10
+#: 950.data.seed-values.sql:499
+msgid "Long-Overdue Materials"
 msgstr ""
 
-# id::cbs.source__2
-#: 950.data.seed-values.sql:5
-msgid "System Local"
+# id::coust.label__vandelay.item.copy_location.default
+#: 950.data.seed-values.sql:13302
+msgid "Vandelay Default Copy Location"
 msgstr ""
 
-# id::cuat.label__13
-#: 950.data.seed-values.sql:11722
-msgid "Verification via xmlrpc"
+# id::ccvm.value__69
+#: 950.data.seed-values.sql:6063
+msgid "Catalan"
 msgstr ""
 
-# id::ccvm.value__309
-#: 950.data.seed-values.sql:6151
-msgid "Newari"
+# id::atval.description__HoldIsCancelled
+#: 950.data.seed-values.sql:9672
+msgid "Check whether a hold request is cancelled."
 msgstr ""
 
-# id::ccvm.value__366
-#: 950.data.seed-values.sql:6208
-msgid "Samaritan Aramaic"
+# id::ccvm.value__471
+#: 950.data.seed-values.sql:6465
+msgid "Sorbian languages"
 msgstr ""
 
-# id::crcd.name__5
-#: 950.data.seed-values.sql:252
-msgid "2_months_2_renew"
+# id::coust.label__ui.patron.edit.au.claims_never_checked_out_count.show
+#: 950.data.seed-values.sql:4236
+msgid "Show claims_never_checked_out_count field on patron registration"
 msgstr ""
 
-# id::cnal.name__2
-#: 950.data.seed-values.sql:319
-msgid "Unfiltered"
+# id::coust.description__circ.holds.hold_has_copy_at.block
+#: 950.data.seed-values.sql:3144
+msgid ""
+"If there is an available copy at the requesting library that could fulfill a"
+" hold during hold placement time, do not allow the hold to be placed"
 msgstr ""
 
-# id::acsaf.name__62
-#: 950.data.seed-values.sql:10228
-msgid "See Also Tracing -- Corporate Name"
+# id::ppl.description__382
+#: 950.data.seed-values.sql:1272
+msgid ""
+"Enables the user to create/update/delete booking reservation attribute value"
+" maps"
 msgstr ""
 
-# id::csp.label__30
-#: 950.data.seed-values.sql:41
-msgid "Patron has been referred to a collections agency"
+# id::bpt.name__4
+#: 950.data.seed-values.sql:14
+msgid "Set"
 msgstr ""
 
-# id::ccvm.value__417
-#: 950.data.seed-values.sql:6259
-msgid "Tahitian"
+# id::coust.label__circ.holds.target_skip_me
+#: 950.data.seed-values.sql:3213
+msgid "Skip For Hold Targeting"
 msgstr ""
 
-# id::ccvm.value__141
-#: 950.data.seed-values.sql:5983
-msgid "Fula"
+# id::coust.description__sms.disable_authentication_requirement.callnumbers
+#: 950.data.seed-values.sql:4833
+msgid ""
+"Disable authentication requirement for sending call number information via "
+"SMS from the OPAC."
 msgstr ""
 
-# id::ccvm.value__523
-#: 950.data.seed-values.sql:6374
-msgid "Microfilm"
+# id::ccvm.value__539
+#: 950.data.seed-values.sql:6546
+msgid "U-matic"
 msgstr ""
 
-# id::acsaf.name__7
-#: 950.data.seed-values.sql:10193
-msgid "Heading -- Genre/Form Term"
+# id::coust.description__circ.obscure_dob
+#: 950.data.seed-values.sql:3315
+msgid ""
+"When true, the Date of Birth column in patron lists will default to Not "
+"Visible, and in the Patron Summary sidebar the value will display as "
+"<Hidden> unless the field label is clicked."
 msgstr ""
 
-# id::ccvm.value__319
-#: 950.data.seed-values.sql:6161
-msgid "Nubian languages"
+# id::pgt.description__10
+#: 950.data.seed-values.sql:1636
+msgid "Can do anything at the Branch level"
 msgstr ""
 
-# id::i18n_l.name__hy-AM id::i18n_l.description__hy-AM id::ccvm.value__arm
-#: 950.data.seed-values.sql:341 950.data.seed-values.sql:342
-#: 950.data.seed-values.sql:5864
-msgid "Armenian"
+# id::ccvm.value__267
+#: 950.data.seed-values.sql:6261
+msgid "Maithili"
 msgstr ""
 
-# id::aou.name__2
-#: 950.data.seed-values.sql:448
-msgid "Example System 1"
+# id::pgt.name__5
+#: 950.data.seed-values.sql:1625
+msgid "Circulators"
 msgstr ""
 
-# id::aou.name__3
-#: 950.data.seed-values.sql:450
-msgid "Example System 2"
+# id::cmf.label__14
+#: 950.data.seed-values.sql:143
+msgid "Topic Subject"
 msgstr ""
 
-# id::ccvm.value__420
-#: 950.data.seed-values.sql:6262
-msgid "Tamil"
+# id::coust.description__circ.booking_reservation.default_elbow_room
+#: 950.data.seed-values.sql:2861
+msgid ""
+"Elbow room specifies how far in the future you must make a reservation on an"
+" item if that item will have to transit to reach its pickup location.  It "
+"secondarily defines how soon a reservation on a given item must start before"
+" the check-in process will opportunistically capture it for the reservation "
+"shelf."
 msgstr ""
 
-# id::ccvm.value__aus
-#: 950.data.seed-values.sql:5872
-msgid "Australian languages"
+# id::ccvm.value__340
+#: 950.data.seed-values.sql:6334
+msgid "Old Persian (ca. 600-400 B.C.)"
 msgstr ""
 
-# id::ccvm.value__356
-#: 950.data.seed-values.sql:6198
-msgid "Raeto-Romance"
+# id::ahrcc.label__7
+#: 950.data.seed-values.sql:2476
+msgid "Patron via SIP"
 msgstr ""
 
-# id::ccvm.value__535
-#: 950.data.seed-values.sql:6388
-msgid "Monograph/Item"
+# id::ppl.description__438
+#: 950.data.seed-values.sql:1384
+msgid "CREATE_INVOICE_METHOD"
 msgstr ""
 
-# id::ccvm.value__350
-#: 950.data.seed-values.sql:6192
-msgid "Pushto"
+# id::cust.label__history.circ.retention_start
+# id::cust.description__history.circ.retention_start
+#: 950.data.seed-values.sql:9315 950.data.seed-values.sql:9316
+msgid "Historical Circulation Retention Start Date"
 msgstr ""
 
-# id::acsaf.name__49
-#: 950.data.seed-values.sql:10221
-msgid "Subdivision Linking Entry -- Geographic Subdivision"
+# id::ccvm.value__108
+#: 950.data.seed-values.sql:6102
+msgid "Dogri"
 msgstr ""
 
-# id::ccvm.value__524
-#: 950.data.seed-values.sql:6375
-msgid "Microfiche"
+# id::coust.label__config.settings_group.circulation
+#: 950.data.seed-values.sql:2566
+msgid "Circulation"
 msgstr ""
 
-# id::ccvm.value__472
-#: 950.data.seed-values.sql:6314
-msgid "Walloon"
+# id::ccvm.value__250
+#: 950.data.seed-values.sql:6244
+msgid "Limburgish"
 msgstr ""
 
-# id::ccvm.value__106
-#: 950.data.seed-values.sql:5948
-msgid "Dinka"
+# id::ppl.description__53
+#: 950.data.seed-values.sql:616
+msgid "User may create an entry in a patron statistical category"
 msgstr ""
 
-# id::ccvm.value__84
-#: 950.data.seed-values.sql:5926
-msgid "Church Slavic"
+# id::atclean.description__CreateHoldNotification
+#: 950.data.seed-values.sql:6788
+msgid "Creates a hold_notification record for each notified hold"
 msgstr ""
 
-# id::czs.label__biblios
-#: 950.data.seed-values.sql:360
-msgid "‡biblios.net"
+# id::ppl.description__267
+#: 950.data.seed-values.sql:1044
+msgid "UPDATE_LIT_FORM"
 msgstr ""
 
-# id::ccvm.value__243
-#: 950.data.seed-values.sql:6085
-msgid "Lamba"
+# id::ppl.description__227
+#: 950.data.seed-values.sql:964
+msgid "CREATE_XML_TRANSFORM"
 msgstr ""
 
-# id::ccvm.value__546
-#: 950.data.seed-values.sql:6401
-msgid "Betacam SP"
+# id::ccvm.value__asm
+#: 950.data.seed-values.sql:6021
+msgid "Assamese"
 msgstr ""
 
-# id::ccvm.value__280
-#: 950.data.seed-values.sql:6122
-msgid "Micmac"
+# id::cust.label__opac.hold_notify id::cust.description__opac.hold_notify
+#: 950.data.seed-values.sql:2529 950.data.seed-values.sql:2530
+msgid "Hold Notification Format"
 msgstr ""
 
-# id::cmf.label__8
-#: 950.data.seed-values.sql:128
-msgid "Personal Author"
+# id::acqcr.label__1
+#: 950.data.seed-values.sql:9083
+msgid "ISBN is unrecognizable"
 msgstr ""
 
-# id::ccvm.value__145 id::ccvm.value__156
-#: 950.data.seed-values.sql:5987 950.data.seed-values.sql:5998
-msgid "Galician"
+# id::cmf.label__17 id::vqbrad.description__8
+#: 950.data.seed-values.sql:152 950.data.seed-values.sql:4969
+msgid "Accession Number"
 msgstr ""
 
-# id::cuat.label__16
-#: 950.data.seed-values.sql:11727
-msgid "OPAC Login (jspac)"
+# id::coust.label__circ.holds.org_unit_target_weight
+#: 950.data.seed-values.sql:3168
+msgid "Org Unit Target Weight"
 msgstr ""
 
-# id::ccvm.value__264
-#: 950.data.seed-values.sql:6106
-msgid "Madurese"
+# id::coust.label__vandelay.item.copy_location.default
+#: 950.data.seed-values.sql:13306
+msgid "Default copy location value for imported items"
 msgstr ""
 
-# id::ccvm.value__227
-#: 950.data.seed-values.sql:6069
-msgid "Kimbundu"
+# id::coust.label__circ.holds.clear_shelf.copy_status
+#: 950.data.seed-values.sql:3096
+msgid "Clear shelf copy status"
 msgstr ""
 
-# id::ccvm.value__405
-#: 950.data.seed-values.sql:6247
-msgid "Nilo-Saharan (Other)"
+# id::ccvm.value__247
+#: 950.data.seed-values.sql:6241
+msgid "Latin"
 msgstr ""
 
-# id::ccvm.value__362
-#: 950.data.seed-values.sql:6204
-msgid "Sango (Ubangi Creole)"
+# id::ppl.description__57
+#: 950.data.seed-values.sql:624
+msgid "User may update an entry in a patron statistical category"
 msgstr ""
 
-# id::ccvm.value__220
-#: 950.data.seed-values.sql:6062
-msgid "Khasi"
+# id::ppl.description__326
+#: 950.data.seed-values.sql:1162
+msgid "UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval"
 msgstr ""
 
-# id::vie.description__import.item.invalid.circ_as_type
-#: 950.data.seed-values.sql:9498
-msgid "Invalid value for \"circ_as_type\""
+# id::ccvm.value__137 id::ccvm.value__140
+#: 950.data.seed-values.sql:6131 950.data.seed-values.sql:6134
+msgid "Frisian"
 msgstr ""
 
-# id::cmc.label__subject
-#: 950.data.seed-values.sql:99
-msgid "Subject"
+# id::ppl.description__208
+#: 950.data.seed-values.sql:926
+msgid "CREATE_CIRC_MOD"
 msgstr ""
 
-# id::ccvm.value__266
-#: 950.data.seed-values.sql:6108
-msgid "Marshallese"
+# id::vie.description__import.xml.malformed
+#: 950.data.seed-values.sql:9759
+msgid "Malformed record cause Import failure"
 msgstr ""
 
-# id::ccvm.value__476
-#: 950.data.seed-values.sql:6318
-msgid "Yao (Africa)"
+# id::ppl.description__179
+#: 950.data.seed-values.sql:868
+msgid "Allow a user to mark an item status as 'lost'"
 msgstr ""
 
-# id::acsaf.name__72
-#: 950.data.seed-values.sql:10237
-msgid "See Also Tracing -- Chronological Term"
+# id::ppl.description__453
+#: 950.data.seed-values.sql:1414
+msgid "DELETE_METABIB_SEARCH_ALIAS"
 msgstr ""
 
-# id::ccvm.value__273
-#: 950.data.seed-values.sql:6115
-msgid "Marathi"
+# id::ppl.description__35
+#: 950.data.seed-values.sql:580
+msgid "Allow a user to mark an item as 'missing'"
 msgstr ""
 
-# id::ccvm.value__386
-#: 950.data.seed-values.sql:6228
-msgid "Slovenian"
+# id::coust.label__credit.processor.payflowpro.password
+# id::coust.description__credit.processor.payflowpro.password
+#: 950.data.seed-values.sql:3744 950.data.seed-values.sql:3747
+msgid "PayflowPro password"
 msgstr ""
 
-# id::vie.description__import.duplicate.sysid
-# id::vie.description__import.duplicate.sysid
-#: 950.data.seed-values.sql:9477 950.data.seed-values.sql:9478
-msgid "Import failed due to system id collision"
+# id::csc.name__64
+#: 950.data.seed-values.sql:11814
+msgid "Centennial Wireless"
 msgstr ""
 
-# id::ccvm.value__365
-#: 950.data.seed-values.sql:6207
-msgid "Salishan languages"
+# id::vie.description__overlay.record.quality
+#: 950.data.seed-values.sql:9761
+msgid "New record had insufficient quality"
 msgstr ""
 
-# id::cuat.label__23
-#: 950.data.seed-values.sql:11735
-msgid "Self-Check User Verification"
+# id::csc.name__51
+#: 950.data.seed-values.sql:11593
+msgid "Simple Mobile"
 msgstr ""
 
-# id::acsaf.name__6
-#: 950.data.seed-values.sql:10192
-msgid "Heading -- Geographic Name"
+# id::ppl.description__201
+#: 950.data.seed-values.sql:912
+msgid "Allows staff to edit the note for a payment on a transaction"
 msgstr ""
 
-# id::ccvm.value__367
-#: 950.data.seed-values.sql:6209
-msgid "Sanskrit"
+# id::ccvm.value__541
+#: 950.data.seed-values.sql:6548
+msgid "Type C"
 msgstr ""
 
-# id::ccvm.value__547
-#: 950.data.seed-values.sql:6402
-msgid "Super-VHS"
+# id::ppl.description__156
+#: 950.data.seed-values.sql:822
+msgid "Allow a user to delete a fund allocation"
 msgstr ""
 
-# id::ccs.name__9
-#: 950.data.seed-values.sql:306
-msgid "On order"
+# id::ppl.description__489
+#: 950.data.seed-values.sql:1486
+msgid "Update prefix label definition."
 msgstr ""
 
-# id::ccvm.value__514
-#: 950.data.seed-values.sql:6362
-msgid "Essays"
+# id::coust.label__ui.patron.default_ident_type
+#: 950.data.seed-values.sql:4146
+msgid "Default Ident Type for Patron Registration"
 msgstr ""
 
-# id::aout.opac_label__2
-#: 950.data.seed-values.sql:433
-msgid "Local Library System"
+# id::ccvm.value__139
+#: 950.data.seed-values.sql:6133
+msgid "French, Old (ca. 842-1400)"
 msgstr ""
 
-# id::ccvm.value__528
-#: 950.data.seed-values.sql:6379
-msgid "Regular print reproduction"
+# id::cuat.label__22
+#: 950.data.seed-values.sql:12026
+msgid "LibraryElf Login"
 msgstr ""
 
-# id::ccvm.value__118
-#: 950.data.seed-values.sql:5960
-msgid "Elamite"
+# id::ppl.description__369 id::ppl.description__370
+#: 950.data.seed-values.sql:1248 950.data.seed-values.sql:1250
+msgid "Allow a user to delete trigger template output"
 msgstr ""
 
-# id::ccvm.value__ady
-#: 950.data.seed-values.sql:5848
-msgid "Adygei"
+# id::ccs.name__13
+#: 950.data.seed-values.sql:315
+msgid "Discard/Weed"
 msgstr ""
 
-# id::ccpbt.label__misc id::ccnbt.label__misc id::cbrebt.label__misc
-# id::cubt.label__misc
-#: 950.data.seed-values.sql:4879 950.data.seed-values.sql:4882
-#: 950.data.seed-values.sql:4883 950.data.seed-values.sql:4890
-msgid "Miscellaneous"
+# id::coust.label__config.settings_group.self
+#: 950.data.seed-values.sql:2567
+msgid "Self Check"
 msgstr ""
 
-# id::ccvm.value__317
-#: 950.data.seed-values.sql:6159
-msgid "Norwegian"
+# id::ccvm.value__188
+#: 950.data.seed-values.sql:6182
+msgid "Sichuan Yi"
 msgstr ""
 
-# id::aou.name__7
-#: 950.data.seed-values.sql:458
-msgid "Example Branch 4"
+# id::coust.description__ui.patron.edit.au.second_given_name.show
+#: 950.data.seed-values.sql:4599
+msgid ""
+"The second_given_name field will be shown on the patron registration screen."
+" Showing a field makes it appear with required fields even when not "
+"required. If the field is required this setting is ignored."
 msgstr ""
 
-# id::aout.opac_label__1
-#: 950.data.seed-values.sql:430
-msgid "Everywhere"
+# id::coust.label__credit.processor.paypal.testmode
+# id::coust.description__credit.processor.paypal.testmode
+#: 950.data.seed-values.sql:3807 950.data.seed-values.sql:3810
+msgid "PayPal test mode"
 msgstr ""
 
-# id::aou.name__6
-#: 950.data.seed-values.sql:456
-msgid "Example Branch 3"
+# id::ccvm.value__479
+#: 950.data.seed-values.sql:6473
+msgid "Yoruba"
 msgstr ""
 
-# id::aou.name__4
-#: 950.data.seed-values.sql:452
-msgid "Example Branch 1"
+# id::ccvm.value__arw
+#: 950.data.seed-values.sql:6020
+msgid "Arawak"
 msgstr ""
 
-# id::ccvm.value__229
-#: 950.data.seed-values.sql:6071
-msgid "Komi"
+# id::csc.name__5
+#: 950.data.seed-values.sql:10807
+msgid "Koodo Mobile"
 msgstr ""
 
-# id::acs.description__1
-#: 950.data.seed-values.sql:10175
-msgid "Library of Congress standard authority record control semantics"
+# id::coust.description__ui.patron.edit.aua.state.show
+#: 950.data.seed-values.sql:4653
+msgid ""
+"The State field will be shown on the patron registration screen. Showing a "
+"field makes it appear with required fields even when not required. If the "
+"field is required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__179
-#: 950.data.seed-values.sql:6021
-msgid "Hittite"
+# id::cust.label__opac.default_list id::cust.description__opac.default_list
+#: 950.data.seed-values.sql:12228 950.data.seed-values.sql:12234
+msgid "Default list to use when adding to a bookbag"
 msgstr ""
 
-# id::ccvm.value__445
-#: 950.data.seed-values.sql:6287
-msgid "Turkmen"
+# id::coust.label__org.patron_opt_boundary
+#: 950.data.seed-values.sql:3982
+msgid "Patron Opt-In Boundary"
 msgstr ""
 
-# id::acsaf.name__65
-#: 950.data.seed-values.sql:10230
-msgid "See Also Tracing -- Topical Term"
+# id::cubt.label__folks%3Ahold.cancel
+#: 950.data.seed-values.sql:5050
+msgid "Cancel Holds"
 msgstr ""
 
-# id::ccvm.value__408
-#: 950.data.seed-values.sql:6250
-msgid "Sukuma"
-msgstr ""
+# id::ccvm.value__521
+#: 950.data.seed-values.sql:6521
+msgid "Speeches"
+msgstr ""
 
-# id::ccvm.value__502
-#: 950.data.seed-values.sql:6348
-msgid "Mixed materials"
+# id::acsaf.name__23
+#: 950.data.seed-values.sql:10492
+msgid "See Also From Tracing -- Meeting Name"
 msgstr ""
 
-# id::coust.label__config.settings_group.sec
-#: 950.data.seed-values.sql:2504
-msgid "Security"
+# id::coust.label__ui.patron_search.result_cap
+#: 950.data.seed-values.sql:4722
+msgid "Cap results in Patron Search at this number."
 msgstr ""
 
-# id::ccs.name__8
-#: 950.data.seed-values.sql:305
-msgid "On holds shelf"
+# id::ccvm.value__alb
+#: 950.data.seed-values.sql:6007
+msgid "Albanian"
 msgstr ""
 
-# id::cuat.label__10
-#: 950.data.seed-values.sql:11719
-msgid "Verification via srfsh"
+# id::ppl.description__537
+#: 950.data.seed-values.sql:1582
+msgid "Allows staff to manage search filter groups and entries"
 msgstr ""
 
-# id::ccvm.value__480
-#: 950.data.seed-values.sql:6322
-msgid "Yupik languages"
+# id::cgf.label__history.hold.retention_age_canceled_3
+#: 950.data.seed-values.sql:9197
+msgid "Historical Hold Retention Age - Canceled (Patron via phone)"
 msgstr ""
 
-# id::ccvm.value__450
-#: 950.data.seed-values.sql:6292
-msgid "Tuvaluan"
+# id::ppl.description__148
+#: 950.data.seed-values.sql:806
+msgid "Allow a user to delete a funding source"
 msgstr ""
 
-# id::at.name__|
-#: 950.data.seed-values.sql:10316
-msgid "No attempt to code"
+# id::coust.description__circ.staff_client.receipt.header_text
+#: 950.data.seed-values.sql:3558
+msgid ""
+"Text/HTML/Macros to be inserted into receipt templates in place of "
+"%INCLUDE(header_text)%"
 msgstr ""
 
-# id::ccvm.value__318
-#: 950.data.seed-values.sql:6160
-msgid "Northern Sotho"
+# id::aou.name__8
+#: 950.data.seed-values.sql:469
+msgid "Example Sub-library 1"
 msgstr ""
 
-# id::ccvm.value__45
-#: 950.data.seed-values.sql:5887
-msgid "Beja"
+# id::ccvm.value__472
+#: 950.data.seed-values.sql:6466
+msgid "Walloon"
 msgstr ""
 
-# id::ccvm.value__149
-#: 950.data.seed-values.sql:5991
-msgid "Germanic (Other)"
+# id::pgt.name__4
+#: 950.data.seed-values.sql:1623
+msgid "Catalogers"
 msgstr ""
 
-# id::cza.label__9 id::cza.label__18 id::cza.label__27
-#: 950.data.seed-values.sql:379 950.data.seed-values.sql:400
-#: 950.data.seed-values.sql:419
-msgid "Item Type"
+# id::ccvm.value__amh
+#: 950.data.seed-values.sql:6010
+msgid "Amharic"
 msgstr ""
 
-# id::vie.description__import.record.perm_failure
-#: 950.data.seed-values.sql:9500
-msgid "Perm failure creating a record"
+# id::cbt.name__1
+#: 950.data.seed-values.sql:481
+msgid "Overdue Materials"
 msgstr ""
 
-# id::ccvm.value__209
-#: 950.data.seed-values.sql:6051
-msgid "Kabyle"
+# id::ccvm.value__353
+#: 950.data.seed-values.sql:6347
+msgid "Rapanui"
 msgstr ""
 
-# id::crcd.name__10
-#: 950.data.seed-values.sql:262
-msgid "14_days_2_renew"
+# id::coust.label__acq.tmp_barcode_prefix
+# id::coust.description__acq.tmp_barcode_prefix
+#: 950.data.seed-values.sql:2651 950.data.seed-values.sql:2654
+msgid "Temporary barcode prefix"
 msgstr ""
 
-# id::cit.name__2
-#: 950.data.seed-values.sql:238
-msgid "SSN"
+# id::ppl.description__513
+#: 950.data.seed-values.sql:1534
+msgid "Allows a user to use debug functions in the staff client"
 msgstr ""
 
-# id::ccvm.value__162
-#: 950.data.seed-values.sql:6004
-msgid "Gothic"
+# id::acsaf.name__43
+#: 950.data.seed-values.sql:10505
+msgid "Established Heading Linking Entry -- Meeting Name"
 msgstr ""
 
-# id::ccvm.value__436
-#: 950.data.seed-values.sql:6278
-msgid "Tamashek"
+# id::coust.label__acq.upload.default.create_po
+#: 950.data.seed-values.sql:12503
+msgid "Upload Create PO"
 msgstr ""
 
-# id::ccvm.value__208
-#: 950.data.seed-values.sql:6050
-msgid "Kara-Kalpak"
+# id::ccvm.value__333
+#: 950.data.seed-values.sql:6327
+msgid "Papuan (Other)"
 msgstr ""
 
-# id::ccvm.value__412
-#: 950.data.seed-values.sql:6254
-msgid "Swahili"
+# id::ccs.name__11 id::coust.label__config.settings_group.cat
+#: 950.data.seed-values.sql:313 950.data.seed-values.sql:2564
+msgid "Cataloging"
 msgstr ""
 
-# id::ccvm.value__68
-#: 950.data.seed-values.sql:5910
-msgid "Carib"
+# id::crcd.name__4
+#: 950.data.seed-values.sql:255
+msgid "3_days_1_renew"
 msgstr ""
 
-# id::aout.name__4
-#: 950.data.seed-values.sql:438
-msgid "Sub-library"
+# id::ccvm.value__arn
+#: 950.data.seed-values.sql:6017
+msgid "Mapuche"
 msgstr ""
 
-# id::ccvm.value__83
-#: 950.data.seed-values.sql:5925
-msgid "Cherokee"
+# id::ccvm.value__455
+#: 950.data.seed-values.sql:6449
+msgid "Uighur"
 msgstr ""
 
-# id::at.name__ 
-#: 950.data.seed-values.sql:10317
-msgid "Alternate no attempt to code"
+# id::ppl.description__395
+#: 950.data.seed-values.sql:1298
+msgid "ADMIN_ACQ_FISCAL_YEAR"
 msgstr ""
 
-# id::acsaf.name__9
-#: 950.data.seed-values.sql:10195
-msgid "Heading -- Geographic Subdivision"
+# id::coust.label__opac.allow_pending_address
+#: 950.data.seed-values.sql:3901
+msgid "Allow pending addresses"
 msgstr ""
 
-# id::ccs.name__5
-#: 950.data.seed-values.sql:302
-msgid "In process"
+# id::coust.description__ui.patron.edit.au.master_account.suggest
+#: 950.data.seed-values.sql:4518
+msgid ""
+"The master_account field will be suggested on the patron registration "
+"screen. Suggesting a field makes it appear when suggested fields are shown. "
+"If the field is shown or required this setting is ignored."
 msgstr ""
 
-# id::csp.label__24
-#: 950.data.seed-values.sql:35
-msgid "Alerting block on Circ and Renew"
+# id::ccvm.value__195
+#: 950.data.seed-values.sql:6189
+msgid "Indonesian"
 msgstr ""
 
-# id::coust.label__config.settings_group.program
-#: 950.data.seed-values.sql:2510
-msgid "Program"
+# id::ppl.description__11
+#: 950.data.seed-values.sql:532
+msgid "Allow a user to update another user's hold"
 msgstr ""
 
-# id::cust.label__history.hold.retention_count
-# id::cust.description__history.hold.retention_count
-#: 950.data.seed-values.sql:9058 950.data.seed-values.sql:9059
-msgid "Historical Hold Retention Count"
+# id::coust.description__circ.transit.min_checkin_interval
+#: 950.data.seed-values.sql:3576
+msgid ""
+"In-Transit items checked in this close to the transit start time will be "
+"prevented from checking in"
 msgstr ""
 
-# id::ccvm.value__265
-#: 950.data.seed-values.sql:6107
-msgid "Magahi"
+# id::ppl.description__152
+#: 950.data.seed-values.sql:814
+msgid "Allow a user to delete a fund"
 msgstr ""
 
-# id::ccvm.value__333
-#: 950.data.seed-values.sql:6175
-msgid "Papuan (Other)"
+# id::coust.label__serial.prev_issuance_copy_location
+#: 950.data.seed-values.sql:4020
+msgid "Previous Issuance Copy Location"
 msgstr ""
 
-# id::ccvm.value__207
-#: 950.data.seed-values.sql:6049
-msgid "Judeo-Arabic"
+# id::acsaf.name__41
+#: 950.data.seed-values.sql:10503
+msgid "Established Heading Linking Entry -- Personal Name"
 msgstr ""
 
-# id::ccvm.value__548
-#: 950.data.seed-values.sql:6403
-msgid "M-II"
+# id::ppl.description__195
+#: 950.data.seed-values.sql:900
+msgid "Allows a user to delete an MFHD record"
 msgstr ""
 
-# id::ccvm.value__284 id::ccvm.value__285
-#: 950.data.seed-values.sql:6126 950.data.seed-values.sql:6127
-msgid "Malagasy"
+# id::csc.name__7
+#: 950.data.seed-values.sql:10841
+msgid "Bell Mobility & Solo Mobile"
 msgstr ""
 
-# id::ccvm.value__435
-#: 950.data.seed-values.sql:6277
-msgid "Tlingit"
+# id::ccvm.value__235
+#: 950.data.seed-values.sql:6229
+msgid "Kurukh"
 msgstr ""
 
-# id::acsaf.name__67
-#: 950.data.seed-values.sql:10232
-msgid "See Also Tracing -- Genre/Form Term"
+# id::ccvm.value__421 id::ccvm.value__422
+#: 950.data.seed-values.sql:6415 950.data.seed-values.sql:6416
+msgid "Tatar"
 msgstr ""
 
-# id::acsaf.name__24
-#: 950.data.seed-values.sql:10181
-msgid "See Also From Tracing -- Uniform Title"
+# id::ppl.description__145
+#: 950.data.seed-values.sql:800
+msgid "Allow a user to delete an item out of another user's container"
 msgstr ""
 
-# id::ccvm.value__271
-#: 950.data.seed-values.sql:6113
-msgid "Maori"
+# id::csc.name__22
+#: 950.data.seed-values.sql:11100
+msgid "Hawaiian Telcom Wireless"
 msgstr ""
 
-# id::ccvm.value__138
-#: 950.data.seed-values.sql:5980
-msgid "French, Middle (ca. 1400-1600)"
+# id::coust.label__cat.label.font.size
+#: 950.data.seed-values.sql:2777
+msgid "Spine and pocket label font size"
 msgstr ""
 
-# id::ccvm.value__bai
-#: 950.data.seed-values.sql:5879
-msgid "Bamileke languages"
+# id::acsaf.name__12
+#: 950.data.seed-values.sql:10487
+msgid "Heading -- Chronological Term"
 msgstr ""
 
-# id::ccvm.value__185
-#: 950.data.seed-values.sql:6027
-msgid "Igbo"
+# id::coust.label__vandelay.item.barcode.auto
+#: 950.data.seed-values.sql:13250
+msgid "Vandelay Generate Default Barcodes"
 msgstr ""
 
-# id::cuat.label__18
-#: 950.data.seed-values.sql:11729
-msgid "Staff Client Login"
+# id::ccvm.value__293
+#: 950.data.seed-values.sql:6287
+msgid "Mooré"
 msgstr ""
 
-# id::ccvm.value__241
-#: 950.data.seed-values.sql:6083
-msgid "Ladino"
+# id::ppl.description__272
+#: 950.data.seed-values.sql:1054
+msgid "UPDATE_ORG_UNIT_CLOSING"
 msgstr ""
 
-# id::ccvm.value__69
-#: 950.data.seed-values.sql:5911
-msgid "Catalan"
+# id::ccvm.value__415
+#: 950.data.seed-values.sql:6409
+msgid "Syriac"
 msgstr ""
 
-# id::ccvm.value__404
-#: 950.data.seed-values.sql:6246
-msgid "Serer"
+# id::ccvm.value__214
+#: 950.data.seed-values.sql:6208
+msgid "Karen"
 msgstr ""
 
-# id::ccvm.value__492
-#: 950.data.seed-values.sql:6336
-msgid "Adult"
+# id::ccvm.value__142
+#: 950.data.seed-values.sql:6136
+msgid "Friulian"
 msgstr ""
 
-# id::ccvm.value__540
-#: 950.data.seed-values.sql:6395
-msgid "EIAJ"
+# id::coust.description__url_verify.url_verification_max_wait
+#: 950.data.seed-values.sql:12420
+msgid ""
+"If we exceed the wait time, the URL is marked as a \"timeout\" and the "
+"system moves on to the next URL"
 msgstr ""
 
-# id::ccvm.value__343
-#: 950.data.seed-values.sql:6185
-msgid "Phoenician"
+# id::cbrebt.label__template_merge
+#: 950.data.seed-values.sql:5039
+msgid "Template Merge Container"
 msgstr ""
 
-# id::ccvm.value__471
-#: 950.data.seed-values.sql:6313
-msgid "Sorbian languages"
+# id::ath.description__money.format.payment_receipt.print
+#: 950.data.seed-values.sql:8703
+msgid "A payment receipt needs to be formatted for printing."
 msgstr ""
 
-# id::acsaf.name__22
-#: 950.data.seed-values.sql:10202
-msgid "See Also From Tracing -- Corporate Name"
+# id::coust.label__ui.patron.edit.au.master_account.show
+#: 950.data.seed-values.sql:4506
+msgid "Show master_account field on patron registration"
 msgstr ""
 
-# id::vie.description__import.item.invalid.circ_modifier
-#: 950.data.seed-values.sql:9475
-msgid "Import failed due to invalid circulation modifier"
+# id::coust.label__circ.obscure_dob
+#: 950.data.seed-values.sql:3312
+msgid "Obscure the Date of Birth field"
 msgstr ""
 
-# id::ccvm.value__488
-#: 950.data.seed-values.sql:6332
-msgid "Preschool"
+# id::acqct.label__EUR
+#: 950.data.seed-values.sql:9067
+msgid "Euros"
 msgstr ""
 
-# id::ccvm.value__374
-#: 950.data.seed-values.sql:6216
-msgid "Selkup"
+# id::acsaf.name__52
+#: 950.data.seed-values.sql:10513
+msgid "Established Heading Linking Entry -- Chronological Term"
 msgstr ""
 
-# id::ccvm.value__314
-#: 950.data.seed-values.sql:6156
-msgid "Norwegian (BokmÃ¥l)"
+# id::cgf.label__circ.desk_renewal.use_original_circ_lib
+#: 950.data.seed-values.sql:9240
+msgid ""
+"Circ: Use original circulation library on desk renewal instead of user home "
+"library"
 msgstr ""
 
-# id::coust.label__config.settings_group.circulation
-#: 950.data.seed-values.sql:2507
-msgid "Circulation"
+# id::ccvm.value__397
+#: 950.data.seed-values.sql:6391
+msgid "Soninke"
 msgstr ""
 
-# id::ccvm.value__bal
-#: 950.data.seed-values.sql:5881
-msgid "Baluchi"
+# id::ppl.description__119
+#: 950.data.seed-values.sql:748
+msgid ""
+"Allow a user to remove an existing workstation so a new one can replace it"
 msgstr ""
 
-# id::ccvm.value__544
-#: 950.data.seed-values.sql:6399
-msgid "CED videodisc"
+# id::ppl.description__131
+#: 950.data.seed-values.sql:772
+msgid "Allow a user to add/remove users to/from the \"Vendor\" group"
 msgstr ""
 
-# id::ccvm.value__337
-#: 950.data.seed-values.sql:6179
-msgid "Panjabi"
+# id::ccvm.value__180
+#: 950.data.seed-values.sql:6174
+msgid "Hmong"
 msgstr ""
 
-# id::ccvm.value__330
-#: 950.data.seed-values.sql:6172
-msgid "Ossetic"
+# id::cmf.label__18 id::cza.label__2 id::cza.label__11 id::cza.label__20
+# id::vqbrad.description__5 id::czifm.label__3
+#: 950.data.seed-values.sql:154 950.data.seed-values.sql:374
+#: 950.data.seed-values.sql:395 950.data.seed-values.sql:414
+#: 950.data.seed-values.sql:4966 950.data.seed-values.sql:12903
+msgid "ISBN"
 msgstr ""
 
-# id::ccvm.value__221
-#: 950.data.seed-values.sql:6063
-msgid "Khoisan (Other)"
+# id::ppl.description__172
+#: 950.data.seed-values.sql:854
+msgid "Allow a staff member to directly remove a bibliographic record"
 msgstr ""
 
-# id::ccvm.value__352
-#: 950.data.seed-values.sql:6194
-msgid "Rajasthani"
+# id::acsaf.name__5
+#: 950.data.seed-values.sql:10473
+msgid "Heading -- Topical Term"
 msgstr ""
 
-# id::ccvm.value__316
-#: 950.data.seed-values.sql:6158
-msgid "Old Norse"
+# id::coust.label__circ.staff_client.receipt.footer_text
+#: 950.data.seed-values.sql:3546
+msgid "Content of footer_text include"
 msgstr ""
 
-# id::acpl.name__1
-#: 950.data.seed-values.sql:2441
-msgid "Stacks"
+# id::ath.description__aur.rejected
+#: 950.data.seed-values.sql:7016
+msgid "A patron acquisition request has been rejected."
 msgstr ""
 
-# id::ccvm.value__172
-#: 950.data.seed-values.sql:6014
-msgid "Hausa"
+# id::coust.description__ui.patron.edit.aua.post_code.regex
+#: 950.data.seed-values.sql:4680
+msgid ""
+"The Regular Expression for validation on the post_code field in patron "
+"registration."
 msgstr ""
 
-# id::cubt.label__folks%3Ahold.cancel
-#: 950.data.seed-values.sql:4898
-msgid "Cancel Holds"
+# id::ccvm.value__276
+#: 950.data.seed-values.sql:6270
+msgid "Malay"
 msgstr ""
 
-# id::cbt.name__8
-#: 950.data.seed-values.sql:486
-msgid "Damaged Item Processing Fee"
+# id::csc.name__16
+#: 950.data.seed-values.sql:10996
+msgid "Bulletin.net"
 msgstr ""
 
-# id::bpt.name__4
-#: 950.data.seed-values.sql:14
-msgid "Set"
+# id::ccvm.value__504
+#: 950.data.seed-values.sql:6502
+msgid "Manuscript cartographic material"
 msgstr ""
 
-# id::ccvm.value__291
-#: 950.data.seed-values.sql:6133
-msgid "Moldavian"
+# id::cmf.label__11
+#: 950.data.seed-values.sql:137
+msgid "Geographic Subject"
 msgstr ""
 
-# id::acsaf.name__45
-#: 950.data.seed-values.sql:10217
-msgid "Established Heading Linking Entry -- Topical Term"
+# id::ppl.description__224
+#: 950.data.seed-values.sql:958
+msgid "CREATE_RELEVANCE_ADJUSTMENT"
 msgstr ""
 
-# id::ccvm.value__539
-#: 950.data.seed-values.sql:6394
-msgid "U-matic"
+# id::cbt.name__9
+#: 950.data.seed-values.sql:497
+msgid "Notification Fee"
 msgstr ""
 
-# id::cmf.label__3
-#: 950.data.seed-values.sql:117
-msgid "Translated Title"
+# id::coust.description__circ.lost_immediately_available
+#: 950.data.seed-values.sql:3261
+msgid "Lost items are usable on checkin instead of going 'home' first"
 msgstr ""
 
-# id::ccvm.value__237
-#: 950.data.seed-values.sql:6079
-msgid "Kumyk"
+# id::coust.description__circ.max_fine.cap_at_price
+#: 950.data.seed-values.sql:3288
+msgid ""
+"This prevents the system from charging more than the item price in overdue "
+"fines"
 msgstr ""
 
-# id::vqbrad.description__14
-#: 950.data.seed-values.sql:4824
-msgid "Edition"
+# id::ccvm.value__71
+#: 950.data.seed-values.sql:6065
+msgid "Cebuano"
 msgstr ""
 
-# id::bpt.name__3
-#: 950.data.seed-values.sql:13
-msgid "Back-to-back"
+# id::ccvm.value__290
+#: 950.data.seed-values.sql:6284
+msgid "Mohawk"
 msgstr ""
 
-# id::csp.label__29
-#: 950.data.seed-values.sql:40
-msgid "Patron has an invalid address"
+# id::ppl.description__111
+#: 950.data.seed-values.sql:732
+msgid "Allow a user to remove a closed date interval for a given location"
 msgstr ""
 
-# id::ccvm.value__ava
-#: 950.data.seed-values.sql:5873
-msgid "Avaric"
+# id::coust.label__acq.upload.default.vandelay.merge_on_exact
+#: 950.data.seed-values.sql:12605
+msgid "Upload Merge on Exact Match by Default"
 msgstr ""
 
-# id::csp.label__3
-#: 950.data.seed-values.sql:27
-msgid "Patron exceeds max checked out item threshold"
+# id::ppl.description__132
+#: 950.data.seed-values.sql:774
+msgid "Allow a user to place a hold on an age-protected item"
 msgstr ""
 
-# id::ccvm.value__455
-#: 950.data.seed-values.sql:6297
-msgid "Uighur"
+# id::coust.description__auth.persistent_login_interval
+#: 950.data.seed-values.sql:2681
+msgid "How long a persistent login lasts.  E.g. '2 weeks'"
 msgstr ""
 
-# id::cmf.label__30
-#: 950.data.seed-values.sql:176
-msgid "LC Control Number"
+# id::coust.description__ui.patron.edit.au.prefix.require
+#: 950.data.seed-values.sql:4572
+msgid "The prefix field will be required on the patron registration screen."
 msgstr ""
 
-# id::pgt.description__10
-#: 950.data.seed-values.sql:1617
-msgid "Can do anything at the Branch level"
+# id::coust.label__circ.patron_edit.clone.copy_address
+#: 950.data.seed-values.sql:3393
+msgid "Patron Registration: Cloned patrons get address copy"
 msgstr ""
 
-# id::cuat.label__3
-#: 950.data.seed-values.sql:11711
-msgid "Login via gateway-v1"
+# id::coust.description__ui.patron.edit.au.dob.require
+#: 950.data.seed-values.sql:4338
+msgid "The dob field will be required on the patron registration screen."
 msgstr ""
 
-# id::ccvm.value__158
-#: 950.data.seed-values.sql:6000
-msgid "German, Middle High (ca. 1050-1500)"
+# id::ppl.description__106
+#: 950.data.seed-values.sql:722
+msgid ""
+"Allow a user to abort a copy transit if the user is at the transit "
+"destination or source"
 msgstr ""
 
-# id::cmf.label__18 id::cza.label__2 id::cza.label__11 id::cza.label__20
-# id::vqbrad.description__5
-#: 950.data.seed-values.sql:152 950.data.seed-values.sql:365
-#: 950.data.seed-values.sql:386 950.data.seed-values.sql:405
-#: 950.data.seed-values.sql:4815
-msgid "ISBN"
+# id::ppl.description__414
+#: 950.data.seed-values.sql:1336
+msgid "ADMIN_INVOICE"
 msgstr ""
 
-# id::ccvm.value__267
-#: 950.data.seed-values.sql:6109
-msgid "Maithili"
+# id::ccvm.value__204
+#: 950.data.seed-values.sql:6198
+msgid "Javanese"
 msgstr ""
 
-# id::pgt.name__5
-#: 950.data.seed-values.sql:1606
-msgid "Circulators"
+# id::ppl.description__461
+#: 950.data.seed-values.sql:1430
+msgid "UPDATE_COPY_BTYPE"
 msgstr ""
 
-# id::acsaf.name__12
-#: 950.data.seed-values.sql:10198
-msgid "Heading -- Chronological Term"
+# id::ppl.description__300
+#: 950.data.seed-values.sql:1110
+msgid "UPDATE_ACQ_FUNDING_SOURCE"
 msgstr ""
 
-# id::ccvm.value__418
-#: 950.data.seed-values.sql:6260
-msgid "Tai (Other)"
+# id::ppl.description__116
+#: 950.data.seed-values.sql:742
+msgid "Allow a user to remove someone from collections"
 msgstr ""
 
-# id::ccvm.value__439
-#: 950.data.seed-values.sql:6281
-msgid "Tok Pisin"
+# id::ccvm.value__213
+#: 950.data.seed-values.sql:6207
+msgid "Kannada"
 msgstr ""
 
-# id::ccvm.value__205
-#: 950.data.seed-values.sql:6047
-msgid "Japanese"
+# id::ccvm.value__111
+#: 950.data.seed-values.sql:6105
+msgid "Dutch, Middle (ca. 1050-1350)"
 msgstr ""
 
-# id::cmf.label__14
-#: 950.data.seed-values.sql:141
-msgid "Topic Subject"
+# id::coust.description__acq.upload.default.vandelay.merge_on_exact
+#: 950.data.seed-values.sql:12611
+msgid "Merge records on exact match by default during ACQ file upload"
 msgstr ""
 
-# id::at.name__v
-#: 950.data.seed-values.sql:10314
-msgid "Repertoire de vedettes-matiere"
+# id::ccvm.value__341
+#: 950.data.seed-values.sql:6335
+msgid "Persian"
 msgstr ""
 
-# id::csp.label__2
-#: 950.data.seed-values.sql:25
-msgid "Patron exceeds max overdue item threshold"
+# id::cuat.label__21
+#: 950.data.seed-values.sql:12025
+msgid "Apache Auth Proxy Login"
 msgstr ""
 
-# id::cit.name__3 id::ccvm.value__555 id::at.name__z
-#: 950.data.seed-values.sql:240 950.data.seed-values.sql:6410
-#: 950.data.seed-values.sql:10315
-msgid "Other"
+# id::ppl.description__160
+#: 950.data.seed-values.sql:830
+msgid "Allow a user to create a new provider"
 msgstr ""
 
-# id::ccvm.value__340
-#: 950.data.seed-values.sql:6182
-msgid "Old Persian (ca. 600-400 B.C.)"
+# id::ppl.description__478
+#: 950.data.seed-values.sql:1464
+msgid "VIEW_MERGE_PROFILE"
 msgstr ""
 
-# id::acsaf.name__32
-#: 950.data.seed-values.sql:10211
-msgid "See Also From Tracing -- Chronological Term"
+# id::ppl.description__117
+#: 950.data.seed-values.sql:744
+msgid "Allow a user to bar a patron"
 msgstr ""
 
-# id::ccvm.value__499
-#: 950.data.seed-values.sql:6345
-msgid "Two-dimensional nonprojectable graphic"
+# id::ccvm.value__190
+#: 950.data.seed-values.sql:6184
+msgid "Inuktitut"
 msgstr ""
 
-# id::ccvm.value__41
-#: 950.data.seed-values.sql:5883
-msgid "Balinese"
+# id::ccvm.value__525
+#: 950.data.seed-values.sql:6528
+msgid "Microopaque"
 msgstr ""
 
-# id::cust.label__history.circ.retention_start
-# id::cust.description__history.circ.retention_start
-#: 950.data.seed-values.sql:9037 950.data.seed-values.sql:9038
-msgid "Historical Circulation Retention Start Date"
+# id::ppl.description__386
+#: 950.data.seed-values.sql:1280
+msgid "UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds"
 msgstr ""
 
-# id::ccvm.value__434
-#: 950.data.seed-values.sql:6276
-msgid "Tokelauan"
+# id::atval.description__Acq%3A%3AUserRequestCancelled
+#: 950.data.seed-values.sql:7044
+msgid "Tests to see if the corresponding Line Item has a state of \"cancelled\"."
 msgstr ""
 
-# id::ccvm.value__108
-#: 950.data.seed-values.sql:5950
-msgid "Dogri"
+# id::ppl.description__125
+#: 950.data.seed-values.sql:760
+msgid "Allow a user to add/remove users to/from the \"GlobalAdmin\" group"
 msgstr ""
 
-# id::pgt.name__1
-#: 950.data.seed-values.sql:1598
-msgid "Users"
+# id::ccvm.value__206
+#: 950.data.seed-values.sql:6200
+msgid "Judeo-Persian"
 msgstr ""
 
-# id::ccvm.value__250
-#: 950.data.seed-values.sql:6092
-msgid "Limburgish"
+# id::coust.description__format.time
+#: 950.data.seed-values.sql:3828
+msgid ""
+"Format Times with this pattern (examples: \"h:m:s.SSS a z\" for "
+"\"2:07:20.666 PM Eastern Daylight Time\", \"HH:mm\" for \"14:07\")"
 msgstr ""
 
-# id::ccvm.value__116
-#: 950.data.seed-values.sql:5958
-msgid "Egyptian"
+# id::ccvm.value__262
+#: 950.data.seed-values.sql:6256
+msgid "Lushai"
 msgstr ""
 
-# id::pgt.name__13
-#: 950.data.seed-values.sql:1625
-msgid "Global Administrator"
+# id::ppl.description__68
+#: 950.data.seed-values.sql:646
+msgid "Allow a user to update a non-cataloged item type"
 msgstr ""
 
-# id::ccvm.value__452
-#: 950.data.seed-values.sql:6294
-msgid "Tuvinian"
+# id::ccvm.value__417
+#: 950.data.seed-values.sql:6411
+msgid "Tahitian"
 msgstr ""
 
-# id::coust.label__config.settings_group.ccp
-#: 950.data.seed-values.sql:2513
-msgid "Credit Card Processing"
+# id::ppl.description__168
+#: 950.data.seed-values.sql:846
+msgid "Allows a user to create a picklist"
 msgstr ""
 
-# id::ccvm.value__501
-#: 950.data.seed-values.sql:6347
-msgid "Kit"
+# id::ppl.description__398
+#: 950.data.seed-values.sql:1304
+msgid "ADMIN_ACQ_LINEITEM_ALERT_TEXT"
 msgstr ""
 
-# id::aiit.name__PRO
-#: 950.data.seed-values.sql:8888
-msgid "Processing Fee"
+# id::ccvm.value__519
+#: 950.data.seed-values.sql:6519
+msgid "Mixed forms"
 msgstr ""
 
-# id::ccvm.value__294
-#: 950.data.seed-values.sql:6136
-msgid "Multiple languages"
+# id::ppl.description__198
+#: 950.data.seed-values.sql:906
+msgid "Allows staff to override the max claims returned value for a patron"
 msgstr ""
 
-# id::ccvm.value__286
-#: 950.data.seed-values.sql:6128
-msgid "Maltese"
+# id::ccvm.value__348
+#: 950.data.seed-values.sql:6342
+msgid "Prakrit languages"
 msgstr ""
 
-# id::ccvm.value__asm
-#: 950.data.seed-values.sql:5869
-msgid "Assamese"
+# id::ccvm.value__147
+#: 950.data.seed-values.sql:6141
+msgid "Gayo"
 msgstr ""
 
-# id::vie.description__import.auth.duplicate.acn
-#: 950.data.seed-values.sql:9480
-msgid "Import failed due to Accession Number collision"
+# id::coust.label__circ.selfcheck.require_patron_password
+#: 950.data.seed-values.sql:3492
+msgid "Require patron password"
 msgstr ""
 
-# id::ccvm.value__500
-#: 950.data.seed-values.sql:6346
-msgid "Three-dimensional artifact or naturally occurring object"
+# id::ccvm.value__510
+#: 950.data.seed-values.sql:6510
+msgid "Not fiction (not further specified)"
 msgstr ""
 
-# id::cmf.label__17 id::vqbrad.description__8
-#: 950.data.seed-values.sql:150 950.data.seed-values.sql:4818
-msgid "Accession Number"
+# id::coust.label__credit.processor.authorizenet.login
+# id::coust.description__credit.processor.authorizenet.login
+#: 950.data.seed-values.sql:3672 950.data.seed-values.sql:3675
+msgid "AuthorizeNet login"
 msgstr ""
 
-# id::cmf.label__16
+# id::coust.label__ui.patron.edit.au.evening_phone.regex
+#: 950.data.seed-values.sql:4416
+msgid "Regex for evening_phone field on patron registration"
+msgstr ""
+
+# id::ppl.description__88
+#: 950.data.seed-values.sql:686
+msgid "Allow a user to delete another user's title note"
+msgstr ""
+
+# id::ppl.description__27
+#: 950.data.seed-values.sql:564
+msgid "Allow a user to mark a user as deleted"
+msgstr ""
+
+# id::ccvm.value__146 id::ccvm.value__328
+#: 950.data.seed-values.sql:6140 950.data.seed-values.sql:6322
+msgid "Oromo"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.day_phone.require
+#: 950.data.seed-values.sql:4299
+msgid "Require day_phone field on patron registration"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.dob.calendar
+#: 950.data.seed-values.sql:4329
+msgid ""
+"If set the calendar widget will appear when editing the dob field on the "
+"patron registration form."
+msgstr ""
+
+# id::coust.description__circ.fines.charge_when_closed
+#: 950.data.seed-values.sql:12046
+msgid ""
+"Normally, fines are not charged when a library is closed.  When set to True,"
+" fines will be charged during scheduled closings and normal weekly closed "
+"days."
+msgstr ""
+
+# id::coust.description__opac.lock_usernames
+#: 950.data.seed-values.sql:3931
+msgid "If enabled username changing via the OPAC will be disabled"
+msgstr ""
+
+# id::cmf.label__15
 #: 950.data.seed-values.sql:147
-msgid "All Subjects"
+msgid "General Keywords"
 msgstr ""
 
-# id::ccvm.value__442 id::ccvm.value__444
-#: 950.data.seed-values.sql:6284 950.data.seed-values.sql:6286
-msgid "Tswana"
+# id::ccvm.value__223
+#: 950.data.seed-values.sql:6217
+msgid "Khotanese"
 msgstr ""
 
-# id::crmf.name__6
-#: 950.data.seed-values.sql:278
-msgid "overdue_equip_mid"
+# id::ccvm.value__47
+#: 950.data.seed-values.sql:6041
+msgid "Bemba"
 msgstr ""
 
-# id::ccvm.value__88
-#: 950.data.seed-values.sql:5930
-msgid "Coptic"
+# id::ppl.description__231
+#: 950.data.seed-values.sql:972
+msgid "DELETE_CIRC_MOD"
 msgstr ""
 
-# id::crmf.name__5
-#: 950.data.seed-values.sql:276
-msgid "overdue_equip_min"
+# id::coust.description__circ.hold_stalling.soft
+#: 950.data.seed-values.sql:3045
+msgid ""
+"How long to wait before allowing remote items to be opportunistically "
+"captured for a hold.  Example \"5 days\""
 msgstr ""
 
-# id::ccvm.value__255
-#: 950.data.seed-values.sql:6097
-msgid "Letzeburgesch"
+# id::ccvm.value__96
+#: 950.data.seed-values.sql:6090
+msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
-# id::ccvm.value__137 id::ccvm.value__140
-#: 950.data.seed-values.sql:5979 950.data.seed-values.sql:5982
-msgid "Frisian"
+# id::ccvm.value__124
+#: 950.data.seed-values.sql:6118
+msgid "Estonian"
 msgstr ""
 
-# id::ccvm.value__298
-#: 950.data.seed-values.sql:6140
-msgid "Mayan languages"
+# id::coust.description__circ.staff_client.receipt.alert_text
+#: 950.data.seed-values.sql:3531
+msgid ""
+"Text/HTML/Macros to be inserted into receipt templates in place of "
+"%INCLUDE(alert_text)%"
 msgstr ""
 
-# id::ccvm.value__347
-#: 950.data.seed-values.sql:6189
-msgid "Portuguese"
+# id::coust.label__ui.patron.edit.aua.county.require
+#: 950.data.seed-values.sql:13230
+msgid "Show county field on patron registration"
 msgstr ""
 
-# id::ccvm.value__ace
-#: 950.data.seed-values.sql:5845
-msgid "Achinese"
+# id::cbrebt.label__url_verify
+#: 950.data.seed-values.sql:5040
+msgid "URL Verification Queue"
 msgstr ""
 
-# id::cit.name__1
-#: 950.data.seed-values.sql:236
-msgid "Drivers License"
+# id::ccvm.value__165
+#: 950.data.seed-values.sql:6159
+msgid "Greek, Modern (1453- )"
 msgstr ""
 
-# id::acsaf.name__48
-#: 950.data.seed-values.sql:10220
-msgid "Subdivision Linking Entry -- General Subdivision"
+# id::aout.name__3
+#: 950.data.seed-values.sql:444
+msgid "Branch"
 msgstr ""
 
-# id::ccvm.value__425
-#: 950.data.seed-values.sql:6267
-msgid "Terena"
+# id::coust.description__ui.patron.edit.au.dob.show
+#: 950.data.seed-values.sql:4347
+msgid ""
+"The dob field will be shown on the patron registration screen. Showing a "
+"field makes it appear with required fields even when not required. If the "
+"field is required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__ave
-#: 950.data.seed-values.sql:5874
-msgid "Avestan"
+# id::coust.label__circ.longoverdue.xact_open_on_zero
+#: 950.data.seed-values.sql:13070
+msgid "Leave transaction open when long overdue balance equals zero"
 msgstr ""
 
-# id::cmf.label__24
-#: 950.data.seed-values.sql:164
-msgid "SICI"
+# id::coust.description__circ.max_accept_return_of_longoverdue
+#: 950.data.seed-values.sql:12999
+msgid ""
+"Long-overdue check-in processing (voiding fees, re-instating overdues, etc.)"
+" will not take place for items that have been overdue for (or have last "
+"activity older than) this amount of time"
 msgstr ""
 
-# id::ccvm.value__281
-#: 950.data.seed-values.sql:6123
-msgid "Minangkabau"
+# id::coust.description__acq.fund.allow_rollover_without_money
+#: 950.data.seed-values.sql:12292
+msgid ""
+"Allow funds to be rolled over without bringing the money along.  This makes "
+"money left in the old fund disappear, modeling its return to some outside "
+"entity."
+msgstr ""
+
+# id::cbs.source__3
+#: 950.data.seed-values.sql:7
+msgid "Project Gutenberg"
+msgstr ""
+
+# id::ppl.description__410
+#: 950.data.seed-values.sql:1328
+msgid "ADMIN_HOLD_MATRIX_MATCHPOINT"
+msgstr ""
+
+# id::csc.name__27
+#: 950.data.seed-values.sql:11185
+msgid "Element Mobile"
+msgstr ""
+
+# id::ppl.description__115
+#: 950.data.seed-values.sql:740
+msgid "Allow a user to put someone into collections"
+msgstr ""
+
+# id::coust.label__ui.circ.show_billing_tab_on_bills
+#: 950.data.seed-values.sql:4092
+msgid "Show billing tab first when bills are present"
+msgstr ""
+
+# id::pgt.description__12
+#: 950.data.seed-values.sql:1642
+msgid "Can do anything at the System level"
+msgstr ""
+
+# id::coust.description__opac.allow_pending_user
+#: 950.data.seed-values.sql:13202
+msgid "Allow patrons to self-register, creating pending user accounts"
+msgstr ""
+
+# id::cuat.label__12
+#: 950.data.seed-values.sql:12014
+msgid "Verification via translator-v1"
+msgstr ""
+
+# id::cgf.label__history.hold.retention_age
+# id::cust.label__history.hold.retention_age
+# id::cust.description__history.hold.retention_age
+#: 950.data.seed-values.sql:9177 950.data.seed-values.sql:9324
+#: 950.data.seed-values.sql:9325
+msgid "Historical Hold Retention Age"
+msgstr ""
+
+# id::ccvm.value__431
+#: 950.data.seed-values.sql:6425
+msgid "Tigré"
+msgstr ""
+
+# id::coust.label__circ.selfcheck.alert.popup
+#: 950.data.seed-values.sql:3438
+msgid "Pop-up alert for errors"
+msgstr ""
+
+# id::coust.description__circ.patron.usr_activity_retrieve.max
+#: 950.data.seed-values.sql:12066
+msgid ""
+"Sets the maxinum number of recent user activity entries to retrieve for "
+"display in the staff client.  0 means show none, -1 means show all.  Default"
+" is 1."
+msgstr ""
+
+# id::ccvm.value__354
+#: 950.data.seed-values.sql:6348
+msgid "Rarotongan"
+msgstr ""
+
+# id::coust.label__circ.holds.min_estimated_wait_interval
+#: 950.data.seed-values.sql:3159
+msgid "Minimum Estimated Wait"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.alias.suggest
+#: 950.data.seed-values.sql:4209
+msgid "Suggest alias field on patron registration"
+msgstr ""
+
+# id::ccvm.value__199
+#: 950.data.seed-values.sql:6193
+msgid "Inupiaq"
+msgstr ""
+
+# id::coust.description__opac.allow_pending_address
+#: 950.data.seed-values.sql:3904
+msgid ""
+"If enabled, patrons can create and edit existing addresses.  Addresses are "
+"kept in a pending state until staff approves the changes"
+msgstr ""
+
+# id::cmf.label__7
+#: 950.data.seed-values.sql:128
+msgid "Corporate Author"
+msgstr ""
+
+# id::ppl.description__226
+#: 950.data.seed-values.sql:962
+msgid "CREATE_VR_FORMAT"
+msgstr ""
+
+# id::coust.description__ui.cat.volume_copy_editor.horizontal
+#: 950.data.seed-values.sql:4050
+msgid ""
+"The main entry point for this interface is in Holdings Maintenance, Actions "
+"for Selected Rows, Edit Item Attributes / Call Numbers / Replace Barcodes.  "
+"This setting changes the top and bottom panes for that interface into left "
+"and right panes."
+msgstr ""
+
+# id::ppl.description__495
+#: 950.data.seed-values.sql:1498
+msgid "Create/Retrieve/Update/Delete Serial Item"
+msgstr ""
+
+# id::ppl.description__20
+#: 950.data.seed-values.sql:550
+msgid "Allow a user to delete a volume"
+msgstr ""
+
+# id::coust.label__circ.holds.default_shelf_expire_interval
+#: 950.data.seed-values.sql:3114
+msgid "Default hold shelf expire interval"
+msgstr ""
+
+# id::ccvm.value__54
+#: 950.data.seed-values.sql:6048
+msgid "Bislama"
+msgstr ""
+
+# id::ccvm.value__ach
+#: 950.data.seed-values.sql:5998
+msgid "Acoli"
+msgstr ""
+
+# id::ppl.description__155
+#: 950.data.seed-values.sql:820
+msgid "Allow a user to create a new fund allocation"
+msgstr ""
+
+# id::crmf.name__2
+#: 950.data.seed-values.sql:275
+msgid "overdue_min"
+msgstr ""
+
+# id::crmf.name__3
+#: 950.data.seed-values.sql:277
+msgid "overdue_mid"
+msgstr ""
+
+# id::ccvm.value__171
+#: 950.data.seed-values.sql:6165
+msgid "Haitian French Creole"
+msgstr ""
+
+# id::ccvm.value__52
+#: 950.data.seed-values.sql:6046
+msgid "Bikol"
+msgstr ""
+
+# id::ccvm.value__413
+#: 950.data.seed-values.sql:6407
+msgid "Swedish"
+msgstr ""
+
+# id::ppl.description__452
+#: 950.data.seed-values.sql:1412
+msgid "DELETE_METABIB_CLASS"
+msgstr ""
+
+# id::coust.description__circ.offline.skip_checkin_if_newer_status_changed_time
+#: 950.data.seed-values.sql:3324
+msgid ""
+"Skip offline checkin transaction (raise exception when processing) if item "
+"Status Changed Time is newer than the recorded transaction time.  WARNING: "
+"The Reshelving to Available status rollover will trigger this."
+msgstr ""
+
+# id::coust.description__circ.transit.suppress_hold
+#: 950.data.seed-values.sql:3585
+msgid ""
+"If set to a non-empty value, Hold Transits will be suppressed between this "
+"OU and others with the same value. If set to an empty value, transits will "
+"not be suppressed."
+msgstr ""
+
+# id::aout.name__2 id::coust.label__config.settings_group.system
+#: 950.data.seed-values.sql:441 950.data.seed-values.sql:2560
+msgid "System"
+msgstr ""
+
+# id::ccvm.value__126
+#: 950.data.seed-values.sql:6120
+msgid "Ewe"
+msgstr ""
+
+# id::ccvm.value__447
+#: 950.data.seed-values.sql:6441
+msgid "Tupi languages"
+msgstr ""
+
+# id::cuat.label__16
+#: 950.data.seed-values.sql:12020
+msgid "OPAC Login (jspac)"
+msgstr ""
+
+# id::ccvm.value__109
+#: 950.data.seed-values.sql:6103
+msgid "Dravidian (Other)"
+msgstr ""
+
+# id::cgf.label__history.hold.retention_age_canceled_1
+#: 950.data.seed-values.sql:9189
+msgid "Historical Hold Retention Age - Canceled (Untarged expiration)"
+msgstr ""
+
+# id::ccvm.value__91
+#: 950.data.seed-values.sql:6085
+msgid "Creoles and Pidgins, English-based (Other)"
+msgstr ""
+
+# id::ccvm.value__483
+#: 950.data.seed-values.sql:6477
+msgid "Zhuang"
+msgstr ""
+
+# id::ppl.description__356
+#: 950.data.seed-values.sql:1222
+msgid "Allow a user to update trigger cleanup entries"
+msgstr ""
+
+# id::atval.description__HoldNotifyCheck
+#: 950.data.seed-values.sql:6910
+msgid "Check Hold notification flag(s)"
+msgstr ""
+
+# id::vie.description__import.item.invalid.status
+#: 950.data.seed-values.sql:9764
+msgid "Invalid value for \"status\""
+msgstr ""
+
+# id::ccvm.value__385
+#: 950.data.seed-values.sql:6379
+msgid "Slovak"
+msgstr ""
+
+# id::ppl.description__137
+#: 950.data.seed-values.sql:784
+msgid "Allow staff to override circulation copy range failure"
+msgstr ""
+
+# id::ccvm.value__153
+#: 950.data.seed-values.sql:6147
+msgid "Gilbertese"
+msgstr ""
+
+# id::csc.name__3
+#: 950.data.seed-values.sql:10771
+msgid "Rogers Wireless (Alternate)"
+msgstr ""
+
+# id::coust.description__circ.damaged.void_ovedue
+#: 950.data.seed-values.sql:2933
+msgid ""
+"When an item is marked damaged, overdue fines on the most recent circulation"
+" are voided."
+msgstr ""
+
+# id::ppl.description__468
+#: 950.data.seed-values.sql:1444
+msgid "user_request.create"
+msgstr ""
+
+# id::at.name__k
+#: 950.data.seed-values.sql:10603
+msgid "Canadian Subject Headings"
+msgstr ""
+
+# id::cmf.label__4
+#: 950.data.seed-values.sql:121
+msgid "Alternate Title"
+msgstr ""
+
+# id::ppl.description__403
+#: 950.data.seed-values.sql:1314
+msgid "ADMIN_CIRC_MOD"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.suffix.suggest
+#: 950.data.seed-values.sql:4626
+msgid ""
+"The suffix field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
+msgstr ""
+
+# id::cbrebt.label__bookbag
+#: 950.data.seed-values.sql:5037
+msgid "Book Bag"
+msgstr ""
+
+# id::aout.opac_label__5
+#: 950.data.seed-values.sql:451
+msgid "Your Bookmobile"
+msgstr ""
+
+# id::ppl.description__126
+#: 950.data.seed-values.sql:762
+msgid "Allow a user to add/remove users to/from the \"LocalAdmin\" group"
+msgstr ""
+
+# id::coust.label__vandelay.item.circ_modifier.default
+#: 950.data.seed-values.sql:13319
+msgid "Default circulation modifier value for imported items"
+msgstr ""
+
+# id::ccvm.value__363
+#: 950.data.seed-values.sql:6357
+msgid "Yakut"
+msgstr ""
+
+# id::coust.label__circ.holds.canceled.display_count
+#: 950.data.seed-values.sql:3087
+msgid "Canceled holds display count"
+msgstr ""
+
+# id::ppl.description__47
+#: 950.data.seed-values.sql:604
+msgid "Allow a user to remove other users from permission groups"
+msgstr ""
+
+# id::ppl.description__1
+#: 950.data.seed-values.sql:512
+msgid "Allow a user to log in to the OPAC"
+msgstr ""
+
+# id::ccvm.value__183
+#: 950.data.seed-values.sql:6177
+msgid "Hupa"
+msgstr ""
+
+# id::ppl.description__257
+#: 950.data.seed-values.sql:1024
+msgid "UPDATE_CIRC_MOD"
+msgstr ""
+
+# id::ccvm.value__186
+#: 950.data.seed-values.sql:6180
+msgid "Icelandic"
+msgstr ""
+
+# id::coust.label__cat.bib.delete_on_no_copy_via_acq_lineitem_cancel
+# id::coust.description__cat.bib.delete_on_no_copy_via_acq_lineitem_cancel
+#: 950.data.seed-values.sql:2714 950.data.seed-values.sql:2717
+msgid ""
+"Delete bib if all copies are deleted via Acquisitions lineitem cancellation."
+msgstr ""
+
+# id::coust.description__circ.staff_client.receipt.notice_text
+#: 950.data.seed-values.sql:3567
+msgid ""
+"Text/HTML/Macros to be inserted into receipt templates in place of "
+"%INCLUDE(notice_text)%"
+msgstr ""
+
+# id::ccvm.value__akk
+#: 950.data.seed-values.sql:6006
+msgid "Akkadian"
+msgstr ""
+
+# id::ppl.description__361
+#: 950.data.seed-values.sql:1232
+msgid "Allow a user to create, update, and delete trigger hooks"
+msgstr ""
+
+# id::ccvm.value__395
+#: 950.data.seed-values.sql:6389
+msgid "Sindhi"
+msgstr ""
+
+# id::ppl.description__147
+#: 950.data.seed-values.sql:804
+msgid "Allow a user to create a new funding source"
+msgstr ""
+
+# id::ppl.description__347
+#: 950.data.seed-values.sql:1204
+msgid "Allow a user to override the circ.holds.hold_has_copy_at.block setting"
+msgstr ""
+
+# id::coust.label__cat.default_item_price
+# id::coust.description__cat.default_item_price
+#: 950.data.seed-values.sql:2759 950.data.seed-values.sql:2762
+msgid "Default Item Price"
+msgstr ""
+
+# id::coust.description__acq.upload.default.provider
+#: 950.data.seed-values.sql:12543
+msgid "Default provider to use during ACQ file upload"
+msgstr ""
+
+# id::ccvm.value__221
+#: 950.data.seed-values.sql:6215
+msgid "Khoisan (Other)"
+msgstr ""
+
+# id::ppl.description__72
+#: 950.data.seed-values.sql:654
+msgid "Allow a user to update a copy location"
+msgstr ""
+
+# id::ppl.description__533
+#: 950.data.seed-values.sql:1574
+msgid "Allows a user to create/retrieve/update/delete copy location groups"
+msgstr ""
+
+# id::coust.label__circ.patron_expires_soon_warning
+#: 950.data.seed-values.sql:12326
+msgid "Warn when patron account is about to expire"
+msgstr ""
+
+# id::ath.description__ahr.format.pull_list
+#: 950.data.seed-values.sql:9562
+msgid "Format holds pull list for printing"
+msgstr ""
+
+# id::ccvm.value__400
+#: 950.data.seed-values.sql:6394
+msgid "Songhai"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.phone.regex
+#: 950.data.seed-values.sql:4704
+msgid "Regex for phone fields on patron registration"
+msgstr ""
+
+# id::coust.description__ui.patron.registration.require_address
+#: 950.data.seed-values.sql:4716
+msgid ""
+"Enforces a requirement for having at least one address for a patron during "
+"registration."
+msgstr ""
+
+# id::cbrebt.label__vandelay_queue
+#: 950.data.seed-values.sql:10626
+msgid "Vandelay Queue"
+msgstr ""
+
+# id::ppl.description__225
+#: 950.data.seed-values.sql:960
+msgid "CREATE_SURVEY"
+msgstr ""
+
+# id::crahp.name__1
+#: 950.data.seed-values.sql:297
+msgid "3month"
+msgstr ""
+
+# id::ppl.description__192
+#: 950.data.seed-values.sql:894
+msgid "Allows a user to view all org settings at the specified level"
+msgstr ""
+
+# id::i18n_l.name__cs-CZ id::i18n_l.description__cs-CZ id::ccvm.value__98
+#: 950.data.seed-values.sql:338 950.data.seed-values.sql:339
+#: 950.data.seed-values.sql:6092
+msgid "Czech"
+msgstr ""
+
+# id::ccvm.value__288
+#: 950.data.seed-values.sql:6282
+msgid "Manipuri"
+msgstr ""
+
+# id::ppl.description__390
+#: 950.data.seed-values.sql:1288
+msgid "Update org unit settings related to credit card processing"
+msgstr ""
+
+# id::ppl.description__123
+#: 950.data.seed-values.sql:756
+msgid "Allow a user to add/remove users to/from the \"Circulator\" group"
+msgstr ""
+
+# id::cuat.label__1
+#: 950.data.seed-values.sql:12002
+msgid "Login via opensrf"
+msgstr ""
+
+# id::coust.description__circ.holds.canceled.display_count
+#: 950.data.seed-values.sql:3090
+msgid "How many canceled holds to show in patron holds interfaces"
+msgstr ""
+
+# id::ppl.description__413
+#: 950.data.seed-values.sql:1334
+msgid "ADMIN_INDEX_NORMALIZER"
+msgstr ""
+
+# id::coust.description__circ.holds.recall_threshold
+#: 950.data.seed-values.sql:3198
+msgid ""
+"Recalls: A hold placed on an item with a circulation duration longer than "
+"this will trigger a recall. For example, \"14 days\" or \"3 weeks\"."
+msgstr ""
+
+# id::ppl.description__280
+#: 950.data.seed-values.sql:1070
+msgid "MERGE_BIB_RECORDS"
+msgstr ""
+
+# id::ccvm.value__458
+#: 950.data.seed-values.sql:6452
+msgid "Undetermined"
+msgstr ""
+
+# id::ppl.description__543
+#: 950.data.seed-values.sql:1594
+msgid "Allows a user to process and verify ULSs"
+msgstr ""
+
+# id::cmf.label__6
+#: 950.data.seed-values.sql:125
+msgid "Title Proper"
+msgstr ""
+
+# id::ccvm.value__358
+#: 950.data.seed-values.sql:6352
+msgid "Romanian"
+msgstr ""
+
+# id::ccvm.value__403
+#: 950.data.seed-values.sql:6397
+msgid "Sardinian"
+msgstr ""
+
+# id::ppl.description__4
+#: 950.data.seed-values.sql:518
+msgid "Allow a user to place a hold at the title level"
+msgstr ""
+
+# id::ppl.description__345
+#: 950.data.seed-values.sql:1200
+msgid "Allow a user to create/update/delete reasons for order cancellations"
+msgstr ""
+
+# id::coust.label__config.settings_group.offline
+#: 950.data.seed-values.sql:2576
+msgid "Offline"
+msgstr ""
+
+# id::ppl.description__359
+#: 950.data.seed-values.sql:1228
+msgid "Allow a user to update trigger event definitions"
+msgstr ""
+
+# id::ppl.description__481
+#: 950.data.seed-values.sql:1470
+msgid "ADMIN_SERIAL_CAPTION_PATTERN"
+msgstr ""
+
+# id::ppl.description__407
+#: 950.data.seed-values.sql:1322
+msgid "ADMIN_GLOBAL_FLAG"
+msgstr ""
+
+# id::coust.label__ui.circ.patron_summary.horizontal
+# id::coust.description__ui.circ.patron_summary.horizontal
+#: 950.data.seed-values.sql:4083 950.data.seed-values.sql:4086
+msgid "Patron circulation summary is horizontal"
+msgstr ""
+
+# id::ppl.description__282
+#: 950.data.seed-values.sql:1074
+msgid "CREATE_ACQ_FUNDING_SOURCE"
+msgstr ""
+
+# id::coust.description__cat.default_copy_status_normal
+#: 950.data.seed-values.sql:2753
+msgid ""
+"Default status when a copy is created using the normal volume/copy creator "
+"interface."
+msgstr ""
+
+# id::ppl.description__93
+#: 950.data.seed-values.sql:696
+msgid "Allow a user to update an organization unit setting"
+msgstr ""
+
+# id::csc.name__60
+#: 950.data.seed-values.sql:11746
+msgid "Verizon Wireless"
+msgstr ""
+
+# id::ccvm.value__326
+#: 950.data.seed-values.sql:6320
+msgid "Ojibwa"
+msgstr ""
+
+# id::coust.description__url_verify.url_verification_max_redirects
+#: 950.data.seed-values.sql:12399
+msgid ""
+"For URLs returning 3XX redirects, this is the maximum number of redirects we"
+" will follow before giving up."
+msgstr ""
+
+# id::ccvm.value__467
+#: 950.data.seed-values.sql:6461
+msgid "Walamo"
+msgstr ""
+
+# id::coust.description__circ.holds.recall_return_interval
+#: 950.data.seed-values.sql:3189
+msgid ""
+"Recalls: When a recall is triggered, this defines the adjusted loan period "
+"for the item. For example, \"4 days\" or \"1 week\"."
+msgstr ""
+
+# id::ccvm.value__305
+#: 950.data.seed-values.sql:6299
+msgid "Ndebele (Zimbabwe)  "
+msgstr ""
+
+# id::ccvm.value__257
+#: 950.data.seed-values.sql:6251
+msgid "Luba-Katanga"
+msgstr ""
+
+# id::ppl.description__292
+#: 950.data.seed-values.sql:1094
+msgid "DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF"
+msgstr ""
+
+# id::ccvm.value__512
+#: 950.data.seed-values.sql:6512
+msgid "Comic strips"
+msgstr ""
+
+# id::ccvm.value__187
+#: 950.data.seed-values.sql:6181
+msgid "Ido"
+msgstr ""
+
+# id::i18n_l.description__fr-CA
+#: 950.data.seed-values.sql:348
+msgid "Canadian French"
+msgstr ""
+
+# id::ppl.description__183
+#: 950.data.seed-values.sql:876
+msgid "Allow a user to mark an item status as 'reshelving'"
+msgstr ""
+
+# id::cgf.label__cat.maintain_control_numbers
+#: 950.data.seed-values.sql:9216
+msgid "Cat: Maintain 001/003/035 according to the MARC21 specification"
+msgstr ""
+
+# id::ccvm.value__134
+#: 950.data.seed-values.sql:6128
+msgid "Finno-Ugrian (Other)"
+msgstr ""
+
+# id::ppl.description__512
+#: 950.data.seed-values.sql:1532
+msgid "Allows a user to reopen an Acquisitions invoice"
+msgstr ""
+
+# id::csc.name__38
+#: 950.data.seed-values.sql:11372
+msgid "Cingular (GoPhone prepaid)"
+msgstr ""
+
+# id::csc.name__46
+#: 950.data.seed-values.sql:11508
+msgid "Edge Wireless"
+msgstr ""
+
+# id::cubt.label__folks%3Acirc.checkout
+#: 950.data.seed-values.sql:5048
+msgid "Checkout Items"
+msgstr ""
+
+# id::ccvm.value__ath
+#: 950.data.seed-values.sql:6023
+msgid "Athapascan (Other)"
+msgstr ""
+
+# id::coust.description__cat.spine.line.width
+#: 950.data.seed-values.sql:2825
+msgid ""
+"Set the default line width for spine labels in number of characters. This "
+"specifies the boundary at which lines must be wrapped."
+msgstr ""
+
+# id::ccvm.value__306
+#: 950.data.seed-values.sql:6300
+msgid "Ndonga"
+msgstr ""
+
+# id::coust.label__notice.telephony.callfile_lines
+#: 950.data.seed-values.sql:3888
+msgid "Telephony: Arbitrary line(s) to include in each notice callfile"
+msgstr ""
+
+# id::acqcr.label__2
+#: 950.data.seed-values.sql:9088
+msgid "Delivered but not received; presumed lost"
+msgstr ""
+
+# id::cmc.label__title id::cza.label__5 id::cza.label__14 id::cza.label__23
+# id::czifm.label__1
+#: 950.data.seed-values.sql:99 950.data.seed-values.sql:380
+#: 950.data.seed-values.sql:401 950.data.seed-values.sql:420
+#: 950.data.seed-values.sql:12901
+msgid "Title"
+msgstr ""
+
+# id::coust.label__credit.processor.authorizenet.password
+# id::coust.description__credit.processor.authorizenet.password
+#: 950.data.seed-values.sql:3681 950.data.seed-values.sql:3684
+msgid "AuthorizeNet password"
+msgstr ""
+
+# id::cust.description__opac.default_pickup_location
+#: 950.data.seed-values.sql:2554
+msgid "Default location for holds pickup"
+msgstr ""
+
+# id::coust.label__cat.default_copy_status_fast
+#: 950.data.seed-values.sql:2741
+msgid "Default copy status (fast add)"
+msgstr ""
+
+# id::coust.label__opac.patron.temporary_list_warn
+#: 950.data.seed-values.sql:12186
+msgid "Warn patrons when adding to a temporary book list"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.aua.post_code.example
+#: 950.data.seed-values.sql:4668
+msgid "Example for post_code field on patron registration"
+msgstr ""
+
+# id::ppl.description__110
+#: 950.data.seed-values.sql:730
+msgid ""
+"Allow a user to create duplicate holds (two or more holds on the same title)"
+msgstr ""
+
+# id::csc.name__49
+#: 950.data.seed-values.sql:11559
+msgid "Straight Talk / PagePlus Cellular"
+msgstr ""
+
+# id::coust.label__credit.processor.paypal.login
+# id::coust.description__credit.processor.paypal.login
+#: 950.data.seed-values.sql:3780 950.data.seed-values.sql:3783
+msgid "PayPal login"
+msgstr ""
+
+# id::ppl.description__51
+#: 950.data.seed-values.sql:612
+msgid "User may create a new patron statistical category"
+msgstr ""
+
+# id::ccvm.value__131
+#: 950.data.seed-values.sql:6125
+msgid "Fanti"
+msgstr ""
+
+# id::ccvm.value__426
+#: 950.data.seed-values.sql:6420
+msgid "Tetum"
+msgstr ""
+
+# id::coust.label__opac.lock_usernames
+#: 950.data.seed-values.sql:3928
+msgid "Lock Usernames"
+msgstr ""
+
+# id::csg.label__sms
+#: 950.data.seed-values.sql:2578
+msgid "SMS Text Messages"
+msgstr ""
+
+# id::atb.label__1
+#: 950.data.seed-values.sql:12122
+msgid "circ"
+msgstr ""
+
+# id::ccvm.value__274
+#: 950.data.seed-values.sql:6268
+msgid "Masai"
+msgstr ""
+
+# id::ccvm.value__40
+#: 950.data.seed-values.sql:6034
+msgid "Bambara"
+msgstr ""
+
+# id::ccvm.description__489
+#: 950.data.seed-values.sql:6485
+msgid "The item is intended for children, approximate ages 6-8 years."
+msgstr ""
+
+# id::ccvm.value__370
+#: 950.data.seed-values.sql:6364
+msgid "Santali"
+msgstr ""
+
+# id::ppl.description__454
+#: 950.data.seed-values.sql:1416
+msgid "DELETE_USER_BTYPE"
+msgstr ""
+
+# id::ccvm.value__465
+#: 950.data.seed-values.sql:6459
+msgid "Votic"
+msgstr ""
+
+# id::ppl.description__237
+#: 950.data.seed-values.sql:984
+msgid "DELETE_LASSO"
+msgstr ""
+
+# id::acsaf.name__68
+#: 950.data.seed-values.sql:10522
+msgid "See From Tracing -- General Subdivision"
+msgstr ""
+
+# id::pgt.name__6 id::coust.label__config.settings_group.system
+#: 950.data.seed-values.sql:1627 950.data.seed-values.sql:2559
+msgid "Acquisitions"
+msgstr ""
+
+# id::ppl.description__37
+#: 950.data.seed-values.sql:584
+msgid "Allow a user to create a new billable transaction"
+msgstr ""
+
+# id::ath.description__vandelay.queued_bib_record.email
+#: 950.data.seed-values.sql:9843
+msgid "An email has been requested for records in an Importer Bib Queue."
+msgstr ""
+
+# id::ppl.description__182
+#: 950.data.seed-values.sql:874
+msgid "Allow a user to mark an item status as 'in transit'"
+msgstr ""
+
+# id::coust.description__circ.staff_client.do_not_auto_attempt_print
+#: 950.data.seed-values.sql:3522
+msgid ""
+"Disable automatic print attempts from staff client interfaces for the "
+"receipt types in this list.  Possible values: \"Checkout\", \"Bill Pay\", "
+"\"Hold Slip\", \"Transit Slip\", and \"Hold/Transit Slip\".  This is "
+"different from the Auto-Print checkbox in the pertinent interfaces in that "
+"it disables automatic print attempts altogether, rather than encouraging "
+"silent printing by suppressing the print dialog.  The Auto-Print checkbox in"
+" these interfaces have no effect on the behavior for this setting.  In the "
+"case of the Hold, Transit, and Hold/Transit slips, this also suppresses the "
+"alert dialogs that precede the print dialog (the ones that offer Print and "
+"Do Not Print as options)."
+msgstr ""
+
+# id::cst.value__2
+#: 950.data.seed-values.sql:19
+msgid "Barred"
+msgstr ""
+
+# id::ccvm.value__176
+#: 950.data.seed-values.sql:6170
+msgid "Hiligaynon"
+msgstr ""
+
+# id::coust.label__circ.tally_lost
+#: 950.data.seed-values.sql:2957
+msgid "Include Lost circulations in lump sum tallies in Patron Display."
+msgstr ""
+
+# id::cuat.label__13
+#: 950.data.seed-values.sql:12015
+msgid "Verification via xmlrpc"
+msgstr ""
+
+# id::ppl.description__158
+#: 950.data.seed-values.sql:826
+msgid "Allow a user to update a fund allocation"
+msgstr ""
+
+# id::ppl.description__378
+#: 950.data.seed-values.sql:1264
+msgid "Enables the user to create/update/delete booking resource attributes"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.barred.show
+#: 950.data.seed-values.sql:4221
+msgid ""
+"The barred field will be shown on the patron registration screen. Showing a "
+"field makes it appear with required fields even when not required. If the "
+"field is required this setting is ignored."
+msgstr ""
+
+# id::ppl.description__153
+#: 950.data.seed-values.sql:816
+msgid "Allow a user to view a fund"
+msgstr ""
+
+# id::csc.name__11
+#: 950.data.seed-values.sql:10909
+msgid "SaskTel"
+msgstr ""
+
+# id::coust.label__config.settings_group.global
+#: 950.data.seed-values.sql:2570
+msgid "Global"
+msgstr ""
+
+# id::aiit.name__TAX
+#: 950.data.seed-values.sql:9072
+msgid "Tax"
+msgstr ""
+
+# id::ppl.description__418
+#: 950.data.seed-values.sql:1344
+msgid "ADMIN_MARC_CODE"
+msgstr ""
+
+# id::ccvm.value__125 id::ccvm.value__152
+#: 950.data.seed-values.sql:6119 950.data.seed-values.sql:6146
+msgid "Ethiopic"
+msgstr ""
+
+# id::ccvm.value__189
+#: 950.data.seed-values.sql:6183
+msgid "Ijo"
+msgstr ""
+
+# id::ccs.name__14
+#: 950.data.seed-values.sql:316
+msgid "Damaged"
+msgstr ""
+
+# id::ppl.description__144
+#: 950.data.seed-values.sql:798
+msgid "Allow a user to checkout an item that is marked as non-circ"
+msgstr ""
+
+# id::ccvm.value__302
+#: 950.data.seed-values.sql:6296
+msgid "Nauru"
+msgstr ""
+
+# id::ppl.description__166
+#: 950.data.seed-values.sql:842
+msgid "Allow a user to view/credit/debit a funding source"
+msgstr ""
+
+# id::ppl.description__174
+#: 950.data.seed-values.sql:858
+msgid "Allow a user to mark a transaction as bad (unrecoverable) debt"
+msgstr ""
+
+# id::coust.label__circ.staff_client.receipt.notice_text
+#: 950.data.seed-values.sql:3564
+msgid "Content of notice_text include"
+msgstr ""
+
+# id::ccvm.value__150
+#: 950.data.seed-values.sql:6144
+msgid "Georgian"
+msgstr ""
+
+# id::coust.label__circ.claim_return.copy_status
+#: 950.data.seed-values.sql:2921
+msgid "Claim Return Copy Status"
+msgstr ""
+
+# id::ccvm.value__78 id::ccvm.value__440
+#: 950.data.seed-values.sql:6072 950.data.seed-values.sql:6434
+msgid "Truk"
+msgstr ""
+
+# id::ppl.description__30
+#: 950.data.seed-values.sql:570
+msgid "Allow a user to place an item in transit"
+msgstr ""
+
+# id::ppl.description__470
+#: 950.data.seed-values.sql:1448
+msgid "user_request.update"
+msgstr ""
+
+# id::ccvm.value__166 id::ccvm.value__167
+#: 950.data.seed-values.sql:6160 950.data.seed-values.sql:6161
+msgid "Guarani"
+msgstr ""
+
+# id::coust.description__ui.unified_volume_copy_editor
+#: 950.data.seed-values.sql:4743
+msgid ""
+"If true combines the Volume/Copy Creator and Item Attribute Editor in some "
+"instances."
+msgstr ""
+
+# id::ccvm.value__376
+#: 950.data.seed-values.sql:6370
+msgid "Irish, Old (to 1100)"
+msgstr ""
+
+# id::acsaf.name__46
+#: 950.data.seed-values.sql:10507
+msgid "Established Heading Linking Entry -- Geographic Name"
+msgstr ""
+
+# id::ccvm.value__175
+#: 950.data.seed-values.sql:6169
+msgid "Herero"
+msgstr ""
+
+# id::ccvm.value__355
+#: 950.data.seed-values.sql:6349
+msgid "Romance (Other)"
+msgstr ""
+
+# id::ppl.description__136
+#: 950.data.seed-values.sql:782
+msgid "Allow staff to override fine amount checkout failure"
+msgstr ""
+
+# id::ccvm.value__119
+#: 950.data.seed-values.sql:6113
+msgid "English"
+msgstr ""
+
+# id::ppl.description__497
+#: 950.data.seed-values.sql:1502
+msgid "Create Bibliographic Record Peer Type"
+msgstr ""
+
+# id::ccvm.value__495
+#: 950.data.seed-values.sql:6491
+msgid "Juvenile"
+msgstr ""
+
+# id::acsaf.name__69
+#: 950.data.seed-values.sql:10523
+msgid "See From Tracing -- Geographic Subdivision"
+msgstr ""
+
+# id::cuat.label__15
+#: 950.data.seed-values.sql:12017
+msgid "SIP2 User Verification"
+msgstr ""
+
+# id::ccvm.value__550
+#: 950.data.seed-values.sql:6557
+msgid "8 mm."
+msgstr ""
+
+# id::ccvm.value__202
+#: 950.data.seed-values.sql:6196
+msgid "Iroquoian (Other)"
+msgstr ""
+
+# id::ccvm.value__322
+#: 950.data.seed-values.sql:6316
+msgid "Nyankole"
+msgstr ""
+
+# id::acsaf.name__10
+#: 950.data.seed-values.sql:10483
+msgid "Heading -- Chronological Subdivision"
+msgstr ""
+
+# id::coust.label__config.settings_group.receipt_template
+#: 950.data.seed-values.sql:2577
+msgid "Receipt Template"
+msgstr ""
+
+# id::coust.description__circ.password_reset_request_per_user_limit
+#: 950.data.seed-values.sql:3360
+msgid ""
+"When a user has more than this number of concurrently active self-serve "
+"password reset requests for their account, prevent the user from creating "
+"any new self-serve password reset requests until the number of active "
+"requests for the user drops back below this number."
+msgstr ""
+
+# id::coust.label__ui.patron.default_inet_access_level
+# id::coust.description__ui.patron.default_inet_access_level
+#: 950.data.seed-values.sql:4155 950.data.seed-values.sql:4158
+msgid "Default level of patrons' internet access"
+msgstr ""
+
+# id::ppl.description__134
+#: 950.data.seed-values.sql:778
+msgid "Allow staff to override checkout count failure"
+msgstr ""
+
+# id::ccvm.value__182
+#: 950.data.seed-values.sql:6176
+msgid "Hungarian"
+msgstr ""
+
+# id::ccvm.description__510
+#: 950.data.seed-values.sql:6510
+msgid ""
+"The item is not a work of fiction and no further identification of the "
+"literary form is desired"
+msgstr ""
+
+# id::ppl.description__229
+#: 950.data.seed-values.sql:968
+msgid "DELETE_BIB_LEVEL"
+msgstr ""
+
+# id::ccvm.value__277
+#: 950.data.seed-values.sql:6271
+msgid "Mandar"
+msgstr ""
+
+# id::ppl.description__268
+#: 950.data.seed-values.sql:1046
+msgid "UPDATE_METABIB_FIELD"
+msgstr ""
+
+# id::csp.label__21
+#: 950.data.seed-values.sql:34
+msgid "Note, no blocks"
+msgstr ""
+
+# id::coust.description__circ.holds.default_shelf_expire_interval
+#: 950.data.seed-values.sql:3117
+msgid ""
+"The amount of time an item will be held on the shelf before the hold "
+"expires. For example: \"2 weeks\" or \"5 days\""
+msgstr ""
+
+# id::coust.label__credit.payments.allow
+#: 950.data.seed-values.sql:3654
+msgid "Allow Credit Card Payments"
+msgstr ""
+
+# id::ppl.description__437
+#: 950.data.seed-values.sql:1382
+msgid "CREATE_INVOICE_ITEM_TYPE"
+msgstr ""
+
+# id::coust.description__circ.holds.age_protect.active_date
+#: 950.data.seed-values.sql:3063
+msgid ""
+"When calculating age protection rules use the active date instead of the "
+"creation date."
+msgstr ""
+
+# id::ppl.description__329
+#: 950.data.seed-values.sql:1168
+msgid "UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost"
+msgstr ""
+
+# id::ccvm.value__58
+#: 950.data.seed-values.sql:6052
+msgid "Braj"
+msgstr ""
+
+# id::coust.description__acq.upload.default.vandelay.import_non_matching
+#: 950.data.seed-values.sql:12594
+msgid "Import non-matching records by default during ACQ file upload"
+msgstr ""
+
+# id::ccvm.value__151
+#: 950.data.seed-values.sql:6145
+msgid "German"
+msgstr ""
+
+# id::vie.description__import.item.duplicate.barcode
+#: 950.data.seed-values.sql:9752
+msgid "Import failed due to barcode collision"
+msgstr ""
+
+# id::atb.label__2
+#: 950.data.seed-values.sql:12123
+msgid "cat"
+msgstr ""
+
+# id::ppl.description__364
+#: 950.data.seed-values.sql:1238
+msgid "Allow a user to update trigger hooks"
+msgstr ""
+
+# id::ppl.description__451
+#: 950.data.seed-values.sql:1410
+msgid "DELETE_MERGE_PROFILE"
+msgstr ""
+
+# id::ath.description__ahr.format.history.email
+#: 950.data.seed-values.sql:8524
+msgid "An email has been requested for a hold request history."
+msgstr ""
+
+# id::ppl.description__471
+#: 950.data.seed-values.sql:1450
+msgid "user_request.view"
+msgstr ""
+
+# id::acsaf.name__65
+#: 950.data.seed-values.sql:10519
+msgid "See From Tracing -- Topical Term"
+msgstr ""
+
+# id::coust.description__circ.staff_client.receipt.event_text
+#: 950.data.seed-values.sql:3540
+msgid ""
+"Text/HTML/Macros to be inserted into receipt templates in place of "
+"%INCLUDE(event_text)%"
+msgstr ""
+
+# id::ccvm.value__463
+#: 950.data.seed-values.sql:6457
+msgid "Vietnamese"
+msgstr ""
+
+# id::ppl.description__439
+#: 950.data.seed-values.sql:1386
+msgid "CREATE_MERGE_PROFILE"
+msgstr ""
+
+# id::ppl.description__259
+#: 950.data.seed-values.sql:1028
+msgid "UPDATE_COPY_STATUS"
+msgstr ""
+
+# id::ccvm.value__324
+#: 950.data.seed-values.sql:6318
+msgid "Nzima"
+msgstr ""
+
+# id::ccvm.value__112
+#: 950.data.seed-values.sql:6106
+msgid "Dutch"
+msgstr ""
+
+# id::cust.label__opac.default_font id::cust.description__opac.default_font
+#: 950.data.seed-values.sql:2505 950.data.seed-values.sql:2506
+msgid "OPAC Font Size"
+msgstr ""
+
+# id::coust.label__config.settings_group.finances
+#: 950.data.seed-values.sql:2571
+msgid "Finances"
+msgstr ""
+
+# id::coust.label__config.settings_group.booking
+#: 950.data.seed-values.sql:2575
+msgid "Booking"
+msgstr ""
+
+# id::ccvm.value__301
+#: 950.data.seed-values.sql:6295
+msgid "Neapolitan Italian"
+msgstr ""
+
+# id::csc.name__55
+#: 950.data.seed-values.sql:11661
+msgid "Qwest Wireless"
+msgstr ""
+
+# id::coust.description__url.remote_column_settings
+#: 950.data.seed-values.sql:4752
+msgid ""
+"URL for remote directory containing list column settings.  The format and "
+"naming convention for the files found in this directory match those in the "
+"local settings directory for a given workstation.  An administrator could "
+"create the desired settings locally and then copy all the tree_columns_for_*"
+" files to the remote directory."
+msgstr ""
+
+# id::ccs.name__4
+#: 950.data.seed-values.sql:306
+msgid "Missing"
+msgstr ""
+
+# id::ccvm.value__331
+#: 950.data.seed-values.sql:6325
+msgid "Turkish, Ottoman"
+msgstr ""
+
+# id::cgf.label__circ.holds.empty_issuance_ok
+#: 950.data.seed-values.sql:9120
+msgid "Holds: Allow holds on empty issuances"
+msgstr ""
+
+# id::ppl.description__462
+#: 950.data.seed-values.sql:1432
+msgid "UPDATE_INVOICE_ITEM_TYPE"
+msgstr ""
+
+# id::ccvm.value__409
+#: 950.data.seed-values.sql:6403
+msgid "Sundanese"
+msgstr ""
+
+# id::ppl.description__65
+#: 950.data.seed-values.sql:640
+msgid "User may delete a patron statistical category entry map"
+msgstr ""
+
+# id::ppl.description__107
+#: 950.data.seed-values.sql:724
+msgid ""
+"Allow a user to abort a copy transit if the user is not at the transit "
+"source or dest"
+msgstr ""
+
+# id::ath.description__ahr.format.history.print
+#: 950.data.seed-values.sql:8535
+msgid "A hold request history needs to be formatted for printing."
+msgstr ""
+
+# id::coust.label__ui.circ.suppress_checkin_popups
+# id::coust.description__ui.circ.suppress_checkin_popups
+#: 950.data.seed-values.sql:4101 950.data.seed-values.sql:4104
+msgid "Suppress popup-dialogs during check-in."
+msgstr ""
+
+# id::csc.name__57
+#: 950.data.seed-values.sql:11695
+msgid "Unicel"
+msgstr ""
+
+# id::i18n_l.name__es-MX
+#: 950.data.seed-values.sql:356
+msgid "Spanish (Mexico)"
+msgstr ""
+
+# id::ccvm.value__507
+#: 950.data.seed-values.sql:6505
+msgid "Nonmusical sound recording"
+msgstr ""
+
+# id::pgt.name__2
+#: 950.data.seed-values.sql:1619
+msgid "Patrons"
+msgstr ""
+
+# id::coust.description__credit.processor.default
+#: 950.data.seed-values.sql:3711
+msgid "This might be \"AuthorizeNet\", \"PayPal\", etc."
+msgstr ""
+
+# id::ppl.description__277
+#: 950.data.seed-values.sql:1064
+msgid "UPDATE_VOLUME_NOTE"
+msgstr ""
+
+# id::aiit.name__SHP
+#: 950.data.seed-values.sql:9074
+msgid "Shipping Charge"
+msgstr ""
+
+# id::ccvm.value__304
+#: 950.data.seed-values.sql:6298
+msgid "Ndebele (South Africa)"
+msgstr ""
+
+# id::ppl.description__215
+#: 950.data.seed-values.sql:940
+msgid "CREATE_LASSO_MAP"
+msgstr ""
+
+# id::ccvm.value__349
+#: 950.data.seed-values.sql:6343
+msgid "Provençal (to 1500)"
+msgstr ""
+
+# id::cmc.label__series
+#: 950.data.seed-values.sql:102
+msgid "Series"
+msgstr ""
+
+# id::cgf.label__ingest.disable_authority_linking
+#: 950.data.seed-values.sql:9132
+msgid "Authority Automation: Disable bib-authority link tracking"
+msgstr ""
+
+# id::ccvm.value__53
+#: 950.data.seed-values.sql:6047
+msgid "Edo"
+msgstr ""
+
+# id::ccvm.value__191
+#: 950.data.seed-values.sql:6185
+msgid "Interlingue"
+msgstr ""
+
+# id::acqct.label__CAN
+#: 950.data.seed-values.sql:9066
+msgid "Canadian Dollars"
+msgstr ""
+
+# id::ppl.description__469
+#: 950.data.seed-values.sql:1446
+msgid "user_request.delete"
+msgstr ""
+
+# id::ccvm.value__121 id::ccvm.value__123
+#: 950.data.seed-values.sql:6115 950.data.seed-values.sql:6117
+msgid "Esperanto"
+msgstr ""
+
+# id::ppl.description__29
+#: 950.data.seed-values.sql:568
+msgid "Allow a user to check in a copy"
+msgstr ""
+
+# id::cmc.label__author id::cza.label__4 id::cza.label__13 id::cza.label__22
+# id::czifm.label__2
+#: 950.data.seed-values.sql:100 950.data.seed-values.sql:378
+#: 950.data.seed-values.sql:399 950.data.seed-values.sql:418
+#: 950.data.seed-values.sql:12902
+msgid "Author"
+msgstr ""
+
+# id::cust.label__ui.grid_columns.url_verify.review_attempt
+# id::cust.description__ui.grid_columns.url_verify.review_attempt
+#: 950.data.seed-values.sql:12463 950.data.seed-values.sql:12469
+msgid "Link Checker's Review Attempt interface's saved columns"
+msgstr ""
+
+# id::crcd.name__5
+#: 950.data.seed-values.sql:257
+msgid "2_months_2_renew"
+msgstr ""
+
+# id::csp.label__30
+#: 950.data.seed-values.sql:43
+msgid "Patron has been referred to a collections agency"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.suffix.show
+#: 950.data.seed-values.sql:4617
+msgid ""
+"The suffix field will be shown on the patron registration screen. Showing a "
+"field makes it appear with required fields even when not required. If the "
+"field is required this setting is ignored."
+msgstr ""
+
+# id::ppl.description__56
+#: 950.data.seed-values.sql:622
+msgid "User may update a copy statistical category"
+msgstr ""
+
+# id::ccvm.value__523
+#: 950.data.seed-values.sql:6526
+msgid "Microfilm"
+msgstr ""
+
+# id::ppl.description__488
+#: 950.data.seed-values.sql:1484
+msgid "Create prefix label definition."
+msgstr ""
+
+# id::cust.label__staff_client.copy_editor.templates
+# id::cust.description__staff_client.copy_editor.templates
+#: 950.data.seed-values.sql:2541 950.data.seed-values.sql:2542
+msgid "Copy Editor Template"
+msgstr ""
+
+# id::coust.description__credit.processor.authorizenet.server
+#: 950.data.seed-values.sql:3693
+msgid "Required if using a developer/test account with AuthorizeNet"
+msgstr ""
+
+# id::coust.description__acq.upload.default.vandelay.merge_on_single
+#: 950.data.seed-values.sql:12645
+msgid "Merge records on single match by default during ACQ file upload"
+msgstr ""
+
+# id::ath.description__biblio.format.record_entry.print
+#: 950.data.seed-values.sql:8933
+msgid "One or more biblio record entries need to be formatted for printing."
+msgstr ""
+
+# id::ccvm.value__203
+#: 950.data.seed-values.sql:6197
+msgid "Italian"
+msgstr ""
+
+# id::ccvm.value__aus
+#: 950.data.seed-values.sql:6024
+msgid "Australian languages"
+msgstr ""
+
+# id::ccvm.value__356
+#: 950.data.seed-values.sql:6350
+msgid "Raeto-Romance"
+msgstr ""
+
+# id::ppl.description__514
+#: 950.data.seed-values.sql:1536
+msgid "Allows a user to manually adjust a patron's active cards"
+msgstr ""
+
+# id::ath.description__vandelay.queued_auth_record.print
+#: 950.data.seed-values.sql:9854
+msgid ""
+"Print output has been requested for records in an Importer Authority Queue."
+msgstr ""
+
+# id::coust.label__circ.patron_invalid_address_apply_penalty
+#: 950.data.seed-values.sql:3402
+msgid "Invalid patron address penalty"
+msgstr ""
+
+# id::ppl.description__218
+#: 950.data.seed-values.sql:946
+msgid "CREATE_NET_ACCESS_LEVEL"
+msgstr ""
+
+# id::coust.label__ui.general.idle_timeout
+#: 950.data.seed-values.sql:4128
+msgid "Idle timeout"
+msgstr ""
+
+# id::ppl.description__534
+#: 950.data.seed-values.sql:1576
+msgid "Allows a user to create/retrieve/update/delete user activity types"
+msgstr ""
+
+# id::ppl.description__258
+#: 950.data.seed-values.sql:1026
+msgid "UPDATE_COPY_NOTE"
+msgstr ""
+
+# id::ccvm.value__84
+#: 950.data.seed-values.sql:6078
+msgid "Church Slavic"
+msgstr ""
+
+# id::czs.label__biblios
+#: 950.data.seed-values.sql:369
+msgid "‡biblios.net"
+msgstr ""
+
+# id::ppl.description__482
+#: 950.data.seed-values.sql:1472
+msgid "ADMIN_SERIAL_DISTRIBUTION"
+msgstr ""
+
+# id::coust.label__circ.selfcheck.patron_login_timeout
+#: 950.data.seed-values.sql:3474
+msgid "Patron Login Timeout (in seconds)"
+msgstr ""
+
+# id::coust.label__acq.default_copy_location
+# id::coust.description__acq.default_copy_location
+#: 950.data.seed-values.sql:2615 950.data.seed-values.sql:2618
+msgid "Default copy location"
+msgstr ""
+
+# id::csp.label__1
+#: 950.data.seed-values.sql:23
+msgid "Patron exceeds fine threshold"
+msgstr ""
+
+# id::acsaf.name__62
+#: 950.data.seed-values.sql:10517
+msgid "See From Tracing -- Corporate Name"
+msgstr ""
+
+# id::coust.label__acq.upload.default.provider
+#: 950.data.seed-values.sql:12537
+msgid "Upload Default Provider"
+msgstr ""
+
+# id::cgf.label__circ.opac_renewal.use_original_circ_lib
+#: 950.data.seed-values.sql:9228
+msgid ""
+"Circ: Use original circulation library on opac renewal instead of user home "
+"library"
+msgstr ""
+
+# id::ppl.description__442
+#: 950.data.seed-values.sql:1392
+msgid "CREATE_USER_BTYPE"
+msgstr ""
+
+# id::ccvm.value__273
+#: 950.data.seed-values.sql:6267
+msgid "Marathi"
+msgstr ""
+
+# id::ppl.description__445
+#: 950.data.seed-values.sql:1398
+msgid "DELETE_BIB_SOURCE"
+msgstr ""
+
+# id::coust.description__circ.lost.generate_overdue_on_checkin
+#: 950.data.seed-values.sql:3252
+msgid ""
+"Enabling this setting causes retroactive creation of not-yet-existing "
+"overdue fines on lost item checkin, up to the point of checkin time (or max "
+"fines is reached).  This is different than \"restore overdue on lost\", "
+"because it only creates new overdue fines.  Use both settings together to "
+"get the full complement of overdue fines for a lost item"
+msgstr ""
+
+# id::coust.description__circ.reshelving_complete.interval
+#: 950.data.seed-values.sql:3423
+msgid ""
+"Amount of time to wait before changing an item from \"reshelving\" status to"
+" \"available\".  Examples: \"1 day\", \"6 hours\""
+msgstr ""
+
+# id::cuat.label__17
+#: 950.data.seed-values.sql:12021
+msgid "OPAC Login (tpac)"
+msgstr ""
+
+# id::ppl.description__264
+#: 950.data.seed-values.sql:1038
+msgid "UPDATE_LANGUAGE"
+msgstr ""
+
+# id::csc.name__61
+#: 950.data.seed-values.sql:11763
+msgid "USA Mobility"
+msgstr ""
+
+# id::aout.opac_label__2
+#: 950.data.seed-values.sql:442
+msgid "Local Library System"
+msgstr ""
+
+# id::ccvm.value__231
+#: 950.data.seed-values.sql:6225
+msgid "Korean"
+msgstr ""
+
+# id::cust.label__opac.default_sms_carrier
+# id::cust.description__opac.default_sms_carrier
+#: 950.data.seed-values.sql:10633 950.data.seed-values.sql:10639
+msgid "Default SMS/Text Carrier"
+msgstr ""
+
+# id::coust.description__circ.selfcheck.alert.sound
+#: 950.data.seed-values.sql:3450
+msgid "Use audio alerts for selfcheck events"
+msgstr ""
+
+# id::ccvm.value__118
+#: 950.data.seed-values.sql:6112
+msgid "Elamite"
+msgstr ""
+
+# id::coust.label__circ.offline.skip_renew_if_newer_status_changed_time
+#: 950.data.seed-values.sql:3339
+msgid "Skip offline renewal if newer item Status Changed Time."
+msgstr ""
+
+# id::ppl.description__271
+#: 950.data.seed-values.sql:1052
+msgid "UPDATE_ORG_TYPE"
+msgstr ""
+
+# id::ccvm.value__268
+#: 950.data.seed-values.sql:6262
+msgid "Makasar"
+msgstr ""
+
+# id::coust.label__cat.label.font.family
+#: 950.data.seed-values.sql:2768
+msgid "Spine and pocket label font family"
+msgstr ""
+
+# id::coust.label__circ.booking_reservation.default_elbow_room
+#: 950.data.seed-values.sql:2858
+msgid "Booking elbow room"
+msgstr ""
+
+# id::ppl.description__118
+#: 950.data.seed-values.sql:746
+msgid "Allow a user to un-bar a patron"
+msgstr ""
+
+# id::aou.name__7
+#: 950.data.seed-values.sql:467
+msgid "Example Branch 4"
+msgstr ""
+
+# id::aou.name__5
+#: 950.data.seed-values.sql:463
+msgid "Example Branch 2"
+msgstr ""
+
+# id::aou.name__6
+#: 950.data.seed-values.sql:465
+msgid "Example Branch 3"
+msgstr ""
+
+# id::aou.name__4
+#: 950.data.seed-values.sql:461
+msgid "Example Branch 1"
+msgstr ""
+
+# id::coust.label__acq.upload.default.vandelay.merge_profile
+#: 950.data.seed-values.sql:12571
+msgid "Upload Default Merge Profile"
+msgstr ""
+
+# id::ccvm.value__179
+#: 950.data.seed-values.sql:6173
+msgid "Hittite"
+msgstr ""
+
+# id::ppl.description__276
+#: 950.data.seed-values.sql:1062
+msgid "UPDATE_TRANSIT"
+msgstr ""
+
+# id::coust.label__circ.lost_immediately_available
+#: 950.data.seed-values.sql:3258
+msgid "Lost items usable on checkin"
+msgstr ""
+
+# id::ccvm.value__527
+#: 950.data.seed-values.sql:6530
+msgid "Braille"
+msgstr ""
+
+# id::ppl.description__197
+#: 950.data.seed-values.sql:904
+msgid ""
+"Allows a user to add/remove/edit users in the \"Acquisitions "
+"Administrators\" group"
+msgstr ""
+
+# id::ccvm.value__502
+#: 950.data.seed-values.sql:6500
+msgid "Mixed materials"
+msgstr ""
+
+# id::coust.description__circ.holds.canceled.display_age
+#: 950.data.seed-values.sql:3081
+msgid "Show all canceled holds that were canceled within this amount of time"
+msgstr ""
+
+# id::ppl.description__325
+#: 950.data.seed-values.sql:1160
+msgid "UPDATE_ORG_UNIT_SETTING.org.bounced_emails"
+msgstr ""
+
+# id::coust.label__config.settings_group.sec
+#: 950.data.seed-values.sql:2563
+msgid "Security"
+msgstr ""
+
+# id::ccs.name__8
+#: 950.data.seed-values.sql:310
+msgid "On holds shelf"
+msgstr ""
+
+# id::coust.label__circ.password_reset_request_throttle
+#: 950.data.seed-values.sql:3375
+msgid "Maximum concurrently active self-serve password reset requests"
+msgstr ""
+
+# id::vie.description__import.item.invalid.circ_lib
+#: 950.data.seed-values.sql:9772
+msgid "Invalid value for \"circ_lib\""
+msgstr ""
+
+# id::ccvm.value__480
+#: 950.data.seed-values.sql:6474
+msgid "Yupik languages"
+msgstr ""
+
+# id::ccvm.value__450
+#: 950.data.seed-values.sql:6444
+msgid "Tuvaluan"
+msgstr ""
+
+# id::cuat.label__7
+#: 950.data.seed-values.sql:12008
+msgid "SIP2 Proxy Login"
+msgstr ""
+
+# id::ccvm.value__318
+#: 950.data.seed-values.sql:6312
+msgid "Northern Sotho"
+msgstr ""
+
+# id::coust.description__credit.processor.payflowpro.partner
+#: 950.data.seed-values.sql:3738
+msgid "Often \"PayPal\" or \"VeriSign\", sometimes others"
+msgstr ""
+
+# id::ccvm.value__209
+#: 950.data.seed-values.sql:6203
+msgid "Kabyle"
+msgstr ""
+
+# id::ppl.description__12
+#: 950.data.seed-values.sql:534
+msgid "Allow a user to renew items"
+msgstr ""
+
+# id::ppl.description__249
+#: 950.data.seed-values.sql:1008
+msgid "DELETE_TRANSIT"
+msgstr ""
+
+# id::acsaf.name__64
+#: 950.data.seed-values.sql:10461
+msgid "See From Tracing -- Uniform Title"
+msgstr ""
+
+# id::aout.name__4
+#: 950.data.seed-values.sql:447
+msgid "Sub-library"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.evening_phone.suggest
+#: 950.data.seed-values.sql:4446
+msgid ""
+"The evening_phone field will be suggested on the patron registration screen."
+" Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
+msgstr ""
+
+# id::at.name__ 
+#: 950.data.seed-values.sql:10610
+msgid "Alternate no attempt to code"
+msgstr ""
+
+# id::coust.description__opac.barcode_regex
+#: 950.data.seed-values.sql:3913
+msgid "Regular expression defining the patron barcode format"
+msgstr ""
+
+# id::ppl.description__217
+#: 950.data.seed-values.sql:944
+msgid "CREATE_METABIB_FIELD"
+msgstr ""
+
+# id::csp.label__24
+#: 950.data.seed-values.sql:37
+msgid "Alerting block on Circ and Renew"
+msgstr ""
+
+# id::coust.label__credit.processor.default
+#: 950.data.seed-values.sql:3708
+msgid "Name default credit processor"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.prefix.suggest
+#: 950.data.seed-values.sql:4587
+msgid "Suggest prefix field on patron registration"
+msgstr ""
+
+# id::coust.description__circ.offline.skip_checkout_if_newer_status_changed_time
+#: 950.data.seed-values.sql:3333
+msgid ""
+"Skip offline checkout transaction (raise exception when processing) if item "
+"Status Changed Time is newer than the recorded transaction time.  WARNING: "
+"The Reshelving to Available status rollover will trigger this."
+msgstr ""
+
+# id::ccvm.value__284 id::ccvm.value__285
+#: 950.data.seed-values.sql:6278 950.data.seed-values.sql:6279
+msgid "Malagasy"
+msgstr ""
+
+# id::ppl.description__274
+#: 950.data.seed-values.sql:1058
+msgid "UPDATE_RELEVANCE_ADJUSTMENT"
+msgstr ""
+
+# id::ccvm.value__241
+#: 950.data.seed-values.sql:6235
+msgid "Ladino"
+msgstr ""
+
+# id::ccvm.value__540
+#: 950.data.seed-values.sql:6547
+msgid "EIAJ"
+msgstr ""
+
+# id::ccvm.value__343
+#: 950.data.seed-values.sql:6337
+msgid "Phoenician"
+msgstr ""
+
+# id::ppl.description__255
+#: 950.data.seed-values.sql:1020
+msgid "UPDATE_BIB_LEVEL"
+msgstr ""
+
+# id::ppl.description__254
+#: 950.data.seed-values.sql:1018
+msgid "UPDATE_AUDIENCE"
+msgstr ""
+
+# id::coust.label__circ.holds.canceled.display_age
+#: 950.data.seed-values.sql:3078
+msgid "Canceled holds display age"
+msgstr ""
+
+# id::coust.label__circ.selfcheck.patron_password_required
+#: 950.data.seed-values.sql:3483
+msgid "Require Patron Password"
+msgstr ""
+
+# id::coust.description__global.password_regex
+#: 950.data.seed-values.sql:3855
+msgid "Regular expression defining the password format"
+msgstr ""
+
+# id::ccvm.value__544
+#: 950.data.seed-values.sql:6551
+msgid "CED videodisc"
+msgstr ""
+
+# id::ccvm.value__337
+#: 950.data.seed-values.sql:6331
+msgid "Panjabi"
+msgstr ""
+
+# id::ccvm.value__352
+#: 950.data.seed-values.sql:6346
+msgid "Rajasthani"
+msgstr ""
+
+# id::ppl.description__310
+#: 950.data.seed-values.sql:1130
+msgid "VIEW_AUTHORITY_RECORD_NOTES"
+msgstr ""
+
+# id::csc.name__8
+#: 950.data.seed-values.sql:10858
+msgid "Bell Mobility & Solo Mobile (Alternate)"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.dob.calendar
+#: 950.data.seed-values.sql:4326
+msgid "Show calendar widget for dob field on patron registration"
+msgstr ""
+
+# id::vqbrad.description__9
+#: 950.data.seed-values.sql:4970
+msgid "TCN Value"
+msgstr ""
+
+# id::coust.label__acq.upload.default.vandelay.import_non_matching
+#: 950.data.seed-values.sql:12588
+msgid "Upload Import Non Matching by Default"
+msgstr ""
+
+# id::ppl.description__336
+#: 950.data.seed-values.sql:1182
+msgid "UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval"
+msgstr ""
+
+# id::ccvm.value__253
+#: 950.data.seed-values.sql:6247
+msgid "Mongo-Nkundu"
+msgstr ""
+
+# id::ccvm.value__237
+#: 950.data.seed-values.sql:6231
+msgid "Kumyk"
+msgstr ""
+
+# id::bpt.name__3
+#: 950.data.seed-values.sql:13
+msgid "Back-to-back"
+msgstr ""
+
+# id::ccvm.value__ava
+#: 950.data.seed-values.sql:6025
+msgid "Avaric"
+msgstr ""
+
+# id::csp.label__3
+#: 950.data.seed-values.sql:27
+msgid "Patron exceeds max checked out item threshold"
+msgstr ""
+
+# id::ppl.description__496
+#: 950.data.seed-values.sql:1500
+msgid "Create/Update/Delete SVF Record Attribute Defintion"
+msgstr ""
+
+# id::ppl.description__373
+#: 950.data.seed-values.sql:1256
+msgid "Allow a user to delete trigger validators"
+msgstr ""
+
+# id::ppl.description__223
+#: 950.data.seed-values.sql:956
+msgid "CREATE_PERM"
+msgstr ""
+
+# id::ccvm.value__439
+#: 950.data.seed-values.sql:6433
+msgid "Tok Pisin"
+msgstr ""
+
+# id::csp.label__2
+#: 950.data.seed-values.sql:25
+msgid "Patron exceeds max overdue item threshold"
+msgstr ""
+
+# id::coust.label__circ.fines.charge_when_closed
+#: 950.data.seed-values.sql:12040
+msgid "Charge fines on overdue circulations when closed"
+msgstr ""
+
+# id::cust.label__opac.default_search_depth
+# id::cust.description__opac.default_search_depth
+#: 950.data.seed-values.sql:2511 950.data.seed-values.sql:2512
+msgid "OPAC Search Depth"
+msgstr ""
+
+# id::coust.label__acq.copy_creator_uses_receiver
+#: 950.data.seed-values.sql:2597
+msgid "Set copy creator as receiver"
+msgstr ""
+
+# id::ccvm.value__41
+#: 950.data.seed-values.sql:6035
+msgid "Balinese"
+msgstr ""
+
+# id::ccvm.value__434
+#: 950.data.seed-values.sql:6428
+msgid "Tokelauan"
+msgstr ""
+
+# id::coust.description__opac.org_unit_hiding.depth
+#: 950.data.seed-values.sql:3940
+msgid ""
+"This will hide certain org units in the public OPAC if the Original Location"
+" (url param \"ol\") for the OPAC inherits this setting.  This setting "
+"specifies an org unit depth, that together with the OPAC Original Location "
+"determines which section of the Org Hierarchy should be visible in the OPAC."
+"  For example, a stock Evergreen installation will have a 3-tier hierarchy "
+"(Consortium/System/Branch), where System has a depth of 1 and Branch has a "
+"depth of 2.  If this setting contains a depth of 1 in such an installation, "
+"then every library in the System in which the Original Location belongs will"
+" be visible, and everything else will be hidden.  A depth of 0 will "
+"effectively make every org visible.  The embedded OPAC in the staff client "
+"ignores this setting."
+msgstr ""
+
+# id::ppl.description__233
+#: 950.data.seed-values.sql:976
+msgid "DELETE_HOURS_OF_OPERATION"
+msgstr ""
+
+# id::coust.label__ui.hide_copy_editor_fields
+#: 950.data.seed-values.sql:12140
+msgid "GUI: Hide these fields within the Item Attribute Editor"
+msgstr ""
+
+# id::cmf.label__9
+#: 950.data.seed-values.sql:132
+msgid "Conference Author"
+msgstr ""
+
+# id::coust.label__circ.lost.xact_open_on_zero
+#: 950.data.seed-values.sql:12306
+msgid "Leave transaction open when lost balance equals zero"
+msgstr ""
+
+# id::ppl.description__234
+#: 950.data.seed-values.sql:978
+msgid "DELETE_ITEM_FORM"
+msgstr ""
+
+# id::ccvm.value__294
+#: 950.data.seed-values.sql:6288
+msgid "Multiple languages"
+msgstr ""
+
+# id::ccvm.value__286
+#: 950.data.seed-values.sql:6280
+msgid "Maltese"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.juvenile.show
+#: 950.data.seed-values.sql:4488
+msgid "Show juvenile field on patron registration"
+msgstr ""
+
+# id::ppl.description__539
+#: 950.data.seed-values.sql:1586
+msgid "Allows staff to edit displayed copy editor fields"
+msgstr ""
+
+# id::atreact.description__SendFile
+#: 950.data.seed-values.sql:7788
+msgid ""
+"Build and transfer a file to a remote server.  Required parameter "
+"\"remote_host\" specifying target server.  Optional parameters: remote_user,"
+" remote_password, remote_account, port, type (FTP, SFTP or SCP), and debug."
+msgstr ""
+
+# id::coust.description__acq.fund.balance_limit.block
+#: 950.data.seed-values.sql:2627
+msgid ""
+"When the amount remaining in the fund, including spent money and "
+"encumbrances, goes below this percentage, attempts to spend from the fund "
+"will be blocked."
+msgstr ""
+
+# id::coust.label__circ.transit.min_checkin_interval
+#: 950.data.seed-values.sql:3573
+msgid "Minimum Transit Checkin Interval"
+msgstr ""
+
+# id::coust.description__url_verify.verification_batch_size
+#: 950.data.seed-values.sql:12489
+msgid ""
+"URLs are tested in batches.  This number defines the size of each batch and "
+"it directly relates to the number of back-end processes performing URL "
+"verification."
+msgstr ""
+
+# id::cust.label__ui.grid_columns.circ.hold_pull_list
+#: 950.data.seed-values.sql:10691
+msgid "Hold Pull List"
+msgstr ""
+
+# id::ppl.description__348
+#: 950.data.seed-values.sql:1206
+msgid ""
+"Allow a user to change the pickup and transit destination for a captured "
+"hold item already in transit"
+msgstr ""
+
+# id::ccvm.value__543
+#: 950.data.seed-values.sql:6550
+msgid "Laserdisc"
+msgstr ""
+
+# id::ccvm.value__347
+#: 950.data.seed-values.sql:6341
+msgid "Portuguese"
+msgstr ""
+
+# id::ccs.name__2
+#: 950.data.seed-values.sql:304
+msgid "Bindery"
+msgstr ""
+
+# id::ppl.description__151
+#: 950.data.seed-values.sql:812
+msgid "Allow a user to create a new fund"
+msgstr ""
+
+# id::ppl.description__130
+#: 950.data.seed-values.sql:770
+msgid "Allow a user to add/remove users to/from the \"SIP-Client\" group"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.day_phone.regex
+#: 950.data.seed-values.sql:4290
+msgid "Regex for day_phone field on patron registration"
+msgstr ""
+
+# id::ppl.description__135
+#: 950.data.seed-values.sql:780
+msgid "Allow staff to override overdue count failure"
+msgstr ""
+
+# id::coust.label__credit.processor.payflowpro.partner
+#: 950.data.seed-values.sql:3735
+msgid "PayflowPro partner"
+msgstr ""
+
+# id::ccvm.value__ave
+#: 950.data.seed-values.sql:6026
+msgid "Avestan"
+msgstr ""
+
+# id::ccvm.value__281
+#: 950.data.seed-values.sql:6275
+msgid "Minangkabau"
+msgstr ""
+
+# id::coust.label__url_verify.url_verification_delay
+#: 950.data.seed-values.sql:12372
+msgid "Number of seconds to wait between URL test attempts."
+msgstr ""
+
+# id::ppl.description__308
+#: 950.data.seed-values.sql:1126
+msgid "UPDATE_TRANSLATION"
+msgstr ""
+
+# id::ppl.description__36
+#: 950.data.seed-values.sql:582
+msgid "Allow a user to mark an item as 'claims returned'"
+msgstr ""
+
+# id::vie.description__overlay.missing.sysid
+#: 950.data.seed-values.sql:9757
+msgid "Overlay failed due to missing system id"
+msgstr ""
+
+# id::coust.label__circ.restore_overdue_on_lost_return
+#: 950.data.seed-values.sql:3429
+msgid "Restore overdues on lost item return"
+msgstr ""
+
+# id::coust.description__url_verify.url_verification_delay
+#: 950.data.seed-values.sql:12378
+msgid ""
+"Throttling mechanism for batch URL verification runs.  Each running process "
+"will wait this number of seconds after a URL test before performing the "
+"next."
+msgstr ""
+
+# id::coust.label__circ.selfcheck.alert.sound
+#: 950.data.seed-values.sql:3447
+msgid "Audio Alerts"
+msgstr ""
+
+# id::ppl.description__180
+#: 950.data.seed-values.sql:870
+msgid "Allow a user to mark an item status as 'missing'"
+msgstr ""
+
+# id::acsaf.name__4
+#: 950.data.seed-values.sql:10458
+msgid "Heading -- Uniform Title"
+msgstr ""
+
+# id::ccvm.value__387
+#: 950.data.seed-values.sql:6381
+msgid "Southern Sami"
+msgstr ""
+
+# id::csg.label__url_verify
+#: 950.data.seed-values.sql:12359
+msgid "URL Verify"
+msgstr ""
+
+# id::ccvm.value__89
+#: 950.data.seed-values.sql:6083
+msgid "Cornish"
+msgstr ""
+
+# id::cbrebt.label__temp
+#: 950.data.seed-values.sql:8901
+msgid "Temporary bucket which gets deleted after use."
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.alias.show
+#: 950.data.seed-values.sql:4203
+msgid ""
+"The alias field will be shown on the patron registration screen. Showing a "
+"field makes it appear with required fields even when not required. If the "
+"field is required this setting is ignored."
+msgstr ""
+
+# id::ccvm.value__437
+#: 950.data.seed-values.sql:6431
+msgid "Tonga (Nyasa)"
+msgstr ""
+
+# id::ppl.description__222
+#: 950.data.seed-values.sql:954
+msgid "CREATE_ORG_UNIT_CLOSING"
+msgstr ""
+
+# id::ccvm.value__500
+#: 950.data.seed-values.sql:6498
+msgid "Three-dimensional artifact or naturally occurring object"
+msgstr ""
+
+# id::ccvm.value__551
+#: 950.data.seed-values.sql:6558
+msgid "Hi-8 mm."
+msgstr ""
+
+# id::coust.label__ui.patron.edit.aua.state.show
+#: 950.data.seed-values.sql:4650
+msgid "Show State field on patron registration"
+msgstr ""
+
+# id::ppl.description__33
+#: 950.data.seed-values.sql:576
+msgid "Allow a user to record payments in the Billing Interface"
+msgstr ""
+
+# id::pgt.description__11
+#: 950.data.seed-values.sql:1639
+msgid "Serials (includes admin features)"
+msgstr ""
+
+# id::ppl.description__91
+#: 950.data.seed-values.sql:692
+msgid "Allow a user to view notifications attached to a hold"
+msgstr ""
+
+# id::cmf.label__13
+#: 950.data.seed-values.sql:141
+msgid "Temporal Subject"
+msgstr ""
+
+# id::ccvm.value__416 id::ccvm.value__428
+#: 950.data.seed-values.sql:6410 950.data.seed-values.sql:6422
+msgid "Tagalog"
+msgstr ""
+
+# id::ppl.description__209
+#: 950.data.seed-values.sql:928
+msgid "CREATE_COPY_STATUS"
+msgstr ""
+
+# id::ccvm.value__ast
+#: 950.data.seed-values.sql:6022
+msgid "Bable"
+msgstr ""
+
+# id::coust.description__gui.disable_local_save_columns
+#: 950.data.seed-values.sql:3864
+msgid ""
+"Disable the ability to save list column configurations locally.  If set, "
+"columns may still be manipulated, however, the changes do not persist.  "
+"Also, existing local configurations are ignored if this setting is true."
+msgstr ""
+
+# id::ppl.description__423
+#: 950.data.seed-values.sql:1354
+msgid "ADMIN_SERIAL_SUBSCRIPTION"
+msgstr ""
+
+# id::ppl.description__351
+#: 950.data.seed-values.sql:1212
+msgid ""
+"Allows staff to import a record using an alternate TCN to avoid conflicts"
+msgstr ""
+
+# id::ccvm.value__227
+#: 950.data.seed-values.sql:6221
+msgid "Kimbundu"
+msgstr ""
+
+# id::ppl.description__236
+#: 950.data.seed-values.sql:982
+msgid "DELETE_LANGUAGE"
+msgstr ""
+
+# id::ccvm.value__466
+#: 950.data.seed-values.sql:6460
+msgid "Wakashan languages"
+msgstr ""
+
+# id::ccvm.value__419 id::ccvm.value__427
+#: 950.data.seed-values.sql:6413 950.data.seed-values.sql:6421
+msgid "Tajik"
+msgstr ""
+
+# id::ppl.description__243
+#: 950.data.seed-values.sql:996
+msgid "DELETE_ORG_TYPE"
+msgstr ""
+
+# id::coust.label__sms.disable_authentication_requirement.callnumbers
+#: 950.data.seed-values.sql:4827
+msgid "Disable auth requirement for texting call numbers."
+msgstr ""
+
+# id::ccvm.value__76
+#: 950.data.seed-values.sql:6070
+msgid "Chagatai"
+msgstr ""
+
+# id::ppl.description__425
+#: 950.data.seed-values.sql:1358
+msgid "ADMIN_SURVEY"
+msgstr ""
+
+# id::ppl.description__377
+#: 950.data.seed-values.sql:1262
+msgid "Enables the user to create/update/delete booking resource types"
+msgstr ""
+
+# id::coust.label__credit.processor.payflowpro.vendor
+#: 950.data.seed-values.sql:3762
+msgid "PayflowPro vendor"
+msgstr ""
+
+# id::coust.label__auth.staff_timeout
+# id::coust.description__auth.staff_timeout
+#: 950.data.seed-values.sql:2687 950.data.seed-values.sql:2690
+msgid "Staff Login Inactivity Timeout (in seconds)"
+msgstr ""
+
+# id::ccvm.value__468
+#: 950.data.seed-values.sql:6462
+msgid "Waray"
+msgstr ""
+
+# id::coust.description__acq.upload.default.vandelay.match_set
+#: 950.data.seed-values.sql:12560
+msgid "Default match set to use during ACQ file upload"
+msgstr ""
+
+# id::ccvm.value__316
+#: 950.data.seed-values.sql:6310
+msgid "Old Norse"
+msgstr ""
+
+# id::acsaf.name__49
+#: 950.data.seed-values.sql:10510
+msgid "Subdivision Linking Entry -- Geographic Subdivision"
+msgstr ""
+
+# id::coust.description__ui.circ.in_house_use.entry_warn
+#: 950.data.seed-values.sql:4077
+msgid ""
+"In the Record In-House Use interface, a submission attempt will warn if the "
+"# of uses field exceeds the value of this setting."
+msgstr ""
+
+# id::ppl.description__96
+#: 950.data.seed-values.sql:702
+msgid "Allow a user to execute an offline script batch"
+msgstr ""
+
+# id::coust.description__acq.upload.default.vandelay.load_item_for_imported
+#: 950.data.seed-values.sql:12696
+msgid "Load items for imported records by default during ACQ file upload"
+msgstr ""
+
+# id::coust.label__cat.volume.delete_on_empty
+#: 950.data.seed-values.sql:2831
+msgid "Delete volume with last copy"
+msgstr ""
+
+# id::ccvm.description__522
+#: 950.data.seed-values.sql:6522
+msgid "The literary form of the item is unknown."
+msgstr ""
+
+# id::ccvm.value__awa
+#: 950.data.seed-values.sql:6027
+msgid "Awadhi"
+msgstr ""
+
+# id::ccvm.value__94
+#: 950.data.seed-values.sql:6088
+msgid "Cree"
+msgstr ""
+
+# id::coust.label__opac.fully_compressed_serial_holdings
+#: 950.data.seed-values.sql:3919
+msgid "Use fully compressed serial holdings"
+msgstr ""
+
+# id::csc.region__21
+#: 950.data.seed-values.sql:11077
+msgid "Cincinnati, Ohio, USA"
+msgstr ""
+
+# id::ppl.description__127
+#: 950.data.seed-values.sql:764
+msgid "Allow a user to add/remove users to/from the \"LibraryManager\" group"
+msgstr ""
+
+# id::ppl.description__204
+#: 950.data.seed-values.sql:918
+msgid "ASSIGN_GROUP_PERM"
+msgstr ""
+
+# id::ppl.description__304
+#: 950.data.seed-values.sql:1118
+msgid "UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF"
+msgstr ""
+
+# id::aurt.label__1
+#: 950.data.seed-values.sql:2583
+msgid "Books"
+msgstr ""
+
+# id::ccvm.value__429
+#: 950.data.seed-values.sql:6423
+msgid "Thai"
+msgstr ""
+
+# id::ccvm.value__303
+#: 950.data.seed-values.sql:6297
+msgid "Navajo"
+msgstr ""
+
+# id::ppl.description__60
+#: 950.data.seed-values.sql:630
+msgid "User may link a copy to an entry in a statistical category"
+msgstr ""
+
+# id::coust.description__circ.selfcheck.require_patron_password
+#: 950.data.seed-values.sql:3495
+msgid ""
+"If true, patrons will be required to enter their password in addition to "
+"their username/barcode to log into the selfcheck interface"
+msgstr ""
+
+# id::ccvm.value__482
+#: 950.data.seed-values.sql:6476
+msgid "Zenaga"
+msgstr ""
+
+# id::coust.description__circ.selfcheck.block_checkout_on_copy_status
+#: 950.data.seed-values.sql:3468
+msgid ""
+"List of copy status IDs that will block checkout even if the generic "
+"COPY_NOT_AVAILABLE event is overridden"
+msgstr ""
+
+# id::ccs.name__7
+#: 950.data.seed-values.sql:309
+msgid "Reshelving"
+msgstr ""
+
+# id::ccvm.value__64
+#: 950.data.seed-values.sql:6058
+msgid "Burmese"
+msgstr ""
+
+# id::ppl.description__154
+#: 950.data.seed-values.sql:818
+msgid "Allow a user to update a fund"
+msgstr ""
+
+# id::cmc.label__identifier id::vqarad.description__1
+#: 950.data.seed-values.sql:97 950.data.seed-values.sql:5027
+msgid "Identifier"
+msgstr ""
+
+# id::ccs.name__1
+#: 950.data.seed-values.sql:303
+msgid "Checked out"
+msgstr ""
+
+# id::ccvm.value__529
+#: 950.data.seed-values.sql:6532
+msgid "Electronic"
+msgstr ""
+
+# id::ccvm.value__489
+#: 950.data.seed-values.sql:6485
+msgid "Primary"
+msgstr ""
+
+# id::ccvm.value__282
+#: 950.data.seed-values.sql:6276
+msgid "Miscellaneous languages"
+msgstr ""
+
+# id::ccvm.value__260
+#: 950.data.seed-values.sql:6254
+msgid "Lunda"
+msgstr ""
+
+# id::cgf.label__history.hold.retention_age_fulfilled
+#: 950.data.seed-values.sql:9181
+msgid "Historical Hold Retention Age - Fulfilled"
+msgstr ""
+
+# id::ccvm.value__503
+#: 950.data.seed-values.sql:6501
+msgid "Cartographic material"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.evening_phone.require
+#: 950.data.seed-values.sql:4425
+msgid "Require evening_phone field on patron registration"
+msgstr ""
+
+# id::ppl.description__366
+#: 950.data.seed-values.sql:1242
+msgid "Allow a user to create trigger reactors"
+msgstr ""
+
+# id::ccvm.value__144 id::ccvm.value__154
+#: 950.data.seed-values.sql:6138 950.data.seed-values.sql:6148
+msgid "Scottish Gaelic"
+msgstr ""
+
+# id::ccs.name__10
+#: 950.data.seed-values.sql:312
+msgid "ILL"
+msgstr ""
+
+# id::ccvm.value__103
+#: 950.data.seed-values.sql:6097
+msgid "Delaware"
+msgstr ""
+
+# id::ppl.description__428
+#: 950.data.seed-values.sql:1364
+msgid "ADMIN_USER_SETTING_TYPE"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.email.require
+#: 950.data.seed-values.sql:4380
+msgid "Require email field on patron registration"
+msgstr ""
+
+# id::ccvm.value__85
+#: 950.data.seed-values.sql:6079
+msgid "Chuvash"
+msgstr ""
+
+# id::ppl.description__335
+#: 950.data.seed-values.sql:1180
+msgid "UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max"
+msgstr ""
+
+# id::aout.opac_label__3
+#: 950.data.seed-values.sql:445
+msgid "This Branch"
+msgstr ""
+
+# id::coust.label__vandelay.default_match_set
+# id::coust.description__vandelay.default_match_set
+#: 950.data.seed-values.sql:4855 950.data.seed-values.sql:4861
+msgid "Default Record Match Set"
+msgstr ""
+
+# id::ath.description__aur.cancelled
+#: 950.data.seed-values.sql:6996
+msgid "A patron acquisition request has been marked Cancelled."
+msgstr ""
+
+# id::ppl.description__293
+#: 950.data.seed-values.sql:1096
+msgid "DELETE_AUTHORITY_IMPORT_QUEUE"
+msgstr ""
+
+# id::coust.label__circ.patron.usr_activity_retrieve.max
+#: 950.data.seed-values.sql:12060
+msgid "Max user activity entries to retrieve (staff client)"
+msgstr ""
+
+# id::coust.label__circ.patron_edit.duplicate_patron_check_depth
+#: 950.data.seed-values.sql:4884
+msgid ""
+"Specify search depth for the duplicate patron check in the patron editor"
+msgstr ""
+
+# id::ppl.description__207
+#: 950.data.seed-values.sql:924
+msgid "CREATE_CIRC_DURATION"
+msgstr ""
+
+# id::csc.name__2
+#: 950.data.seed-values.sql:10754
+msgid "Rogers Wireless"
+msgstr ""
+
+# id::coust.description__circ.holds.clear_shelf.copy_status
+#: 950.data.seed-values.sql:3099
+msgid ""
+"Any copies that have not been put into reshelving, in-transit, or on-holds-"
+"shelf (for a new hold) during the clear shelf process will be put into this "
+"status.  This is basically a purgatory status for copies waiting to be "
+"pulled from the shelf and processed by hand"
+msgstr ""
+
+# id::ppl.description__141
+#: 950.data.seed-values.sql:792
+msgid "Allow a user to run reports"
+msgstr ""
+
+# id::vqbrad.description__2
+#: 950.data.seed-values.sql:4963
+msgid "Author of work"
+msgstr ""
+
+# id::ppl.description__171
+#: 950.data.seed-values.sql:852
+msgid "Allow a user to view another users picklist"
+msgstr ""
+
+# id::ppl.description__75
+#: 950.data.seed-values.sql:660
+msgid "Allow a user to close out a transit on a copy"
+msgstr ""
+
+# id::ppl.description__178
+#: 950.data.seed-values.sql:866
+msgid "Allow a user to mark an item status as 'bindery'"
+msgstr ""
+
+# id::ppl.description__206
+#: 950.data.seed-values.sql:922
+msgid "CREATE_BIB_LEVEL"
+msgstr ""
+
+# id::ath.description__vandelay.import_items.email
+#: 950.data.seed-values.sql:9909
+msgid ""
+"An email has been requested for Import Items from records in an Importer Bib"
+" Queue."
+msgstr ""
+
+# id::i18n_l.description__es-MX
+#: 950.data.seed-values.sql:357
+msgid "Mexican Spanish"
+msgstr ""
+
+# id::ccvm.value__90
+#: 950.data.seed-values.sql:6084
+msgid "Corsican"
+msgstr ""
+
+# id::coust.description__circ.grace.extend.all
+#: 950.data.seed-values.sql:2982
+msgid ""
+"If enabled and Grace Periods auto-extending is turned on grace periods will "
+"extend past all closed dates they intersect, within hard-coded limits. This "
+"basically becomes \"grace periods can only be consumed by closed dates\"."
+msgstr ""
+
+# id::ppl.description__358
+#: 950.data.seed-values.sql:1226
+msgid "Allow a user to delete trigger event definitions"
+msgstr ""
+
+# id::ccvm.value__399
+#: 950.data.seed-values.sql:6393
+msgid "Somali"
+msgstr ""
+
+# id::coust.label__circ.checkout_fills_related_hold
+#: 950.data.seed-values.sql:2894
+msgid "Checkout Fills Related Hold"
+msgstr ""
+
+# id::cgf.label__history.circ.retention_age_is_min
+#: 950.data.seed-values.sql:9273
+msgid ""
+"Historical Circulations are kept for global retention age at a minimum, "
+"regardless of user preferences."
+msgstr ""
+
+# id::ppl.description__92
+#: 950.data.seed-values.sql:694
+msgid "Allow a user to create new hold notifications"
+msgstr ""
+
+# id::coust.label__circ.hold_boundary.soft
+#: 950.data.seed-values.sql:3006
+msgid "Soft boundary"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.active.suggest
+#: 950.data.seed-values.sql:4176
+msgid ""
+"The active field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
+msgstr ""
+
+# id::ccvm.value__346
+#: 950.data.seed-values.sql:6340
+msgid "Ponape"
+msgstr ""
+
+# id::ppl.description__34
+#: 950.data.seed-values.sql:578
+msgid "Allow a user to mark an item as 'lost'"
+msgstr ""
+
+# id::pgt.name__8
+#: 950.data.seed-values.sql:1631
+msgid "Cataloging Administrator"
+msgstr ""
+
+# id::ppl.description__98
+#: 950.data.seed-values.sql:706
+msgid "Allow a user to bypass the circulation permit call for check out"
+msgstr ""
+
+# id::ccvm.value__55
+#: 950.data.seed-values.sql:6049
+msgid "Siksika"
+msgstr ""
+
+# id::coust.description__print.custom_js_file
+#: 950.data.seed-values.sql:4012
+msgid ""
+"Full URL path to a Javascript File to be loaded when printing. Should "
+"implement a print_custom function for DOM manipulation. Can change the value"
+" of the do_print variable to false to cancel printing."
+msgstr ""
+
+# id::coust.description__credit.processor.payflowpro.enabled
+#: 950.data.seed-values.sql:3720
+msgid "This is NOT the same thing as the settings labeled with just \"PayPal.\""
+msgstr ""
+
+# id::coust.description__circ.claim_return.copy_status
+#: 950.data.seed-values.sql:2924
+msgid ""
+"Claims returned copies are put into this status.  Default is to leave the "
+"copy in the Checked Out status"
+msgstr ""
+
+# id::crmf.name__7
+#: 950.data.seed-values.sql:285
+msgid "overdue_equip_max"
+msgstr ""
+
+# id::csp.label__31
+#: 950.data.seed-values.sql:48
+msgid "Patron had an invalid email address"
+msgstr ""
+
+# id::coust.label__circ.holds.target_when_closed_if_at_pickup_lib
+#: 950.data.seed-values.sql:4773
+msgid ""
+"Target copies for a hold even if copy's circ lib is closed IF the circ lib "
+"is the hold's pickup lib"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.active.show
+#: 950.data.seed-values.sql:4164
+msgid "Show active field on patron registration"
+msgstr ""
+
+# id::ppl.description__159
+#: 950.data.seed-values.sql:828
+msgid "Lowest level permission required to access the ACQ interface"
+msgstr ""
+
+# id::ppl.description__446
+#: 950.data.seed-values.sql:1400
+msgid "DELETE_BILLING_TYPE"
+msgstr ""
+
+# id::aurt.label__5
+#: 950.data.seed-values.sql:2587
+msgid "DVDs"
+msgstr ""
+
+# id::cmf.label__22
+#: 950.data.seed-values.sql:162
+msgid "EAN"
+msgstr ""
+
+# id::vqbrad.description__1
+#: 950.data.seed-values.sql:4962
+msgid "Title of work"
+msgstr ""
+
+# id::ppl.description__81
+#: 950.data.seed-values.sql:672
+msgid "Allow a user to view all notes attached to a volume"
+msgstr ""
+
+# id::csc.name__45
+#: 950.data.seed-values.sql:11491
+msgid "Cleartalk Wireless"
+msgstr ""
+
+# id::csc.name__19
+#: 950.data.seed-values.sql:11049
+msgid "General Communications, Inc."
+msgstr ""
+
+# id::acsaf.name__67
+#: 950.data.seed-values.sql:10521
+msgid "See From Tracing -- Genre/Form Term"
+msgstr ""
+
+# id::coust.label__acq.upload.default.activate_po
+#: 950.data.seed-values.sql:12520
+msgid "Upload Activate PO"
+msgstr ""
+
+# id::vie.description__general.unknown
+#: 950.data.seed-values.sql:9751
+msgid "Import or Overlay failed"
+msgstr ""
+
+# id::ppl.description__321
+#: 950.data.seed-values.sql:1152
+msgid "UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee"
+msgstr ""
+
+# id::coust.description__ui.general.hotkeyset
+#: 950.data.seed-values.sql:4122
+msgid ""
+"Default Hotkeyset for clients (filename without the .keyset).  Examples: "
+"Default, Minimal, and None"
+msgstr ""
+
+# id::ath.description__vandelay.queued_auth_record.csv
+#: 950.data.seed-values.sql:9865
+msgid ""
+"CSV output has been requested for records in an Importer Authority Queue."
+msgstr ""
+
+# id::ccvm.value__391
+#: 950.data.seed-values.sql:6385
+msgid "Inari Sami"
+msgstr ""
+
+# id::i18n_l.name__fr-CA
+#: 950.data.seed-values.sql:347
+msgid "French (Canada)"
+msgstr ""
+
+# id::cmf.label__31
+#: 950.data.seed-values.sql:180
+msgid "Title Proper (Browse)"
+msgstr ""
+
+# id::coust.description__circ.max_accept_return_of_lost
+#: 950.data.seed-values.sql:3279
+msgid ""
+"Items that have been lost this long will not result in voided billings when "
+"returned.  E.g. '6 months'"
+msgstr ""
+
+# id::vqbrad.description__15
+#: 950.data.seed-values.sql:4976
+msgid "Item Barcode"
+msgstr ""
+
+# id::ppl.description__253
+#: 950.data.seed-values.sql:1016
+msgid "TRANSIT_COPY"
+msgstr ""
+
+# id::ppl.description__102
+#: 950.data.seed-values.sql:714
+msgid "Allow a user to check out an item in a non-circulatable status"
+msgstr ""
+
+# id::ppl.description__239
+#: 950.data.seed-values.sql:988
+msgid "DELETE_LIT_FORM"
+msgstr ""
+
+# id::ppl.description__384
+#: 950.data.seed-values.sql:1276
+msgid "Allows a user to capture booking reservations"
+msgstr ""
+
+# id::coust.label__circ.hold_go_home_interval
+#: 950.data.seed-values.sql:12765
+msgid "Max foreign-circulation time"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.other_phone.show
+#: 950.data.seed-values.sql:4554
+msgid ""
+"The other_phone field will be shown on the patron registration screen. "
+"Showing a field makes it appear with required fields even when not required."
+" If the field is required this setting is ignored."
+msgstr ""
+
+# id::ppl.description__525
+#: 950.data.seed-values.sql:1558
+msgid "User may set a default entry in a patron statistical category"
+msgstr ""
+
+# id::coust.label__acq.upload.default.vandelay.low_quality_fall_thru_profile
+#: 950.data.seed-values.sql:12673
+msgid "Upload Default Insufficient Quality Fall-Thru Profile"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.day_phone.example
+#: 950.data.seed-values.sql:4284
+msgid ""
+"The Example for validation on the day_phone field in patron registration."
+msgstr ""
+
+# id::csc.name__37
+#: 950.data.seed-values.sql:11355
+msgid "Ameritech"
+msgstr ""
+
+# id::ppl.description__331
+#: 950.data.seed-values.sql:1172
+msgid "UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard"
+msgstr ""
+
+# id::coust.description__circ.longoverdue.xact_open_on_zero
+#: 950.data.seed-values.sql:13076
+msgid ""
+"Leave transaction open when long-overdue balance equals zero.  This leaves "
+"the lost copy on the patron record when it is paid"
+msgstr ""
+
+# id::coust.label__acq.tmp_callnumber_prefix
+# id::coust.description__acq.tmp_callnumber_prefix
+#: 950.data.seed-values.sql:2660 950.data.seed-values.sql:2663
+msgid "Temporary call number prefix"
+msgstr ""
+
+# id::coust.label__url.remote_column_settings
+#: 950.data.seed-values.sql:4749
+msgid "URL for remote directory containing list column settings."
+msgstr ""
+
+# id::pgt.name__9
+#: 950.data.seed-values.sql:1633
+msgid "Circulation Administrator"
+msgstr ""
+
+# id::ccvm.value__157 id::ccvm.value__275
+#: 950.data.seed-values.sql:6151 950.data.seed-values.sql:6269
+msgid "Manx"
+msgstr ""
+
+# id::acsaf.name__50
+#: 950.data.seed-values.sql:10511
+msgid "Subdivision Linking Entry -- Chronological Subdivision"
+msgstr ""
+
+# id::ccvm.value__113
+#: 950.data.seed-values.sql:6107
+msgid "Dyula"
+msgstr ""
+
+# id::ppl.description__546
+#: 950.data.seed-values.sql:1600
+msgid "Allows a user to make changes to best-hold selection sort order"
+msgstr ""
+
+# id::ahrcc.label__3
+#: 950.data.seed-values.sql:2472
+msgid "Patron via phone"
+msgstr ""
+
+# id::ccvm.value__390
+#: 950.data.seed-values.sql:6384
+msgid "Lule Sami"
+msgstr ""
+
+# id::coust.description__circ.claim_never_checked_out.mark_missing
+#: 950.data.seed-values.sql:2915
+msgid ""
+"When a circ is marked as claims-never-checked-out, mark the copy as missing"
+msgstr ""
+
+# id::ccvm.value__283
+#: 950.data.seed-values.sql:6277
+msgid "Mon-Khmer (Other)"
+msgstr ""
+
+# id::ccvm.value__526
+#: 950.data.seed-values.sql:6529
+msgid "Large print"
+msgstr ""
+
+# id::ppl.description__301
+#: 950.data.seed-values.sql:1112
+msgid "UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF"
+msgstr ""
+
+# id::ppl.description__383
+#: 950.data.seed-values.sql:1274
+msgid "Allows a user to retrieve a booking reservation pull list"
+msgstr ""
+
+# id::ppl.description__487
+#: 950.data.seed-values.sql:1482
+msgid "Delete suffix label definition."
+msgstr ""
+
+# id::acsaf.name__27
+#: 950.data.seed-values.sql:10495
+msgid "See Also From Tracing -- Genre/Form Term"
+msgstr ""
+
+# id::ccvm.value__475
+#: 950.data.seed-values.sql:6469
+msgid "Xhosa"
+msgstr ""
+
+# id::ccvm.value__377
+#: 950.data.seed-values.sql:6371
+msgid "Sign languages"
+msgstr ""
+
+# id::ccvm.value__79
+#: 950.data.seed-values.sql:6073
+msgid "Mari"
+msgstr ""
+
+# id::coust.label__circ.lost.generate_overdue_on_checkin
+#: 950.data.seed-values.sql:3249
+msgid "Lost Checkin Generates New Overdues"
+msgstr ""
+
+# id::ccvm.value__alg
+#: 950.data.seed-values.sql:6009
+msgid "Algonquian (Other)"
+msgstr ""
+
+# id::ccvm.value__129 id::ccvm.value__130
+#: 950.data.seed-values.sql:6123 950.data.seed-values.sql:6124
+msgid "Faroese"
+msgstr ""
+
+# id::csc.region__14 id::csc.region__15 id::csc.region__16 id::csc.region__17
+#: 950.data.seed-values.sql:10956 950.data.seed-values.sql:10973
+#: 950.data.seed-values.sql:10990 950.data.seed-values.sql:11007
+msgid "International"
+msgstr ""
+
+# id::coust.label__circ.damaged.void_ovedue
+#: 950.data.seed-values.sql:2930
+msgid "Mark item damaged voids overdues"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.prefix.require
+#: 950.data.seed-values.sql:4569
+msgid "Require prefix field on patron registration"
+msgstr ""
+
+# id::ppl.description__391
+#: 950.data.seed-values.sql:1290
+msgid "ADMIN_ACQ_CLAIM"
+msgstr ""
+
+# id::ccvm.value__100
+#: 950.data.seed-values.sql:6094
+msgid "Danish"
+msgstr ""
+
+# id::ppl.description__247
+#: 950.data.seed-values.sql:1004
+msgid "DELETE_RELEVANCE_ADJUSTMENT"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.alert_message.show
+#: 950.data.seed-values.sql:4182
+msgid "Show alert_message field on patron registration"
+msgstr ""
+
+# id::i18n_l.description__es-US
+#: 950.data.seed-values.sql:354
+msgid "American Spanish"
+msgstr ""
+
+# id::ccvm.value__97
+#: 950.data.seed-values.sql:6091
+msgid "Cushitic (Other)"
+msgstr ""
+
+# id::csc.name__48
+#: 950.data.seed-values.sql:11542
+msgid "T-Mobile"
+msgstr ""
+
+# id::ppl.description__399
+#: 950.data.seed-values.sql:1306
+msgid "ADMIN_AGE_PROTECT_RULE"
+msgstr ""
+
+# id::ppl.description__184
+#: 950.data.seed-values.sql:878
+msgid "Allow a user to mark an item status as 'on holds shelf'"
+msgstr ""
+
+# id::cubt.label__folks%3Apub_book_bags.add
+#: 950.data.seed-values.sql:5045
+msgid "Add to Published Book Bags"
+msgstr ""
+
+# id::coust.description__circ.holds.behind_desk_pickup_supported
+#: 950.data.seed-values.sql:3072
+msgid ""
+"If a branch supports both a public holds shelf and behind-the-desk pickups, "
+"set this value to true.  This gives the patron the option to enable behind-"
+"the-desk pickups for their holds"
+msgstr ""
+
+# id::ppl.description__503
+#: 950.data.seed-values.sql:1514
+msgid ""
+"Allows editing of a hold's request time, and/or its Cut-in-line/Top-of-queue"
+" flag."
+msgstr ""
+
+# id::coust.description__opac.patron.jump_to_details_on_single_hit
+#: 950.data.seed-values.sql:4794
+msgid ""
+"When a search yields only 1 result, jump directly to the record details "
+"page.  This setting only affects the public OPAC"
+msgstr ""
+
+# id::ppl.description__340
+#: 950.data.seed-values.sql:1190
+msgid "UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold"
+msgstr ""
+
+# id::aiit.name__HND
+#: 950.data.seed-values.sql:9075
+msgid "Handling Charge"
+msgstr ""
+
+# id::cgf.label__opac.use_autosuggest
+#: 950.data.seed-values.sql:9252
+msgid ""
+"OPAC: Show auto-completing suggestions dialog under basic search box (put "
+"'opac_visible' into the value field to limit suggestions to OPAC-visible "
+"items, or blank the field for a possible performance improvement)"
+msgstr ""
+
+# id::ath.description__circ.format.history.csv
+#: 950.data.seed-values.sql:12081
+msgid "Produce CSV of circulation history"
+msgstr ""
+
+# id::ppl.description__380
+#: 950.data.seed-values.sql:1268
+msgid ""
+"Enables the user to create/update/delete booking resource attribute values"
+msgstr ""
+
+# id::ppl.description__220
+#: 950.data.seed-values.sql:950
+msgid "CREATE_ORG_TYPE"
+msgstr ""
+
+# id::coust.description__org.patron_opt_default
+#: 950.data.seed-values.sql:3994
+msgid ""
+"This is the default depth at which a patron is opted in; it is calculated as"
+" an org unit relative to the current workstation."
+msgstr ""
+
+# id::ccvm.description__511
+#: 950.data.seed-values.sql:6511
+msgid ""
+"The item is a work of fiction and no further identification of the literary "
+"form is desired"
+msgstr ""
+
+# id::cuat.label__14
+#: 950.data.seed-values.sql:12016
+msgid "Verification via remoteauth"
+msgstr ""
+
+# id::ppl.description__122
+#: 950.data.seed-values.sql:754
+msgid "Allow a user to add/remove users to/from the \"Staff\" group"
+msgstr ""
+
+# id::ppl.description__367
+#: 950.data.seed-values.sql:1244
+msgid "Allow a user to delete trigger reactors"
+msgstr ""
+
+# id::coust.label__circ.holds.age_protect.active_date
+#: 950.data.seed-values.sql:3060
+msgid "Use Active Date for Age Protection"
+msgstr ""
+
+# id::ppl.description__211
+#: 950.data.seed-values.sql:932
+msgid "CREATE_ITEM_FORM"
+msgstr ""
+
+# id::coust.label__circ.user_merge.deactivate_cards
+#: 950.data.seed-values.sql:3600
+msgid "Patron Merge Deactivate Card"
+msgstr ""
+
+# id::ccvm.value__61
+#: 950.data.seed-values.sql:6055
+msgid "Buriat"
+msgstr ""
+
+# id::coust.label__circ.damaged_item_processing_fee
+# id::coust.description__circ.damaged_item_processing_fee
+#: 950.data.seed-values.sql:2939 950.data.seed-values.sql:2942
+msgid "Charge processing fee for damaged items"
+msgstr ""
+
+# id::ccvm.description__491
+#: 950.data.seed-values.sql:6487
+msgid "The item is intended for young people, approximate ages 14-17 years."
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.email.regex
+#: 950.data.seed-values.sql:4374
+msgid ""
+"The Regular Expression for validation on the email field in patron "
+"registration."
+msgstr ""
+
+# id::ppl.description__402
+#: 950.data.seed-values.sql:1312
+msgid "ADMIN_CIRC_MATRIX_MATCHPOINT"
+msgstr ""
+
+# id::csc.region__2 id::csc.region__3 id::csc.region__4
+#: 950.data.seed-values.sql:10748 950.data.seed-values.sql:10765
+#: 950.data.seed-values.sql:10782
+msgid "Canada & USA"
+msgstr ""
+
+# id::coust.description__circ.selfcheck.alert.popup
+#: 950.data.seed-values.sql:3441
+msgid ""
+"If true, checkout/renewal errors will cause a pop-up window in addition to "
+"the on-screen message"
+msgstr ""
+
+# id::vqbrad.description__14
+#: 950.data.seed-values.sql:4975
+msgid "Edition"
+msgstr ""
+
+# id::ppl.description__443
+#: 950.data.seed-values.sql:1394
+msgid "DELETE_BIB_BTYPE"
+msgstr ""
+
+# id::ppl.description__67
+#: 950.data.seed-values.sql:644
+msgid "Allow a user to create a new non-cataloged item type"
+msgstr ""
+
+# id::ppl.description__363
+#: 950.data.seed-values.sql:1236
+msgid "Allow a user to delete trigger hooks"
+msgstr ""
+
+# id::ppl.description__516
+#: 950.data.seed-values.sql:1540
+msgid "Allows a user to create report templates"
+msgstr ""
+
+# id::coust.label__vandelay.item.barcode.auto
+#: 950.data.seed-values.sql:13254
+msgid "Auto-generate deault item barcodes when no item barcode is present"
+msgstr ""
+
+# id::ccvm.value__537
+#: 950.data.seed-values.sql:6544
+msgid "Beta"
+msgstr ""
+
+# id::ccvm.value__532
+#: 950.data.seed-values.sql:6537
+msgid "Collection"
+msgstr ""
+
+# id::coust.label__acq.upload.default.vandelay.merge_on_best
+#: 950.data.seed-values.sql:12622
+msgid "Upload Merge on Best Match by Default"
+msgstr ""
+
+# id::acsaf.name__7
+#: 950.data.seed-values.sql:10477
+msgid "Heading -- Genre/Form Term"
+msgstr ""
+
+# id::ccvm.value__359
+#: 950.data.seed-values.sql:6353
+msgid "Rundi"
+msgstr ""
+
+# id::cmf.label__25
+#: 950.data.seed-values.sql:168
+msgid "Local Free-Text Call Number"
+msgstr ""
+
+# id::coust.description__cat.z3950.batch.max_results
+#: 950.data.seed-values.sql:12947
+msgid ""
+"The maximum number of search results to retrieve and queue for each record +"
+" Z39 source during batch Z39.50 searches"
+msgstr ""
+
+# id::ppl.description__275
+#: 950.data.seed-values.sql:1060
+msgid "UPDATE_SURVEY"
+msgstr ""
+
+# id::coust.label__circ.hold_expire_alert_interval
+#: 950.data.seed-values.sql:3015
+msgid "Expire Alert Interval"
+msgstr ""
+
+# id::ppl.description__362
+#: 950.data.seed-values.sql:1234
+msgid "Allow a user to create trigger hooks"
+msgstr ""
+
+# id::ppl.description__139
+#: 950.data.seed-values.sql:788
+msgid "Allow staff to force checkout of Missing/Lost type items"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.aua.state.suggest
+#: 950.data.seed-values.sql:4662
+msgid ""
+"The State field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
+msgstr ""
+
+# id::ccvm.value__453
+#: 950.data.seed-values.sql:6447
+msgid "Udmurt"
+msgstr ""
+
+# id::ccvm.value__329
+#: 950.data.seed-values.sql:6323
+msgid "Osage"
+msgstr ""
+
+# id::czifm.label__6
+#: 950.data.seed-values.sql:12909
+msgid "Pubdate"
+msgstr ""
+
+# id::crcd.name__11 id::crmf.name__1 id::crrf.name__1
+#: 950.data.seed-values.sql:269 950.data.seed-values.sql:273
+#: 950.data.seed-values.sql:289
+msgid "default"
+msgstr ""
+
+# id::coust.description__acq.upload.default.vandelay.quality_ratio
+#: 950.data.seed-values.sql:12662
+msgid "Default minimum quality ratio used during ACQ file upload"
+msgstr ""
+
+# id::csc.name__36
+#: 950.data.seed-values.sql:11338
+msgid "Alaska Communications"
+msgstr ""
+
+# id::ppl.description__334
+#: 950.data.seed-values.sql:1178
+msgid "UPDATE_ORG_UNIT_SETTING.global.password_regex"
+msgstr ""
+
+# id::ccvm.value__46
+#: 950.data.seed-values.sql:6040
+msgid "Belarusian"
+msgstr ""
+
+# id::czs.label__loc
+#: 950.data.seed-values.sql:365
+msgid "Library of Congress"
+msgstr ""
+
+# id::ppl.description__472
+#: 950.data.seed-values.sql:1452
+msgid "VIEW_ACQ_FUND_ALLOCATION_PERCENT"
+msgstr ""
+
+# id::ccvm.description__488
+#: 950.data.seed-values.sql:6484
+msgid "The item is intended for children, approximate ages 0-5 years."
+msgstr ""
+
+# id::coust.label__ui.patron.default_country
+#: 950.data.seed-values.sql:4137
+msgid "Default Country for New Addresses in Patron Editor"
+msgstr ""
+
+# id::ppl.description__23
+#: 950.data.seed-values.sql:556
+msgid "Allow a user to delete a copy"
+msgstr ""
+
+# id::coust.label__circ.hold_expire_interval
+#: 950.data.seed-values.sql:3024
+msgid "Expire Interval"
+msgstr ""
+
+# id::ccvm.value__-ajm
+#: 950.data.seed-values.sql:6004
+msgid "Aljamía"
+msgstr ""
+
+# id::ccvm.value__259
+#: 950.data.seed-values.sql:6253
+msgid "Luiseño"
+msgstr ""
+
+# id::ccvm.value__491
+#: 950.data.seed-values.sql:6487
+msgid "Adolescent"
+msgstr ""
+
+# id::coust.description__circ.selfcheck.auto_override_checkout_events
+#: 950.data.seed-values.sql:3459
+msgid ""
+"List of checkout/renewal events that the selfcheck interface should "
+"automatically override instead instead of alerting and stopping the "
+"transaction"
+msgstr ""
+
+# id::ccvm.value__aze
+#: 950.data.seed-values.sql:6029
+msgid "Azerbaijani"
+msgstr ""
+
+# id::ppl.description__288
+#: 950.data.seed-values.sql:1086
+msgid "CREATE_LOCALE"
+msgstr ""
+
+# id::ppl.description__89
+#: 950.data.seed-values.sql:688
+msgid "Allow a user to update another user's container"
+msgstr ""
+
+# id::ppl.description__422
+#: 950.data.seed-values.sql:1352
+msgid "ADMIN_RECURRING_FINE_RULE"
+msgstr ""
+
+# id::cbt.name__5
+#: 950.data.seed-values.sql:489
+msgid "System: Deposit"
+msgstr ""
+
+# id::ppl.description__527
+#: 950.data.seed-values.sql:1562
+msgid "User may unset a default entry in a patron statistical category"
+msgstr ""
+
+# id::at.name__c
+#: 950.data.seed-values.sql:10601
+msgid "Medical Subject Headings"
+msgstr ""
+
+# id::coust.label__circ.void_longoverdue_on_checkin
+# id::coust.description__circ.void_longoverdue_on_checkin
+#: 950.data.seed-values.sql:13025 950.data.seed-values.sql:13031
+msgid "Void Long-Overdue Item Billing When Returned"
+msgstr ""
+
+# id::ccvm.value__498
+#: 950.data.seed-values.sql:6496
+msgid "Projected medium"
+msgstr ""
+
+# id::ppl.description__440
+#: 950.data.seed-values.sql:1388
+msgid "CREATE_METABIB_CLASS"
+msgstr ""
+
+# id::ppl.description__175
+#: 950.data.seed-values.sql:860
+msgid "Allow a user to view billing types"
+msgstr ""
+
+# id::ccvm.value__245
+#: 950.data.seed-values.sql:6239
+msgid "Lao"
+msgstr ""
+
+# id::ppl.description__245
+#: 950.data.seed-values.sql:1000
+msgid "DELETE_ORG_UNIT_CLOSING"
+msgstr ""
+
+# id::coust.description__lib.courier_code
+#: 950.data.seed-values.sql:3873
+msgid ""
+"Courier Code for the library.  Available in transit slip templates as the "
+"%courier_code% macro."
+msgstr ""
+
+# id::ccvm.value__372
+#: 950.data.seed-values.sql:6366
+msgid "Scots"
+msgstr ""
+
+# id::ccvm.value__278
+#: 950.data.seed-values.sql:6272
+msgid "Mende"
+msgstr ""
+
+# id::coust.label__ui.circ.billing.uncheck_bills_and_unfocus_payment_box
+#: 950.data.seed-values.sql:4056
+msgid "Uncheck bills by default in the patron billing interface"
+msgstr ""
+
+# id::ppl.description__193
+#: 950.data.seed-values.sql:896
+msgid "Allows a user to create a new MFHD record"
+msgstr ""
+
+# id::coust.description__opac.patron.auto_overide_hold_events
+#: 950.data.seed-values.sql:12170
+msgid ""
+"When a patron places a hold that fails and the patron has the correct "
+"permission to override the hold, automatically override the hold without "
+"presenting a message to the patron and requiring that the patron make a "
+"decision to override"
+msgstr ""
+
+# id::ppl.description__297
+#: 950.data.seed-values.sql:1104
+msgid "DELETE_LOCALE"
+msgstr ""
+
+# id::ccvm.value__238
+#: 950.data.seed-values.sql:6232
+msgid "Kurdish"
+msgstr ""
+
+# id::ppl.description__94
+#: 950.data.seed-values.sql:698
+msgid "Allow a user to upload an offline script"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.phone.regex
+#: 950.data.seed-values.sql:4707
+msgid ""
+"The Regular Expression for validation on phone fields in patron "
+"registration. Applies to all phone fields without their own setting. NOTE: "
+"See description of the day_phone regex for important information about "
+"capture groups with it."
+msgstr ""
+
+# id::cgf.label__history.circ.retention_age
+# id::cust.label__history.circ.retention_age
+# id::cust.description__history.circ.retention_age
+#: 950.data.seed-values.sql:9166 950.data.seed-values.sql:9309
+#: 950.data.seed-values.sql:9310
+msgid "Historical Circulation Retention Age"
+msgstr ""
+
+# id::ccvm.value__279
+#: 950.data.seed-values.sql:6273
+msgid "Irish, Middle (ca. 1100-1550)"
+msgstr ""
+
+# id::csp.label__27
+#: 950.data.seed-values.sql:40
+msgid "Alerting block on Hold"
+msgstr ""
+
+# id::ppl.description__305
+#: 950.data.seed-values.sql:1120
+msgid "UPDATE_BIB_IMPORT_QUEUE"
+msgstr ""
+
+# id::coust.label__gui.disable_local_save_columns
+#: 950.data.seed-values.sql:3861
+msgid "Disable the ability to save list column configurations locally."
+msgstr ""
+
+# id::cmf.label__10
+#: 950.data.seed-values.sql:134
+msgid "Other Author"
+msgstr ""
+
+# id::csc.region__65
+#: 950.data.seed-values.sql:11827
+msgid "South Korea and USA"
+msgstr ""
+
+# id::ppl.description__365
+#: 950.data.seed-values.sql:1240
+msgid "Allow a user to create, update, and delete trigger reactors"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.aua.post_code.regex
+#: 950.data.seed-values.sql:4677
+msgid "Regex for post_code field on patron registration"
+msgstr ""
+
+# id::ppl.description__161
+#: 950.data.seed-values.sql:832
+msgid "Allow a user to delete a provider"
+msgstr ""
+
+# id::ppl.description__456
+#: 950.data.seed-values.sql:1420
+msgid "UPDATE_BIB_BTYPE"
+msgstr ""
+
+# id::coust.description__ui.general.idle_timeout
+#: 950.data.seed-values.sql:4131
+msgid ""
+"If you want staff client windows to be minimized after a certain amount of "
+"system idle time, set this to the number of seconds of idle time that you "
+"want to allow before minimizing (requires staff client restart)."
+msgstr ""
+
+# id::csc.region__5 id::csc.region__6 id::csc.region__7 id::csc.region__8
+# id::csc.region__9 id::csc.region__10 id::csc.region__11 id::csc.region__12
+# id::csc.region__13
+#: 950.data.seed-values.sql:10801 950.data.seed-values.sql:10818
+#: 950.data.seed-values.sql:10835 950.data.seed-values.sql:10852
+#: 950.data.seed-values.sql:10869 950.data.seed-values.sql:10886
+#: 950.data.seed-values.sql:10903 950.data.seed-values.sql:10920
+#: 950.data.seed-values.sql:10937
+msgid "Canada"
+msgstr ""
+
+# id::cmf.label__27 id::vqbrad.description__11
+#: 950.data.seed-values.sql:172 950.data.seed-values.sql:4972
+msgid "Internal ID"
+msgstr ""
+
+# id::ccvm.value__461
+#: 950.data.seed-values.sql:6455
+msgid "Vai"
+msgstr ""
+
+# id::ccvm.value__522 id::ccvm.value__553
+#: 950.data.seed-values.sql:6522 950.data.seed-values.sql:6560
+msgid "Unknown"
+msgstr ""
+
+# id::csc.region__20
+#: 950.data.seed-values.sql:11060
+msgid "California, USA"
+msgstr ""
+
+# id::ccs.name__15
+#: 950.data.seed-values.sql:317
+msgid "On reservation shelf"
+msgstr ""
+
+# id::cgf.label__opac.org_unit.non_inherited_visibility
+#: 950.data.seed-values.sql:12129
+msgid "Org Units Do Not Inherit Visibility"
+msgstr ""
+
+# id::ppl.description__52
+#: 950.data.seed-values.sql:614
+msgid "User may create a copy statistical category"
+msgstr ""
+
+# id::ccvm.value__531
+#: 950.data.seed-values.sql:6536
+msgid "Serial component part"
+msgstr ""
+
+# id::ccvm.value__312
+#: 950.data.seed-values.sql:6306
+msgid "Niuean"
+msgstr ""
+
+# id::ppl.description__379
+#: 950.data.seed-values.sql:1266
+msgid ""
+"Enables the user to create/update/delete booking resource attribute maps"
+msgstr ""
+
+# id::csc.name__44
+#: 950.data.seed-values.sql:11474
+msgid "Cricket"
+msgstr ""
+
+# id::crcd.name__1
+#: 950.data.seed-values.sql:249
+msgid "7_days_0_renew"
+msgstr ""
+
+# id::coust.label__circ.staff_client.actor_on_checkout
+#: 950.data.seed-values.sql:3510
+msgid "Load patron from Checkout"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.juvenile.suggest
+#: 950.data.seed-values.sql:4500
+msgid ""
+"The juvenile field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
+msgstr ""
+
+# id::ccvm.value__abk
+#: 950.data.seed-values.sql:5996
+msgid "Abkhaz"
+msgstr ""
+
+# id::cmf.label__21
+#: 950.data.seed-values.sql:160
+msgid "ISMN"
+msgstr ""
+
+# id::ppl.description__85
+#: 950.data.seed-values.sql:680
+msgid "Allow a user to create a new title note"
+msgstr ""
+
+# id::cubt.label__folks%3Acirc.view
+#: 950.data.seed-values.sql:5046
+msgid "View Circulations"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.master_account.show
+#: 950.data.seed-values.sql:4509
+msgid ""
+"The master_account field will be shown on the patron registration screen. "
+"Showing a field makes it appear with required fields even when not required."
+" If the field is required this setting is ignored."
+msgstr ""
+
+# id::ccvm.value__56
+#: 950.data.seed-values.sql:6050
+msgid "Bantu (Other)"
+msgstr ""
+
+# id::ppl.description__250
+#: 950.data.seed-values.sql:1010
+msgid "DELETE_VR_FORMAT"
+msgstr ""
+
+# id::coust.label__circ.password_reset_request_requires_matching_email
+# id::coust.description__circ.password_reset_request_requires_matching_email
+#: 950.data.seed-values.sql:3366 950.data.seed-values.sql:3369
+msgid "Require matching email address for password reset requests"
+msgstr ""
+
+# id::ccvm.value__72
+#: 950.data.seed-values.sql:6066
+msgid "Celtic (Other)"
+msgstr ""
+
+# id::ccvm.value__196
+#: 950.data.seed-values.sql:6190
+msgid "Indo-European (Other)"
+msgstr ""
+
+# id::cgf.label__history.circ.retention_uses_last_finished
+#: 950.data.seed-values.sql:9265
+msgid ""
+"Historical Circulations use most recent xact_finish date instead of last "
+"circ's."
+msgstr ""
+
+# id::ppl.description__262
+#: 950.data.seed-values.sql:1034
+msgid "UPDATE_ITEM_FORM"
+msgstr ""
+
+# id::ccvm.value__321
+#: 950.data.seed-values.sql:6315
+msgid "Nyamwezi"
+msgstr ""
+
+# id::ppl.description__240
+#: 950.data.seed-values.sql:990
+msgid "DELETE_METABIB_FIELD"
+msgstr ""
+
+# id::ppl.description__346
+#: 950.data.seed-values.sql:1202
+msgid ""
+"Allow a user to transfer different amounts of money out of one fund and into"
+" another"
+msgstr ""
+
+# id::ccvm.value__334
+#: 950.data.seed-values.sql:6328
+msgid "Pangasinan"
+msgstr ""
+
+# id::ppl.description__150
+#: 950.data.seed-values.sql:810
+msgid "Allow a user to update a funding source"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.evening_phone.require
+#: 950.data.seed-values.sql:4428
+msgid ""
+"The evening_phone field will be required on the patron registration screen."
+msgstr ""
+
+# id::ppl.description__77
+#: 950.data.seed-values.sql:664
+msgid "Allow a user to view which users have checked out a given copy"
+msgstr ""
+
+# id::ppl.description__524
+#: 950.data.seed-values.sql:1556
+msgid "Allows a user to place a hold that cannot currently be filled."
+msgstr ""
+
+# id::vie.description__import.record.perm_failure
+#: 950.data.seed-values.sql:9778
+msgid "Perm failure creating a record"
+msgstr ""
+
+# id::coust.description__circ.selfcheck.patron_password_required
+#: 950.data.seed-values.sql:3486
+msgid "Patron must log in with barcode and password at selfcheck station"
+msgstr ""
+
+# id::coust.description__circ.hold_capture_order
+#: 950.data.seed-values.sql:12749
+msgid ""
+"Defines the sort order of holds when selecting a hold to fill using a given "
+"copy at capture time"
+msgstr ""
+
+# id::coust.description__cat.spine.line.margin
+#: 950.data.seed-values.sql:2816
+msgid "Set the left margin for spine labels in number of characters."
+msgstr ""
+
+# id::coust.label__config.settings_group.gui
+#: 950.data.seed-values.sql:2561
+msgid "GUI"
+msgstr ""
+
+# id::ppl.description__517
+#: 950.data.seed-values.sql:1542
+msgid "Allow a user to place a force hold on a specific copy"
+msgstr ""
+
+# id::ccvm.value__228
+#: 950.data.seed-values.sql:6222
+msgid "Konkani"
+msgstr ""
+
+# id::ccvm.value__494
+#: 950.data.seed-values.sql:6490
+msgid "General"
+msgstr ""
+
+# id::coust.description__credit.processor.payflowpro.login
+#: 950.data.seed-values.sql:3729
+msgid "Often the same thing as the PayPal manager login"
+msgstr ""
+
+# id::ppl.description__327
+#: 950.data.seed-values.sql:1164
+msgid "UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval"
+msgstr ""
+
+# id::ppl.description__285
+#: 950.data.seed-values.sql:1080
+msgid "CREATE_AUTHORITY_RECORD_NOTE"
+msgstr ""
+
+# id::ccvm.value__542
+#: 950.data.seed-values.sql:6549
+msgid "Quadruplex"
+msgstr ""
+
+# id::ppl.description__82
+#: 950.data.seed-values.sql:674
+msgid "Allow a user to view all notes attached to a title"
+msgstr ""
+
+# id::ppl.description__404
+#: 950.data.seed-values.sql:1316
+msgid "ADMIN_CLAIM_POLICY"
+msgstr ""
+
+# id::ccvm.value__arc
+#: 950.data.seed-values.sql:6014
+msgid "Aramaic"
+msgstr ""
+
+# id::ppl.description__242
+#: 950.data.seed-values.sql:994
+msgid "DELETE_ORG_ADDRESS"
+msgstr ""
+
+# id::coust.label__acq.holds.allow_holds_from_purchase_request
+# id::coust.description__acq.holds.allow_holds_from_purchase_request
+#: 950.data.seed-values.sql:2642 950.data.seed-values.sql:2645
+msgid "Allows patrons to create automatic holds from purchase requests."
+msgstr ""
+
+# id::coust.description__circ.password_reset_request_throttle
+#: 950.data.seed-values.sql:3378
+msgid ""
+"Prevent the creation of new self-serve password reset requests until the "
+"number of active requests drops back below this number."
+msgstr ""
+
+# id::crcd.name__3
+#: 950.data.seed-values.sql:253
+msgid "3_months_0_renew"
+msgstr ""
+
+# id::acsaf.name__8
+#: 950.data.seed-values.sql:10479
+msgid "Heading -- General Subdivision"
+msgstr ""
+
+# id::ccvm.value__248
+#: 950.data.seed-values.sql:6242
+msgid "Latvian"
+msgstr ""
+
+# id::ppl.description__87
+#: 950.data.seed-values.sql:684
+msgid "Allow a user to delete another user's volume note"
+msgstr ""
+
+# id::ppl.description__309
+#: 950.data.seed-values.sql:1128
+msgid "VIEW_ACQ_FUNDING_SOURCE"
+msgstr ""
+
+# id::ppl.description__389
+#: 950.data.seed-values.sql:1286
+msgid "View org unit settings related to credit card processing"
+msgstr ""
+
+# id::ppl.description__408
+#: 950.data.seed-values.sql:1324
+msgid "ADMIN_GROUP_PENALTY_THRESHOLD"
+msgstr ""
+
+# id::ppl.description__252
+#: 950.data.seed-values.sql:1014
+msgid "REMOVE_GROUP_PERM"
+msgstr ""
+
+# id::coust.description__acq.upload.default.create_po
+#: 950.data.seed-values.sql:12509
+msgid "Create a purchase order by default during ACQ file upload"
+msgstr ""
+
+# id::coust.description__cat.label.font.weight
+#: 950.data.seed-values.sql:2789
+msgid ""
+"Set the preferred font weight for spine and pocket labels. You can specify "
+"\"normal\", \"bold\", \"bolder\", or \"lighter\"."
+msgstr ""
+
+# id::atclean.description__DeleteTempBiblioBucket
+#: 950.data.seed-values.sql:8911
+msgid "Deletes a cbreb object used as a target if it has a btype of \"temp\""
+msgstr ""
+
+# id::aurt.label__3
+#: 950.data.seed-values.sql:2585
+msgid "Audiobooks"
+msgstr ""
+
+# id::ccvm.value__477
+#: 950.data.seed-values.sql:6471
+msgid "Yapese"
+msgstr ""
+
+# id::ppl.description__493
+#: 950.data.seed-values.sql:1494
+msgid "Delete monograph part definition."
+msgstr ""
+
+# id::ppl.description__540
+#: 950.data.seed-values.sql:1588
+msgid ""
+"Allows a user to create, edit, and delete custom toolbars for org units"
+msgstr ""
+
+# id::ppl.description__406
+#: 950.data.seed-values.sql:1320
+msgid "ADMIN_FIELD_DOC"
+msgstr ""
+
+# id::ccvm.value__556
+#: 950.data.seed-values.sql:6563
+msgid "Unspecified"
+msgstr ""
+
+# id::coust.label__opac.browse.pager_shortcuts
+#: 950.data.seed-values.sql:4869
+msgid "Paging shortcut links for OPAC Browse"
+msgstr ""
+
+# id::ccvm.value__357
+#: 950.data.seed-values.sql:6351
+msgid "Romani"
+msgstr ""
+
+# id::ccvm.value__287
+#: 950.data.seed-values.sql:6281
+msgid "Manchu"
+msgstr ""
+
+# id::i18n_l.name__ru-RU id::i18n_l.description__ru-RU id::ccvm.value__360
+#: 950.data.seed-values.sql:359 950.data.seed-values.sql:360
+#: 950.data.seed-values.sql:6354
+msgid "Russian"
+msgstr ""
+
+# id::cuat.label__4
+#: 950.data.seed-values.sql:12005
+msgid "Login via translator-v1"
+msgstr ""
+
+# id::ccvm.value__181
+#: 950.data.seed-values.sql:6175
+msgid "Hiri Motu"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.email.show
+#: 950.data.seed-values.sql:4392
+msgid ""
+"The email field will be shown on the patron registration screen. Showing a "
+"field makes it appear with required fields even when not required. If the "
+"field is required this setting is ignored."
+msgstr ""
+
+# id::cnal.name__3
+#: 950.data.seed-values.sql:330
+msgid "No Access"
+msgstr ""
+
+# id::ppl.description__475
+#: 950.data.seed-values.sql:1458
+msgid "VIEW_GROUP_PENALTY_THRESHOLD"
+msgstr ""
+
+# id::ppl.description__14
+#: 950.data.seed-values.sql:538
+msgid ""
+"Allow a user to see another user's grocery or circulation transactions in "
+"the Bills Interface; duplicate of VIEW_TRANSACTION"
+msgstr ""
+
+# id::ppl.description__460
+#: 950.data.seed-values.sql:1428
+msgid "UPDATE_CN_BTYPE"
+msgstr ""
+
+# id::csc.name__14
+#: 950.data.seed-values.sql:10962
+msgid "Iridium"
+msgstr ""
+
+# id::csc.name__41
+#: 950.data.seed-values.sql:11423
+msgid "Cellular South"
+msgstr ""
+
+# id::ccvm.value__516
+#: 950.data.seed-values.sql:6516
+msgid "Humor, satires, etc."
+msgstr ""
+
+# id::ccvm.description__517
+#: 950.data.seed-values.sql:6517
+msgid "The item is a single letter or collection of correspondence."
+msgstr ""
+
+# id::ccvm.value__342
+#: 950.data.seed-values.sql:6336
+msgid "Philippine (Other)"
+msgstr ""
+
+# id::ccvm.value__233
+#: 950.data.seed-values.sql:6227
+msgid "Kpelle"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.evening_phone.example
+#: 950.data.seed-values.sql:4407
+msgid "Example for evening_phone field on patron registration"
+msgstr ""
+
+# id::ccvm.value__219
+#: 950.data.seed-values.sql:6213
+msgid "Kabardian"
+msgstr ""
+
+# id::ccvm.value__42
+#: 950.data.seed-values.sql:6036
+msgid "Basque"
+msgstr ""
+
+# id::ccvm.value__446
+#: 950.data.seed-values.sql:6440
+msgid "Tumbuka"
+msgstr ""
+
+# id::ath.description__vandelay.import_items.print
+#: 950.data.seed-values.sql:9887
+msgid ""
+"Print output has been requested for Import Items from records in an Importer"
+" Bib Queue."
+msgstr ""
+
+# id::cuat.label__9
+#: 950.data.seed-values.sql:12011
+msgid "Verification via opensrf"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.dob.require
+#: 950.data.seed-values.sql:4335
+msgid "Require dob field on patron registration"
+msgstr ""
+
+# id::ppl.description__169
+#: 950.data.seed-values.sql:848
+msgid "Allow a user to create/view/update/delete a provider"
+msgstr ""
+
+# id::coust.label__vandelay
+#: 950.data.seed-values.sql:2579
+msgid "Vandelay"
+msgstr ""
+
+# id::ccvm.value__75
+#: 950.data.seed-values.sql:6069
+msgid "Chechen"
+msgstr ""
+
+# id::ccvm.value__367
+#: 950.data.seed-values.sql:6361
+msgid "Sanskrit"
+msgstr ""
+
+# id::ccvm.value__117
+#: 950.data.seed-values.sql:6111
+msgid "Ekajuk"
+msgstr ""
+
+# id::ccvm.value__163
+#: 950.data.seed-values.sql:6157
+msgid "Grebo"
+msgstr ""
+
+# id::crcd.name__2
+#: 950.data.seed-values.sql:251
+msgid "28_days_2_renew"
+msgstr ""
+
+# id::ccvm.value__393
+#: 950.data.seed-values.sql:6387
+msgid "Skolt Sami"
+msgstr ""
+
+# id::ppl.description__80
+#: 950.data.seed-values.sql:670
+msgid "Allow a user to view all notes attached to a copy"
+msgstr ""
+
+# id::coust.label__circ.password_reset_request_per_user_limit
+#: 950.data.seed-values.sql:3357
+msgid ""
+"Maximum concurrently active self-serve password reset requests per user"
+msgstr ""
+
+# id::coust.label__patron.password.use_phone
+#: 950.data.seed-values.sql:4000
+msgid "Patron: password from phone #"
+msgstr ""
+
+# id::ppl.description__143
+#: 950.data.seed-values.sql:796
+msgid "Allow a user to view report output"
+msgstr ""
+
+# id::ppl.description__343
+#: 950.data.seed-values.sql:1196
+msgid "UPDATE_ORG_UNIT_SETTING.patron.password.use_phone"
+msgstr ""
+
+# id::ppl.description__212
+#: 950.data.seed-values.sql:934
+msgid "CREATE_ITEM_TYPE"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.ident_value.show
+#: 950.data.seed-values.sql:4452
+msgid "Show ident_value field on patron registration"
+msgstr ""
+
+# id::ccvm.value__160
+#: 950.data.seed-values.sql:6154
+msgid "Gondi"
+msgstr ""
+
+# id::ppl.description__25
+#: 950.data.seed-values.sql:560
+msgid "Allow a user to create another user"
+msgstr ""
+
+# id::ccvm.value__bak
+#: 950.data.seed-values.sql:6032
+msgid "Bashkir"
+msgstr ""
+
+# id::ppl.description__486
+#: 950.data.seed-values.sql:1480
+msgid "Update suffix label definition."
+msgstr ""
+
+# id::ccvm.value__212
+#: 950.data.seed-values.sql:6206
+msgid "Kamba"
+msgstr ""
+
+# id::coust.label__circ.staff_client.do_not_auto_attempt_print
+#: 950.data.seed-values.sql:3519
+msgid "Disable Automatic Print Attempt Type List"
+msgstr ""
+
+# id::coust.description__circ.do_not_tally_claims_returned
+#: 950.data.seed-values.sql:2951
+msgid ""
+"In the Patron Display interface, the number of total active circulations for"
+" a given patron is presented in the Summary sidebar and underneath the Items"
+" Out navigation button.  This setting will prevent Claims Returned "
+"circulations from counting toward these tallies."
+msgstr ""
+
+# id::ppl.description__71
+#: 950.data.seed-values.sql:652
+msgid "Allow a user to create a new copy location"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.other_phone.example
+#: 950.data.seed-values.sql:4524
+msgid "Example for other_phone field on patron registration"
+msgstr ""
+
+# id::ppl.description__393
+#: 950.data.seed-values.sql:1294
+msgid "ADMIN_ACQ_CLAIM_TYPE"
+msgstr ""
+
+# id::ppl.description__444
+#: 950.data.seed-values.sql:1396
+msgid "DELETE_BIBLIO_FINGERPRINT"
+msgstr ""
+
+# id::atval.description__Acq%3A%3AUserRequestOrdered
+#: 950.data.seed-values.sql:7028
+msgid "Tests to see if the corresponding Line Item has a state of \"on-order\"."
+msgstr ""
+
+# id::ppl.description__290
+#: 950.data.seed-values.sql:1090
+msgid "CREATE_TRANSLATION"
+msgstr ""
+
+# id::aiit.name__PRO
+#: 950.data.seed-values.sql:9073
+msgid "Processing Fee"
+msgstr ""
+
+# id::ccvm.value__174
+#: 950.data.seed-values.sql:6168
+msgid "Hebrew"
+msgstr ""
+
+# id::ppl.description__62
+#: 950.data.seed-values.sql:634
+msgid "User may delete a copy statistical category"
+msgstr ""
+
+# id::ccvm.value__92
+#: 950.data.seed-values.sql:6086
+msgid "Creoles and Pidgins, French-based (Other)"
+msgstr ""
+
+# id::ccvm.value__246 id::ccvm.value__389
+#: 950.data.seed-values.sql:6240 950.data.seed-values.sql:6383
+msgid "Sami"
+msgstr ""
+
+# id::coust.description__acq.upload.default.activate_po
+#: 950.data.seed-values.sql:12526
+msgid "Activate the purchase order by default during ACQ file upload"
+msgstr ""
+
+# id::acsaf.name__30
+#: 950.data.seed-values.sql:10498
+msgid "See Also From Tracing -- Chronological Subdivision"
+msgstr ""
+
+# id::cnal.name__2
+#: 950.data.seed-values.sql:328
+msgid "Unfiltered"
+msgstr ""
+
+# id::coust.label__config.settings_group.recall
+#: 950.data.seed-values.sql:2574
+msgid "Recalls"
+msgstr ""
+
+# id::ppl.description__485
+#: 950.data.seed-values.sql:1478
+msgid "Create suffix label definition."
+msgstr ""
+
+# id::coust.description__circ.holds.uncancel.reset_request_time
+#: 950.data.seed-values.sql:3225
+msgid ""
+"When a hold is uncanceled, reset the request time to push it to the end of "
+"the queue"
+msgstr ""
+
+# id::pgt.name__15
+#: 950.data.seed-values.sql:1649
+msgid "Volunteers"
+msgstr ""
+
+# id::ppl.description__128
+#: 950.data.seed-values.sql:766
+msgid "Allow a user to add/remove users to/from the \"Cat1\" group"
+msgstr ""
+
+# id::ppl.description__22
+#: 950.data.seed-values.sql:554
+msgid "Allow a user to edit a copy"
+msgstr ""
+
+# id::ppl.description__548
+#: 950.data.seed-values.sql:1604
+msgid "Allows staff to change the lineitem identifier"
+msgstr ""
+
+# id::ccvm.value__141
+#: 950.data.seed-values.sql:6135
+msgid "Fula"
+msgstr ""
+
+# id::coust.description__cat.volume.delete_on_empty
+#: 950.data.seed-values.sql:2834
+msgid "Automatically delete a volume when the last linked copy is deleted"
+msgstr ""
+
+# id::coust.label__circ.hold_shelf_status_delay
+#: 950.data.seed-values.sql:3033
+msgid "Hold Shelf Status Delay"
+msgstr ""
+
+# id::coust.label__vandelay.item.call_number.prefix
+#: 950.data.seed-values.sql:13293
+msgid "Apply this prefix to any auto-generated item call numbers"
+msgstr ""
+
+# id::ccvm.description__521
+#: 950.data.seed-values.sql:6521
+msgid "The item is a speech or collection of speeches."
+msgstr ""
+
+# id::ccvm.value__420
+#: 950.data.seed-values.sql:6414
+msgid "Tamil"
+msgstr ""
+
+# id::ppl.description__7
+#: 950.data.seed-values.sql:524
+msgid ""
+"Allow a user to create holds for another user (if true, we still check to "
+"make sure they have permission to make the type of hold they are requesting,"
+" for example, COPY_HOLDS)"
+msgstr ""
+
+# id::ccvm.value__487
+#: 950.data.seed-values.sql:6483
+msgid "Unknown or unspecified"
+msgstr ""
+
+# id::coust.label__booking.allow_email_notify
+#: 950.data.seed-values.sql:2696
+msgid "Allow Email Notify"
+msgstr ""
+
+# id::ppl.description__291
+#: 950.data.seed-values.sql:1092
+msgid "DELETE_ACQ_FUNDING_SOURCE"
+msgstr ""
+
+# id::ppl.description__483
+#: 950.data.seed-values.sql:1474
+msgid "ADMIN_SERIAL_STREAM"
+msgstr ""
+
+# id::cust.label__opac.default_sort id::cust.description__opac.default_sort
+#: 950.data.seed-values.sql:9418 950.data.seed-values.sql:9424
+msgid "OPAC Default Search Sort"
+msgstr ""
+
+# id::ppl.description__542
+#: 950.data.seed-values.sql:1592
+msgid "Allows a user to create, edit, and delete custom toolbars for users"
+msgstr ""
+
+# id::coust.description__circ.grace.extend.into_closed
+#: 950.data.seed-values.sql:2991
+msgid ""
+"If enabled and Grace Periods auto-extending is turned on grace periods will "
+"include closed dates that directly follow the last day of the grace period, "
+"to allow a backdate into the closed dates to assume \"returned after hours "
+"on the last day of the grace period, and thus still within it\" "
+"automatically."
+msgstr ""
+
+# id::ccvm.value__173
+#: 950.data.seed-values.sql:6167
+msgid "Hawaiian"
+msgstr ""
+
+# id::ccvm.value__546
+#: 950.data.seed-values.sql:6553
+msgid "Betacam SP"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.master_account.suggest
+#: 950.data.seed-values.sql:4515
+msgid "Suggest master_account field on patron registration"
+msgstr ""
+
+# id::coust.description__circ.holds.default_estimated_wait_interval
+#: 950.data.seed-values.sql:3108
+msgid ""
+"When predicting the amount of time a patron will be waiting for a hold to be"
+" fulfilled, this is the default estimated length of time to assume an item "
+"will be checked out. Examples: \"3 weeks\", \"7 days\""
+msgstr ""
+
+# id::coust.description__opac.pending_user_expire_interval
+#: 950.data.seed-values.sql:13218
+msgid ""
+"If set, this is the amount of time a pending user account will be allowed to"
+" sit in the database.  After this time, the pending user information will be"
+" purged"
+msgstr ""
+
+# id::ppl.description__138
+#: 950.data.seed-values.sql:786
+msgid "Allow staff to override item on holds shelf failure"
+msgstr ""
+
+# id::ccvm.value__270
+#: 950.data.seed-values.sql:6264
+msgid "Mandingo"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.email.suggest
+#: 950.data.seed-values.sql:4398
+msgid "Suggest email field on patron registration"
+msgstr ""
+
+# id::coust.label__global.default_locale
+# id::coust.description__global.default_locale
+#: 950.data.seed-values.sql:3834 950.data.seed-values.sql:3837
+msgid "Global Default Locale"
+msgstr ""
+
+# id::ccvm.value__386
+#: 950.data.seed-values.sql:6380
+msgid "Slovenian"
+msgstr ""
+
+# id::vie.description__import.duplicate.sysid
+# id::vie.description__import.duplicate.sysid
+#: 950.data.seed-values.sql:9755 950.data.seed-values.sql:9756
+msgid "Import failed due to system id collision"
+msgstr ""
+
+# id::cuat.label__23
+#: 950.data.seed-values.sql:12028
+msgid "Self-Check User Verification"
+msgstr ""
+
+# id::coust.description__circ.holds.hold_has_copy_at.alert
+#: 950.data.seed-values.sql:3135
+msgid ""
+"If there is an available copy at the requesting library that could fulfill a"
+" hold during hold placement time, alert the patron"
+msgstr ""
+
+# id::ccvm.value__514
+#: 950.data.seed-values.sql:6514
+msgid "Essays"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.dob.suggest
+#: 950.data.seed-values.sql:4356
+msgid ""
+"The dob field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
+msgstr ""
+
+# id::ppl.description__430
+#: 950.data.seed-values.sql:1368
+msgid "CREATE_BIB_BTYPE"
+msgstr ""
+
+# id::ppl.description__278
+#: 950.data.seed-values.sql:1066
+msgid "UPDATE_VR_FORMAT"
+msgstr ""
+
+# id::coust.description__org.patron_opt_boundary
+#: 950.data.seed-values.sql:3985
+msgid ""
+"This determines at which depth above which patrons must be opted in, and "
+"below which patrons will be assumed to be opted in."
+msgstr ""
+
+# id::ccvm.value__229
+#: 950.data.seed-values.sql:6223
+msgid "Komi"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.email.example
+#: 950.data.seed-values.sql:4362
+msgid "Example for email field on patron registration"
+msgstr ""
+
+# id::ccvm.value__478
+#: 950.data.seed-values.sql:6472
+msgid "Yiddish"
+msgstr ""
+
+# id::ppl.description__530
+#: 950.data.seed-values.sql:1568
+msgid "Allows a user to view vandelay match sets"
+msgstr ""
+
+# id::ccvm.description__495
+#: 950.data.seed-values.sql:6491
+msgid ""
+"The item is intended for children and young people, approximate ages 0-15 "
+"years."
+msgstr ""
+
+# id::coust.description__circ.longoverdue.use_last_activity_date_on_return
+#: 950.data.seed-values.sql:13092
+msgid ""
+"Use the long-overdue last-activity date instead of the due_date to determine"
+" whether the item has been checked out too long to perform long-overdue "
+"check-in processing.  If set, the system will first check the last payment "
+"time, followed by the last billing time, followed by the due date.  See also"
+" circ.max_accept_return_of_longoverdue"
+msgstr ""
+
+# id::coust.description__cat.marc_control_number_identifier
+#: 950.data.seed-values.sql:2798
+msgid "Cat: Defines the control number identifier used in 003 and 035 fields."
+msgstr ""
+
+# id::coust.description__serial.prev_issuance_copy_location
+#: 950.data.seed-values.sql:4023
+msgid ""
+"When a serial issuance is received, copies (units) of the previous issuance "
+"will be automatically moved into the configured shelving location"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.evening_phone.show
+#: 950.data.seed-values.sql:4434
+msgid "Show evening_phone field on patron registration"
+msgstr ""
+
+# id::cuat.label__10
+#: 950.data.seed-values.sql:12012
+msgid "Verification via srfsh"
+msgstr ""
+
+# id::ppl.description__49
+#: 950.data.seed-values.sql:608
+msgid "Allow a user to determine whether another user can check out an item"
+msgstr ""
+
+# id::ppl.description__99
+#: 950.data.seed-values.sql:708
+msgid "Allow a user to override the copy_is_reference event"
+msgstr ""
+
+# id::ccvm.value__45
+#: 950.data.seed-values.sql:6039
+msgid "Beja"
+msgstr ""
+
+# id::cza.label__9 id::cza.label__18 id::cza.label__27 id::czifm.label__7
+#: 950.data.seed-values.sql:388 950.data.seed-values.sql:409
+#: 950.data.seed-values.sql:428 950.data.seed-values.sql:12910
+msgid "Item Type"
+msgstr ""
+
+# id::crcd.name__10
+#: 950.data.seed-values.sql:267
+msgid "14_days_2_renew"
+msgstr ""
+
+# id::ccvm.value__185
+#: 950.data.seed-values.sql:6179
+msgid "Igbo"
+msgstr ""
+
+# id::coust.label__circ.holds.hold_has_copy_at.block
+#: 950.data.seed-values.sql:3141
+msgid "Has Local Copy Block"
+msgstr ""
+
+# id::ccvm.value__366
+#: 950.data.seed-values.sql:6360
+msgid "Samaritan Aramaic"
+msgstr ""
+
+# id::ppl.description__318
+#: 950.data.seed-values.sql:1146
+msgid "UPDATE_IMPORT_ITEM_ATTR_DEF"
+msgstr ""
+
+# id::ppl.description__170
+#: 950.data.seed-values.sql:850
+msgid "Allow a user to view and purchase from a provider"
+msgstr ""
+
+# id::coust.label__circ.holds.target_holds_by_org_unit_weight
+#: 950.data.seed-values.sql:3204
+msgid "Use weight-based hold targeting"
+msgstr ""
+
+# id::coust.label__vandelay.item.call_number.auto
+#: 950.data.seed-values.sql:13280
+msgid ""
+"Auto-generate default item call numbers when no item call number is present"
+msgstr ""
+
+# id::coust.label__circ.holds.recall_return_interval
+#: 950.data.seed-values.sql:3186
+msgid "Truncated loan period."
+msgstr ""
+
+# id::ppl.description__505
+#: 950.data.seed-values.sql:1518
+msgid ""
+"Allows update of a workstation during workstation registration override."
+msgstr ""
+
+# id::ccvm.value__404
+#: 950.data.seed-values.sql:6398
+msgid "Serer"
+msgstr ""
+
+# id::coust.label__circ.max_accept_return_of_lost
+#: 950.data.seed-values.sql:3276
+msgid "Void lost max interval"
+msgstr ""
+
+# id::coust.label__format.date
+#: 950.data.seed-values.sql:3816
+msgid "Format Dates with this pattern."
+msgstr ""
+
+# id::ccvm.value__234
+#: 950.data.seed-values.sql:6228
+msgid "Kru"
+msgstr ""
+
+# id::coust.description__acq.upload.default.vandelay.low_quality_fall_thru_profile
+#: 950.data.seed-values.sql:12679
+msgid "Default low-quality fall through profile used during ACQ file upload"
+msgstr ""
+
+# id::ppl.description__522
+#: 950.data.seed-values.sql:1552
+msgid "Allows a user to create new authority records"
+msgstr ""
+
+# id::ath.description__money.format.payment_receipt.email
+#: 950.data.seed-values.sql:8692
+msgid "An email has been requested for a payment receipt."
+msgstr ""
+
+# id::coust.description__opac.staff_saved_search.size
+#: 950.data.seed-values.sql:4760
+msgid ""
+"If unset, the OPAC (only when wrapped in the staff client!) will default to "
+"showing you your ten most recent searches on the left side of the results "
+"and record details pages.  If you actually don't want to see this feature at"
+" all, set this value to zero at the top of your organizational tree."
+msgstr ""
+
+# id::ccvm.value__374
+#: 950.data.seed-values.sql:6368
+msgid "Selkup"
+msgstr ""
+
+# id::acsaf.name__32
+#: 950.data.seed-values.sql:10500
+msgid "See Also From Tracing -- Chronological Term"
+msgstr ""
+
+# id::ppl.description__314
+#: 950.data.seed-values.sql:1138
+msgid "DELETE_IMPORT_ITEM"
+msgstr ""
+
+# id::ppl.description__374
+#: 950.data.seed-values.sql:1258
+msgid "Allow a user to update trigger validators"
+msgstr ""
+
+# id::atval.description__Acq%3A%3APurchaseOrderEDIRequired
+#: 950.data.seed-values.sql:8181
+msgid "Purchase order is delivered via EDI"
+msgstr ""
+
+# id::acpl.name__1
+#: 950.data.seed-values.sql:2462
+msgid "Stacks"
+msgstr ""
+
+# id::csc.name__62
+#: 950.data.seed-values.sql:11780
+msgid "Viaero"
+msgstr ""
+
+# id::coust.description__cat.z3950.batch.max_parallel
+#: 950.data.seed-values.sql:12927
+msgid ""
+"The maximum number of Z39.50 searches that can be in-flight at any given "
+"time when performing batch Z39.50 searches"
+msgstr ""
+
+# id::coust.description__circ.hold_boundary.hard
+#: 950.data.seed-values.sql:3000
+msgid "Holds: Hard boundary"
+msgstr ""
+
+# id::acsaf.name__2
+#: 950.data.seed-values.sql:10469
+msgid "Heading -- Corporate Name"
+msgstr ""
+
+# id::cust.label__opac.default_sms_notify
+# id::cust.description__opac.default_sms_notify
+#: 950.data.seed-values.sql:10653 950.data.seed-values.sql:10659
+msgid "Default SMS/Text Number"
+msgstr ""
+
+# id::coust.description__opac.fully_compressed_serial_holdings
+#: 950.data.seed-values.sql:3922
+msgid ""
+"Show fully compressed serial holdings for all libraries at and below the "
+"current context unit"
+msgstr ""
+
+# id::coust.description__circ.holds.min_estimated_wait_interval
+#: 950.data.seed-values.sql:3162
+msgid ""
+"When predicting the amount of time a patron will be waiting for a hold to be"
+" fulfilled, this is the minimum estimated length of time to assume an item "
+"will be checked out. Examples: \"2 weeks\", \"5 days\""
+msgstr ""
+
+# id::ppl.description__397
+#: 950.data.seed-values.sql:1302
+msgid "ADMIN_ACQ_FUND_TAG"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.second_given_name.show
+#: 950.data.seed-values.sql:4596
+msgid "Show second_given_name field on patron registration"
+msgstr ""
+
+# id::coust.description__circ.max_patron_claim_return_count
+#: 950.data.seed-values.sql:3297
+msgid ""
+"When this count is exceeded, a staff override is required to mark the item "
+"as claims returned"
+msgstr ""
+
+# id::ccvm.value__158
+#: 950.data.seed-values.sql:6152
+msgid "German, Middle High (ca. 1050-1500)"
+msgstr ""
+
+# id::ppl.description__355
+#: 950.data.seed-values.sql:1220
+msgid "Allow a user to delete trigger cleanup entries"
+msgstr ""
+
+# id::coust.label__circ.user_merge.delete_addresses
+#: 950.data.seed-values.sql:3609
+msgid "Patron Merge Address Delete"
+msgstr ""
+
+# id::ppl.description__79
+#: 950.data.seed-values.sql:668
+msgid "Allow a user to register a new workstation"
+msgstr ""
+
+# id::ppl.description__498
+#: 950.data.seed-values.sql:1504
+msgid "Create User Purchase Request"
+msgstr ""
+
+# id::ppl.description__261
+#: 950.data.seed-values.sql:1032
+msgid "UPDATE_HOURS_OF_OPERATION"
+msgstr ""
+
+# id::coust.description__circ.hold_expire_alert_interval
+#: 950.data.seed-values.sql:3018
+msgid ""
+"Amount of time before a hold expires at which point the patron should be "
+"alerted. Examples: \"5 days\", \"1 hour\""
+msgstr ""
+
+# id::coust.label__opac.patron.auto_overide_hold_events
+#: 950.data.seed-values.sql:12164
+msgid "Auto-Override Permitted Hold Blocks (Patrons)"
+msgstr ""
+
+# id::ppl.description__412
+#: 950.data.seed-values.sql:1332
+msgid "ADMIN_IMPORT_ITEM_ATTR_DEF"
+msgstr ""
+
+# id::ppl.description__441
+#: 950.data.seed-values.sql:1390
+msgid "CREATE_METABIB_SEARCH_ALIAS"
+msgstr ""
+
+# id::coust.label__acq.upload.default.vandelay.load_item_for_imported
+#: 950.data.seed-values.sql:12690
+msgid "Upload Load Items for Imported Records by Default"
+msgstr ""
+
+# id::pgt.name__1
+#: 950.data.seed-values.sql:1617
+msgid "Users"
+msgstr ""
+
+# id::ppl.description__538
+#: 950.data.seed-values.sql:1584
+msgid "Allows staff to view search filter groups and entries"
+msgstr ""
+
+# id::ccvm.value__456
+#: 950.data.seed-values.sql:6450
+msgid "Ukrainian"
+msgstr ""
+
+# id::pgt.name__13
+#: 950.data.seed-values.sql:1644
+msgid "Global Administrator"
+msgstr ""
+
+# id::coust.label__circ.max_fine.cap_at_price
+#: 950.data.seed-values.sql:3285
+msgid "Cap Max Fine at Item Price"
+msgstr ""
+
+# id::ccvm.value__501
+#: 950.data.seed-values.sql:6499
+msgid "Kit"
+msgstr ""
+
+# id::csc.region__22
+#: 950.data.seed-values.sql:11094
+msgid "Hawaii, USA"
+msgstr ""
+
+# id::coust.label__url_verify.verification_batch_size
+#: 950.data.seed-values.sql:12483
+msgid "Number of URLs to test in parallel"
+msgstr ""
+
+# id::ath.description__container.biblio_record_entry_bucket.csv
+#: 950.data.seed-values.sql:10392
+msgid "Produce a CSV file representing a bookbag"
+msgstr ""
+
+# id::coust.description__opac.patron.temporary_list_warn
+#: 950.data.seed-values.sql:12192
+msgid ""
+"Present a warning dialog to the patron when a patron adds a book to a "
+"temporary book bag."
+msgstr ""
+
+# id::ppl.description__447
+#: 950.data.seed-values.sql:1402
+msgid "DELETE_CN_BTYPE"
+msgstr ""
+
+# id::ppl.description__194
+#: 950.data.seed-values.sql:898
+msgid "Allows a user to update an MFHD record"
+msgstr ""
+
+# id::ccvm.value__442 id::ccvm.value__444
+#: 950.data.seed-values.sql:6436 950.data.seed-values.sql:6438
+msgid "Tswana"
+msgstr ""
+
+# id::ppl.description__490
+#: 950.data.seed-values.sql:1488
+msgid "Delete prefix label definition."
+msgstr ""
+
+# id::ccvm.value__88
+#: 950.data.seed-values.sql:6082
+msgid "Coptic"
+msgstr ""
+
+# id::ccvm.value__255
+#: 950.data.seed-values.sql:6249
+msgid "Letzeburgesch"
+msgstr ""
+
+# id::coust.description__ui.circ.in_house_use.entry_cap
+#: 950.data.seed-values.sql:4068
+msgid ""
+"The # of uses entry in the Record In-House Use interface may not exceed the "
+"value of this setting."
+msgstr ""
+
+# id::ccvm.value__485
+#: 950.data.seed-values.sql:6479
+msgid "Zulu"
+msgstr ""
+
+# id::ccvm.value__474
+#: 950.data.seed-values.sql:6468
+msgid "Kalmyk"
+msgstr ""
+
+# id::coust.description__cat.default_classification_scheme
+#: 950.data.seed-values.sql:2735
+msgid ""
+"Defines the default classification scheme for new call numbers: 1 = Generic;"
+" 2 = Dewey; 3 = LC"
+msgstr ""
+
+# id::coust.label__credit.processor.payflowpro.login
+#: 950.data.seed-values.sql:3726
+msgid "PayflowPro login/merchant ID"
+msgstr ""
+
+# id::ppl.description__518
+#: 950.data.seed-values.sql:1544
+msgid "Allow a user to place a cataloging recall on a specific copy"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.day_phone.regex
+#: 950.data.seed-values.sql:4293
+msgid ""
+"The Regular Expression for validation on the day_phone field in patron "
+"registration. Note: The first capture group will be used for the \"last 4 "
+"digits of phone number\" feature, if enabled. Ex: "
+"\"[2-9]\\\\d{2}-\\\\d{3}-(\\\\d{4})( x\\\\d+)?\" will ignore the extension "
+"on a NANP number."
+msgstr ""
+
+# id::ppl.description__477
+#: 950.data.seed-values.sql:1462
+msgid "VIEW_INVOICE"
+msgstr ""
+
+# id::csc.name__12
+#: 950.data.seed-values.sql:10926
+msgid "MTS Mobility"
+msgstr ""
+
+# id::coust.label__circ.void_overdue_on_lost
+# id::coust.description__circ.void_overdue_on_lost
+#: 950.data.seed-values.sql:3645 950.data.seed-values.sql:3648
+msgid "Void overdue fines when items are marked lost"
+msgstr ""
+
+# id::ppl.description__235
+#: 950.data.seed-values.sql:980
+msgid "DELETE_ITEM_TYPE"
+msgstr ""
+
+# id::ppl.description__409
+#: 950.data.seed-values.sql:1326
+msgid "ADMIN_HOLD_CANCEL_CAUSE"
+msgstr ""
+
+# id::coust.label__acq.default_circ_modifier
+# id::coust.description__acq.default_circ_modifier
+#: 950.data.seed-values.sql:2606 950.data.seed-values.sql:2609
+msgid "Default circulation modifier"
+msgstr ""
+
+# id::bpt.name__1
+#: 950.data.seed-values.sql:11
+msgid "Bound Volume"
+msgstr ""
+
+# id::coust.label__auth.persistent_login_interval
+#: 950.data.seed-values.sql:2678
+msgid "Persistent Login Duration"
+msgstr ""
+
+# id::csc.name__54
+#: 950.data.seed-values.sql:11644
+msgid "Pioneer Cellular"
+msgstr ""
+
+# id::ccvm.value__63
+#: 950.data.seed-values.sql:6057
+msgid "Bulgarian"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.evening_phone.example
+#: 950.data.seed-values.sql:4410
+msgid ""
+"The Example for validation on the evening_phone field in patron "
+"registration."
+msgstr ""
+
+# id::ppl.description__31
+#: 950.data.seed-values.sql:572
+msgid ""
+"Allow a user to view user permissions within the user permissions editor"
+msgstr ""
+
+# id::coust.label__circ.holds.hold_has_copy_at.alert
+#: 950.data.seed-values.sql:3132
+msgid "Has Local Copy Alert"
+msgstr ""
+
+# id::coust.description__circ.holds.recall_fine_rules
+#: 950.data.seed-values.sql:3180
+msgid ""
+"Recalls: An array of fine amount, fine interval, and maximum fine. For "
+"example, to specify a new fine rule of $5.00 per day, with a maximum fine of"
+" $50.00, use: [5.00,\"1 day\",50.00]"
+msgstr ""
+
+# id::ccvm.value__43
+#: 950.data.seed-values.sql:6037
+msgid "Basa"
+msgstr ""
+
+# id::ppl.description__352
+#: 950.data.seed-values.sql:1214
+msgid "Allow a user to administer trigger event definitions"
+msgstr ""
+
+# id::acsaf.name__47
+#: 950.data.seed-values.sql:10508
+msgid "Established Heading Linking Entry -- Genre/Form Term"
+msgstr ""
+
+# id::cnct.name__1
+#: 950.data.seed-values.sql:237
+msgid "Paperback Book"
+msgstr ""
+
+# id::ccvm.value__308
+#: 950.data.seed-values.sql:6302
+msgid "Nepali"
+msgstr ""
+
+# id::coust.label__vandelay.item.call_number.prefix
+#: 950.data.seed-values.sql:13289
+msgid "Vandelay Default Call Number Prefix"
+msgstr ""
+
+# id::ppl.description__40
+#: 950.data.seed-values.sql:590
+msgid "Allow a user to view another user's containers (buckets)"
+msgstr ""
+
+# id::ccvm.value__371
+#: 950.data.seed-values.sql:6365
+msgid "Serbian"
+msgstr ""
+
+# id::ppl.description__368
+#: 950.data.seed-values.sql:1246
+msgid "Allow a user to update trigger reactors"
+msgstr ""
+
+# id::coust.description__sms.enable
+#: 950.data.seed-values.sql:4819
+msgid ""
+"Current features that use SMS include hold-ready-for-pickup notifications "
+"and a \"Send Text\" action for call numbers in the OPAC. If this setting is "
+"not enabled, the SMS options will not be offered to the user.  Unless you "
+"are carefully silo-ing patrons and their use of the OPAC, the context org "
+"for this setting should be the top org in the org hierarchy, otherwise "
+"patrons can trample their user settings when jumping between orgs."
+msgstr ""
+
+# id::ccvm.value__74
+#: 950.data.seed-values.sql:6068
+msgid "Chibcha"
+msgstr ""
+
+# id::cgf.label__history.hold.retention_age_canceled
+#: 950.data.seed-values.sql:9185
+msgid "Historical Hold Retention Age - Canceled (Default)"
+msgstr ""
+
+# id::ppl.description__465
+#: 950.data.seed-values.sql:1438
+msgid "UPDATE_METABIB_CLASS"
+msgstr ""
+
+# id::ccvm.value__256
+#: 950.data.seed-values.sql:6250
+msgid "Luba-Lulua"
+msgstr ""
+
+# id::acsaf.name__45
+#: 950.data.seed-values.sql:10506
+msgid "Established Heading Linking Entry -- Topical Term"
+msgstr ""
+
+# id::ccvm.value__459
+#: 950.data.seed-values.sql:6453
+msgid "Urdu"
+msgstr ""
+
+# id::ppl.description__21
+#: 950.data.seed-values.sql:552
+msgid "Allow a user to create a new copy object"
+msgstr ""
+
+# id::ccvm.value__254
+#: 950.data.seed-values.sql:6248
+msgid "Lozi"
+msgstr ""
+
+# id::coust.label__opac.staff_saved_search.size
+#: 950.data.seed-values.sql:4757
+msgid ""
+"OPAC: Number of staff client saved searches to display on left side of "
+"results and record details pages"
+msgstr ""
+
+# id::ppl.description__84
+#: 950.data.seed-values.sql:678
+msgid "Allow a user to create a new volume note"
+msgstr ""
+
+# id::crcd.name__9
+#: 950.data.seed-values.sql:265
+msgid "28_days_0_renew"
+msgstr ""
+
+# id::acsaf.name__70
+#: 950.data.seed-values.sql:10524
+msgid "See From Tracing -- Chronological Subdivision"
+msgstr ""
+
+# id::ccvm.value__art
+#: 950.data.seed-values.sql:6019
+msgid "Artificial (Other)"
+msgstr ""
+
+# id::coust.description__global.juvenile_age_threshold
+#: 950.data.seed-values.sql:3846
+msgid ""
+"The age at which a user is no long considered a juvenile.  For example, \"18"
+" years\"."
+msgstr ""
+
+# id::cbt.name__8
+#: 950.data.seed-values.sql:495
+msgid "Damaged Item Processing Fee"
+msgstr ""
+
+# id::cuat.label__6
+#: 950.data.seed-values.sql:12007
+msgid "Login via remoteauth"
+msgstr ""
+
+# id::ccvm.value__86
+#: 950.data.seed-values.sql:6080
+msgid "Cheyenne"
+msgstr ""
+
+# id::ccvm.value__135
+#: 950.data.seed-values.sql:6129
+msgid "Fon"
+msgstr ""
+
+# id::ccvm.value__332
+#: 950.data.seed-values.sql:6326
+msgid "Otomian languages"
+msgstr ""
+
+# id::csc.name__17
+#: 950.data.seed-values.sql:11013
+msgid "Panacea Mobile"
+msgstr ""
+
+# id::ppl.description__2
+#: 950.data.seed-values.sql:514
+msgid "Allow a user to log in to the staff client"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.ident_value.show
+#: 950.data.seed-values.sql:4455
+msgid ""
+"The ident_value field will be shown on the patron registration screen. "
+"Showing a field makes it appear with required fields even when not required."
+" If the field is required this setting is ignored."
+msgstr ""
+
+# id::acsaf.name__72
+#: 950.data.seed-values.sql:10526
+msgid "See From Tracing -- Chronological Term"
+msgstr ""
+
+# id::coust.label__circ.offline.skip_checkin_if_newer_status_changed_time
+#: 950.data.seed-values.sql:3321
+msgid "Skip offline checkin if newer item Status Changed Time."
+msgstr ""
+
+# id::ppl.description__484
+#: 950.data.seed-values.sql:1476
+msgid "Receive serial items"
+msgstr ""
+
+# id::coust.label__circ.void_lost_proc_fee_on_checkin
+#: 950.data.seed-values.sql:3636
+msgid "Void processing fee on lost item return"
+msgstr ""
+
+# id::ppl.description__324
+#: 950.data.seed-values.sql:1158
+msgid "UPDATE_ORG_UNIT_SETTING.auth.staff_timeout"
+msgstr ""
+
+# id::ccvm.value__ada
+#: 950.data.seed-values.sql:5999
+msgid "Adangme"
+msgstr ""
+
+# id::ccvm.value__afr
+#: 950.data.seed-values.sql:6003
+msgid "Afrikaans"
+msgstr ""
+
+# id::vqbrad.description__4
+#: 950.data.seed-values.sql:4965
+msgid "Pagination"
+msgstr ""
+
+# id::cbt.name__7
+#: 950.data.seed-values.sql:493
+msgid "Damaged Item"
+msgstr ""
+
+# id::ccvm.value__460
+#: 950.data.seed-values.sql:6454
+msgid "Uzbek"
+msgstr ""
+
+# id::ccvm.value__200
+#: 950.data.seed-values.sql:6194
+msgid "Iranian (Other)"
+msgstr ""
+
+# id::ccvm.value__62
+#: 950.data.seed-values.sql:6056
+msgid "Bugis"
+msgstr ""
+
+# id::coust.description__cat.default_copy_status_fast
+#: 950.data.seed-values.sql:2744
+msgid "Default status when a copy is created using the \"Fast Add\" interface."
+msgstr ""
+
+# id::ppl.description__511
+#: 950.data.seed-values.sql:1530
+msgid ""
+"Allows a user to authenticate and get a long-lived session (length "
+"configured in opensrf.xml)"
+msgstr ""
+
+# id::coust.label__circ.holds.max_org_unit_target_loops
+#: 950.data.seed-values.sql:3150
+msgid "Maximum library target attempts"
+msgstr ""
+
+# id::bpt.name__5
+#: 950.data.seed-values.sql:15
+msgid "e-Reader Preload"
+msgstr ""
+
+# id::cubt.label__folks
+#: 950.data.seed-values.sql:5043
+msgid "Friends"
+msgstr ""
+
+# id::coust.description__circ.user_merge.deactivate_cards
+#: 950.data.seed-values.sql:3603
+msgid "Mark barcode(s) of subordinate user(s) in a patron merge as inactive"
+msgstr ""
+
+# id::ccvm.value__251
+#: 950.data.seed-values.sql:6245
+msgid "Lingala"
+msgstr ""
+
+# id::coust.label__opac.barcode_regex
+#: 950.data.seed-values.sql:3910
+msgid "Patron barcode format"
+msgstr ""
+
+# id::cuat.label__8
+#: 950.data.seed-values.sql:12009
+msgid "Login via Apache module"
+msgstr ""
+
+# id::ppl.description__298
+#: 950.data.seed-values.sql:1106
+msgid "DELETE_MARC_CODE"
+msgstr ""
+
+# id::ccvm.value__arg
+#: 950.data.seed-values.sql:6015
+msgid "Aragonese Spanish"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.alias.suggest
+#: 950.data.seed-values.sql:4212
+msgid ""
+"The alias field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
+msgstr ""
+
+# id::coust.label__cat.spine.line.margin
+#: 950.data.seed-values.sql:2813
+msgid "Spine label left margin"
+msgstr ""
+
+# id::coust.description__circ.offline.skip_renew_if_newer_status_changed_time
+#: 950.data.seed-values.sql:3342
+msgid ""
+"Skip offline renewal transaction (raise exception when processing) if item "
+"Status Changed Time is newer than the recorded transaction time.  WARNING: "
+"The Reshelving to Available status rollover will trigger this."
+msgstr ""
+
+# id::ccvm.value__164
+#: 950.data.seed-values.sql:6158
+msgid "Greek, Ancient (to 1453)"
+msgstr ""
+
+# id::ccvm.value__323
+#: 950.data.seed-values.sql:6317
+msgid "Nyoro"
+msgstr ""
+
+# id::ppl.description__270
+#: 950.data.seed-values.sql:1050
+msgid "UPDATE_ORG_ADDRESS"
+msgstr ""
+
+# id::ccvm.value__59
+#: 950.data.seed-values.sql:6053
+msgid "Breton"
+msgstr ""
+
+# id::ppl.description__86
+#: 950.data.seed-values.sql:682
+msgid "Allow a user to delete another user's copy notes"
+msgstr ""
+
+# id::ppl.description__269
+#: 950.data.seed-values.sql:1048
+msgid "UPDATE_NET_ACCESS_LEVEL"
+msgstr ""
+
+# id::ccvm.value__448
+#: 950.data.seed-values.sql:6442
+msgid "Turkish"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.suffix.suggest
+#: 950.data.seed-values.sql:4623
+msgid "Suggest suffix field on patron registration"
+msgstr ""
+
+# id::aout.name__1
+#: 950.data.seed-values.sql:438
+msgid "Consortium"
+msgstr ""
+
+# id::coust.label__credit.processor.paypal.signature
+# id::coust.description__credit.processor.paypal.signature
+#: 950.data.seed-values.sql:3798 950.data.seed-values.sql:3801
+msgid "PayPal signature"
+msgstr ""
+
+# id::cuat.label__2
+#: 950.data.seed-values.sql:12003
+msgid "Login via srfsh"
+msgstr ""
+
+# id::coust.description__circ.patron_invalid_address_apply_penalty
+#: 950.data.seed-values.sql:3405
+msgid "When set, if a patron address is set to invalid, a penalty is applied."
+msgstr ""
+
+# id::coust.description__circ.hold_stalling_hard
+#: 950.data.seed-values.sql:3054
+msgid "Holds: Hard stalling interval"
+msgstr ""
+
+# id::ppl.description__289
+#: 950.data.seed-values.sql:1088
+msgid "CREATE_MARC_CODE"
+msgstr ""
+
+# id::ccvm.value__67 id::ccvm.value__222
+#: 950.data.seed-values.sql:6061 950.data.seed-values.sql:6216
+msgid "Khmer"
+msgstr ""
+
+# id::coust.description__circ.holds.target_when_closed_if_at_pickup_lib
+#: 950.data.seed-values.sql:4776
+msgid ""
+"If this setting is true at a given org unit or one of its ancestors, the "
+"hold targeter will target copies from this org unit even if the org unit is "
+"closed (according to the actor.org_unit.closed_date table) IF AND ONLY IF "
+"the copy's circ lib is the same as the hold's pickup lib."
+msgstr ""
+
+# id::coust.description__circ.holds.target_when_closed
+#: 950.data.seed-values.sql:4768
+msgid ""
+"If this setting is true at a given org unit or one of its ancestors, the "
+"hold targeter will target copies from this org unit even if the org unit is "
+"closed (according to the actor.org_unit.closed_date table)."
+msgstr ""
+
+# id::ppl.description__506
+#: 950.data.seed-values.sql:1520
+msgid "Allows viewing of configurable user setting types."
+msgstr ""
+
+# id::cbt.name__3
+#: 950.data.seed-values.sql:485
+msgid "Lost Materials"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.day_phone.require
+#: 950.data.seed-values.sql:4302
+msgid ""
+"The day_phone field will be required on the patron registration screen."
+msgstr ""
+
+# id::coust.description__circ.grace.extend
+#: 950.data.seed-values.sql:2973
+msgid ""
+"When enabled grace periods will auto-extend. By default this will be only "
+"when they are a full day or more and end on a closed date, though other "
+"options can alter this."
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.claims_returned_count.show
+#: 950.data.seed-values.sql:4257
+msgid ""
+"The claims_returned_count field will be shown on the patron registration "
+"screen. Showing a field makes it appear with required fields even when not "
+"required. If the field is required this setting is ignored."
+msgstr ""
+
+# id::ccvm.value__184
+#: 950.data.seed-values.sql:6178
+msgid "Iban"
+msgstr ""
+
+# id::ccvm.value__449
+#: 950.data.seed-values.sql:6443
+msgid "Altaic (Other)"
+msgstr ""
+
+# id::cgf.label__history.hold.retention_age_canceled_6
+#: 950.data.seed-values.sql:9209
+msgid "Historical Hold Retention Age - Canceled (Patron via OPAC)"
+msgstr ""
+
+# id::ccvm.value__192
+#: 950.data.seed-values.sql:6186
+msgid "Iloko"
+msgstr ""
+
+# id::ppl.description__162
+#: 950.data.seed-values.sql:834
+msgid "Allow a user to view a provider"
+msgstr ""
+
+# id::ccvm.value__105
+#: 950.data.seed-values.sql:6099
+msgid "Dogrib"
+msgstr ""
+
+# id::ccvm.value__464
+#: 950.data.seed-values.sql:6458
+msgid "Volapük"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.claims_returned_count.show
+#: 950.data.seed-values.sql:4254
+msgid "Show claims_returned_count field on patron registration"
+msgstr ""
+
+# id::ppl.description__281
+#: 950.data.seed-values.sql:1072
+msgid "UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF"
+msgstr ""
+
+# id::cbt.name__101
+#: 950.data.seed-values.sql:504
+msgid "Misc"
+msgstr ""
+
+# id::coust.label__circ.offline.skip_checkout_if_newer_status_changed_time
+#: 950.data.seed-values.sql:3330
+msgid "Skip offline checkout if newer item Status Changed Time."
+msgstr ""
+
+# id::csc.name__50
+#: 950.data.seed-values.sql:11576
+msgid "South Central Communications"
+msgstr ""
+
+# id::ccvm.value__292
+#: 950.data.seed-values.sql:6286
+msgid "Mongolian"
+msgstr ""
+
+# id::ccvm.value__114
+#: 950.data.seed-values.sql:6108
+msgid "Dzongkha"
+msgstr ""
+
+# id::csc.name__21
+#: 950.data.seed-values.sql:11083
+msgid "Cincinnati Bell"
+msgstr ""
+
+# id::at.name__r
+#: 950.data.seed-values.sql:10605
+msgid "Art and Architecture Thesaurus"
+msgstr ""
+
+# id::ath.description__acn.format.sms_text
+#: 950.data.seed-values.sql:11930
+msgid "A text message has been requested for a call number."
+msgstr ""
+
+# id::coust.label__cat.z3950.batch.max_parallel
+#: 950.data.seed-values.sql:12921
+msgid "Maximum Parallel Z39.50 Batch Searches"
+msgstr ""
+
+# id::ppl.description__306
+#: 950.data.seed-values.sql:1122
+msgid "UPDATE_LOCALE"
+msgstr ""
+
+# id::ccvm.value__433
+#: 950.data.seed-values.sql:6427
+msgid "Tiv"
+msgstr ""
+
+# id::coust.label__config.settings_group.holds
+#: 950.data.seed-values.sql:2565
+msgid "Holds"
+msgstr ""
+
+# id::coust.description__circ.auto_hide_patron_summary
+#: 950.data.seed-values.sql:2843
+msgid ""
+"When true, the patron summary sidebar will collapse after a new patron sub-"
+"interface is selected."
+msgstr ""
+
+# id::ppl.description__69
+#: 950.data.seed-values.sql:648
+msgid "Allow a user to create a new in-house-use "
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.dob.show
+#: 950.data.seed-values.sql:4344
+msgid "Show dob field on patron registration"
+msgstr ""
+
+# id::ppl.description__387
+#: 950.data.seed-values.sql:1282
+msgid "Allows user records to be merged"
+msgstr ""
+
+# id::ccvm.value__arp
+#: 950.data.seed-values.sql:6018
+msgid "Arapaho"
+msgstr ""
+
+# id::ppl.description__528
+#: 950.data.seed-values.sql:1564
+msgid "User may update custom org unit trees"
+msgstr ""
+
+# id::coust.description__serial.default_display_grouping
+#: 950.data.seed-values.sql:4847
+msgid ""
+"Default display grouping for serials distributions presented in the OPAC. "
+"This can be \"enum\" or \"chron\"."
+msgstr ""
+
+# id::i18n_l.name__en-US
+#: 950.data.seed-values.sql:335
+msgid "English (US)"
+msgstr ""
+
+# id::ppl.description__210
+#: 950.data.seed-values.sql:930
+msgid "CREATE_HOURS_OF_OPERATION"
+msgstr ""
+
+# id::coust.label__ui.admin.patron_log.max_entries
+#: 950.data.seed-values.sql:4029
+msgid "Work Log: Maximum Patrons Logged"
+msgstr ""
+
+# id::coust.description__ui.circ.show_billing_tab_on_bills
+#: 950.data.seed-values.sql:4095
+msgid ""
+"If enabled and a patron has outstanding bills and the alert page is not "
+"required, show the billing tab by default, instead of the checkout tab, when"
+" a patron is loaded"
+msgstr ""
+
+# id::ccvm.value__307
+#: 950.data.seed-values.sql:6301
+msgid "Low German"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.dob.suggest
+#: 950.data.seed-values.sql:4353
+msgid "Suggest dob field on patron registration"
+msgstr ""
+
+# id::ppl.description__535
+#: 950.data.seed-values.sql:1578
+msgid "Allows a user to view circ- and hold-related action/trigger events"
+msgstr ""
+
+# id::ppl.description__203
+#: 950.data.seed-values.sql:916
+msgid "Allow a user to create/view/update/delete a copy location order"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.second_given_name.suggest
+#: 950.data.seed-values.sql:4608
+msgid ""
+"The second_given_name field will be suggested on the patron registration "
+"screen. Suggesting a field makes it appear when suggested fields are shown. "
+"If the field is shown or required this setting is ignored."
+msgstr ""
+
+# id::ppl.description__202
+#: 950.data.seed-values.sql:914
+msgid ""
+"Allows staff to manually change a patron's claims never checkout out count"
+msgstr ""
+
+# id::ppl.description__429
+#: 950.data.seed-values.sql:1366
+msgid "ADMIN_Z3950_SOURCE"
+msgstr ""
+
+# id::coust.label__vandelay.item.barcode.prefix
+#: 950.data.seed-values.sql:13267
+msgid "Apply this prefix to any auto-generated item barcodes"
+msgstr ""
+
+# id::coust.description__patron.password.use_phone
+#: 950.data.seed-values.sql:4003
+msgid ""
+"By default, use the last 4 alphanumeric characters of the patrons phone "
+"number as the default password when creating new users.  The exact "
+"characters used may be configured via the \"GUI: Regex for day_phone field "
+"on patron registration\" setting."
+msgstr ""
+
+# id::csc.name__34
+#: 950.data.seed-values.sql:11304
+msgid "AT&T Global Smart Messaging Suite"
+msgstr ""
+
+# id::ppl.description__42
+#: 950.data.seed-values.sql:594
+msgid "Allow a user to change the settings for an organization unit"
+msgstr ""
+
+# id::ppl.description__295
+#: 950.data.seed-values.sql:1100
+msgid "DELETE_BIB_IMPORT_IMPORT_FIELD_DEF"
+msgstr ""
+
+# id::ccvm.description__487
+#: 950.data.seed-values.sql:6483
+msgid "The target audience for the item not known or not specified."
+msgstr ""
+
+# id::ccvm.value__207
+#: 950.data.seed-values.sql:6201
+msgid "Judeo-Arabic"
+msgstr ""
+
+# id::ccvm.description__518
+#: 950.data.seed-values.sql:6518
+msgid "The item is a short story or collection of short stories."
+msgstr ""
+
+# id::ppl.description__191
+#: 950.data.seed-values.sql:892
+msgid ""
+"Allows a user to mark a purchase order, lineitem, or individual copy as "
+"received"
+msgstr ""
+
+# id::coust.description__circ.holds.target_holds_by_org_unit_weight
+#: 950.data.seed-values.sql:3207
+msgid "Use library weight based hold targeting"
+msgstr ""
+
+# id::ccvm.value__116
+#: 950.data.seed-values.sql:6110
+msgid "Egyptian"
+msgstr ""
+
+# id::coust.label__circ.checkout_auto_renew_age
+#: 950.data.seed-values.sql:2885
+msgid "Checkout auto renew age"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.day_phone.show
+#: 950.data.seed-values.sql:4308
+msgid "Show day_phone field on patron registration"
+msgstr ""
+
+# id::coust.label__circ.password_reset_request_time_to_live
+#: 950.data.seed-values.sql:3384
+msgid "Self-serve password reset request time-to-live"
+msgstr ""
+
+# id::coust.label__circ.user_merge.delete_cards
+#: 950.data.seed-values.sql:3618
+msgid "Patron Merge Barcode Delete"
+msgstr ""
+
+# id::vqbrad.description__7
+#: 950.data.seed-values.sql:4968
+msgid "Price"
+msgstr ""
+
+# id::coust.description__cat.label.font.family
+#: 950.data.seed-values.sql:2771
+msgid ""
+"Set the preferred font family for spine and pocket labels. You can specify a"
+" list of fonts, separated by commas, in order of preference; the system will"
+" use the first font it finds with a matching name. For example, \"Arial, "
+"Helvetica, serif\"."
+msgstr ""
+
+# id::ppl.description__105
+#: 950.data.seed-values.sql:720
+msgid "Allow a user to change the missing status on a copy"
+msgstr ""
+
+# id::ccvm.value__128
+#: 950.data.seed-values.sql:6122
+msgid "Fang"
+msgstr ""
+
+# id::coust.label__circ.selfcheck.workstation_required
+#: 950.data.seed-values.sql:3501
+msgid "Workstation Required"
+msgstr ""
+
+# id::vie.description__import.auth.duplicate.acn
+#: 950.data.seed-values.sql:9758
+msgid "Import failed due to Accession Number collision"
+msgstr ""
+
+# id::cuat.label__20
+#: 950.data.seed-values.sql:12024
+msgid "Unique Mgt Login"
+msgstr ""
+
+# id::coust.label__ui.circ.in_house_use.entry_warn
+#: 950.data.seed-values.sql:4074
+msgid "Record In-House Use: # of uses threshold for Are You Sure? dialog."
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.other_phone.require
+#: 950.data.seed-values.sql:4542
+msgid "Require other_phone field on patron registration"
+msgstr ""
+
+# id::ccvm.value__afh
+#: 950.data.seed-values.sql:6002
+msgid "Afrihili (Artificial language)"
+msgstr ""
+
+# id::vie.description__overlay.xml.malformed
+#: 950.data.seed-values.sql:9760
+msgid "Malformed record cause Overlay failure"
+msgstr ""
+
+# id::ccvm.description__494
+#: 950.data.seed-values.sql:6490
+msgid ""
+"The item is of general interest and not aimed at an audience of a particular"
+" intellectual level."
+msgstr ""
+
+# id::coust.label__opac.unlimit_usernames
+#: 950.data.seed-values.sql:3955
+msgid "Allow multiple username changes"
+msgstr ""
+
+# id::ppl.description__417
+#: 950.data.seed-values.sql:1342
+msgid "ADMIN_LINEITEM_MARC_ATTR_DEF"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.alert_message.suggest
+#: 950.data.seed-values.sql:4194
+msgid ""
+"The alert_message field will be suggested on the patron registration screen."
+" Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
+msgstr ""
+
+# id::ppl.description__360
+#: 950.data.seed-values.sql:1230
+msgid "Allow a user to view trigger event definitions"
+msgstr ""
+
+# id::ccvm.value__132
+#: 950.data.seed-values.sql:6126
+msgid "Fijian"
+msgstr ""
+
+# id::coust.label__circ.block_renews_for_holds
+#: 950.data.seed-values.sql:2849
+msgid "Block Renewal of Items Needed for Holds"
+msgstr ""
+
+# id::ath.description__circ.format.missing_pieces.letter.print
+#: 950.data.seed-values.sql:9448
+msgid "A missing pieces patron letter needs to be formatted for printing."
+msgstr ""
+
+# id::coust.description__ui.patron.default_country
+#: 950.data.seed-values.sql:4140
+msgid "This is the default Country for new addresses in the patron editor."
+msgstr ""
+
+# id::ppl.description__307
+#: 950.data.seed-values.sql:1124
+msgid "UPDATE_MARC_CODE"
+msgstr ""
+
+# id::ppl.description__523
+#: 950.data.seed-values.sql:1554
+msgid "Allows a user to create, edit, and delete custom toolbars"
+msgstr ""
+
+# id::ccvm.description__516
+#: 950.data.seed-values.sql:6516
+msgid "The item is a humorous work, satire or of similar literary form."
+msgstr ""
+
+# id::at.name__s
+#: 950.data.seed-values.sql:10606
+msgid "Sears List of Subject Headings"
+msgstr ""
+
+# id::crrf.name__3
+#: 950.data.seed-values.sql:293
+msgid "50_cent_per_day"
+msgstr ""
+
+# id::coust.label__credit.processor.authorizenet.testmode
+# id::coust.description__credit.processor.authorizenet.testmode
+#: 950.data.seed-values.sql:3699 950.data.seed-values.sql:3702
+msgid "AuthorizeNet test mode"
+msgstr ""
+
+# id::cust.label__circ.holds_behind_desk
+# id::cust.description__circ.holds_behind_desk
+#: 950.data.seed-values.sql:2547 950.data.seed-values.sql:2548
+msgid "Hold is behind Circ Desk"
+msgstr ""
+
+# id::ccvm.value__269
+#: 950.data.seed-values.sql:6263
+msgid "Malayalam"
+msgstr ""
+
+# id::ccvm.value__115
+#: 950.data.seed-values.sql:6109
+msgid "Efik"
+msgstr ""
+
+# id::ppl.description__357
+#: 950.data.seed-values.sql:1224
+msgid "Allow a user to create trigger event definitions"
+msgstr ""
+
+# id::coust.description__circ.checkout_auto_renew_age
+#: 950.data.seed-values.sql:2888
+msgid ""
+"When an item has been checked out for at least this amount of time, an "
+"attempt to check out the item to the patron that it is already checked out "
+"to will simply renew the circulation"
+msgstr ""
+
+# id::ppl.description__54
+#: 950.data.seed-values.sql:618
+msgid "User may create an entry in a copy statistical category"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.ident_value2.suggest
+#: 950.data.seed-values.sql:4479
+msgid "Suggest ident_value2 field on patron registration"
+msgstr ""
+
+# id::ccvm.value__230
+#: 950.data.seed-values.sql:6224
+msgid "Kongo"
+msgstr ""
+
+# id::ppl.description__536
+#: 950.data.seed-values.sql:1580
+msgid "Allows a user to overlay copy data in MARC import"
+msgstr ""
+
+# id::acsaf.name__21
+#: 950.data.seed-values.sql:10490
+msgid "See Also From Tracing -- Personal Name"
+msgstr ""
+
+# id::ccvm.value__338
+#: 950.data.seed-values.sql:6332
+msgid "Papiamento"
+msgstr ""
+
+# id::ccvm.value__297
+#: 950.data.seed-values.sql:6291
+msgid "Marwari"
+msgstr ""
+
+# id::ccvm.value__99
+#: 950.data.seed-values.sql:6093
+msgid "Dakota"
+msgstr ""
+
+# id::coust.description__circ.user_merge.delete_addresses
+#: 950.data.seed-values.sql:3612
+msgid "Delete address(es) of subordinate user(s) in a patron merge"
+msgstr ""
+
+# id::ppl.description__319
+#: 950.data.seed-values.sql:1148
+msgid "UPDATE_IMPORT_TRASH_FIELD"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.juvenile.show
+#: 950.data.seed-values.sql:4491
+msgid ""
+"The juvenile field will be shown on the patron registration screen. Showing "
+"a field makes it appear with required fields even when not required. If the "
+"field is required this setting is ignored."
+msgstr ""
+
+# id::coust.label__ui.patron.edit.phone.example
+#: 950.data.seed-values.sql:4695
+msgid "Example for phone fields on patron registration"
+msgstr ""
+
+# id::atr.description__ContainerCSV
+#: 950.data.seed-values.sql:10404
+msgid ""
+"Facilitates produce a CSV file representing a bookbag by introducing an "
+"\"items\" variable into the TT environment, sorted as dictated according to "
+"user params"
+msgstr ""
+
+# id::ccvm.value__178
+#: 950.data.seed-values.sql:6172
+msgid "Hindi"
+msgstr ""
+
+# id::ccvm.description__490
+#: 950.data.seed-values.sql:6486
+msgid "The item is intended for young people, approximate ages 9-13 years."
+msgstr ""
+
+# id::ath.description__aur.ordered
+#: 950.data.seed-values.sql:6976
+msgid "A patron acquisition request has been marked On-Order."
+msgstr ""
+
+# id::acsaf.name__48
+#: 950.data.seed-values.sql:10509
+msgid "Subdivision Linking Entry -- General Subdivision"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.other_phone.example
+#: 950.data.seed-values.sql:4527
+msgid ""
+"The Example for validation on the other_phone field in patron registration."
+msgstr ""
+
+# id::ppl.description__13
+#: 950.data.seed-values.sql:536
+msgid "Allow a user to view bill details"
+msgstr ""
+
+# id::coust.label__vandelay.item.barcode.prefix
+#: 950.data.seed-values.sql:13263
+msgid "Vandelay Default Barcode Prefix"
+msgstr ""
+
+# id::coust.description__circ.hold_go_home_interval
+#: 950.data.seed-values.sql:12771
+msgid ""
+"Time a copy can spend circulating away from its circ lib before returning "
+"there to fill a hold (if one exists there)"
+msgstr ""
+
+# id::ppl.description__434
+#: 950.data.seed-values.sql:1376
+msgid "CREATE_CN_BTYPE"
+msgstr ""
+
+# id::csc.name__10
+#: 950.data.seed-values.sql:10892
+msgid "PC Telecom"
+msgstr ""
+
+# id::acsaf.name__66
+#: 950.data.seed-values.sql:10520
+msgid "See From Tracing -- Geographic Name"
+msgstr ""
+
+# id::ccvm.value__145 id::ccvm.value__156
+#: 950.data.seed-values.sql:6139 950.data.seed-values.sql:6150
+msgid "Galician"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.alert_message.suggest
+#: 950.data.seed-values.sql:4191
+msgid "Suggest alert_message field on patron registration"
+msgstr ""
+
+# id::ppl.description__142
+#: 950.data.seed-values.sql:794
+msgid "Allow a user to share report his own folders"
+msgstr ""
+
+# id::ppl.description__317
+#: 950.data.seed-values.sql:1144
+msgid "UPDATE_IMPORT_ITEM"
+msgstr ""
+
+# id::ppl.description__311
+#: 950.data.seed-values.sql:1132
+msgid "CREATE_IMPORT_ITEM"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.alert_message.show
+#: 950.data.seed-values.sql:4185
+msgid ""
+"The alert_message field will be shown on the patron registration screen. "
+"Showing a field makes it appear with required fields even when not required."
+" If the field is required this setting is ignored."
+msgstr ""
+
+# id::coust.label__ui.patron.edit.aua.state.suggest
+#: 950.data.seed-values.sql:4659
+msgid "Suggest State field on patron registration"
+msgstr ""
+
+# id::crahp.name__2
+#: 950.data.seed-values.sql:299
+msgid "6month"
+msgstr ""
+
+# id::cgf.label__history.circ.retention_count
+#: 950.data.seed-values.sql:9170
+msgid "Historical Circulations per Copy"
+msgstr ""
+
+# id::cmf.label__20
+#: 950.data.seed-values.sql:158
+msgid "UPC"
+msgstr ""
+
+# id::ccvm.value__ang
+#: 950.data.seed-values.sql:6011
+msgid "English, Old (ca. 450-1100)"
+msgstr ""
+
+# id::ppl.description__492
+#: 950.data.seed-values.sql:1492
+msgid "Update monograph part definition."
+msgstr ""
+
+# id::pgt.name__10
+#: 950.data.seed-values.sql:1635
+msgid "Local Administrator"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.other_phone.suggest
+#: 950.data.seed-values.sql:4563
+msgid ""
+"The other_phone field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
+msgstr ""
+
+# id::coust.label__circ.transit.suppress_hold
+#: 950.data.seed-values.sql:3582
+msgid "Suppress Hold Transits Group"
+msgstr ""
+
+# id::ccvm.value__50
+#: 950.data.seed-values.sql:6044
+msgid "Bhojpuri"
+msgstr ""
+
+# id::coust.description__circ.staff_client.actor_on_checkout
+#: 950.data.seed-values.sql:3513
+msgid ""
+"When scanning barcodes into Checkout auto-detect if a new patron barcode is "
+"scanned and auto-load the new patron."
+msgstr ""
+
+# id::ppl.description__146
+#: 950.data.seed-values.sql:802
+msgid ""
+"Allow a staff member to define where another staff member has their "
+"permissions"
+msgstr ""
+
+# id::coust.label__circ.grace.extend
+#: 950.data.seed-values.sql:2970
+msgid "Auto-Extend Grace Periods"
+msgstr ""
+
+# id::ccvm.value__515
+#: 950.data.seed-values.sql:6515
+msgid "Novels"
+msgstr ""
+
+# id::ccvm.value__473
+#: 950.data.seed-values.sql:6467
+msgid "Wolof"
+msgstr ""
+
+# id::coust.description__cat.label.font.size
+#: 950.data.seed-values.sql:2780
+msgid "Set the default font size for spine and pocket labels"
+msgstr ""
+
+# id::coust.label__auth.opac_timeout id::coust.description__auth.opac_timeout
+#: 950.data.seed-values.sql:2669 950.data.seed-values.sql:2672
+msgid "OPAC Inactivity Timeout (in seconds)"
+msgstr ""
+
+# id::ppl.description__500
+#: 950.data.seed-values.sql:1508
+msgid "Create/Update/Delete Copy Monograph Part Map"
+msgstr ""
+
+# id::ppl.description__8 id::ppl.description__10 id::ppl.description__32
+#: 950.data.seed-values.sql:526 950.data.seed-values.sql:530
+#: 950.data.seed-values.sql:574
+msgid "* no longer applicable"
+msgstr ""
+
+# id::ppl.description__45
+#: 950.data.seed-values.sql:600
+msgid "Allow a user to create a container item for another user"
+msgstr ""
+
+# id::ccvm.value__511
+#: 950.data.seed-values.sql:6511
+msgid "Fiction (not further specified)"
+msgstr ""
+
+# id::ccvm.value__378
+#: 950.data.seed-values.sql:6372
+msgid "Shan"
+msgstr ""
+
+# id::coust.description__circ.user_merge.delete_cards
+#: 950.data.seed-values.sql:3621
+msgid "Delete barcode(s) of subordinate user(s) in a patron merge"
+msgstr ""
+
+# id::cust.description__ui.grid_columns.circ.hold_pull_list
+#: 950.data.seed-values.sql:10697
+msgid "Hold Pull List Saved Column Settings"
+msgstr ""
+
+# id::ccvm.value__506
+#: 950.data.seed-values.sql:6504
+msgid "Manuscript notated music"
+msgstr ""
+
+# id::coust.description__circ.item_checkout_history.max
+#: 950.data.seed-values.sql:3243
+msgid ""
+"This is the maximum number of previous circulations the staff client will "
+"display when investigating item details"
+msgstr ""
+
+# id::coust.label__circ.max_patron_claim_return_count
+#: 950.data.seed-values.sql:3294
+msgid "Max Patron Claims Returned Count"
+msgstr ""
+
+# id::ccvm.description__492
+#: 950.data.seed-values.sql:6488
+msgid "The item is intended for adults."
+msgstr ""
+
+# id::ccvm.value__320
+#: 950.data.seed-values.sql:6314
+msgid "Nyanja"
+msgstr ""
+
+# id::ccvm.value__65
+#: 950.data.seed-values.sql:6059
+msgid "Caddo"
+msgstr ""
+
+# id::ccvm.value__249
+#: 950.data.seed-values.sql:6243
+msgid "Lezgian"
+msgstr ""
+
+# id::ppl.description__435
+#: 950.data.seed-values.sql:1378
+msgid "CREATE_COPY_BTYPE"
+msgstr ""
+
+# id::ccvm.value__298
+#: 950.data.seed-values.sql:6292
+msgid "Mayan languages"
+msgstr ""
+
+# id::acqcr.label__2
+#: 950.data.seed-values.sql:9085
+msgid "Title has been postponed"
+msgstr ""
+
+# id::aurt.label__2
+#: 950.data.seed-values.sql:2584
+msgid "Journal/Magazine & Newspaper Articles"
+msgstr ""
+
+# id::i18n_l.name__es-US
+#: 950.data.seed-values.sql:353
+msgid "Spanish (US)"
+msgstr ""
+
+# id::ppl.description__322
+#: 950.data.seed-values.sql:1154
+msgid "UPDATE_ORG_UNIT_SETTING.cat.default_item_price"
+msgstr ""
+
+# id::ppl.description__405
+#: 950.data.seed-values.sql:1318
+msgid "ADMIN_CONFIG_REMOTE_ACCOUNT"
+msgstr ""
+
+# id::ccvm.value__ace
+#: 950.data.seed-values.sql:5997
+msgid "Achinese"
+msgstr ""
+
+# id::ppl.description__263
+#: 950.data.seed-values.sql:1036
+msgid "UPDATE_ITEM_TYPE"
+msgstr ""
+
+# id::cit.name__1
+#: 950.data.seed-values.sql:241
+msgid "Drivers License"
+msgstr ""
+
+# id::ppl.description__109
+#: 950.data.seed-values.sql:728
+msgid "Allow a user to cancel holds"
+msgstr ""
+
+# id::ppl.description__260
+#: 950.data.seed-values.sql:1030
+msgid "UPDATE_GROUP_PERM"
+msgstr ""
+
+# id::cza.label__8 id::cza.label__17 id::cza.label__26
+# id::vqbrad.description__13
+#: 950.data.seed-values.sql:386 950.data.seed-values.sql:407
+#: 950.data.seed-values.sql:426 950.data.seed-values.sql:4974
+msgid "Publication Date"
+msgstr ""
+
+# id::ppl.description__83
+#: 950.data.seed-values.sql:676
+msgid "Allow a user to create a new copy note"
+msgstr ""
+
+# id::ccvm.value__155 id::ccvm.value__201
+#: 950.data.seed-values.sql:6149 950.data.seed-values.sql:6195
+msgid "Irish"
+msgstr ""
+
+# id::ppl.description__532
+#: 950.data.seed-values.sql:1572
+msgid "Allows a user to view address alerts"
+msgstr ""
+
+# id::coust.label__opac.username_regex
+#: 950.data.seed-values.sql:3964
+msgid "Patron username format"
+msgstr ""
+
+# id::coust.label__serial.default_display_grouping
+#: 950.data.seed-values.sql:4841
+msgid ""
+"Default display grouping for serials distributions presented in the OPAC."
+msgstr ""
+
+# id::csc.name__32
+#: 950.data.seed-values.sql:11270
+msgid "AT&T Enterprise Paging"
+msgstr ""
+
+# id::ppl.description__303
+#: 950.data.seed-values.sql:1116
+msgid "UPDATE_AUTHORITY_RECORD_NOTE"
+msgstr ""
+
+# id::acsaf.name__25
+#: 950.data.seed-values.sql:10493
+msgid "See Also From Tracing -- Topical Term"
+msgstr ""
+
+# id::ath.description__aur.received
+#: 950.data.seed-values.sql:6986
+msgid "A patron acquisition request has been marked Received."
+msgstr ""
+
+# id::coust.label__org.patron_opt_default
+#: 950.data.seed-values.sql:3991
+msgid "Patron Opt-In Default"
+msgstr ""
+
+# id::coust.label__ui.cat.volume_copy_editor.horizontal
+#: 950.data.seed-values.sql:4047
+msgid "Horizontal layout for Volume/Copy Creator/Editor."
+msgstr ""
+
+# id::ccvm.value__538
+#: 950.data.seed-values.sql:6545
+msgid "VHS"
+msgstr ""
+
+# id::coust.label__print.custom_js_file
+#: 950.data.seed-values.sql:4009
+msgid "Printing: Custom Javascript File"
+msgstr ""
+
+# id::ppl.description__124
+#: 950.data.seed-values.sql:758
+msgid "Allow a user to add/remove users to/from the \"Cataloger\" group"
+msgstr ""
+
+# id::ppl.description__140
+#: 950.data.seed-values.sql:790
+msgid "Allow a user to place multiple holds on a single title"
+msgstr ""
+
+# id::ccvm.value__382
+#: 950.data.seed-values.sql:6376
+msgid "Siouan (Other)"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.ident_value.suggest
+#: 950.data.seed-values.sql:4461
+msgid "Suggest ident_value field on patron registration"
+msgstr ""
+
+# id::ppl.description__344
+#: 950.data.seed-values.sql:1198
+msgid ""
+"Allows a user to place a hold on an item that they already have checked out"
+msgstr ""
+
+# id::cust.description__ui.grid_columns.actor.user.event_log
+#: 950.data.seed-values.sql:10714
+msgid "User Event Log Saved Column Settings"
+msgstr ""
+
+# id::ppl.description__1
+#: 950.data.seed-values.sql:510
+msgid "EVERYTHING"
+msgstr ""
+
+# id::ccvm.value__70
+#: 950.data.seed-values.sql:6064
+msgid "Caucasian (Other)"
+msgstr ""
+
+# id::cgf.label__history.hold.retention_age_canceled_4
+#: 950.data.seed-values.sql:9201
+msgid "Historical Hold Retention Age - Canceled (Patron in person)"
+msgstr ""
+
+# id::ppl.description__436
+#: 950.data.seed-values.sql:1380
+msgid "CREATE_INVOICE"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.aua.state.require
+#: 950.data.seed-values.sql:4641
+msgid "Require State field on patron registration"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.day_phone.show
+#: 950.data.seed-values.sql:4311
+msgid ""
+"The day_phone field will be shown on the patron registration screen. Showing"
+" a field makes it appear with required fields even when not required. If the"
+" field is required this setting is ignored."
+msgstr ""
+
+# id::ppl.description__279
+#: 950.data.seed-values.sql:1068
+msgid "UPDATE_XML_TRANSFORM"
+msgstr ""
+
+# id::ccvm.value__513
+#: 950.data.seed-values.sql:6513
+msgid "Dramas"
+msgstr ""
+
+# id::cmf.label__23
+#: 950.data.seed-values.sql:164
+msgid "ISRC"
+msgstr ""
+
+# id::ppl.description__432
+#: 950.data.seed-values.sql:1372
+msgid "CREATE_BIB_SOURCE"
+msgstr ""
+
+# id::ppl.description__419
+#: 950.data.seed-values.sql:1346
+msgid "ADMIN_MAX_FINE_RULE"
+msgstr ""
+
+# id::csc.name__56
+#: 950.data.seed-values.sql:11678
+msgid "US Cellular"
+msgstr ""
+
+# id::ppl.description__63
+#: 950.data.seed-values.sql:636
+msgid "User may delete an entry from a patron statistical category"
+msgstr ""
+
+# id::ccvm.value__351
+#: 950.data.seed-values.sql:6345
+msgid "Quechua"
+msgstr ""
+
+# id::csp.label__26
+#: 950.data.seed-values.sql:39
+msgid "Alerting block on Hold and Renew"
+msgstr ""
+
+# id::ccvm.value__401 id::ccvm.value__406
+#: 950.data.seed-values.sql:6395 950.data.seed-values.sql:6400
+msgid "Sotho"
+msgstr ""
+
+# id::ccvm.value__469
+#: 950.data.seed-values.sql:6463
+msgid "Washo"
+msgstr ""
+
+# id::ppl.description__466
+#: 950.data.seed-values.sql:1440
+msgid "UPDATE_METABIB_SEARCH_ALIAS"
+msgstr ""
+
+# id::ppl.description__15
+#: 950.data.seed-values.sql:540
+msgid "Allow a user to edit a MARC record"
+msgstr ""
+
+# id::ppl.description__157
+#: 950.data.seed-values.sql:824
+msgid "Allow a user to view a fund allocation"
+msgstr ""
+
+# id::acsaf.name__29
+#: 950.data.seed-values.sql:10497
+msgid "See Also From Tracing -- Geographic Subdivision"
+msgstr ""
+
+# id::ppl.description__499
+#: 950.data.seed-values.sql:1506
+msgid "Delete Bibliographic Record Peer Type"
+msgstr ""
+
+# id::ppl.description__464
+#: 950.data.seed-values.sql:1436
+msgid "UPDATE_MERGE_PROFILE"
+msgstr ""
+
+# id::ccs.name__6
+#: 950.data.seed-values.sql:308
+msgid "In transit"
+msgstr ""
+
+# id::coust.label__opac.payment_history_age_limit
+#: 950.data.seed-values.sql:3946
+msgid "Payment History Age Limit"
+msgstr ""
+
+# id::coust.label__circ.holds.recall_fine_rules
+#: 950.data.seed-values.sql:3177
+msgid "An array of fine amount, fine interval, and maximum fine."
+msgstr ""
+
+# id::csc.name__26
+#: 950.data.seed-values.sql:11168
+msgid "Kajeet"
+msgstr ""
+
+# id::ath.description__biblio.format.record_entry.email
+#: 950.data.seed-values.sql:8922
+msgid "An email has been requested for one or more biblio record entries."
+msgstr ""
+
+# id::ccvm.value__443
+#: 950.data.seed-values.sql:6437
+msgid "Tsonga"
+msgstr ""
+
+# id::ppl.description__39
+#: 950.data.seed-values.sql:588
+msgid "Allow a user to create a new bill on a transaction"
+msgstr ""
+
+# id::ccvm.value__457
+#: 950.data.seed-values.sql:6451
+msgid "Umbundu"
+msgstr ""
+
+# id::coust.label__circ.holds.behind_desk_pickup_supported
+#: 950.data.seed-values.sql:3069
+msgid "Behind Desk Pickup Supported"
+msgstr ""
+
+# id::coust.label__cat.bib.alert_on_empty
+#: 950.data.seed-values.sql:2705
+msgid "Alert on empty bib records"
+msgstr ""
+
+# id::ccvm.value__210
+#: 950.data.seed-values.sql:6204
+msgid "Kachin"
+msgstr ""
+
+# id::crmf.name__4
+#: 950.data.seed-values.sql:279
+msgid "overdue_max"
+msgstr ""
+
+# id::coust.label__lib.info_url
+#: 950.data.seed-values.sql:3879
+msgid "Library information URL (such as \"http://example.com/about.html\")"
+msgstr ""
+
+# id::ccvm.value__518
+#: 950.data.seed-values.sql:6518
+msgid "Short stories"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.active.suggest
+#: 950.data.seed-values.sql:4173
+msgid "Suggest active field on patron registration"
+msgstr ""
+
+# id::at.name__b
+#: 950.data.seed-values.sql:10600
+msgid "LC subject headings for children's literature"
+msgstr ""
+
+# id::at.name__n
+#: 950.data.seed-values.sql:10604
+msgid "Not applicable"
+msgstr ""
+
+# id::coust.label__cat.label.font.weight
+#: 950.data.seed-values.sql:2786
+msgid "Spine and pocket label font weight"
+msgstr ""
+
+# id::coust.description__opac.unlimit_usernames
+#: 950.data.seed-values.sql:3958
+msgid ""
+"If enabled (and Lock Usernames is not set) patrons will be allowed to change"
+" their username when it does not look like a barcode. Otherwise username "
+"changing in the OPAC will only be allowed when the patron's username looks "
+"like a barcode."
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.other_phone.require
+#: 950.data.seed-values.sql:4545
+msgid ""
+"The other_phone field will be required on the patron registration screen."
+msgstr ""
+
+# id::ccvm.value__93
+#: 950.data.seed-values.sql:6087
+msgid "Creoles and Pidgins, Portuguese-based (Other)"
+msgstr ""
+
+# id::ccvm.value__438
+#: 950.data.seed-values.sql:6432
+msgid "Tongan"
+msgstr ""
+
+# id::ppl.description__246
+#: 950.data.seed-values.sql:1002
+msgid "DELETE_PERM"
+msgstr ""
+
+# id::coust.label__ui.unified_volume_copy_editor
+#: 950.data.seed-values.sql:4740
+msgid "Unified Volume/Item Creator/Editor"
+msgstr ""
+
+# id::ccvm.value__66
+#: 950.data.seed-values.sql:6060
+msgid "Central American Indian (Other)"
+msgstr ""
+
+# id::ppl.description__167
+#: 950.data.seed-values.sql:844
+msgid "Allow a user to view/credit/debit a fund"
+msgstr ""
+
+# id::coust.label__circ.longoverdue.use_last_activity_date_on_return
+#: 950.data.seed-values.sql:13086
+msgid "Long-Overdue Check-In Interval Uses Last Activity Date"
+msgstr ""
+
+# id::ccvm.value__528
+#: 950.data.seed-values.sql:6531
+msgid "Regular print reproduction"
+msgstr ""
+
+# id::at.name__d
+#: 950.data.seed-values.sql:10602
+msgid "National Agricultural Library subject authority file"
+msgstr ""
+
+# id::ppl.description__354
+#: 950.data.seed-values.sql:1218
+msgid "Allow a user to create trigger cleanup entries"
+msgstr ""
+
+# id::ppl.description__244
+#: 950.data.seed-values.sql:998
+msgid "DELETE_ORG_UNIT"
+msgstr ""
+
+# id::ath.description__circ.format.history.email
+#: 950.data.seed-values.sql:8502
+msgid "An email has been requested for a circ history."
+msgstr ""
+
+# id::csc.region__23
+#: 950.data.seed-values.sql:11111
+msgid "Midwest, USA"
+msgstr ""
+
+# id::coust.label__ui.patron.edit.au.day_phone.example
+#: 950.data.seed-values.sql:4281
+msgid "Example for day_phone field on patron registration"
+msgstr ""
+
+# id::ccvm.value__384
+#: 950.data.seed-values.sql:6378
+msgid "Slavic (Other)"
+msgstr ""
+
+# id::coust.description__cat.bib.keep_on_empty
+#: 950.data.seed-values.sql:2726
+msgid "Retain a bib record even when all attached copies are deleted"
+msgstr ""
+
+# id::coust.description__circ.restore_overdue_on_lost_return
+#: 950.data.seed-values.sql:3432
+msgid "Restore overdue fines on lost item return"
+msgstr ""
+
+# id::ccvm.value__432
+#: 950.data.seed-values.sql:6426
+msgid "Tigrinya"
+msgstr ""
+
+# id::ppl.description__529
+#: 950.data.seed-values.sql:1566
+msgid "Allows a user to create/retrieve/update/delete vandelay match sets"
+msgstr ""
+
+# id::csc.name__39
+#: 950.data.seed-values.sql:11389
+msgid "Cingular (Postpaid)"
+msgstr ""
+
+# id::ppl.description__5
+#: 950.data.seed-values.sql:520
+msgid "Allow a user to place a volume level hold"
+msgstr ""
+
+# id::cza.label__7 id::cza.label__16 id::cza.label__25
+# id::vqbrad.description__12
+#: 950.data.seed-values.sql:384 950.data.seed-values.sql:405
+#: 950.data.seed-values.sql:424 950.data.seed-values.sql:4973
+msgid "Publisher"
+msgstr ""
+
+# id::ccvm.value__197
+#: 950.data.seed-values.sql:6191
+msgid "Ingush"
+msgstr ""
+
+# id::ccvm.value__380
+#: 950.data.seed-values.sql:6374
+msgid "Sidamo"
+msgstr ""
+
+# id::ccvm.value__60
+#: 950.data.seed-values.sql:6054
+msgid "Batak"
+msgstr ""
+
+# id::ccvm.value__107
+#: 950.data.seed-values.sql:6101
+msgid "Divehi"
+msgstr ""
+
+# id::csc.name__58
+#: 950.data.seed-values.sql:11712
+msgid "Teleflip"
+msgstr ""
+
+# id::pgt.name__12
+#: 950.data.seed-values.sql:1641
+msgid "System Administrator"
+msgstr ""
+
+# id::coust.label__org.bounced_emails
+# id::coust.description__org.bounced_emails
+#: 950.data.seed-values.sql:3973 950.data.seed-values.sql:3976
+msgid "Sending email address for patron notices"
+msgstr ""
+
+# id::ppl.description__510
+#: 950.data.seed-values.sql:1528
+msgid ""
+"Allows a user to indicate that a patron is exempt from collections "
+"processing"
+msgstr ""
+
+# id::ccvm.value__177
+#: 950.data.seed-values.sql:6171
+msgid "Himachali"
+msgstr ""
+
+# id::coust.label__opac.org_unit_hiding.depth
+#: 950.data.seed-values.sql:3937
+msgid "Org Unit Hiding Depth"
+msgstr ""
+
+# id::atreact.description__GeneratePurchaseOrderJEDI
+#: 950.data.seed-values.sql:8192
+msgid "Creates purchase order JEDI (JSON EDI) for subsequent EDI processing"
+msgstr ""
+
+# id::ccvm.value__373
+#: 950.data.seed-values.sql:6367
+msgid "Croatian"
+msgstr ""
+
+# id::coust.description__credit.payments.allow
+#: 950.data.seed-values.sql:3657
+msgid ""
+"If enabled, patrons will be able to pay fines accrued at this location via "
+"credit card"
+msgstr ""
+
+# id::coust.description__circ.holds.max_org_unit_target_loops
+#: 950.data.seed-values.sql:3153
+msgid ""
+"When this value is set and greater than 0, the system will only attempt to "
+"find a copy at each possible branch the configured number of times"
+msgstr ""
+
+# id::ccvm.value__77
+#: 950.data.seed-values.sql:6071
+msgid "Chinese"
+msgstr ""
+
+# id::ppl.description__46
+#: 950.data.seed-values.sql:602
+msgid "Allow a user to add other users to permission groups"
+msgstr ""
+
+# id::ppl.description__9
+#: 950.data.seed-values.sql:528
+msgid "Allow a user to view another user's holds"
+msgstr ""
+
+# id::atval.description__Acq%3A%3AUserRequestReceived
+#: 950.data.seed-values.sql:7036
+msgid "Tests to see if the corresponding Line Item has a state of \"received\"."
+msgstr ""
+
+# id::ccvm.value__295
+#: 950.data.seed-values.sql:6289
+msgid "Munda (Other)"
+msgstr ""
+
+# id::ccvm.value__344
+#: 950.data.seed-values.sql:6338
+msgid "Pali"
+msgstr ""
+
+# id::ppl.description__114
+#: 950.data.seed-values.sql:738
+msgid "Allow a user to delete a non cataloged type"
+msgstr ""
+
+# id::ccvm.value__ara
+#: 950.data.seed-values.sql:6013
+msgid "Arabic"
+msgstr ""
+
+# id::pgt.name__3
+#: 950.data.seed-values.sql:1621
+msgid "Staff"
+msgstr ""
+
+# id::ppl.description__508
+#: 950.data.seed-values.sql:1524
+msgid "Allows a user to abort a transit on a copy with status of MISSING"
+msgstr ""
+
+# id::ppl.description__266
+#: 950.data.seed-values.sql:1042
+msgid "UPDATE_LASSO_MAP"
+msgstr ""
+
+# id::ppl.description__129
+#: 950.data.seed-values.sql:768
+msgid "Allow a user to add/remove users to/from the \"Supercat\" group"
+msgstr ""
+
+# id::acsaf.name__31
+#: 950.data.seed-values.sql:10499
+msgid "See Also From Tracing -- Form Subdivision"
+msgstr ""
+
+# id::ppl.description__238
+#: 950.data.seed-values.sql:986
+msgid "DELETE_LASSO_MAP"
+msgstr ""
+
+# id::ppl.description__330
+#: 950.data.seed-values.sql:1170
+msgid "UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft"
+msgstr ""
+
+# id::ppl.description__312
+#: 950.data.seed-values.sql:1134
+msgid "CREATE_IMPORT_ITEM_ATTR_DEF"
+msgstr ""
+
+# id::ccvm.value__136
+#: 950.data.seed-values.sql:6130
+msgid "French"
+msgstr ""
+
+# id::ccvm.value__127
+#: 950.data.seed-values.sql:6121
+msgid "Ewondo"
+msgstr ""
+
+# id::coust.description__ui.patron.edit.au.active.show
+#: 950.data.seed-values.sql:4167
+msgid ""
+"The active field will be shown on the patron registration screen. Showing a "
+"field makes it appear with required fields even when not required. If the "
+"field is required this setting is ignored."
+msgstr ""
+
+# id::acsaf.name__42
+#: 950.data.seed-values.sql:10504
+msgid "Established Heading Linking Entry -- Corporate Name"
+msgstr ""
+
+# id::ccvm.value__87
+#: 950.data.seed-values.sql:6081
+msgid "Chamic languages"
+msgstr ""
+
+# id::coust.description__circ.holds_fifo
+#: 950.data.seed-values.sql:3234
+msgid "Force holds to a more strict First-In, First-Out capture"
+msgstr ""
+
+# id::ccvm.value__57
+#: 950.data.seed-values.sql:6051
+msgid "Bosnian"
+msgstr ""
+
+# id::aout.opac_label__4
+#: 950.data.seed-values.sql:448
+msgid "This Specialized Library"
 msgstr ""
 
-# id::ccvm.value__541
-#: 950.data.seed-values.sql:6396
-msgid "Type C"
+# id::aou.name__1
+#: 950.data.seed-values.sql:455
+msgid "Example Consortium"
 msgstr ""
 
-# id::ccvm.value__177
-#: 950.data.seed-values.sql:6019
-msgid "Himachali"
+# id::ccvm.value__148
+#: 950.data.seed-values.sql:6142
+msgid "Gbaya"
 msgstr ""
 
-# id::cuat.label__19
-#: 950.data.seed-values.sql:11730
-msgid "Self-Check Proxy Login"
+# id::ccvm.value__218
+#: 950.data.seed-values.sql:6212
+msgid "Kazakh"
 msgstr ""
 
-# id::ccvm.value__534
-#: 950.data.seed-values.sql:6387
-msgid "Integrating resource"
+# id::ppl.description__332
+#: 950.data.seed-values.sql:1174
+msgid "UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft"
 msgstr ""
 
-# id::ccvm.value__484
-#: 950.data.seed-values.sql:6326
-msgid "Zande"
+# id::ppl.description__420
+#: 950.data.seed-values.sql:1348
+msgid "ADMIN_MERGE_PROFILE"
 msgstr ""
 
-# id::ccvm.value__139
-#: 950.data.seed-values.sql:5981
-msgid "French, Old (ca. 842-1400)"
+# id::ppl.description__431
+#: 950.data.seed-values.sql:1370
+msgid "CREATE_BIBLIO_FINGERPRINT"
 msgstr ""
 
-# id::ccvm.value__383
-#: 950.data.seed-values.sql:6225
-msgid "Sino-Tibetan (Other)"
+# id::ppl.description__164
+#: 950.data.seed-values.sql:838
+msgid "Allow a user to create/view/update/delete a funding source"
 msgstr ""
 
-# id::bpt.name__1
-#: 950.data.seed-values.sql:11
-msgid "Bound Volume"
+# id::aiit.name__SUB
+#: 950.data.seed-values.sql:9077
+msgid "Serial Subscription"
 msgstr ""
 
-# id::ccvm.value__125 id::ccvm.value__152
-#: 950.data.seed-values.sql:5967 950.data.seed-values.sql:5994
-msgid "Ethiopic"
+# id::ccvm.value__44
+#: 950.data.seed-values.sql:6038
+msgid "Baltic (Other)"
 msgstr ""
 
-# id::acsaf.name__4
-#: 950.data.seed-values.sql:10180
-msgid "Heading -- Uniform Title"
+# id::coust.description__ui.patron.edit.au.ident_value.suggest
+#: 950.data.seed-values.sql:4464
+msgid ""
+"The ident_value field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__387
-#: 950.data.seed-values.sql:6229
-msgid "Southern Sami"
+# id::ppl.description__494
+#: 950.data.seed-values.sql:1496
+msgid "Create/Update/Delete SVF Record Attribute Coded Value Map"
 msgstr ""
 
-# id::ccs.name__13
-#: 950.data.seed-values.sql:310
-msgid "Discard/Weed"
+# id::cust.label__opac.temporary_list_no_warn
+# id::cust.description__opac.temporary_list_no_warn
+#: 950.data.seed-values.sql:12207 950.data.seed-values.sql:12213
+msgid "Opt out of warning when adding a book to a temporary book list"
 msgstr ""
 
-# id::coust.label__config.settings_group.self
-#: 950.data.seed-values.sql:2508
-msgid "Self Check"
+# id::coust.label__config.settings_group.lib
+#: 950.data.seed-values.sql:2562
+msgid "Library"
 msgstr ""
 
-# id::ccvm.value__89
-#: 950.data.seed-values.sql:5931
-msgid "Cornish"
+# id::ppl.description__433
+#: 950.data.seed-values.sql:1374
+msgid "CREATE_BILLING_TYPE"
 msgstr ""
 
-# id::ccvm.value__63
-#: 950.data.seed-values.sql:5905
-msgid "Bulgarian"
+# id::coust.label__ui.general.hotkeyset
+#: 950.data.seed-values.sql:4119
+msgid "Default Hotkeyset"
 msgstr ""
 
-# id::ccvm.value__355
-#: 950.data.seed-values.sql:6197
-msgid "Romance (Other)"
+# id::ppl.description__501
+#: 950.data.seed-values.sql:1510
+msgid "Allows the Mark Item Missing Pieces action."
 msgstr ""
 
-# id::ccvm.value__479
-#: 950.data.seed-values.sql:6321
-msgid "Yoruba"
+# id::coust.label__circ.holds.expired_patron_block
+# id::coust.description__circ.holds.expired_patron_block
+#: 950.data.seed-values.sql:3123 950.data.seed-values.sql:3126
+msgid "Block hold request if hold recipient privileges have expired"
 msgstr ""
 
-# id::ccvm.value__arw
-#: 950.data.seed-values.sql:5868
-msgid "Arawak"
+# id::coust.label__circ.transit.suppress_non_hold
+#: 950.data.seed-values.sql:3591
+msgid "Suppress Non-Hold Transits Group"
 msgstr ""
 
-# id::cbt.name__2
-#: 950.data.seed-values.sql:474
-msgid "Long Overdue Collection Fee"
+# id::pgt.name__11 id::coust.label__config.settings_group.serial
+#: 950.data.seed-values.sql:1638 950.data.seed-values.sql:2573
+msgid "Serials"
 msgstr ""
 
-# id::ccvm.value__136
-#: 950.data.seed-values.sql:5978
-msgid "French"
+# id::ppl.description__66
+#: 950.data.seed-values.sql:642
+msgid "User may delete a copy statistical category entry map"
 msgstr ""
 
-# id::ccvm.value__437
-#: 950.data.seed-values.sql:6279
-msgid "Tonga (Nyasa)"
+# id::coust.label__circ.void_overdue_on_longoverdue
+# id::coust.description__circ.void_overdue_on_longoverdue
+#: 950.data.seed-values.sql:13055 950.data.seed-values.sql:13061
+msgid "Void Overdue Fines When Items are Marked Long-Overdue"
 msgstr ""
 
-# id::ccvm.value__48
-#: 950.data.seed-values.sql:5890
-msgid "Bengali"
+# id::ccvm.value__552
+#: 950.data.seed-values.sql:6559
+msgid "Blu-ray disc"
 msgstr ""
 
-# id::ccvm.value__551
-#: 950.data.seed-values.sql:6406
-msgid "Hi-8 mm."
+# id::ccvm.value__497
+#: 950.data.seed-values.sql:6495
+msgid "Manuscript language material"
 msgstr ""
 
-# id::ccvm.value__43
-#: 950.data.seed-values.sql:5885
-msgid "Basa"
+# id::cust.label__history.hold.retention_count
+# id::cust.description__history.hold.retention_count
+#: 950.data.seed-values.sql:9336 950.data.seed-values.sql:9337
+msgid "Historical Hold Retention Count"
 msgstr ""
 
-# id::ccvm.value__521
-#: 950.data.seed-values.sql:6369
-msgid "Speeches"
+# id::ccvm.value__232 id::ccvm.value__239
+#: 950.data.seed-values.sql:6226 950.data.seed-values.sql:6233
+msgid "Kusaie"
 msgstr ""
 
-# id::acsaf.name__47
-#: 950.data.seed-values.sql:10219
-msgid "Established Heading Linking Entry -- Genre/Form Term"
+# id::csc.name__30
+#: 950.data.seed-values.sql:11236
+msgid "BellSouth"
 msgstr ""
 
-# id::cnct.name__1
-#: 950.data.seed-values.sql:232
-msgid "Paperback Book"
+# id::csc.name__24
+#: 950.data.seed-values.sql:11134
+msgid "i-wireless (Sprint PCS)"
 msgstr ""
 
-# id::ccvm.value__301
-#: 950.data.seed-values.sql:6143
-msgid "Neapolitan Italian"
+# id::cuat.label__24
+#: 950.data.seed-values.sql:12029
+msgid "EZProxy Verification"
 msgstr ""
 
-# id::pgt.description__11
-#: 950.data.seed-values.sql:1620
-msgid "Serials (includes admin features)"
+# id::cmf.label__19 id::cza.label__6 id::cza.label__15 id::cza.label__24
+# id::vqbrad.description__6 id::czifm.label__4
+#: 950.data.seed-values.sql:156 950.data.seed-values.sql:382
+#: 950.data.seed-values.sql:403 950.data.seed-values.sql:422
+#: 950.data.seed-values.sql:4967 950.data.seed-values.sql:12904
+msgid "ISSN"
 msgstr ""
 
-# id::acsaf.name__23
-#: 950.data.seed-values.sql:10203
-msgid "See Also From Tracing -- Meeting Name"
+# id::coust.description__credit.processor.payflowpro.testmode
+#: 950.data.seed-values.sql:3756
+msgid ""
+"Do not really process transactions, but stay in test mode - uses pilot-"
+"payflowpro.paypal.com instead of the usual host"
 msgstr ""
 
-# id::ccvm.value__409
-#: 950.data.seed-values.sql:6251
-msgid "Sundanese"
+# id::acqit.name__PPR
+#: 950.data.seed-values.sql:9080
+msgid "Paper"
 msgstr ""
 
-# id::ccvm.value__alb
-#: 950.data.seed-values.sql:5855
-msgid "Albanian"
+# id::ppl.description__316
+#: 950.data.seed-values.sql:1142
+msgid "DELETE_IMPORT_TRASH_FIELD"
 msgstr ""
 
-# id::cubt.label__folks%3Ahold.view
-#: 950.data.seed-values.sql:4897
-msgid "View Holds"
+# id::ppl.description__521
+#: 950.data.seed-values.sql:1550
+msgid "Allows a user to create new bibs directly from an ACQ MARC file upload"
 msgstr ""
 
-# id::ccvm.value__329
-#: 950.data.seed-values.sql:6171
-msgid "Osage"
+# id::ccvm.value__102
+#: 950.data.seed-values.sql:6096
+msgid "Dayak"
 msgstr ""
 
-# id::vqbrad.description__10
-#: 950.data.seed-values.sql:4820
-msgid "TCN Source"
+# id::csc.name__4
+#: 950.data.seed-values.sql:10788
+msgid "Telus Mobility"
 msgstr ""
 
-# id::cmf.label__13
-#: 950.data.seed-values.sql:139
-msgid "Temporal Subject"
+# id::coust.label__credit.processor.paypal.password
+# id::coust.description__credit.processor.paypal.password
+#: 950.data.seed-values.sql:3789 950.data.seed-values.sql:3792
+msgid "PayPal password"
 msgstr ""
 
-# id::ccvm.value__416 id::ccvm.value__428
-#: 950.data.seed-values.sql:6258 950.data.seed-values.sql:6270
-msgid "Tagalog"
+# id::ppl.description__349
+#: 950.data.seed-values.sql:1208
+msgid ""
+"Allow a user to force renewal of an item that could fulfill a hold request"
 msgstr ""
 
-# id::ccvm.value__371
-#: 950.data.seed-values.sql:6213
-msgid "Serbian"
+# id::acsaf.name__22
+#: 950.data.seed-values.sql:10491
+msgid "See Also From Tracing -- Corporate Name"
 msgstr ""
 
-# id::acsaf.name__71
-#: 950.data.seed-values.sql:10236
-msgid "See Also Tracing -- Form Subdivision"
+# id::coust.label__vandelay.item.call_number.auto
+#: 950.data.seed-values.sql:13276
+msgid "Vandelay Generate Default Call Numbers"
 msgstr ""
 
-# id::ccvm.value__ast
-#: 950.data.seed-values.sql:5870
-msgid "Bable"
+# id::ccvm.value__517
+#: 950.data.seed-values.sql:6517
+msgid "Letters"
 msgstr ""
 
-# id::ccvm.value__533
-#: 950.data.seed-values.sql:6386
-msgid "Subunit"
+# id::coust.description__booking.allow_email_notify
+#: 950.data.seed-values.sql:2699
+msgid "Permit email notification when a reservation is ready for pickup."
 msgstr ""
 
-# id::ccvm.value__203
-#: 950.data.seed-values.sql:6045
-msgid "Italian"
+# id::ccvm.value__afa
+#: 950.data.seed-values.sql:6001
+msgid "Afroasiatic (Other)"
 msgstr ""
 
-# id::cuat.label__22
-#: 950.data.seed-values.sql:11733
-msgid "LibraryElf Login"
+# id::ccvm.value__225
+#: 950.data.seed-values.sql:6219
+msgid "Kinyarwanda"
 msgstr ""
 
-# id::ccvm.value__74
-#: 950.data.seed-values.sql:5916
-msgid "Chibcha"
+# id::ccs.name__12
+#: 950.data.seed-values.sql:314
+msgid "Reserves"
 msgstr ""
 
-# id::aou.name__8
-#: 950.data.seed-values.sql:460
-msgid "Example Sub-library 1"
+# id::coust.label__ui.patron.edit.au.claims_returned_count.suggest
+#: 950.data.seed-values.sql:4263
+msgid "Suggest claims_returned_count field on patron registration"
 msgstr ""
 
-# id::ccvm.value__303
-#: 950.data.seed-values.sql:6145
-msgid "Navajo"
+# id::ppl.description__333
+#: 950.data.seed-values.sql:1176
+msgid "UPDATE_ORG_UNIT_SETTING.opac.barcode_regex"
 msgstr ""
 
-# id::ccvm.value__289
-#: 950.data.seed-values.sql:6131
-msgid "Manobo languages"
+# id::coust.description__circ.longoverdue_immediately_available
+#: 950.data.seed-values.sql:12969
+msgid "Long-overdue items are usable on checkin instead of going \"home\" first"
 msgstr ""
 
-# id::ccvm.value__73
-#: 950.data.seed-values.sql:5915
-msgid "Chamorro"
+# id::coust.label__ui.patron.edit.default_suggested
+#: 950.data.seed-values.sql:4686
+msgid "Default showing suggested patron registration fields"
 msgstr ""
 
-# id::ccvm.value__256
-#: 950.data.seed-values.sql:6098
-msgid "Luba-Lulua"
+# id::coust.description__
+#: 950.data.seed-values.sql:4875
+msgid ""
+"The characters in this string, in order, will be used as shortcut links for "
+"quick paging in the OPAC browse interface. Any sequence surrounded by "
+"asterisks will be taken as a whole label, not split into individual labels "
+"at the character level, but only the first character will serve as the basis"
+" of the search."
 msgstr ""
 
-# id::pgt.name__4
-#: 950.data.seed-values.sql:1604
-msgid "Catalogers"
+# id::ccvm.value__383
+#: 950.data.seed-values.sql:6377
+msgid "Sino-Tibetan (Other)"
 msgstr ""
 
-# id::ccvm.value__466
-#: 950.data.seed-values.sql:6308
-msgid "Wakashan languages"
+# id::ppl.description__491
+#: 950.data.seed-values.sql:1490
+msgid "Create monograph part definition."
 msgstr ""
 
-# id::ccvm.value__amh
-#: 950.data.seed-values.sql:5858
-msgid "Amharic"
+# id::ccvm.value__423
+#: 950.data.seed-values.sql:6417
+msgid "Telugu"
 msgstr ""
 
-# id::crcd.name__11 id::crmf.name__1 id::crrf.name__1
-#: 950.data.seed-values.sql:264 950.data.seed-values.sql:268
-#: 950.data.seed-values.sql:284
-msgid "default"
+# id::ppl.description__474
+#: 950.data.seed-values.sql:1456
+msgid "VIEW_CLAIM"
 msgstr ""
 
-# id::cbt.name__1
-#: 950.data.seed-values.sql:472
-msgid "Overdue Materials"
+# id::coust.description__acq.upload.default.vandelay.merge_profile
+#: 950.data.seed-values.sql:12577
+msgid "Default merge profile to use during ACQ file upload"
 msgstr ""
 
-# id::ccvm.value__419 id::ccvm.value__427
-#: 950.data.seed-values.sql:6261 950.data.seed-values.sql:6269
-msgid "Tajik"
+# id::coust.label__opac.pending_user_expire_interval
+#: 950.data.seed-values.sql:13212
+msgid "Patron Self-Reg. Expire Interval"
 msgstr ""
 
-# id::ccvm.value__353
-#: 950.data.seed-values.sql:6195
-msgid "Rapanui"
+# id::csc.name__23
+#: 950.data.seed-values.sql:11117
+msgid "i wireless (T-Mobile)"
 msgstr ""
 
-# id::ccvm.value__459
-#: 950.data.seed-values.sql:6301
-msgid "Urdu"
+# id::ppl.description__372
+#: 950.data.seed-values.sql:1254
+msgid "Allow a user to create trigger validators"
 msgstr ""
 
-# id::vie.description__import.item.invalid.circ_lib
-#: 950.data.seed-values.sql:9494
-msgid "Invalid value for \"circ_lib\""
+# id::ppl.description__165
+#: 950.data.seed-values.sql:840
+msgid "(Deprecated) Allow a user to create/view/update/delete a fund"
 msgstr ""
 
-# id::at.name__a
-#: 950.data.seed-values.sql:10306
-msgid "Library of Congress Subject Headings"
+# id::coust.description__ui.patron.edit.ac.barcode.regex
+#: 950.data.seed-values.sql:4275
+msgid ""
+"The Regular Expression for validation on barcodes in patron registration."
 msgstr ""
 
-# id::ccvm.value__254
-#: 950.data.seed-values.sql:6096
-msgid "Lozi"
+# id::ppl.description__190
+#: 950.data.seed-values.sql:890
+msgid ""
+"Allows a user to import a bib record from the acq staging area (on-order "
+"record) into the ILS bib data set"
 msgstr ""
 
-# id::acsaf.name__30
-#: 950.data.seed-values.sql:10209
-msgid "See Also From Tracing -- Chronological Subdivision"
+# id::coust.label__ui.patron.edit.au.barred.show
+#: 950.data.seed-values.sql:4218
+msgid "Show barred field on patron registration"
 msgstr ""
 
-# id::ccvm.value__161
-#: 950.data.seed-values.sql:6003
-msgid "Gorontalo"
+# id::ppl.description__388
+#: 950.data.seed-values.sql:1284
+msgid "Allow a user to place holds on serials issuances"
 msgstr ""
 
-# id::acsaf.name__2
-#: 950.data.seed-values.sql:10189
-msgid "Heading -- Corporate Name"
+# id::aou.name__2
+#: 950.data.seed-values.sql:457
+msgid "Example System 1"
 msgstr ""
 
-# id::ccvm.value__76
-#: 950.data.seed-values.sql:5918
-msgid "Chagatai"
+# id::aou.name__3
+#: 950.data.seed-values.sql:459
+msgid "Example System 2"
 msgstr ""
 
-# id::crcd.name__9
-#: 950.data.seed-values.sql:260
-msgid "28_days_0_renew"
+# id::ppl.description__283
+#: 950.data.seed-values.sql:1076
+msgid "CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF"
 msgstr ""
 
-# id::ccs.name__11 id::coust.label__config.settings_group.cat
-#: 950.data.seed-values.sql:308 950.data.seed-values.sql:2505
-msgid "Cataloging"
+# id::ccvm.value__535
+#: 950.data.seed-values.sql:6540
+msgid "Monograph/Item"
 msgstr ""
 
-# id::crcd.name__4
-#: 950.data.seed-values.sql:250
-msgid "3_days_1_renew"
+# id::ccvm.value__350
+#: 950.data.seed-values.sql:6344
+msgid "Pushto"
 msgstr ""
 
-# id::ccvm.value__art
-#: 950.data.seed-values.sql:5867
-msgid "Artificial (Other)"
+# id::coust.label__circ.selfcheck.auto_override_checkout_events
+#: 950.data.seed-values.sql:3456
+msgid "Selfcheck override events list"
 msgstr ""
 
-# id::ccvm.value__310
-#: 950.data.seed-values.sql:6152
-msgid "Nias"
+# id::ccvm.value__524
+#: 950.data.seed-values.sql:6527
+msgid "Microfiche"
 msgstr ""
 
-# id::ccvm.value__arn
-#: 950.data.seed-values.sql:5865
-msgid "Mapuche"
+# id::coust.label__credit.processor.authorizenet.enabled
+# id::coust.description__credit.processor.authorizenet.enabled
+#: 950.data.seed-values.sql:3663 950.data.seed-values.sql:3666
+msgid "Enable AuthorizeNet payments"
 msgstr ""
 
-# id::vqbrad.description__9
-#: 950.data.seed-values.sql:4819
-msgid "TCN Value"
+# id::ccvm.value__243
+#: 950.data.seed-values.sql:6237
+msgid "Lamba"
 msgstr ""
 
-# id::csp.label__4
-#: 950.data.seed-values.sql:29
-msgid "Patron exceeds pre-collections warning fine threshold"
+# id::coust.label__credit.processor.authorizenet.server
+#: 950.data.seed-values.sql:3690
+msgid "AuthorizeNet server"
 msgstr ""
 
-# id::ccvm.value__86
-#: 950.data.seed-values.sql:5928
-msgid "Cheyenne"
+# id::ccvm.value__280
+#: 950.data.seed-values.sql:6274
+msgid "Micmac"
 msgstr ""
 
-# id::bpt.name__2
-#: 950.data.seed-values.sql:12
-msgid "Bilingual"
+# id::coust.label__url_verify.url_verification_max_wait
+#: 950.data.seed-values.sql:12414
+msgid "Maximum wait time (in seconds) for a URL to lookup"
 msgstr ""
 
-# id::ccvm.value__135
-#: 950.data.seed-values.sql:5977
-msgid "Fon"
+# id::ccvm.value__73
+#: 950.data.seed-values.sql:6067
+msgid "Chamorro"
 msgstr ""
 
-# id::ccvm.value__awa
-#: 950.data.seed-values.sql:5875
-msgid "Awadhi"
+# id::ccvm.value__405
+#: 950.data.seed-values.sql:6399
+msgid "Nilo-Saharan (Other)"
 msgstr ""
 
-# id::ccvm.value__94
-#: 950.data.seed-values.sql:5936
-msgid "Cree"
+# id::coust.description__ui.hide_copy_editor_fields
+#: 950.data.seed-values.sql:12146
+msgid ""
+"This setting may be best maintained with the dedicated configuration "
+"interface within the Item Attribute Editor.  However, here it shows up as "
+"comma separated list of field identifiers to hide."
 msgstr ""
 
-# id::ccvm.value__332
-#: 950.data.seed-values.sql:6174
-msgid "Otomian languages"
+# id::cmc.label__subject
+#: 950.data.seed-values.sql:101
+msgid "Subject"
 msgstr ""
 
-# id::ccvm.value__321
-#: 950.data.seed-values.sql:6163
-msgid "Nyamwezi"
+# id::ppl.description__213
+#: 950.data.seed-values.sql:936
+msgid "CREATE_LANGUAGE"
 msgstr ""
 
-# id::ccvm.value__195
-#: 950.data.seed-values.sql:6037
-msgid "Indonesian"
+# id::ccvm.value__365
+#: 950.data.seed-values.sql:6359
+msgid "Salishan languages"
 msgstr ""
 
-# id::cst.value__1
-#: 950.data.seed-values.sql:18
-msgid "Good"
+# id::ppl.description__396
+#: 950.data.seed-values.sql:1300
+msgid "ADMIN_ACQ_FUND_ALLOCATION_PERCENT"
 msgstr ""
 
-# id::ccvm.value__104
-#: 950.data.seed-values.sql:5946
-msgid "Slave"
+# id::ppl.description__286
+#: 950.data.seed-values.sql:1082
+msgid "CREATE_BIB_IMPORT_FIELD_DEF"
 msgstr ""
 
-# id::ccvm.value__454
-#: 950.data.seed-values.sql:6296
-msgid "Ugaritic"
+# id::acsaf.name__6
+#: 950.data.seed-values.sql:10475
+msgid "Heading -- Geographic Name"
 msgstr ""
 
-# id::ccvm.value__173
-#: 950.data.seed-values.sql:6015
-msgid "Hawaiian"
+# id::ccvm.value__547
+#: 950.data.seed-values.sql:6554
+msgid "Super-VHS"
 msgstr ""
 
-# id::ccvm.value__263
-#: 950.data.seed-values.sql:6105
-msgid "Macedonian"
+# id::ppl.description__216
+#: 950.data.seed-values.sql:942
+msgid "CREATE_LIT_FORM"
 msgstr ""
 
-# id::ccvm.value__380
-#: 950.data.seed-values.sql:6222
-msgid "Sidamo"
+# id::coust.description__circ.selfcheck.patron_login_timeout
+#: 950.data.seed-values.sql:3477
+msgid ""
+"Number of seconds of inactivity before the patron is logged out of the "
+"selfcheck interface"
 msgstr ""
 
-# id::ccvm.value__349
-#: 950.data.seed-values.sql:6191
-msgid "Provençal (to 1500)"
+# id::ppl.description__18
+#: 950.data.seed-values.sql:546
+msgid "Allow a user to create a volume"
 msgstr ""
 
-# id::cubt.label__folks%3Apub_book_bags.view
-#: 950.data.seed-values.sql:4892
-msgid "List Published Book Bags"
+# id::acqct.label__USD
+#: 950.data.seed-values.sql:9065
+msgid "US Dollars"
 msgstr ""
 
-# id::ccvm.value__381 id::ccvm.value__396
-#: 950.data.seed-values.sql:6223 950.data.seed-values.sql:6238
-msgid "Sinhalese"
+# id::coust.description__ui.patron.edit.aua.state.require
+#: 950.data.seed-values.sql:4644
+msgid "The State field will be required on the patron registration screen."
 msgstr ""
 
-# id::ccvm.value__ada
-#: 950.data.seed-values.sql:5847
-msgid "Adangme"
+# id::ccpbt.label__misc id::ccnbt.label__misc id::cbrebt.label__misc
+# id::cubt.label__misc
+#: 950.data.seed-values.sql:5031 950.data.seed-values.sql:5034
+#: 950.data.seed-values.sql:5035 950.data.seed-values.sql:5042
+msgid "Miscellaneous"
 msgstr ""
 
-# id::ccvm.value__429
-#: 950.data.seed-values.sql:6271
-msgid "Thai"
+# id::coust.description__cat.bib.alert_on_empty
+#: 950.data.seed-values.sql:2708
+msgid "Alert staff when the last copy for a record is being deleted"
 msgstr ""
 
-# id::ccvm.value__afr
-#: 950.data.seed-values.sql:5851
-msgid "Afrikaans"
+# id::csc.name__15
+#: 950.data.seed-values.sql:10979
+msgid "Globalstar"
 msgstr ""
 
-# id::acsaf.name__41
-#: 950.data.seed-values.sql:10214
-msgid "Established Heading Linking Entry -- Personal Name"
+# id::cmf.label__24
+#: 950.data.seed-values.sql:166
+msgid "SICI"
 msgstr ""
 
-# id::ccvm.value__496
-#: 950.data.seed-values.sql:6342
-msgid "Language material"
+# id::ccvm.value__242
+#: 950.data.seed-values.sql:6236
+msgid "Lahnda"
 msgstr ""
 
-# id::vqbrad.description__4
-#: 950.data.seed-values.sql:4814
-msgid "Pagination"
+# id::ccvm.value__408
+#: 950.data.seed-values.sql:6402
+msgid "Sukuma"
 msgstr ""
 
-# id::cbt.name__7
-#: 950.data.seed-values.sql:484
-msgid "Damaged Item"
+# id::ahrcc.label__6
+#: 950.data.seed-values.sql:2475
+msgid "Patron via OPAC"
 msgstr ""
 
-# id::ccvm.value__460
-#: 950.data.seed-values.sql:6302
-msgid "Uzbek"
+# id::coust.label__circ.restore_overdue_on_longoverdue_return
+# id::coust.description__circ.restore_overdue_on_longoverdue_return
+#: 950.data.seed-values.sql:13010 950.data.seed-values.sql:13016
+msgid "Restore Overdues on Long-Overdue Item Return"
 msgstr ""
 
-# id::ccvm.value__235
-#: 950.data.seed-values.sql:6077
-msgid "Kurukh"
+# id::coust.label__circ.holds.default_estimated_wait_interval
+#: 950.data.seed-values.sql:3105
+msgid "Default Estimated Wait"
 msgstr ""
 
-# id::ccvm.value__200
-#: 950.data.seed-values.sql:6042
-msgid "Iranian (Other)"
+# id::ppl.description__544
+#: 950.data.seed-values.sql:1596
+msgid "Allows a user to configure URL verification org unit settings"
 msgstr ""
 
-# id::ccvm.value__482
-#: 950.data.seed-values.sql:6324
-msgid "Zenaga"
+# id::ppl.description__341
+#: 950.data.seed-values.sql:1192
+msgid "UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty"
 msgstr ""
 
-# id::ccvm.value__62
-#: 950.data.seed-values.sql:5904
-msgid "Bugis"
+# id::coust.description__ui.admin.patron_log.max_entries
+#: 950.data.seed-values.sql:4032
+msgid ""
+"Maximum entries for \"Most Recently Affected Patrons...\" section of the "
+"Work Log interface."
 msgstr ""
 
-# id::ccs.name__7
-#: 950.data.seed-values.sql:304
-msgid "Reshelving"
+# id::csc.name__18
+#: 950.data.seed-values.sql:11032
+msgid "C Beyond"
 msgstr ""
 
-# id::ccvm.value__64
-#: 950.data.seed-values.sql:5906
-msgid "Burmese"
+# id::ppl.description__502
+#: 950.data.seed-values.sql:1512
+msgid "Update Bibliographic Record Peer Type"
 msgstr ""
 
-# id::ccvm.value__ale
-#: 950.data.seed-values.sql:5856
-msgid "Aleut"
+# id::ppl.description__74
+#: 950.data.seed-values.sql:658
+msgid "Allow a user to create a transit_copy object for transiting a copy"
 msgstr ""
 
-# id::bpt.name__5
-#: 950.data.seed-values.sql:15
-msgid "e-Reader Preload"
+# id::ppl.description__294
+#: 950.data.seed-values.sql:1098
+msgid "DELETE_AUTHORITY_RECORD_NOTE"
 msgstr ""
 
-# id::cmc.label__identifier id::vqarad.description__1
-#: 950.data.seed-values.sql:95 950.data.seed-values.sql:4875
-msgid "Identifier"
+# id::ccvm.value__162
+#: 950.data.seed-values.sql:6156
+msgid "Gothic"
 msgstr ""
 
-# id::cuat.label__11
-#: 950.data.seed-values.sql:11720
-msgid "Verification via gateway-v1"
+# id::csc.name__52
+#: 950.data.seed-values.sql:11610
+msgid "Sprint (PCS)"
 msgstr ""
 
-# id::ccvm.value__251
-#: 950.data.seed-values.sql:6093
-msgid "Lingala"
+# id::coust.description__acq.upload.default.vandelay.merge_on_best
+#: 950.data.seed-values.sql:12628
+msgid "Merge records on best match by default during ACQ file upload"
 msgstr ""
 
-# id::cbt.name__6
-#: 950.data.seed-values.sql:482
-msgid "System: Rental"
+# id::csc.name__42
+#: 950.data.seed-values.sql:11440
+msgid "Cellcom"
 msgstr ""
 
-# id::cuat.label__8
-#: 950.data.seed-values.sql:11716
-msgid "Login via Apache module"
+# id::ppl.description__353
+#: 950.data.seed-values.sql:1216
+msgid "Allow a user to create, delete, and update trigger cleanup entries"
 msgstr ""
 
-# id::ccs.name__1
-#: 950.data.seed-values.sql:298
-msgid "Checked out"
+# id::ccvm.value__68
+#: 950.data.seed-values.sql:6062
+msgid "Carib"
 msgstr ""
 
-# id::ccvm.value__260
-#: 950.data.seed-values.sql:6102
-msgid "Lunda"
+# id::csc.name__63
+#: 950.data.seed-values.sql:11797
+msgid "TracFone"
 msgstr ""
 
-# id::ccvm.value__293
-#: 950.data.seed-values.sql:6135
-msgid "Mooré"
+# id::ppl.description__520
+#: 950.data.seed-values.sql:1548
+msgid ""
+"Allow a user to override warnings about deleting copies in problematic "
+"situations."
 msgstr ""
 
-# id::ccvm.value__arg
-#: 950.data.seed-values.sql:5863
-msgid "Aragonese Spanish"
+# id::ppl.code__550
+#: 950.data.seed-values.sql:1609
+msgid "Allows the user to mark a circulation as long-overdue"
 msgstr ""
 
-# id::ccvm.value__489
-#: 950.data.seed-values.sql:6333
-msgid "Primary"
+# id::csc.name__28
+#: 950.data.seed-values.sql:11202
+msgid "Esendex"
 msgstr ""
 
-# id::ccvm.value__282
-#: 950.data.seed-values.sql:6124
-msgid "Miscellaneous languages"
+# id::coust.description__circ.void_lost_proc_fee_on_checkin
+#: 950.data.seed-values.sql:3639
+msgid "Void processing fee when lost item returned"
 msgstr ""
 
-# id::ccvm.value__259
-#: 950.data.seed-values.sql:6101
-msgid "Luiseño"
+# id::cgf.label__opac.browse.warnable_regexp_per_class
+#: 950.data.seed-values.sql:9286
+msgid ""
+"Map of search classes to regular expressions to warn user about leading "
+"articles."
 msgstr ""
 
-# id::ccvm.value__415
-#: 950.data.seed-values.sql:6257
-msgid "Syriac"
+# id::coust.label__config.settings_group.program
+#: 950.data.seed-values.sql:2569
+msgid "Program"
 msgstr ""
 
-# id::ccvm.value__214
-#: 950.data.seed-values.sql:6056
-msgid "Karen"
+# id::coust.description__credit.processor.payflowpro.vendor
+#: 950.data.seed-values.sql:3765
+msgid "Often the same thing as the login"
 msgstr ""
 
-# id::ccvm.value__164
-#: 950.data.seed-values.sql:6006
-msgid "Greek, Ancient (to 1453)"
+# id::csc.region__1
+#: 950.data.seed-values.sql:10729
+msgid "Local"
 msgstr ""
 
-# id::ccvm.value__142
-#: 950.data.seed-values.sql:5984
-msgid "Friulian"
+# id::acsaf.name__24
+#: 950.data.seed-values.sql:10459
+msgid "See Also From Tracing -- Uniform Title"
 msgstr ""
 
-# id::ccvm.value__323
-#: 950.data.seed-values.sql:6165
-msgid "Nyoro"
+# id::ccvm.value__271
+#: 950.data.seed-values.sql:6265
+msgid "Maori"
 msgstr ""
 
-# id::cbrebt.label__template_merge
-#: 950.data.seed-values.sql:4887
-msgid "Template Merge Container"
+# id::coust.label__acq.fund.balance_limit.warn
+#: 950.data.seed-values.sql:2633
+msgid "Fund Spending Limit for Warning"
 msgstr ""
 
-# id::ccvm.value__59
-#: 950.data.seed-values.sql:5901
-msgid "Breton"
+# id::ccvm.value__138
+#: 950.data.seed-values.sql:6132
+msgid "French, Middle (ca. 1400-1600)"
 msgstr ""
 
-# id::acsaf.name__26
-#: 950.data.seed-values.sql:10205
-msgid "See Also From Tracing -- Geographic Name"
+# id::ccvm.value__bai
+#: 950.data.seed-values.sql:6031
+msgid "Bamileke languages"
 msgstr ""
 
-# id::ccvm.value__144 id::ccvm.value__154
-#: 950.data.seed-values.sql:5986 950.data.seed-values.sql:5996
-msgid "Scottish Gaelic"
+# id::cuat.label__18
+#: 950.data.seed-values.sql:12022
+msgid "Staff Client Login"
 msgstr ""
 
-# id::ccvm.value__448
-#: 950.data.seed-values.sql:6290
-msgid "Turkish"
+# id::ccvm.value__548
+#: 950.data.seed-values.sql:6555
+msgid "M-II"
 msgstr ""
 
-# id::ccvm.value__554
-#: 950.data.seed-values.sql:6409
-msgid "DVD"
+# id::ccvm.value__492
+#: 950.data.seed-values.sql:6488
+msgid "Adult"
 msgstr ""
 
-# id::ccs.name__10
-#: 950.data.seed-values.sql:307
-msgid "ILL"
+# id::ppl.description__38
+#: 950.data.seed-values.sql:586
+msgid "Allow a user may view another user's transactions"
 msgstr ""
 
-# id::ccvm.value__103
-#: 950.data.seed-values.sql:5945
-msgid "Delaware"
+# id::vie.description__import.item.invalid.circ_modifier
+#: 950.data.seed-values.sql:9753
+msgid "Import failed due to invalid circulation modifier"
 msgstr ""
 
-# id::ccvm.value__468
-#: 950.data.seed-values.sql:6310
-msgid "Waray"
+# id::ccvm.value__488
+#: 950.data.seed-values.sql:6484
+msgid "Preschool"
 msgstr ""
 
-# id::aout.name__1
-#: 950.data.seed-values.sql:429
-msgid "Consortium"
+# id::ccvm.value__418
+#: 950.data.seed-values.sql:6412
+msgid "Tai (Other)"
 msgstr ""
 
-# id::csp.label__25
-#: 950.data.seed-values.sql:36
-msgid "Alerting block on Circ, Hold and Renew"
+# id::csc.name__25
+#: 950.data.seed-values.sql:11151
+msgid "MetroPCS"
 msgstr ""
 
-# id::ccvm.value__397
-#: 950.data.seed-values.sql:6239
-msgid "Soninke"
+# id::ccvm.value__314
+#: 950.data.seed-values.sql:6308
+msgid "Norwegian (BokmÃ¥l)"
 msgstr ""
 
-# id::acsaf.name__25
-#: 950.data.seed-values.sql:10204
-msgid "See Also From Tracing -- Topical Term"
+# id::coust.label__circ.charge_on_damaged
+# id::coust.description__circ.charge_on_damaged
+#: 950.data.seed-values.sql:2876 950.data.seed-values.sql:2879
+msgid "Charge item price when marked damaged"
 msgstr ""
 
-# id::ccvm.value__481
-#: 950.data.seed-values.sql:6323
-msgid "Zapotec"
+# id::ccvm.value__bal
+#: 950.data.seed-values.sql:6033
+msgid "Baluchi"
 msgstr ""
 
-# id::ccvm.value__180
-#: 950.data.seed-values.sql:6022
-msgid "Hmong"
+# id::ccvm.value__330
+#: 950.data.seed-values.sql:6324
+msgid "Ossetic"
 msgstr ""
 
-# id::ccvm.value__556
-#: 950.data.seed-values.sql:6411
-msgid "Unspecified"
+# id::cust.label__staff_client.catalog.record_view.default
+# id::cust.description__staff_client.catalog.record_view.default
+#: 950.data.seed-values.sql:2535 950.data.seed-values.sql:2536
+msgid "Default Record View"
 msgstr ""
 
-# id::acs.name__1
-#: 950.data.seed-values.sql:10174
-msgid "LoC"
+# id::ppl.description__526
+#: 950.data.seed-values.sql:1560
+msgid "User may reset a default entry in a patron statistical category"
 msgstr ""
 
-# id::ccvm.value__67 id::ccvm.value__222
-#: 950.data.seed-values.sql:5909 950.data.seed-values.sql:6064
-msgid "Khmer"
+# id::ccvm.value__310
+#: 950.data.seed-values.sql:6304
+msgid "Nias"
 msgstr ""
 
-# id::ccvm.value__85
-#: 950.data.seed-values.sql:5927
-msgid "Chuvash"
+# id::ccvm.value__172
+#: 950.data.seed-values.sql:6166
+msgid "Hausa"
 msgstr ""
 
-# id::ccvm.value__196
-#: 950.data.seed-values.sql:6038
-msgid "Indo-European (Other)"
+# id::ccvm.value__240
+#: 950.data.seed-values.sql:6234
+msgid "Kutenai"
 msgstr ""
 
-# id::cmf.label__5
-#: 950.data.seed-values.sql:121
-msgid "Uniform Title"
+# id::coust.label__circ.do_not_tally_claims_returned
+#: 950.data.seed-values.sql:2948
+msgid ""
+"Do not include outstanding Claims Returned circulations in lump sum tallies "
+"in Patron Display."
 msgstr ""
 
-# id::cbt.name__3
-#: 950.data.seed-values.sql:476
-msgid "Lost Materials"
+# id::ccvm.value__291
+#: 950.data.seed-values.sql:6285
+msgid "Moldavian"
+msgstr ""
+
+# id::ppl.description__228
+#: 950.data.seed-values.sql:966
+msgid "DELETE_AUDIENCE"
 msgstr ""
 
-# id::ccvm.value__252
-#: 950.data.seed-values.sql:6094
-msgid "Lithuanian"
+# id::coust.description__circ.patron_expires_soon_warning
+#: 950.data.seed-values.sql:12332
+msgid ""
+"Warn when patron account is about to expire. If set, the staff client "
+"displays a warning this many days before the expiry of a patron account. "
+"Value is in number of days, for example: 3 for 3 days."
 msgstr ""
 
-# id::ccvm.value__276
-#: 950.data.seed-values.sql:6118
-msgid "Malay"
+# id::ppl.description__507
+#: 950.data.seed-values.sql:1522
+msgid "Allows a user to abort a transit on a copy with status of LOST"
 msgstr ""
 
-# id::ccvm.value__211
-#: 950.data.seed-values.sql:6053
-msgid "Kalâtdlisut"
+# id::cmf.label__3
+#: 950.data.seed-values.sql:119
+msgid "Translated Title"
 msgstr ""
 
-# id::ccvm.value__486
-#: 950.data.seed-values.sql:6328
-msgid "Zuni"
+# id::ppl.description__273
+#: 950.data.seed-values.sql:1056
+msgid "UPDATE_PERM"
 msgstr ""
 
-# id::ccvm.value__504
-#: 950.data.seed-values.sql:6350
-msgid "Manuscript cartographic material"
+# id::coust.label__circ.claim_never_checked_out.mark_missing
+#: 950.data.seed-values.sql:2912
+msgid "Claim Never Checked Out: Mark copy as missing"
 msgstr ""
 
-# id::cmf.label__11
-#: 950.data.seed-values.sql:135
-msgid "Geographic Subject"
+# id::ppl.description__241
+#: 950.data.seed-values.sql:992
+msgid "DELETE_NET_ACCESS_LEVEL"
 msgstr ""
 
-# id::ccvm.value__184
-#: 950.data.seed-values.sql:6026
-msgid "Iban"
+# id::coust.description__circ.staff_client.receipt.footer_text
+#: 950.data.seed-values.sql:3549
+msgid ""
+"Text/HTML/Macros to be inserted into receipt templates in place of "
+"%INCLUDE(footer_text)%"
 msgstr ""
 
-# id::aout.opac_label__3
-#: 950.data.seed-values.sql:436
-msgid "This Branch"
+# id::csp.label__29
+#: 950.data.seed-values.sql:42
+msgid "Patron has an invalid address"
 msgstr ""
 
-# id::cbt.name__9
-#: 950.data.seed-values.sql:488
-msgid "Notification Fee"
+# id::csc.name__9
+#: 950.data.seed-values.sql:10875
+msgid "Aliant"
 msgstr ""
 
-# id::ccvm.value__373
-#: 950.data.seed-values.sql:6215
-msgid "Croatian"
+# id::ppl.description__19
+#: 950.data.seed-values.sql:548
+msgid ""
+"Allow a user to edit volumes - needed for merging records. This is a "
+"duplicate of VOLUME_UPDATE; user must have both permissions at appropriate "
+"level to merge records."
 msgstr ""
 
-# id::ccvm.value__71
-#: 950.data.seed-values.sql:5913
-msgid "Cebuano"
+# id::cmf.label__30
+#: 950.data.seed-values.sql:178
+msgid "LC Control Number"
 msgstr ""
 
-# id::pgt.description__12
-#: 950.data.seed-values.sql:1623
-msgid "Can do anything at the System level"
+# id::coust.description__circ.patron_edit.clone.copy_address
+#: 950.data.seed-values.sql:3396
+msgid ""
+"In the Patron editor, copy addresses from the cloned user instead of linking"
+" directly to the address"
 msgstr ""
 
-# id::ccvm.value__290
-#: 950.data.seed-values.sql:6132
-msgid "Mohawk"
+# id::ppl.description__173
+#: 950.data.seed-values.sql:856
+msgid "Allow a user to create/view/update/delete a currency_type"
 msgstr ""
 
-# id::ccvm.value__105
-#: 950.data.seed-values.sql:5947
-msgid "Dogrib"
+# id::coust.label__acq.upload.default.vandelay.quality_ratio
+#: 950.data.seed-values.sql:12656
+msgid "Upload Default Min. Quality Ratio"
 msgstr ""
 
-# id::ccvm.value__464
-#: 950.data.seed-values.sql:6306
-msgid "Volapük"
+# id::coust.description__ui.patron.edit.au.email.example
+#: 950.data.seed-values.sql:4365
+msgid "The Example for validation on the email field in patron registration."
 msgstr ""
 
-# id::cuat.label__12
-#: 950.data.seed-values.sql:11721
-msgid "Verification via translator-v1"
+# id::coust.label__sms.enable
+#: 950.data.seed-values.sql:4813
+msgid "Enable features that send SMS text messages."
 msgstr ""
 
-# id::ccvm.value__279
-#: 950.data.seed-values.sql:6121
-msgid "Irish, Middle (ca. 1100-1550)"
+# id::acsaf.name__71
+#: 950.data.seed-values.sql:10525
+msgid "See From Tracing -- Form Subdivision"
 msgstr ""
 
-# id::ccvm.value__508
-#: 950.data.seed-values.sql:6354
-msgid "Musical sound recording"
+# id::cit.name__3 id::ccvm.value__555 id::at.name__z
+#: 950.data.seed-values.sql:245 950.data.seed-values.sql:6562
+#: 950.data.seed-values.sql:10608
+msgid "Other"
 msgstr ""
 
-# id::ccvm.value__456
-#: 950.data.seed-values.sql:6298
-msgid "Ukrainian"
+# id::coust.label__opac.allow_pending_user
+#: 950.data.seed-values.sql:13196
+msgid "Allow Patron Self-Registration"
 msgstr ""
 
-# id::ccvm.value__361
-#: 950.data.seed-values.sql:6203
-msgid "Sandawe"
+# id::ccvm.value__499
+#: 950.data.seed-values.sql:6497
+msgid "Two-dimensional nonprojectable graphic"
 msgstr ""
 
-# id::czs.label__oclc
-#: 950.data.seed-values.sql:358
-msgid "OCLC"
+# id::acsaf.name__28
+#: 950.data.seed-values.sql:10496
+msgid "See Also From Tracing -- General Subdivision"
 msgstr ""
 
-# id::ccvm.value__204
-#: 950.data.seed-values.sql:6046
-msgid "Javanese"
+# id::ppl.description__415
+#: 950.data.seed-values.sql:1338
+msgid "ADMIN_INVOICE_METHOD"
 msgstr ""
 
-# id::ccvm.value__bad
-#: 950.data.seed-values.sql:5878
-msgid "Banda"
+# id::cust.label__ui.grid_columns.actor.user.event_log
+#: 950.data.seed-values.sql:10708
+msgid "User Event Log"
 msgstr ""
 
-# id::vqbrad.description__2
-#: 950.data.seed-values.sql:4812
-msgid "Author of work"
+# id::ccvm.value__452
+#: 950.data.seed-values.sql:6446
+msgid "Tuvinian"
 msgstr ""
 
-# id::cbt.name__101
-#: 950.data.seed-values.sql:490
-msgid "Misc"
+# id::coust.label__config.settings_group.ccp
+#: 950.data.seed-values.sql:2572
+msgid "Credit Card Processing"
 msgstr ""
 
-# id::ccvm.value__449
-#: 950.data.seed-values.sql:6291
-msgid "Altaic (Other)"
+# id::ppl.description__385
+#: 950.data.seed-values.sql:1278
+msgid "UPDATE_RECORD"
 msgstr ""
 
-# id::ccvm.value__213
-#: 950.data.seed-values.sql:6055
-msgid "Kannada"
+# id::coust.label__global.password_regex
+#: 950.data.seed-values.sql:3852
+msgid "Password format"
 msgstr ""
 
-# id::ccvm.value__111
-#: 950.data.seed-values.sql:5953
-msgid "Dutch, Middle (ca. 1050-1350)"
+# id::ppl.description__189
+#: 950.data.seed-values.sql:888
+msgid "Allows a user to view a purchase order"
 msgstr ""
 
-# id::ccvm.value__341
-#: 950.data.seed-values.sql:6183
-msgid "Persian"
+# id::ppl.description__186
+#: 950.data.seed-values.sql:882
+msgid "Allow a user to mark an item status as 'inter-library loan'"
 msgstr ""
 
-# id::cuat.label__21
-#: 950.data.seed-values.sql:11732
-msgid "Apache Auth Proxy Login"
+# id::ppl.description__394
+#: 950.data.seed-values.sql:1296
+msgid "ADMIN_ACQ_DISTRIB_FORMULA"
 msgstr ""
 
-# id::ccvm.value__292
-#: 950.data.seed-values.sql:6134
-msgid "Mongolian"
+# id::cmf.label__16
+#: 950.data.seed-values.sql:149
+msgid "All Subjects"
 msgstr ""
 
-# id::ccvm.value__81
-#: 950.data.seed-values.sql:5923
-msgid "Choctaw"
+# id::crmf.name__6
+#: 950.data.seed-values.sql:283
+msgid "overdue_equip_mid"
 msgstr ""
 
-# id::ccvm.value__aym
-#: 950.data.seed-values.sql:5876
-msgid "Aymara"
+# id::ppl.description__480
+#: 950.data.seed-values.sql:1468
+msgid "VIEW_STANDING_PENALTY"
 msgstr ""
 
-# id::ccvm.value__364
-#: 950.data.seed-values.sql:6206
-msgid "South American Indian (Other)"
+# id::ppl.description__381
+#: 950.data.seed-values.sql:1270
+msgid "Enables the user to create/update/delete booking reservations"
 msgstr ""
 
-# id::acsaf.name__68
-#: 950.data.seed-values.sql:10233
-msgid "See Also Tracing -- General Subdivision"
+# id::crmf.name__5
+#: 950.data.seed-values.sql:281
+msgid "overdue_equip_min"
 msgstr ""
 
-# id::cmf.label__26 id::cza.label__1 id::cza.label__10 id::cza.label__19
-#: 950.data.seed-values.sql:168 950.data.seed-values.sql:363
-#: 950.data.seed-values.sql:384 950.data.seed-values.sql:403
-msgid "Title Control Number"
+# id::ath.description__circ.format.history.print
+#: 950.data.seed-values.sql:8513
+msgid "A circ history needs to be formatted for printing."
 msgstr ""
 
-# id::ccvm.value__379 id::ccvm.value__394
-#: 950.data.seed-values.sql:6221 950.data.seed-values.sql:6236
-msgid "Shona"
+# id::coust.label__cat.bib.keep_on_empty
+#: 950.data.seed-values.sql:2723
+msgid "Retain empty bib records"
 msgstr ""
 
-# id::ccvm.value__82
-#: 950.data.seed-values.sql:5924
-msgid "Chipewyan"
+# id::coust.description__opac.staff.jump_to_details_on_single_hit
+#: 950.data.seed-values.sql:4786
+msgid ""
+"When a search yields only 1 result, jump directly to the record details "
+"page.  This setting only affects the OPAC within the staff client"
 msgstr ""
 
-# id::ccvm.value__90
-#: 950.data.seed-values.sql:5932
-msgid "Corsican"
+# id::ppl.description__455
+#: 950.data.seed-values.sql:1418
+msgid "MANAGE_CLAIM"
 msgstr ""
 
-# id::vie.description__import.item.invalid.location
-#: 950.data.seed-values.sql:9476
-msgid "Import failed due to invalid copy location"
+# id::coust.label__ui.circ.in_house_use.entry_cap
+#: 950.data.seed-values.sql:4065
+msgid "Record In-House Use: Maximum # of uses allowed per entry."
 msgstr ""
 
-# id::ccvm.value__233
-#: 950.data.seed-values.sql:6075
-msgid "Kpelle"
+# id::ccvm.value__484
+#: 950.data.seed-values.sql:6478
+msgid "Zande"
 msgstr ""
 
-# id::cuat.label__15
-#: 950.data.seed-values.sql:11724
-msgid "SIP2 User Verification"
+# id::ppl.description__467
+#: 950.data.seed-values.sql:1442
+msgid "UPDATE_USER_BTYPE"
 msgstr ""
 
-# id::ccvm.value__525
-#: 950.data.seed-values.sql:6376
-msgid "Microopaque"
+# id::coust.label__ui.patron.edit.au.second_given_name.suggest
+#: 950.data.seed-values.sql:4605
+msgid "Suggest second_given_name field on patron registration"
 msgstr ""
 
-# id::ccvm.value__399
-#: 950.data.seed-values.sql:6241
-msgid "Somali"
+# id::i18n_l.description__en-CA
+#: 950.data.seed-values.sql:342
+msgid "Canadian English"
 msgstr ""
 
-# id::ccvm.value__arp
-#: 950.data.seed-values.sql:5866
-msgid "Arapaho"
+# id::csc.name__1
+#: 950.data.seed-values.sql:10735
+msgid "Test Carrier"
 msgstr ""
 
-# id::ccvm.value__49
-#: 950.data.seed-values.sql:5891
-msgid "Berber (Other)"
+# id::coust.description__cat.spine.line.height
+#: 950.data.seed-values.sql:2807
+msgid "Set the default maximum number of lines for spine labels."
 msgstr ""
 
-# id::ccvm.value__80
-#: 950.data.seed-values.sql:5922
-msgid "Chinook jargon"
+# id::ppl.description__78
+#: 950.data.seed-values.sql:666
+msgid "Allow a user to perform Z39.50 queries against remote servers"
 msgstr ""
 
-# id::ccvm.value__aka
-#: 950.data.seed-values.sql:5853
-msgid "Akan"
+# id::ppl.description__350
+#: 950.data.seed-values.sql:1210
+msgid "Allow a user to merge authority records together"
 msgstr ""
 
-# id::ccvm.value__262
-#: 950.data.seed-values.sql:6104
-msgid "Lushai"
+# id::ppl.description__338
+#: 950.data.seed-values.sql:1186
+msgid "UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event"
 msgstr ""
 
-# id::i18n_l.name__en-US
-#: 950.data.seed-values.sql:326
-msgid "English (US)"
+# id::cbt.name__2
+#: 950.data.seed-values.sql:483
+msgid "Long Overdue Collection Fee"
 msgstr ""
 
-# id::ccvm.value__346
-#: 950.data.seed-values.sql:6188
-msgid "Ponape"
+# id::ccvm.value__48
+#: 950.data.seed-values.sql:6042
+msgid "Bengali"
 msgstr ""
 
-# id::pgt.name__8
-#: 950.data.seed-values.sql:1612
-msgid "Cataloging Administrator"
+# id::coust.label__global.juvenile_age_threshold
+#: 950.data.seed-values.sql:3843
+msgid "Juvenile Age Threshold"
 msgstr ""
 
-# id::ccvm.value__55
-#: 950.data.seed-values.sql:5897
-msgid "Siksika"
+# id::ppl.description__101
+#: 950.data.seed-values.sql:712
+msgid ""
+"Allow a user to check in or check out an item that has a status of 'claims "
+"returned'"
 msgstr ""
 
-# id::ccvm.value__307
-#: 950.data.seed-values.sql:6149
-msgid "Low German"
+# id::cust.label__opac.default_search_location
+# id::cust.description__opac.default_search_location
+#: 950.data.seed-values.sql:2517 950.data.seed-values.sql:2518
+msgid "OPAC Search Location"
 msgstr ""
 
-# id::ccvm.value__101
-#: 950.data.seed-values.sql:5943
-msgid "Dargwa"
+# id::csp.label__34
+#: 950.data.seed-values.sql:84
+msgid "Patron had an invalid other phone number"
 msgstr ""
 
-# id::ccvm.value__519
-#: 950.data.seed-values.sql:6367
-msgid "Mixed forms"
+# id::cubt.label__folks%3Apub_book_bags.view
+#: 950.data.seed-values.sql:5044
+msgid "List Published Book Bags"
 msgstr ""
 
-# id::ccvm.value__398
-#: 950.data.seed-values.sql:6240
-msgid "Sogdian"
+# id::i18n_l.name__fi-FI id::i18n_l.description__fi-FI id::ccvm.value__133
+#: 950.data.seed-values.sql:344 950.data.seed-values.sql:345
+#: 950.data.seed-values.sql:6127
+msgid "Finnish"
 msgstr ""
 
-# id::ccvm.value__348
-#: 950.data.seed-values.sql:6190
-msgid "Prakrit languages"
+# id::coust.label__circ.grace.extend.into_closed
+#: 950.data.seed-values.sql:2988
+msgid "Auto-Extending Grace Periods include trailing closed dates"
 msgstr ""
 
-# id::ccvm.value__147
-#: 950.data.seed-values.sql:5989
-msgid "Gayo"
+# id::cubt.label__folks%3Ahold.view
+#: 950.data.seed-values.sql:5049
+msgid "View Holds"
 msgstr ""
 
-# id::acsaf.name__28
-#: 950.data.seed-values.sql:10207
-msgid "See Also From Tracing -- General Subdivision"
+# id::ccvm.value__265
+#: 950.data.seed-values.sql:6259
+msgid "Magahi"
 msgstr ""
 
-# id::ccvm.value__510
-#: 950.data.seed-values.sql:6358
-msgid "Not fiction (not further specified)"
+# id::vqbrad.description__10
+#: 950.data.seed-values.sql:4971
+msgid "TCN Source"
 msgstr ""
 
-# id::ccvm.value__236
-#: 950.data.seed-values.sql:6078
-msgid "Kuanyama"
+# id::coust.description__ui.admin.work_log.max_entries
+#: 950.data.seed-values.sql:4041
+msgid ""
+"Maximum entries for \"Most Recent Staff Actions\" section of the Work Log "
+"interface."
 msgstr ""
 
-# id::ccvm.value__421 id::ccvm.value__422
-#: 950.data.seed-values.sql:6263 950.data.seed-values.sql:6264
-msgid "Tatar"
+# id::csc.name__20
+#: 950.data.seed-values.sql:11066
+msgid "Golden State Cellular"
 msgstr ""
 
-# id::ccvm.value__505
-#: 950.data.seed-values.sql:6351
-msgid "Notated music"
+# id::coust.description__circ.holds.org_unit_target_weight
+#: 950.data.seed-values.sql:3171
+msgid ""
+"Org Units can be organized into hold target groups based on a weight.  "
+"Potential copies from org units with the same weight are chosen at random."
 msgstr ""
 
-# id::csp.label__28
-#: 950.data.seed-values.sql:39
-msgid "Alerting block on Renew"
+# id::ppl.description__426
+#: 950.data.seed-values.sql:1360
+msgid "ADMIN_USER_REQUEST_TYPE"
 msgstr ""
 
-# id::crmf.name__7
-#: 950.data.seed-values.sql:280
-msgid "overdue_equip_max"
+# id::ppl.description__59
+#: 950.data.seed-values.sql:628
+msgid "User may link another user to an entry in a statistical category"
 msgstr ""
 
-# id::cmf.label__29
-#: 950.data.seed-values.sql:174
-msgid "System Control Number"
+# id::ath.description__circ.staff_age_to_lost
+#: 950.data.seed-values.sql:9685
+msgid "An overdue circulation should be aged to a Lost status."
 msgstr ""
 
-# id::ccvm.value__146 id::ccvm.value__328
-#: 950.data.seed-values.sql:5988 950.data.seed-values.sql:6170
-msgid "Oromo"
+# id::ccvm.value__289
+#: 950.data.seed-values.sql:6283
+msgid "Manobo languages"
 msgstr ""
 
-# id::ccvm.value__536
-#: 950.data.seed-values.sql:6389
-msgid "Serial"
+# id::ccvm.value__425
+#: 950.data.seed-values.sql:6419
+msgid "Terena"
 msgstr ""
 
-# id::cbrebt.label__reading_list
-#: 950.data.seed-values.sql:4886
-msgid "Reading List"
+# id::coust.label__circ.hold_capture_order
+#: 950.data.seed-values.sql:12743
+msgid "Best-hold selection sort order"
 msgstr ""
 
-# id::ccvm.value__503
-#: 950.data.seed-values.sql:6349
-msgid "Cartographic material"
+# id::ppl.description__230
+#: 950.data.seed-values.sql:970
+msgid "DELETE_CIRC_DURATION"
 msgstr ""
 
-# id::ccvm.value__375
-#: 950.data.seed-values.sql:6217
-msgid "Semitic (Other)"
+# id::at.name__a
+#: 950.data.seed-values.sql:10599
+msgid "Library of Congress Subject Headings"
 msgstr ""
 
-# id::cmf.label__15
-#: 950.data.seed-values.sql:145
-msgid "General Keywords"
+# id::ppl.description__55
+#: 950.data.seed-values.sql:620
+msgid "User may update a patron statistical category"
 msgstr ""
 
-# id::ccvm.value__223
-#: 950.data.seed-values.sql:6065
-msgid "Khotanese"
+# id::coust.label__cat.spine.line.height
+#: 950.data.seed-values.sql:2804
+msgid "Spine label maximum lines"
 msgstr ""
 
-# id::ccvm.value__47
-#: 950.data.seed-values.sql:5889
-msgid "Bemba"
+# id::ccvm.value__161
+#: 950.data.seed-values.sql:6155
+msgid "Gorontalo"
 msgstr ""
 
-# id::vqbrad.description__1
-#: 950.data.seed-values.sql:4811
-msgid "Title of work"
+# id::ppl.description__371
+#: 950.data.seed-values.sql:1252
+msgid "Allow a user to create, update, and delete trigger validators"
 msgstr ""
 
-# id::ccvm.value__351
-#: 950.data.seed-values.sql:6193
-msgid "Quechua"
+# id::coust.label__circ.holds_fifo
+#: 950.data.seed-values.sql:3231
+msgid "FIFO"
 msgstr ""
 
-# id::acsaf.name__69
-#: 950.data.seed-values.sql:10234
-msgid "See Also Tracing -- Geographic Subdivision"
+# id::csp.label__4
+#: 950.data.seed-values.sql:29
+msgid "Patron exceeds pre-collections warning fine threshold"
 msgstr ""
 
-# id::vqbrad.description__7
-#: 950.data.seed-values.sql:4817
-msgid "Price"
+# id::cuat.label__3
+#: 950.data.seed-values.sql:12004
+msgid "Login via gateway-v1"
 msgstr ""
 
-# id::ccvm.value__96
-#: 950.data.seed-values.sql:5938
-msgid "Creoles and Pidgins (Other)"
+# id::bpt.name__2
+#: 950.data.seed-values.sql:12
+msgid "Bilingual"
 msgstr ""
 
-# id::ccvm.value__311
-#: 950.data.seed-values.sql:6153
-msgid "Niger-Kordofanian (Other)"
+# id::cst.value__1
+#: 950.data.seed-values.sql:18
+msgid "Good"
 msgstr ""
 
-# id::ccvm.value__124
-#: 950.data.seed-values.sql:5966
-msgid "Estonian"
+# id::ccvm.value__104
+#: 950.data.seed-values.sql:6098
+msgid "Slave"
 msgstr ""
 
-# id::ccvm.value__128
-#: 950.data.seed-values.sql:5970
-msgid "Fang"
+# id::ppl.description__64
+#: 950.data.seed-values.sql:638
+msgid "User may delete an entry from a copy statistical category"
 msgstr ""
 
-# id::ccvm.value__253
-#: 950.data.seed-values.sql:6095
-msgid "Mongo-Nkundu"
+# id::ccvm.value__263
+#: 950.data.seed-values.sql:6257
+msgid "Macedonian"
 msgstr ""
 
-# id::vie.description__general.unknown
-#: 950.data.seed-values.sql:9473
-msgid "Import or Overlay failed"
+# id::coust.label__vandelay.item.circ_modifier.default
+#: 950.data.seed-values.sql:13315
+msgid "Vandelay Default Circulation Modifier"
 msgstr ""
 
-# id::cbrebt.label__url_verify
-#: 950.data.seed-values.sql:4888
-msgid "URL Verification Queue"
+# id::ppl.description__100
+#: 950.data.seed-values.sql:710
+msgid "Allow a user to void a bill"
 msgstr ""
 
-# id::ccvm.value__269
-#: 950.data.seed-values.sql:6111
-msgid "Malayalam"
+# id::ppl.description__313
+#: 950.data.seed-values.sql:1136
+msgid "CREATE_IMPORT_TRASH_FIELD"
 msgstr ""
 
-# id::cuat.label__20
-#: 950.data.seed-values.sql:11731
-msgid "Unique Mgt Login"
+# id::coust.label__ui.patron.edit.au.prefix.show
+#: 950.data.seed-values.sql:4578
+msgid "Show prefix field on patron registration"
 msgstr ""
 
-# id::ccvm.value__391
-#: 950.data.seed-values.sql:6233
-msgid "Inari Sami"
+# id::ccvm.value__496
+#: 950.data.seed-values.sql:6494
+msgid "Language material"
 msgstr ""
 
-# id::i18n_l.name__fr-CA
-#: 950.data.seed-values.sql:338
-msgid "French (Canada)"
+# id::ppl.description__28
+#: 950.data.seed-values.sql:566
+msgid "Allow a user to view another user's Patron Record"
 msgstr ""
 
-# id::cmf.label__9
-#: 950.data.seed-values.sql:130
-msgid "Conference Author"
+# id::ccvm.value__454
+#: 950.data.seed-values.sql:6448
+msgid "Ugaritic"
 msgstr ""
 
-# id::aout.name__3
-#: 950.data.seed-values.sql:435
-msgid "Branch"
+# id::coust.label__ui.patron.edit.au.other_phone.show
+#: 950.data.seed-values.sql:4551
+msgid "Show other_phone field on patron registration"
 msgstr ""
 
-# id::ccvm.value__afh
-#: 950.data.seed-values.sql:5850
-msgid "Afrihili (Artificial language)"
+# id::coust.description__lib.info_url
+#: 950.data.seed-values.sql:3882
+msgid ""
+"URL for information on this library, such as contact information, hours of "
+"operation, and directions. If set, the library name in the copy details "
+"section links to that URL. Use a complete URL, such as "
+"\"http://example.com/hours.html\"."
 msgstr ""
 
-# id::vqbrad.description__15
-#: 950.data.seed-values.sql:4825
-msgid "Item Barcode"
+# id::ppl.description__463
+#: 950.data.seed-values.sql:1434
+msgid "UPDATE_INVOICE_METHOD"
 msgstr ""
 
-# id::vie.description__overlay.xml.malformed
-#: 950.data.seed-values.sql:9482
-msgid "Malformed record cause Overlay failure"
+# id::ccvm.value__ale
+#: 950.data.seed-values.sql:6008
+msgid "Aleut"
 msgstr ""
 
-# id::cbs.source__3
-#: 950.data.seed-values.sql:7
-msgid "Project Gutenberg"
+# id::coust.description__ui.general.button_bar
+#: 950.data.seed-values.sql:4113
+msgid ""
+"Set to \"circ\" or \"cat\" for stock circulator or cataloger toolbar, "
+"respectively."
 msgstr ""
 
-# id::aou.name__9
-#: 950.data.seed-values.sql:462
-msgid "Example Bookmobile 1"
+# id::ccvm.description__519
+#: 950.data.seed-values.sql:6519
+msgid ""
+"The item is a variety of literary forms (e.g., poetry and short stories)."
 msgstr ""
 
-# id::ccvm.value__493
-#: 950.data.seed-values.sql:6337
-msgid "Specialized"
+# id::cbt.name__6
+#: 950.data.seed-values.sql:491
+msgid "System: Rental"
 msgstr ""
 
-# id::ccvm.value__132
-#: 950.data.seed-values.sql:5974
-msgid "Fijian"
+# id::ahrcc.label__5
+#: 950.data.seed-values.sql:2474
+msgid "Staff forced"
 msgstr ""
 
-# id::acsaf.name__46
-#: 950.data.seed-values.sql:10218
-msgid "Established Heading Linking Entry -- Geographic Name"
+# id::ppl.description__458
+#: 950.data.seed-values.sql:1424
+msgid "UPDATE_BIB_SOURCE"
 msgstr ""
 
-# id::i18n_l.description__en-US
-#: 950.data.seed-values.sql:327
-msgid "American English"
+# id::coust.label__opac.search.tag_circulated_items
+#: 950.data.seed-values.sql:4800
+msgid "Tag Circulated Items in Results"
 msgstr ""
 
-# id::cmf.label__28
-#: 950.data.seed-values.sql:172
-msgid "Authority Record ID"
+# id::ppl.description__265
+#: 950.data.seed-values.sql:1040
+msgid "UPDATE_LASSO"
 msgstr ""
 
-# id::acsaf.name__52
-#: 950.data.seed-values.sql:10224
-msgid "Established Heading Linking Entry -- Chronological Term"
+# id::cgf.label__opac.browse.holdings_visibility_test_limit
+#: 950.data.seed-values.sql:9297
+msgid ""
+"Don't look for more than this number of records with holdings when "
+"displaying browse headings with visible record counts."
 msgstr ""
 
-# id::cust.label__history.hold.retention_age
-# id::cust.description__history.hold.retention_age
-#: 950.data.seed-values.sql:9046 950.data.seed-values.sql:9047
-msgid "Historical Hold Retention Age"
+# id::ppl.description__196
+#: 950.data.seed-values.sql:902
+msgid "Allow a user to create/view/update/delete a fund"
 msgstr ""
 
-# id::ccvm.value__313
-#: 950.data.seed-values.sql:6155
-msgid "Norwegian (Nynorsk)"
+# id::acsaf.name__26
+#: 950.data.seed-values.sql:10494
+msgid "See Also From Tracing -- Geographic Name"
 msgstr ""
 
-# id::ccvm.value__431
-#: 950.data.seed-values.sql:6273
-msgid "Tigré"
+# id::ccvm.value__554
+#: 950.data.seed-values.sql:6561
+msgid "DVD"
 msgstr ""
 
 # id::ccvm.value__368 id::ccvm.value__392
-#: 950.data.seed-values.sql:6210 950.data.seed-values.sql:6234
+#: 950.data.seed-values.sql:6362 950.data.seed-values.sql:6386
 msgid "Samoan"
 msgstr ""
 
-# id::ccpbt.label__staff_client id::cbrebt.label__staff_client
-#: 950.data.seed-values.sql:4880 950.data.seed-values.sql:4884
-msgid "General Staff Client container"
+# id::csp.label__25
+#: 950.data.seed-values.sql:38
+msgid "Alerting block on Circ, Hold and Renew"
 msgstr ""
 
-# id::pgt.name__9
-#: 950.data.seed-values.sql:1614
-msgid "Circulation Administrator"
+# id::cgf.label__history.hold.retention_age_canceled_5
+#: 950.data.seed-values.sql:9205
+msgid "Historical Hold Retention Age - Canceled (Staff forced)"
 msgstr ""
 
-# id::ccvm.value__157 id::ccvm.value__275
-#: 950.data.seed-values.sql:5999 950.data.seed-values.sql:6117
-msgid "Manx"
+# id::aurt.label__4
+#: 950.data.seed-values.sql:2586
+msgid "Music"
 msgstr ""
 
-# id::ccvm.value__354
-#: 950.data.seed-values.sql:6196
-msgid "Rarotongan"
+# id::coust.description__notice.telephony.callfile_lines
+#: 950.data.seed-values.sql:3891
+msgid ""
+"\n"
+"        This overrides lines from opensrf.xml.\n"
+"        Line(s) must be valid for your target server and platform\n"
+"        (e.g. Asterisk 1.4).\n"
+"        "
 msgstr ""
 
-# id::acsaf.name__50
-#: 950.data.seed-values.sql:10222
-msgid "Subdivision Linking Entry -- Chronological Subdivision"
+# id::ccvm.value__481
+#: 950.data.seed-values.sql:6475
+msgid "Zapotec"
 msgstr ""
 
-# id::at.name__s
-#: 950.data.seed-values.sql:10313
-msgid "Sears List of Subject Headings"
+# id::acs.name__1
+#: 950.data.seed-values.sql:10452
+msgid "LoC"
 msgstr ""
 
-# id::crrf.name__3
-#: 950.data.seed-values.sql:288
-msgid "50_cent_per_day"
+# id::csc.region__18 id::csc.region__24 id::csc.region__25 id::csc.region__26
+# id::csc.region__27 id::csc.region__28 id::csc.region__29 id::csc.region__30
+# id::csc.region__31 id::csc.region__32 id::csc.region__33 id::csc.region__34
+# id::csc.region__35 id::csc.region__36 id::csc.region__37 id::csc.region__38
+# id::csc.region__39 id::csc.region__40 id::csc.region__41 id::csc.region__42
+# id::csc.region__43 id::csc.region__44 id::csc.region__45 id::csc.region__46
+# id::csc.region__47 id::csc.region__48 id::csc.region__49 id::csc.region__50
+# id::csc.region__51 id::csc.region__52 id::csc.region__53 id::csc.region__54
+# id::csc.region__55 id::csc.region__56 id::csc.region__57 id::csc.region__58
+# id::csc.region__59 id::csc.region__60 id::csc.region__61 id::csc.region__62
+# id::csc.region__63 id::csc.region__64
+#: 950.data.seed-values.sql:11026 950.data.seed-values.sql:11128
+#: 950.data.seed-values.sql:11145 950.data.seed-values.sql:11162
+#: 950.data.seed-values.sql:11179 950.data.seed-values.sql:11196
+#: 950.data.seed-values.sql:11213 950.data.seed-values.sql:11230
+#: 950.data.seed-values.sql:11247 950.data.seed-values.sql:11264
+#: 950.data.seed-values.sql:11281 950.data.seed-values.sql:11298
+#: 950.data.seed-values.sql:11315 950.data.seed-values.sql:11332
+#: 950.data.seed-values.sql:11349 950.data.seed-values.sql:11366
+#: 950.data.seed-values.sql:11383 950.data.seed-values.sql:11400
+#: 950.data.seed-values.sql:11417 950.data.seed-values.sql:11434
+#: 950.data.seed-values.sql:11451 950.data.seed-values.sql:11468
+#: 950.data.seed-values.sql:11485 950.data.seed-values.sql:11502
+#: 950.data.seed-values.sql:11519 950.data.seed-values.sql:11536
+#: 950.data.seed-values.sql:11553 950.data.seed-values.sql:11570
+#: 950.data.seed-values.sql:11587 950.data.seed-values.sql:11604
+#: 950.data.seed-values.sql:11621 950.data.seed-values.sql:11638
+#: 950.data.seed-values.sql:11655 950.data.seed-values.sql:11672
+#: 950.data.seed-values.sql:11689 950.data.seed-values.sql:11706
+#: 950.data.seed-values.sql:11723 950.data.seed-values.sql:11740
+#: 950.data.seed-values.sql:11757 950.data.seed-values.sql:11774
+#: 950.data.seed-values.sql:11791 950.data.seed-values.sql:11808
+msgid "USA"
 msgstr ""
 
-# id::ccvm.value__113
-#: 950.data.seed-values.sql:5955
-msgid "Dyula"
+# id::cmf.label__5
+#: 950.data.seed-values.sql:123
+msgid "Uniform Title"
 msgstr ""
 
-# id::ccvm.value__199
-#: 950.data.seed-values.sql:6041
-msgid "Inupiaq"
+# id::cuat.label__11
+#: 950.data.seed-values.sql:12013
+msgid "Verification via gateway-v1"
 msgstr ""
 
-# id::ccvm.value__165
-#: 950.data.seed-values.sql:6007
-msgid "Greek, Modern (1453- )"
+# id::ccvm.value__252
+#: 950.data.seed-values.sql:6246
+msgid "Lithuanian"
 msgstr ""
 
-# id::ccvm.value__115
-#: 950.data.seed-values.sql:5957
-msgid "Efik"
+# id::ppl.description__185
+#: 950.data.seed-values.sql:880
+msgid "Allow a user to mark an item status as 'on order'"
 msgstr ""
 
-# id::cmf.label__7
-#: 950.data.seed-values.sql:126
-msgid "Corporate Author"
+# id::ppl.description__16
+#: 950.data.seed-values.sql:542
+msgid "Allow a user to create new MARC records"
 msgstr ""
 
-# id::ccvm.value__296
-#: 950.data.seed-values.sql:6138
-msgid "Creek"
+# id::ccvm.value__486
+#: 950.data.seed-values.sql:6480
+msgid "Zuni"
 msgstr ""
 
-# id::ccvm.value__490
-#: 950.data.seed-values.sql:6334
-msgid "Pre-adolescent"
+# id::ccvm.value__534
+#: 950.data.seed-values.sql:6539
+msgid "Integrating resource"
 msgstr ""
 
-# id::ccvm.value__390
-#: 950.data.seed-values.sql:6232
-msgid "Lule Sami"
+# id::ppl.description__504
+#: 950.data.seed-values.sql:1516
+msgid "Allows update/re-use of an acquisitions pick/selection list."
 msgstr ""
 
-# id::ccvm.value__54
-#: 950.data.seed-values.sql:5896
-msgid "Bislama"
+# id::ppl.description__58
+#: 950.data.seed-values.sql:626
+msgid "User may update an entry in a copy statistical category"
 msgstr ""
 
-# id::ccvm.value__230
-#: 950.data.seed-values.sql:6072
-msgid "Kongo"
+# id::ccvm.value__169
+#: 950.data.seed-values.sql:6163
+msgid "Gwich'in"
 msgstr ""
 
-# id::vie.description__import.item.invalid.owning_lib
-#: 950.data.seed-values.sql:9492
-msgid "Invalid value for \"owning_lib\""
+# id::czs.label__oclc
+#: 950.data.seed-values.sql:367
+msgid "OCLC"
 msgstr ""
 
-# id::cuat.label__2
-#: 950.data.seed-values.sql:11710
-msgid "Login via srfsh"
+# id::coust.label__circ.item_checkout_history.max
+#: 950.data.seed-values.sql:3240
+msgid "Maximum previous checkouts displayed"
 msgstr ""
 
-# id::ccvm.value__ach
-#: 950.data.seed-values.sql:5846
-msgid "Acoli"
+# id::ppl.description__41
+#: 950.data.seed-values.sql:592
+msgid "Allow a user to create a new container for another user"
 msgstr ""
 
-# id::ccvm.value__283
-#: 950.data.seed-values.sql:6125
-msgid "Mon-Khmer (Other)"
+# id::coust.label__cat.default_classification_scheme
+#: 950.data.seed-values.sql:2732
+msgid "Default Classification Scheme"
 msgstr ""
 
-# id::acsaf.name__21
-#: 950.data.seed-values.sql:10201
-msgid "See Also From Tracing -- Personal Name"
+# id::ppl.code__549
+#: 950.data.seed-values.sql:1606
+msgid ""
+"Allows the user to check-in long-overdue items, prompting long-overdue "
+"check-in processing"
 msgstr ""
 
-# id::ccvm.value__338
-#: 950.data.seed-values.sql:6180
-msgid "Papiamento"
+# id::cbt.name__11 id::coust.label__circ.longoverdue_materials_processing_fee
+# id::coust.description__circ.longoverdue_materials_processing_fee
+#: 950.data.seed-values.sql:501 950.data.seed-values.sql:12978
+#: 950.data.seed-values.sql:12984
+msgid "Long-Overdue Materials Processing Fee"
 msgstr ""
 
-# id::ccvm.value__297
-#: 950.data.seed-values.sql:6139
-msgid "Marwari"
+# id::ccvm.value__81
+#: 950.data.seed-values.sql:6075
+msgid "Choctaw"
 msgstr ""
 
-# id::crmf.name__2
-#: 950.data.seed-values.sql:270
-msgid "overdue_min"
+# id::coust.label__circ.void_lost_on_checkin
+# id::coust.description__circ.void_lost_on_checkin
+#: 950.data.seed-values.sql:3627 950.data.seed-values.sql:3630
+msgid "Void lost item billing when returned"
 msgstr ""
 
-# id::ccvm.value__99
-#: 950.data.seed-values.sql:5941
-msgid "Dakota"
+# id::ccvm.value__aym
+#: 950.data.seed-values.sql:6028
+msgid "Aymara"
 msgstr ""
 
-# id::pgt.name__10
-#: 950.data.seed-values.sql:1616
-msgid "Local Administrator"
+# id::ccvm.value__364
+#: 950.data.seed-values.sql:6358
+msgid "South American Indian (Other)"
 msgstr ""
 
-# id::crmf.name__3
-#: 950.data.seed-values.sql:272
-msgid "overdue_mid"
+# id::coust.description__opac.search.tag_circulated_items
+#: 950.data.seed-values.sql:4805
+msgid ""
+"When a user is both logged in and has opted in to circulation history "
+"tracking, turning on this setting will cause previous (or currently) "
+"circulated items to be highlighted in search results"
 msgstr ""
 
-# id::ccvm.value__171
-#: 950.data.seed-values.sql:6013
-msgid "Haitian French Creole"
+# id::cmf.label__26 id::cza.label__1 id::cza.label__10 id::cza.label__19
+#: 950.data.seed-values.sql:170 950.data.seed-values.sql:372
+#: 950.data.seed-values.sql:393 950.data.seed-values.sql:412
+msgid "Title Control Number"
 msgstr ""
 
-# id::ccvm.value__52
-#: 950.data.seed-values.sql:5894
-msgid "Bikol"
+# id::coust.label__credit.processor.paypal.enabled
+# id::coust.description__credit.processor.paypal.enabled
+#: 950.data.seed-values.sql:3771 950.data.seed-values.sql:3774
+msgid "Enable PayPal payments"
 msgstr ""
 
-# id::ccvm.value__413
-#: 950.data.seed-values.sql:6255
-msgid "Swedish"
+# id::ccvm.value__379 id::ccvm.value__394
+#: 950.data.seed-values.sql:6373 950.data.seed-values.sql:6388
+msgid "Shona"
 msgstr ""
 
-# id::vie.description__import.item.invalid.copy_number
-#: 950.data.seed-values.sql:9496
-msgid "Invalid value for \"copy_number\""
+# id::ccvm.value__82
+#: 950.data.seed-values.sql:6076
+msgid "Chipewyan"
 msgstr ""
 
-# id::ccvm.value__377
-#: 950.data.seed-values.sql:6219
-msgid "Sign languages"
+# id::coust.description__ui.circ.billing.uncheck_bills_and_unfocus_payment_box
+#: 950.data.seed-values.sql:4059
+msgid ""
+"Uncheck bills by default in the patron billing interface, and focus on the "
+"Uncheck All button instead of the Payment Received field."
 msgstr ""
 
-# id::ccvm.value__79
-#: 950.data.seed-values.sql:5921
-msgid "Mari"
+# id::vie.description__import.item.invalid.location
+#: 950.data.seed-values.sql:9754
+msgid "Import failed due to invalid copy location"
 msgstr ""
 
-# id::ccvm.value__126
-#: 950.data.seed-values.sql:5968
-msgid "Ewe"
+# id::acsaf.name__51
+#: 950.data.seed-values.sql:10512
+msgid "Subdivision Linking Entry -- Form Subdivision"
 msgstr ""
 
-# id::ccvm.value__447
-#: 950.data.seed-values.sql:6289
-msgid "Tupi languages"
+# id::ppl.description__205
+#: 950.data.seed-values.sql:920
+msgid "CREATE_AUDIENCE"
 msgstr ""
 
-# id::ccvm.value__alg
-#: 950.data.seed-values.sql:5857
-msgid "Algonquian (Other)"
+# id::ppl.description__90
+#: 950.data.seed-values.sql:690
+msgid "Allow a user to create a container for themselves"
 msgstr ""
 
-# id::ccvm.value__129 id::ccvm.value__130
-#: 950.data.seed-values.sql:5971 950.data.seed-values.sql:5972
-msgid "Faroese"
+# id::ccvm.value__530
+#: 950.data.seed-values.sql:6535
+msgid "Monographic component part"
 msgstr ""
 
-# id::csp.label__23
-#: 950.data.seed-values.sql:34
-msgid "Alerting block on Circ and Hold"
+# id::ccvm.value__381 id::ccvm.value__396
+#: 950.data.seed-values.sql:6375 950.data.seed-values.sql:6390
+msgid "Sinhalese"
 msgstr ""
 
-# id::ccvm.value__100
-#: 950.data.seed-values.sql:5942
-msgid "Danish"
+# id::ccvm.value__49
+#: 950.data.seed-values.sql:6043
+msgid "Berber (Other)"
 msgstr ""
 
-# id::ccvm.value__109
-#: 950.data.seed-values.sql:5951
-msgid "Dravidian (Other)"
+# id::ccvm.value__80
+#: 950.data.seed-values.sql:6074
+msgid "Chinook jargon"
 msgstr ""
 
-# id::acsaf.name__42
-#: 950.data.seed-values.sql:10215
-msgid "Established Heading Linking Entry -- Corporate Name"
+# id::ccvm.value__aka
+#: 950.data.seed-values.sql:6005
+msgid "Akan"
 msgstr ""
 
-# id::ccs.name__3
-#: 950.data.seed-values.sql:300
-msgid "Lost"
+# id::ppl.description__108
+#: 950.data.seed-values.sql:726
+msgid "Allow a user to query the ZIP code data method"
+msgstr ""
+
+# id::ppl.description__43
+#: 950.data.seed-values.sql:596
+msgid "Allow a user to see what another user has checked out"
+msgstr ""
+
+# id::coust.description__circ.selfcheck.workstation_required
+#: 950.data.seed-values.sql:3504
+msgid "All selfcheck stations must use a workstation"
 msgstr ""
 
-# id::ccvm.value__91
-#: 950.data.seed-values.sql:5933
-msgid "Creoles and Pidgins, English-based (Other)"
+# id::ccvm.value__101
+#: 950.data.seed-values.sql:6095
+msgid "Dargwa"
 msgstr ""
 
-# id::ccvm.value__97
-#: 950.data.seed-values.sql:5939
-msgid "Cushitic (Other)"
+# id::coust.label__ui.patron.edit.au.other_phone.suggest
+#: 950.data.seed-values.sql:4560
+msgid "Suggest other_phone field on patron registration"
 msgstr ""
 
-# id::ccvm.value__426
-#: 950.data.seed-values.sql:6268
-msgid "Tetum"
+# id::coust.description__circ.tally_lost
+#: 950.data.seed-values.sql:2962
+msgid ""
+"In the Patron Display interface, the number of total active circulations for"
+" a given patron is presented in the Summary sidebar and underneath the Items"
+" Out navigation button.  This setting will include Lost circulations as "
+"counting toward these tallies."
 msgstr ""
 
-# id::ccvm.value__335
-#: 950.data.seed-values.sql:6177
-msgid "Pahlavi"
+# id::ccvm.value__398
+#: 950.data.seed-values.sql:6392
+msgid "Sogdian"
 msgstr ""
 
-# id::cubt.label__folks%3Apub_book_bags.add
-#: 950.data.seed-values.sql:4893
-msgid "Add to Published Book Bags"
+# id::ppl.description__401
+#: 950.data.seed-values.sql:1310
+msgid "ADMIN_BOOKING_RESERVATION_ATTR_MAP"
 msgstr ""
 
-# id::vie.description__import.item.invalid.status
-#: 950.data.seed-values.sql:9486
-msgid "Invalid value for \"status\""
+# id::ccvm.value__236
+#: 950.data.seed-values.sql:6230
+msgid "Kuanyama"
 msgstr ""
 
-# id::acsaf.name__61
-#: 950.data.seed-values.sql:10227
-msgid "See Also Tracing -- Personal Name"
+# id::ccvm.value__549
+#: 950.data.seed-values.sql:6556
+msgid "D-2"
 msgstr ""
 
-# id::ccvm.value__385
-#: 950.data.seed-values.sql:6227
-msgid "Slovak"
+# id::ccvm.value__505
+#: 950.data.seed-values.sql:6503
+msgid "Notated music"
 msgstr ""
 
-# id::at.name__n
-#: 950.data.seed-values.sql:10311
-msgid "Not applicable"
+# id::csp.label__28
+#: 950.data.seed-values.sql:41
+msgid "Alerting block on Renew"
 msgstr ""
 
-# id::ccvm.value__66
-#: 950.data.seed-values.sql:5908
-msgid "Central American Indian (Other)"
+# id::acsaf.name__9
+#: 950.data.seed-values.sql:10481
+msgid "Heading -- Geographic Subdivision"
 msgstr ""
 
-# id::ccvm.value__224
-#: 950.data.seed-values.sql:6066
-msgid "Kikuyu"
+# id::ppl.description__219
+#: 950.data.seed-values.sql:948
+msgid "CREATE_ORG_ADDRESS"
 msgstr ""
 
-# id::ccvm.value__545
-#: 950.data.seed-values.sql:6400
-msgid "Betacam"
+# id::cmf.label__29
+#: 950.data.seed-values.sql:176
+msgid "System Control Number"
 msgstr ""
 
-# id::crahp.name__2
-#: 950.data.seed-values.sql:294
-msgid "6month"
+# id::acsaf.name__63
+#: 950.data.seed-values.sql:10518
+msgid "See From Tracing -- Meeting Name"
 msgstr ""
 
-# id::cgf.label__history.circ.retention_count
-#: 950.data.seed-values.sql:8985
-msgid "Historical Circulations per Copy"
+# id::atreact.description__MarkItemLongOverdue
+#: 950.data.seed-values.sql:13109
+msgid ""
+"Marks a circulating item as long-overdue and applies configured penalties.  "
+"Also creates events for the longoverdue.auto hook"
 msgstr ""
 
-# id::cmf.label__20
-#: 950.data.seed-values.sql:156
-msgid "UPC"
+# id::ccvm.value__375
+#: 950.data.seed-values.sql:6369
+msgid "Semitic (Other)"
 msgstr ""
 
-# id::aiit.name__HND
-#: 950.data.seed-values.sql:8890
-msgid "Handling Charge"
+# id::ppl.description__315
+#: 950.data.seed-values.sql:1140
+msgid "DELETE_IMPORT_ITEM_ATTR_DEF"
 msgstr ""
 
-# id::at.name__k
-#: 950.data.seed-values.sql:10310
-msgid "Canadian Subject Headings"
+# id::coust.description__opac.payment_history_age_limit
+#: 950.data.seed-values.sql:3949
+msgid ""
+"The OPAC should not display payments by patrons that are older than any "
+"interval defined here."
 msgstr ""
 
-# id::ccvm.value__ang
-#: 950.data.seed-values.sql:5859
-msgid "English, Old (ca. 450-1100)"
+# id::ppl.description__187
+#: 950.data.seed-values.sql:884
+msgid "Allows a user to add/remove/edit users in the \"ACQ\" group"
 msgstr ""
 
-# id::ccvm.value__300
-#: 950.data.seed-values.sql:6142
-msgid "North American Indian (Other)"
+# id::coust.label__ui.patron.edit.au.email.show
+#: 950.data.seed-values.sql:4389
+msgid "Show email field on patron registration"
 msgstr ""
 
-# id::ccvm.value__345
-#: 950.data.seed-values.sql:6187
-msgid "Polish"
+# id::ccvm.value__311
+#: 950.data.seed-values.sql:6305
+msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
-# id::acsaf.name__5
-#: 950.data.seed-values.sql:10191
-msgid "Heading -- Topical Term"
+# id::ppl.description__459
+#: 950.data.seed-values.sql:1426
+msgid "UPDATE_BILLING_TYPE"
 msgstr ""
 
-# id::ccvm.value__95
-#: 950.data.seed-values.sql:5937
-msgid "Crimean Tatar"
+# id::cfdi.description__url_verify
+#: 950.data.seed-values.sql:12432
+msgid "All Link Checker filter dialogs"
 msgstr ""
 
-# id::cbrebt.label__bookbag
-#: 950.data.seed-values.sql:4885
-msgid "Book Bag"
+# id::cust.label__opac.default_pickup_location
+#: 950.data.seed-values.sql:2553
+msgid "Default Hold Pickup Location"
 msgstr ""
 
-# id::acsaf.name__63
-#: 950.data.seed-values.sql:10229
-msgid "See Also Tracing -- Meeting Name"
+# id::aou.name__9
+#: 950.data.seed-values.sql:471
+msgid "Example Bookmobile 1"
 msgstr ""
 
-# id::ccvm.value__50
-#: 950.data.seed-values.sql:5892
-msgid "Bhojpuri"
+# id::ccvm.value__106
+#: 950.data.seed-values.sql:6100
+msgid "Dinka"
 msgstr ""
 
-# id::ccvm.value__441
-#: 950.data.seed-values.sql:6283
-msgid "Tsimshian"
+# id::ppl.description__376
+#: 950.data.seed-values.sql:1260
+msgid "Enables the user to create/update/delete booking resources"
 msgstr ""
 
-# id::aout.opac_label__5
-#: 950.data.seed-values.sql:442
-msgid "Your Bookmobile"
+# id::cmf.label__28
+#: 950.data.seed-values.sql:174
+msgid "Authority Record ID"
 msgstr ""
 
-# id::ccvm.value__315
-#: 950.data.seed-values.sql:6157
-msgid "Nogai"
+# id::ccpbt.label__staff_client id::cbrebt.label__staff_client
+#: 950.data.seed-values.sql:5032 950.data.seed-values.sql:5036
+msgid "General Staff Client container"
 msgstr ""
 
-# id::cuat.label__14
-#: 950.data.seed-values.sql:11723
-msgid "Verification via remoteauth"
+# id::ppl.description__70
+#: 950.data.seed-values.sql:650
+msgid "Allow a user to check out a copy"
 msgstr ""
 
-# id::ccvm.value__120
-#: 950.data.seed-values.sql:5962
-msgid "English, Middle (1100-1500)"
+# id::coust.label__url_verify.url_verification_max_redirects
+#: 950.data.seed-values.sql:12393
+msgid "Maximum redirect lookups"
 msgstr ""
 
-# id::ccvm.value__363
-#: 950.data.seed-values.sql:6205
-msgid "Yakut"
+# id::coust.description__ui.patron.edit.au.email.suggest
+#: 950.data.seed-values.sql:4401
+msgid ""
+"The email field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__411
-#: 950.data.seed-values.sql:6253
-msgid "Sumerian"
+# id::cbrebt.label__reading_list
+#: 950.data.seed-values.sql:5038
+msgid "Reading List"
 msgstr ""
 
-# id::acqit.name__PPR
-#: 950.data.seed-values.sql:8895
-msgid "Paper"
+# id::ppl.description__163
+#: 950.data.seed-values.sql:836
+msgid "Allow a user to update a provider"
 msgstr ""
 
-# id::ccvm.value__475
-#: 950.data.seed-values.sql:6317
-msgid "Xhosa"
+# id::ath.description__aur.created
+#: 950.data.seed-values.sql:7006
+msgid "A patron has made an acquisitions request."
 msgstr ""
 
-# id::ccvm.value__288
-#: 950.data.seed-values.sql:6130
-msgid "Manipuri"
+# id::coust.description__circ.block_renews_for_holds
+#: 950.data.seed-values.sql:2852
+msgid ""
+"When an item could fulfill a hold, do not allow the current patron to renew"
 msgstr ""
 
-# id::ccvm.value__61
-#: 950.data.seed-values.sql:5903
-msgid "Buriat"
+# id::coust.description__ui.patron.edit.au.prefix.show
+# id::coust.description__ui.patron.edit.au.prefix.suggest
+#: 950.data.seed-values.sql:4581 950.data.seed-values.sql:4590
+msgid ""
+"The prefix field will be shown on the patron registration screen. Showing a "
+"field makes it appear with required fields even when not required. If the "
+"field is required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__270
-#: 950.data.seed-values.sql:6112
-msgid "Mandingo"
+# id::coust.label__credit.processor.payflowpro.testmode
+#: 950.data.seed-values.sql:3753
+msgid "PayflowPro test mode"
 msgstr ""
 
-# id::cuat.label__6
-#: 950.data.seed-values.sql:11714
-msgid "Login via remoteauth"
+# id::ccvm.value__296
+#: 950.data.seed-values.sql:6290
+msgid "Creek"
 msgstr ""
 
-# id::ccvm.value__183
-#: 950.data.seed-values.sql:6025
-msgid "Hupa"
+# id::ccvm.value__490
+#: 950.data.seed-values.sql:6486
+msgid "Pre-adolescent"
 msgstr ""
 
-# id::ccvm.value__193 id::ccvm.value__198
-#: 950.data.seed-values.sql:6035 950.data.seed-values.sql:6040
-msgid "Interlingua (International Auxiliary Language Association)"
+# id::vie.description__import.item.invalid.owning_lib
+#: 950.data.seed-values.sql:9770
+msgid "Invalid value for \"owning_lib\""
 msgstr ""
 
-# id::ccvm.value__186
-#: 950.data.seed-values.sql:6028
-msgid "Icelandic"
+# id::csp.label__5
+#: 950.data.seed-values.sql:31
+msgid "Patron exceeds max lost item threshold"
 msgstr ""
 
-# id::acsaf.name__27
-#: 950.data.seed-values.sql:10206
-msgid "See Also From Tracing -- Genre/Form Term"
+# id::ppl.description__26
+#: 950.data.seed-values.sql:562
+msgid "Allow a user to edit a user's record"
 msgstr ""
 
-# id::ccvm.value__451
-#: 950.data.seed-values.sql:6293
-msgid "Twi"
+# id::ppl.description__342
+#: 950.data.seed-values.sql:1194
+msgid "UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty"
 msgstr ""
 
-# id::ccvm.value__168
-#: 950.data.seed-values.sql:6010
-msgid "Gujarati"
+# id::ccvm.value__345
+#: 950.data.seed-values.sql:6339
+msgid "Polish"
 msgstr ""
 
-# id::ccvm.value__511
-#: 950.data.seed-values.sql:6359
-msgid "Fiction (not further specified)"
+# id::ath.description__vandelay.queued_bib_record.csv
+#: 950.data.seed-values.sql:9832
+msgid "CSV output has been requested for records in an Importer Bib Queue."
 msgstr ""
 
-# id::ccvm.value__272
-#: 950.data.seed-values.sql:6114
-msgid "Austronesian (Other)"
+# id::ppl.description__6
+#: 950.data.seed-values.sql:522
+msgid "Allow a user to place a hold on a specific copy"
 msgstr ""
 
-# id::ccvm.value__akk
-#: 950.data.seed-values.sql:5854
-msgid "Akkadian"
+# id::ppl.description__337
+#: 950.data.seed-values.sql:1184
+msgid "UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout"
 msgstr ""
 
-# id::cnal.name__1
-#: 950.data.seed-values.sql:317
-msgid "Filtered"
+# id::ccvm.description__493
+#: 950.data.seed-values.sql:6489
+msgid ""
+"The item is aimed at a particular audience and the nature of the "
+"presentation makes the item of little interest to another audience."
 msgstr ""
 
-# id::ccvm.value__231
-#: 950.data.seed-values.sql:6073
-msgid "Korean"
+# id::csc.name__29
+#: 950.data.seed-values.sql:11219
+msgid "Boost Mobile"
 msgstr ""
 
-# id::ccvm.value__378
-#: 950.data.seed-values.sql:6220
-msgid "Shan"
+# id::coust.description__circ.missing_pieces.copy_status
+#: 950.data.seed-values.sql:3306
+msgid ""
+"This is the Item Status to use for items that have been marked or scanned as"
+" having Missing Pieces.  In the absence of this setting, the Damaged status "
+"is used."
 msgstr ""
 
-# id::vie.description__overlay.record.quality
-#: 950.data.seed-values.sql:9483
-msgid "New record had insufficient quality"
+# id::ppl.description__177
+#: 950.data.seed-values.sql:864
+msgid "Allow a user to mark an item status as 'checked out'"
 msgstr ""
 
-# id::ccvm.value__506
-#: 950.data.seed-values.sql:6352
-msgid "Manuscript notated music"
+# id::csp.label__23
+#: 950.data.seed-values.sql:36
+msgid "Alerting block on Circ and Hold"
 msgstr ""
 
-# id::acsaf.name__44
-#: 950.data.seed-values.sql:10182
-msgid "Established Heading Linking Entry -- Uniform Title"
+# id::ppl.description__287
+#: 950.data.seed-values.sql:1084
+msgid "CREATE_BIB_IMPORT_QUEUE"
 msgstr ""
 
-# id::ccvm.value__537
-#: 950.data.seed-values.sql:6392
-msgid "Beta"
+# id::ccvm.value__336
+#: 950.data.seed-values.sql:6330
+msgid "Pampanga"
 msgstr ""
 
-# id::ccvm.value__532
-#: 950.data.seed-values.sql:6385
-msgid "Collection"
+# id::coust.description__ui.patron.edit.phone.example
+#: 950.data.seed-values.sql:4698
+msgid ""
+"The Example for validation on phone fields in patron registration. Applies "
+"to all phone fields without their own setting."
 msgstr ""
 
-# id::ccvm.value__320
-#: 950.data.seed-values.sql:6162
-msgid "Nyanja"
+# id::ccvm.value__335
+#: 950.data.seed-values.sql:6329
+msgid "Pahlavi"
 msgstr ""
 
-# id::acsaf.name__66
-#: 950.data.seed-values.sql:10231
-msgid "See Also Tracing -- Geographic Name"
+# id::ppl.description__519
+#: 950.data.seed-values.sql:1546
+msgid "Allows a user to add/create/delete SMS Carrier entries."
 msgstr ""
 
-# id::pgt.description__13
-#: 950.data.seed-values.sql:1626
-msgid "Can do anything at the Consortium level"
+# id::cgf.label__history.hold.retention_age_canceled_2
+#: 950.data.seed-values.sql:9193
+msgid "Historical Hold Retention Age - Canceled (Hold Shelf expiration)"
 msgstr ""
 
-# id::ccvm.value__65
-#: 950.data.seed-values.sql:5907
-msgid "Caddo"
+# id::ahrcc.label__4
+#: 950.data.seed-values.sql:2473
+msgid "Patron in person"
 msgstr ""
 
-# id::ccvm.value__249
-#: 950.data.seed-values.sql:6091
-msgid "Lezgian"
+# id::coust.label__credit.processor.payflowpro.enabled
+#: 950.data.seed-values.sql:3717
+msgid "Enable PayflowPro payments"
 msgstr ""
 
-# id::ccvm.value__215
-#: 950.data.seed-values.sql:6057
-msgid "Kashmiri"
+# id::ppl.description__176
+#: 950.data.seed-values.sql:862
+msgid "Allow a user to mark an item status as 'available'"
 msgstr ""
 
-# id::ccvm.value__170
-#: 950.data.seed-values.sql:6012
-msgid "Haida"
+# id::coust.label__ui.patron.edit.aua.county.require
+#: 950.data.seed-values.sql:4632
+msgid "Require county field on patron registration"
 msgstr ""
 
-# id::cmf.label__25
-#: 950.data.seed-values.sql:166
-msgid "Local Free-Text Call Number"
+# id::ccvm.value__224
+#: 950.data.seed-values.sql:6218
+msgid "Kikuyu"
 msgstr ""
 
-# id::ccvm.value__244 id::ccvm.value__325
-#: 950.data.seed-values.sql:6086 950.data.seed-values.sql:6167
-msgid "Occitan (post-1500)"
+# id::coust.label__ui.patron.edit.au.suffix.show
+#: 950.data.seed-values.sql:4614
+msgid "Show suffix field on patron registration"
 msgstr ""
 
-# id::vie.description__import.xml.malformed
-#: 950.data.seed-values.sql:9481
-msgid "Malformed record cause Import failure"
+# id::ccvm.value__430
+#: 950.data.seed-values.sql:6424
+msgid "Tibetan"
 msgstr ""
 
-# id::ccvm.value__400
-#: 950.data.seed-values.sql:6242
-msgid "Songhai"
+# id::ccvm.value__300
+#: 950.data.seed-values.sql:6294
+msgid "North American Indian (Other)"
 msgstr ""
 
-# id::i18n_l.name__es-US
-#: 950.data.seed-values.sql:344
-msgid "Spanish (US)"
+# id::cgf.label__ingest.disable_authority_auto_update
+#: 950.data.seed-values.sql:9143
+msgid ""
+"Authority Automation: Disable automatic authority updating (requires link "
+"tracking)"
 msgstr ""
 
-# id::ccs.name__2
-#: 950.data.seed-values.sql:299
-msgid "Bindery"
+# id::ccvm.value__95
+#: 950.data.seed-values.sql:6089
+msgid "Crimean Tatar"
 msgstr ""
 
-# id::aout.name__2 id::coust.label__config.settings_group.system
-#: 950.data.seed-values.sql:432 950.data.seed-values.sql:2501
-msgid "System"
+# id::ppl.description__339
+#: 950.data.seed-values.sql:1188
+msgid "UPDATE_ORG_UNIT_SETTING.circ.selfcheck.require_patron_password"
 msgstr ""
 
-# id::pgt.name__7
-#: 950.data.seed-values.sql:1610
-msgid "Acquisitions Administrator"
+# id::ccvm.value__441
+#: 950.data.seed-values.sql:6435
+msgid "Tsimshian"
 msgstr ""
 
-# id::cbrebt.label__vandelay_queue
-#: 950.data.seed-values.sql:10333
-msgid "Vandelay Queue"
+# id::ppl.description__214
+#: 950.data.seed-values.sql:938
+msgid "CREATE_LASSO"
 msgstr ""
 
-# id::vqbrad.description__3
-#: 950.data.seed-values.sql:4813
-msgid "Language of work"
+# id::ccvm.value__315
+#: 950.data.seed-values.sql:6309
+msgid "Nogai"
 msgstr ""
 
-# id::ccvm.value__aar
-#: 950.data.seed-values.sql:5843
-msgid "Afar"
+# id::coust.description__circ.patron_edit.duplicate_patron_check_depth
+#: 950.data.seed-values.sql:4889
+msgid ""
+"When using the patron registration page, the duplicate patron check will use"
+" the configured depth to scope the search for duplicate patrons."
 msgstr ""
 
-# id::crahp.name__1
-#: 950.data.seed-values.sql:292
-msgid "3month"
+# id::ppl.description__284
+#: 950.data.seed-values.sql:1078
+msgid "CREATE_AUTHORITY_IMPORT_QUEUE"
 msgstr ""
 
-# id::cza.label__8 id::cza.label__17 id::cza.label__26
-# id::vqbrad.description__13
-#: 950.data.seed-values.sql:377 950.data.seed-values.sql:398
-#: 950.data.seed-values.sql:417 950.data.seed-values.sql:4823
-msgid "Publication Date"
+# id::ccvm.value__120
+#: 950.data.seed-values.sql:6114
+msgid "English, Middle (1100-1500)"
 msgstr ""
 
-# id::ccvm.value__453
-#: 950.data.seed-values.sql:6295
-msgid "Udmurt"
+# id::ccvm.value__411
+#: 950.data.seed-values.sql:6405
+msgid "Sumerian"
 msgstr ""
 
-# id::ccvm.value__155 id::ccvm.value__201
-#: 950.data.seed-values.sql:5997 950.data.seed-values.sql:6043
-msgid "Irish"
+# id::coust.description__ui.patron.edit.aua.county.require
+#: 950.data.seed-values.sql:13236
+msgid "The county field will be shown on the patron registration screen"
 msgstr ""
 
-# id::acsaf.name__64
-#: 950.data.seed-values.sql:10183
-msgid "See Also Tracing -- Uniform Title"
+# id::coust.label__circ.holds.recall_threshold
+#: 950.data.seed-values.sql:3195
+msgid "Circulation duration that triggers a recall."
 msgstr ""
 
-# id::i18n_l.name__cs-CZ id::i18n_l.description__cs-CZ id::ccvm.value__98
-#: 950.data.seed-values.sql:329 950.data.seed-values.sql:330
-#: 950.data.seed-values.sql:5940
-msgid "Czech"
+# id::coust.description__ui.patron.edit.au.other_phone.regex
+#: 950.data.seed-values.sql:4536
+msgid ""
+"The Regular Expression for validation on the other_phone field in patron "
+"registration."
 msgstr ""
 
-# id::ccvm.value__261
-#: 950.data.seed-values.sql:6103
-msgid "Luo (Kenya and Tanzania)"
+# id::ccvm.value__193 id::ccvm.value__198
+#: 950.data.seed-values.sql:6187 950.data.seed-values.sql:6192
+msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
-# id::ccvm.value__219
-#: 950.data.seed-values.sql:6061
-msgid "Kabardian"
+# id::ccvm.value__451
+#: 950.data.seed-values.sql:6445
+msgid "Twi"
 msgstr ""
 
-# id::ccvm.value__242
-#: 950.data.seed-values.sql:6084
-msgid "Lahnda"
+# id::coust.label__circ.auto_hide_patron_summary
+#: 950.data.seed-values.sql:2840
+msgid "Toggle off the patron summary sidebar after first view."
 msgstr ""
 
-# id::ccvm.value__46
-#: 950.data.seed-values.sql:5888
-msgid "Belarusian"
+# id::ccvm.value__168
+#: 950.data.seed-values.sql:6162
+msgid "Gujarati"
 msgstr ""
 
-# id::czs.label__loc
-#: 950.data.seed-values.sql:356
-msgid "Library of Congress"
+# id::ccvm.value__272
+#: 950.data.seed-values.sql:6266
+msgid "Austronesian (Other)"
 msgstr ""
 
-# id::cuat.label__1
-#: 950.data.seed-values.sql:11709
-msgid "Login via opensrf"
+# id::csc.name__6
+#: 950.data.seed-values.sql:10824
+msgid "Fido"
 msgstr ""
 
-# id::ccvm.value__526
-#: 950.data.seed-values.sql:6377
-msgid "Large print"
+# id::ccvm.value__211
+#: 950.data.seed-values.sql:6205
+msgid "Kalâtdlisut"
 msgstr ""
 
-# id::ccvm.value__-ajm
-#: 950.data.seed-values.sql:5852
-msgid "Aljamía"
+# id::cnal.name__1
+#: 950.data.seed-values.sql:326
+msgid "Filtered"
 msgstr ""
 
-# id::cmf.label__12
-#: 950.data.seed-values.sql:137
-msgid "Name Subject"
+# id::ppl.description__421
+#: 950.data.seed-values.sql:1350
+msgid "ADMIN_ORG_UNIT_SETTING_TYPE"
 msgstr ""
 
-# id::ccvm.value__388
-#: 950.data.seed-values.sql:6230
-msgid "Northern Sami"
+# id::coust.description__ui.staff.require_initials
+#: 950.data.seed-values.sql:4734
+msgid "Appends staff initials and edit date into note content."
 msgstr ""
 
-# id::ccvm.value__474
-#: 950.data.seed-values.sql:6316
-msgid "Kalmyk"
+# id::coust.label__cat.default_copy_status_normal
+#: 950.data.seed-values.sql:2750
+msgid "Default copy status (normal)"
 msgstr ""
 
-# id::cmf.label__6
-#: 950.data.seed-values.sql:123
-msgid "Title Proper"
+# id::acsaf.name__44
+#: 950.data.seed-values.sql:10460
+msgid "Established Heading Linking Entry -- Uniform Title"
 msgstr ""
 
-# id::cuat.label__17
-#: 950.data.seed-values.sql:11728
-msgid "OPAC Login (tpac)"
+# id::ppl.description__3
+#: 950.data.seed-values.sql:516
+msgid "Allow a user to create a metarecord holds"
 msgstr ""
 
-# id::ccvm.value__491
-#: 950.data.seed-values.sql:6335
-msgid "Adolescent"
+# id::csc.name__33
+#: 950.data.seed-values.sql:11287
+msgid "AT&T Mobility/Wireless"
 msgstr ""
 
-# id::ccvm.value__358
-#: 950.data.seed-values.sql:6200
-msgid "Romanian"
+# id::pgt.description__13
+#: 950.data.seed-values.sql:1645
+msgid "Can do anything at the Consortium level"
 msgstr ""
 
-# id::ccvm.value__aze
-#: 950.data.seed-values.sql:5877
-msgid "Azerbaijani"
+# id::ccvm.value__215
+#: 950.data.seed-values.sql:6209
+msgid "Kashmiri"
 msgstr ""
 
-# id::ccvm.value__403
-#: 950.data.seed-values.sql:6245
-msgid "Sardinian"
+# id::coust.label__ui.patron.edit.au.day_phone.suggest
+#: 950.data.seed-values.sql:4317
+msgid "Suggest day_phone field on patron registration"
 msgstr ""
 
-# id::ccvm.value__538
-#: 950.data.seed-values.sql:6393
-msgid "VHS"
+# id::ccvm.value__170
+#: 950.data.seed-values.sql:6164
+msgid "Haida"
 msgstr ""
 
-# id::cbt.name__5
-#: 950.data.seed-values.sql:480
-msgid "System: Deposit"
+# id::ccvm.value__244 id::ccvm.value__325
+#: 950.data.seed-values.sql:6238 950.data.seed-values.sql:6319
+msgid "Occitan (post-1500)"
 msgstr ""
 
-# id::at.name__c
-#: 950.data.seed-values.sql:10308
-msgid "Medical Subject Headings"
+# id::coust.description__circ.offline.username_allowed
+#: 950.data.seed-values.sql:3351
+msgid ""
+"During offline circulations, allow patrons to identify themselves with "
+"usernames in addition to barcode.  For this setting to work, a barcode "
+"format must also be defined"
 msgstr ""
 
-# id::cuat.label__4
-#: 950.data.seed-values.sql:11712
-msgid "Login via translator-v1"
+# id::pgt.name__7
+#: 950.data.seed-values.sql:1629
+msgid "Acquisitions Administrator"
 msgstr ""
 
-# id::ccvm.value__498
-#: 950.data.seed-values.sql:6344
-msgid "Projected medium"
+# id::ppl.description__104
+#: 950.data.seed-values.sql:718
+msgid "Allow a user to remove the lost status from a copy"
 msgstr ""
 
-# id::coust.label__config.settings_group.offline
-#: 950.data.seed-values.sql:2517
-msgid "Offline"
+# id::vqbrad.description__3
+#: 950.data.seed-values.sql:4964
+msgid "Language of work"
 msgstr ""
 
-# id::ccvm.value__245
-#: 950.data.seed-values.sql:6087
-msgid "Lao"
+# id::cust.label__ui.grid_columns.url_verify.select_urls
+# id::cust.description__ui.grid_columns.url_verify.select_urls
+#: 950.data.seed-values.sql:12444 950.data.seed-values.sql:12450
+msgid "Link Checker's URL Selection interface's saved columns"
 msgstr ""
 
-# id::cmf.label__22
-#: 950.data.seed-values.sql:160
-msgid "EAN"
+# id::ccvm.value__aar
+#: 950.data.seed-values.sql:5995
+msgid "Afar"
 msgstr ""
 
-# id::ccvm.value__549
-#: 950.data.seed-values.sql:6404
-msgid "D-2"
+# id::ppl.description__392
+#: 950.data.seed-values.sql:1292
+msgid "ADMIN_ACQ_CLAIM_EVENT_TYPE"
 msgstr ""
 
-# id::ccvm.value__382
-#: 950.data.seed-values.sql:6224
-msgid "Siouan (Other)"
+# id::at.name__|
+#: 950.data.seed-values.sql:10609
+msgid "No attempt to code"
 msgstr ""
 
-# id::ccvm.value__372
-#: 950.data.seed-values.sql:6214
-msgid "Scots"
+# id::coust.label__circ.offline.username_allowed
+#: 950.data.seed-values.sql:3348
+msgid "Offline: Patron Usernames Allowed"
 msgstr ""
 
-# id::ccvm.value__278
-#: 950.data.seed-values.sql:6120
-msgid "Mende"
+# id::ppl.description__424
+#: 950.data.seed-values.sql:1356
+msgid "ADMIN_STANDING_PENALTY"
 msgstr ""
 
-# id::ccvm.value__326
-#: 950.data.seed-values.sql:6168
-msgid "Ojibwa"
+# id::cmf.label__12
+#: 950.data.seed-values.sql:139
+msgid "Name Subject"
 msgstr ""
 
-# id::ccvm.value__410
-#: 950.data.seed-values.sql:6252
-msgid "Susu"
+# id::ppl.description__299
+#: 950.data.seed-values.sql:1108
+msgid "DELETE_TRANSLATION"
 msgstr ""
 
-# id::ccvm.value__70
-#: 950.data.seed-values.sql:5912
-msgid "Caucasian (Other)"
+# id::ccvm.value__388
+#: 950.data.seed-values.sql:6382
+msgid "Northern Sami"
 msgstr ""
 
-# id::ccvm.value__238
-#: 950.data.seed-values.sql:6080
-msgid "Kurdish"
+# id::coust.description__ui.patron.edit.au.barred.suggest
+#: 950.data.seed-values.sql:4230
+msgid ""
+"The barred field will be suggested on the patron registration screen. "
+"Suggesting a field makes it appear when suggested fields are shown. If the "
+"field is shown or required this setting is ignored."
 msgstr ""
 
-# id::ccvm.value__467
-#: 950.data.seed-values.sql:6309
-msgid "Walamo"
+# id::ppl.description__48
+#: 950.data.seed-values.sql:606
+msgid "Allow a user to view other users' permission groups"
 msgstr ""
 
-# id::cuat.label__5
-#: 950.data.seed-values.sql:11713
-msgid "Login via xmlrpc"
+# id::coust.description__ui.patron.edit.au.email.require
+#: 950.data.seed-values.sql:4383
+msgid "The email field will be required on the patron registration screen."
 msgstr ""
 
-# id::i18n_l.description__es-US
-#: 950.data.seed-values.sql:345
-msgid "American Spanish"
+# id::coust.label__circ.staff_client.receipt.event_text
+#: 950.data.seed-values.sql:3537
+msgid "Content of event_text include"
 msgstr ""
 
-# id::ccvm.value__305
-#: 950.data.seed-values.sql:6147
-msgid "Ndebele (Zimbabwe)  "
+# id::ppl.description__476
+#: 950.data.seed-values.sql:1460
+msgid "VIEW_HOLD_MATRIX_MATCHPOINT"
 msgstr ""
 
-# id::ccvm.value__257
-#: 950.data.seed-values.sql:6099
-msgid "Luba-Katanga"
+# id::ppl.description__103
+#: 950.data.seed-values.sql:716
+msgid "Allow a user to check in/out an item that has an alert message"
 msgstr ""
 
-# id::ccvm.value__529
-#: 950.data.seed-values.sql:6380
-msgid "Electronic"
+# id::coust.description__acq.fund.rollover_distrib_forms
+#: 950.data.seed-values.sql:12889
+msgid "During fiscal rollover, update distribution formalae to use new funds"
 msgstr ""
 
-# id::ccvm.value__513
-#: 950.data.seed-values.sql:6361
-msgid "Dramas"
+# id::coust.label__circ.selfcheck.block_checkout_on_copy_status
+#: 950.data.seed-values.sql:3465
+msgid "Block copy checkout status"
 msgstr ""
 
-# id::ccvm.value__483
-#: 950.data.seed-values.sql:6325
-msgid "Zhuang"
+# id::ahrcc.label__2
+#: 950.data.seed-values.sql:2471
+msgid "Hold Shelf expiration"
 msgstr ""
 
-# id::ccvm.value__527
-#: 950.data.seed-values.sql:6378
-msgid "Braille"
+# id::coust.label__acq.fund.balance_limit.block
+#: 950.data.seed-values.sql:2624
+msgid "Fund Spending Limit for Block"
 msgstr ""
 
-# id::ccvm.value__512
-#: 950.data.seed-values.sql:6360
-msgid "Comic strips"
+# id::ppl.description__181
+#: 950.data.seed-values.sql:872
+msgid "Allow a user to mark an item status as 'in process'"
 msgstr ""
 
-# id::ccvm.value__187
-#: 950.data.seed-values.sql:6029
-msgid "Ido"
+# id::ccvm.value__410
+#: 950.data.seed-values.sql:6404
+msgid "Susu"
 msgstr ""
 
-# id::i18n_l.description__fr-CA
-#: 950.data.seed-values.sql:339
-msgid "Canadian French"
+# id::ppl.description__411
+#: 950.data.seed-values.sql:1330
+msgid "ADMIN_IDENT_TYPE"
 msgstr ""
 
-# id::cmf.label__23
-#: 950.data.seed-values.sql:162
-msgid "ISRC"
+# id::cuat.label__5
+#: 950.data.seed-values.sql:12006
+msgid "Login via xmlrpc"
 msgstr ""
 
-# id::ccvm.value__134
-#: 950.data.seed-values.sql:5976
-msgid "Finno-Ugrian (Other)"
+# id::ccs.name__3
+#: 950.data.seed-values.sql:305
+msgid "Lost"
 msgstr ""
 
-# id::ccvm.value__apa
-#: 950.data.seed-values.sql:5860
-msgid "Apache languages"
+# id::ppl.description__61
+#: 950.data.seed-values.sql:632
+msgid "User may delete a patron statistical category"
 msgstr ""
 
-# id::csp.label__27
-#: 950.data.seed-values.sql:38
-msgid "Alerting block on Hold"
+# id::ccvm.value__402
+#: 950.data.seed-values.sql:6396
+msgid "Spanish"
 msgstr ""
 
-# id::ccvm.value__359
-#: 950.data.seed-values.sql:6201
-msgid "Rundi"
+# id::ccvm.value__545
+#: 950.data.seed-values.sql:6552
+msgid "Betacam"
 msgstr ""
 
-# id::crcd.name__7
-#: 950.data.seed-values.sql:256
-msgid "7_days_2_renew"
+# id::ccvm.value__508
+#: 950.data.seed-values.sql:6506
+msgid "Musical sound recording"
 msgstr ""
 
-# id::ccvm.value__122
-#: 950.data.seed-values.sql:5964
-msgid "Eskimo languages"
+# id::acsaf.name__1
+#: 950.data.seed-values.sql:10467
+msgid "Heading -- Personal Name"
 msgstr ""
 
-# id::cubt.label__folks%3Acirc.checkout
-#: 950.data.seed-values.sql:4896
-msgid "Checkout Items"
+# id::coust.description__ui.patron.edit.au.ident_value2.show
+#: 950.data.seed-values.sql:4473
+msgid ""
+"The ident_value2 field will be shown on the patron registration screen. "
+"Showing a field makes it appear with required fields even when not required."
+" If the field is required this setting is ignored."
 msgstr ""
 
-# id::cmf.label__10
-#: 950.data.seed-values.sql:132
-msgid "Other Author"
+# id::ppl.description__44
+#: 950.data.seed-values.sql:598
+msgid "Allow a user to delete another user's container"
 msgstr ""
 
-# id::ccvm.value__ath
-#: 950.data.seed-values.sql:5871
-msgid "Athapascan (Other)"
+# id::crcd.name__7
+#: 950.data.seed-values.sql:261
+msgid "7_days_2_renew"
 msgstr ""
 
-# id::ccvm.value__306
-#: 950.data.seed-values.sql:6148
-msgid "Ndonga"
+# id::ccvm.value__122
+#: 950.data.seed-values.sql:6116
+msgid "Eskimo languages"
 msgstr ""
 
-# id::csp.label__26
-#: 950.data.seed-values.sql:37
-msgid "Alerting block on Hold and Renew"
+# id::csp.label__32
+#: 950.data.seed-values.sql:60
+msgid "Patron had an invalid daytime phone number"
 msgstr ""
 
-# id::ccvm.value__401 id::ccvm.value__406
-#: 950.data.seed-values.sql:6243 950.data.seed-values.sql:6248
-msgid "Sotho"
+# id::ppl.description__256
+#: 950.data.seed-values.sql:1022
+msgid "UPDATE_CIRC_DURATION"
 msgstr ""
 
-# id::ccvm.value__469
-#: 950.data.seed-values.sql:6311
-msgid "Washo"
+# id::coust.label__ui.patron.edit.au.alias.show
+#: 950.data.seed-values.sql:4200
+msgid "Show alias field on patron registration"
 msgstr ""
 
-# id::ccvm.value__402
-#: 950.data.seed-values.sql:6244
-msgid "Spanish"
+# id::ppl.description__509
+#: 950.data.seed-values.sql:1526
+msgid "Allows a user to override the TRANSIT_CHECKIN_INTERVAL_BLOCK event"
 msgstr ""
 
-# id::acsaf.name__31
-#: 950.data.seed-values.sql:10210
-msgid "See Also From Tracing -- Form Subdivision"
+# id::coust.label__ui.patron.edit.au.evening_phone.suggest
+#: 950.data.seed-values.sql:4443
+msgid "Suggest evening_phone field on patron registration"
 msgstr ""
 
-# id::acsaf.name__29
-#: 950.data.seed-values.sql:10208
-msgid "See Also From Tracing -- Geographic Subdivision"
+# id::ppl.description__515
+#: 950.data.seed-values.sql:1538
+msgid "Allows a user to manually adjust a patron's primary card"
 msgstr ""
index 0697def..15ced6f 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-03-15 19:38:15-0400\n"
+"POT-Creation-Date: 2013-09-10 14:34:08-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11,112 +11,114 @@ msgstr ""
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: field.bre.source.label:2650
+#: field.bre.source.label:2681
 msgid "Record Source"
 msgstr ""
 
-#: class.rxpt.label:8469
+#: class.rxpt.label:8662
 msgid "Transaction Paid Totals"
 msgstr ""
 
-#: field.sunit.sort_key.label:4634
+#: field.sunit.sort_key.label:4666
 msgid "Sort Key"
 msgstr ""
 
-#: field.mrd.vr_format.label:3362
-msgid "Video Recording Format"
+#: field.aua.post_code.label:3502 field.aal.post_code.label:3530
+#: field.acqpca.post_code.label:7304 field.stgma.post_code.label:8987
+#: field.stgba.post_code.label:9003
+msgid "Postal Code"
 msgstr ""
 
-#: field.uvuv.res_code.label:9654
+#: field.uvuv.res_code.label:9853
 msgid "Result Code"
 msgstr ""
 
-#: field.acqmapinv.picklist.label:10562
+#: field.acqmapinv.picklist.label:10761
 msgid "Picklist ID"
 msgstr ""
 
-#: class.acqlih.label:7891
+#: class.acqlih.label:8085
 msgid "Line Item History"
 msgstr ""
 
-#: field.au.ident_value2.label:2916
+#: field.au.ident_value2.label:2947
 msgid "Secondary Identification"
 msgstr ""
 
-#: field.sdist.record_entry.label:4426
+#: field.sdist.record_entry.label:4458
 msgid "Legacy Record Entry"
 msgstr ""
 
-#: field.acqfst.amount.label:7406 field.acqafst.amount.label:7460
+#: field.acqfst.amount.label:7600 field.acqafst.amount.label:7654
 msgid "Total Spent Amount"
 msgstr ""
 
-#: field.auri.use_restriction.label:2568
+#: field.auri.use_restriction.label:2599
 msgid "Use Information"
 msgstr ""
 
-#: class.cmrtm.label:9735
+#: class.cmrtm.label:9934
 msgid "MARC21 Record Type Map"
 msgstr ""
 
-#: field.mp.credit_card_payment.label:6407
-#: field.mbp.credit_card_payment.label:6435
+#: field.mp.credit_card_payment.label:6599
+#: field.mbp.credit_card_payment.label:6628
 msgid "Credit Card Payment Detail"
 msgstr ""
 
 #: field.cracct.host.label:898 field.czs.host.label:923
-#: field.acqedi.host.label:8160 field.uvu.host.label:9565
+#: field.acqedi.host.label:8353 field.uvu.host.label:9764
 msgid "Host"
 msgstr ""
 
-#: field.rccbs.patron_city.label:10093
+#: field.rccbs.patron_city.label:10292
 msgid "User City"
 msgstr ""
 
-#: class.cmsa.label:2322
+#: class.cmsa.label:2352
 msgid "Metabib Search Alias"
 msgstr ""
 
-#: field.circ.billing_total.label:3703 field.combcirc.billing_total.label:3772
-#: field.acirc.billing_total.label:3845 field.bresv.billing_total.label:4042
-#: field.mg.billing_total.label:5757 field.mbt.billing_total.label:5799
-#: field.rodcirc.billing_total.label:10315
+#: field.circ.billing_total.label:3735 field.combcirc.billing_total.label:3804
+#: field.acirc.billing_total.label:3877 field.bresv.billing_total.label:4074
+#: field.mg.billing_total.label:5949 field.mbt.billing_total.label:5991
+#: field.rodcirc.billing_total.label:10514
 msgid "Billing Totals"
 msgstr ""
 
-#: field.qsq.where_clause.label:8924
+#: field.qsq.where_clause.label:9123
 msgid "WHERE Clause"
 msgstr ""
 
-#: field.brt.transferable.label:3897
+#: field.brt.transferable.label:3929
 msgid "Transferable"
 msgstr ""
 
-#: class.aoa.label:5018
+#: class.aoa.label:5050
 msgid "Org Address"
 msgstr ""
 
-#: field.mcrp.id.label:5653
+#: field.mcrp.id.label:5832
 msgid "Pyament ID"
 msgstr ""
 
-#: field.au.claims_returned_count.label:2900
+#: field.au.claims_returned_count.label:2931
 msgid "Claims-returned Count"
 msgstr ""
 
-#: class.acqfsrcct.label:7487
+#: class.acqfsrcct.label:7681
 msgid "Total Credit to Funding Source"
 msgstr ""
 
-#: class.acqlipad.label:8086
+#: class.acqlipad.label:8279
 msgid "Line Item Provider Attribute Definition"
 msgstr ""
 
-#: field.bra.required.label:3958
+#: field.bra.required.label:3990
 msgid "Is Required"
 msgstr ""
 
-#: field.bresv.booking_interval.label:4052
+#: field.bresv.booking_interval.label:4084
 msgid "Booking Interval"
 msgstr ""
 
@@ -124,189 +126,192 @@ msgstr ""
 msgid "Parameters (JSON Array)"
 msgstr ""
 
-#: field.vii.ref.label:287 field.viiad.ref.label:338
-#: field.rocit.ref.label:10364
+#: field.vii.ref.label:285 field.viiad.ref.label:336
+#: field.rocit.ref.label:10563
 msgid "Reference"
 msgstr ""
 
-#: field.acqfsb.amount.label:7520
+#: field.acqfsb.amount.label:7714
 msgid "Balance after Spent"
 msgstr ""
 
-#: class.atenv.label:1064
+#: class.atenv.label:1092
 msgid "Trigger Event Environment Entry"
 msgstr ""
 
-#: class.cit.label:1804
+#: class.cit.label:1832
 msgid "Identification Type"
 msgstr ""
 
-#: field.uvus.id.label:9517
+#: field.uvus.id.label:9716
 msgid "URL Selector ID"
 msgstr ""
 
-#: field.ahr.bib_rec.label:5138 field.ahopl.bib_rec.label:5265
-#: field.alhr.bib_rec.label:5339
+#: field.ahr.bib_rec.label:5170 field.ahopl.bib_rec.label:5317
+#: field.alhr.bib_rec.label:5400 field.combahr.bib_rec.label:5483
+#: field.aahr.bib_rec.label:5541
 msgid "Bib Record link"
 msgstr ""
 
-#: field.ahn.method.label:4177
+#: field.ahn.method.label:4209
 msgid "Notification Method"
 msgstr ""
 
-#: field.asc.sip_field.label:5535 field.actsc.sip_field.label:5589
+#: field.asc.sip_field.label:5714 field.actsc.sip_field.label:5768
 msgid "SIP Field"
 msgstr ""
 
-#: class.abaafm.label:2180
+#: class.abaafm.label:2210
 msgid "Authority Browse Axis Field Map"
 msgstr ""
 
-#: class.bravm.label:4090 field.bravm.id.label:4092
+#: class.bravm.label:4122 field.bravm.id.label:4124
 msgid "Reservation Attribute Value Map"
 msgstr ""
 
-#: field.rccc.call_number.label:10009
+#: field.rccc.call_number.label:10208
 msgid "Call Number Link"
 msgstr ""
 
-#: field.circ.checkin_lib.label:3669 field.combcirc.checkin_lib.label:3742
-#: field.acirc.checkin_lib.label:3811 field.rodcirc.checkin_lib.label:10287
+#: field.circ.checkin_lib.label:3701 field.combcirc.checkin_lib.label:3774
+#: field.acirc.checkin_lib.label:3843 field.rodcirc.checkin_lib.label:10486
 msgid "Check In Library"
 msgstr ""
 
-#: class.citm.label:4850
+#: class.citm.label:4882
 msgid "Item Type Map"
 msgstr ""
 
-#: field.uvuv.attempt.label:9651
+#: field.uvuv.attempt.label:9850
 msgid "Attempt"
 msgstr ""
 
-#: field.ccmw.id.label:1493
+#: field.ccmw.id.label:1521
 msgid "Circ Weights ID"
 msgstr ""
 
-#: field.rccbs.billing_location_shortname.label:10065
+#: field.rccbs.billing_location_shortname.label:10264
 msgid "Billing Location Short (Policy) Name"
 msgstr ""
 
-#: class.aous.label:3124
+#: class.aous.label:3156
 msgid "Organizational Unit Setting"
 msgstr ""
 
-#: field.rxbt.unvoided.label:8461
-msgid "Unvoided Billing Amount"
+#: field.ahopl.usr_alias_or_first_given_name.label:5335
+msgid "User Alias or First Given Name"
 msgstr ""
 
-#: field.aufh.fail_time.label:6266
+#: field.aufh.fail_time.label:6458
 msgid "Retargeting Date/Time"
 msgstr ""
 
-#: field.ssr.deleted.label:4984 field.rocit.deleted.label:10366
+#: field.ssr.deleted.label:5016 field.rocit.deleted.label:10565
 msgid "Deleted"
 msgstr ""
 
-#: field.mcrp.payment_ts.label:5655 field.mwp.payment_ts.label:5900
-#: field.mgp.payment_ts.label:5918 field.mckp.payment_ts.label:6006
+#: field.mcrp.payment_ts.label:5834 field.mwp.payment_ts.label:6092
+#: field.mgp.payment_ts.label:6110 field.mckp.payment_ts.label:6198
 msgid "Payment Timestamp"
 msgstr ""
 
-#: field.aou.attr_vals.label:5424
+#: field.aou.attr_vals.label:5603
 msgid "Attribute Values"
 msgstr ""
 
-#: field.vii.record.label:272
+#: field.vii.record.label:270
 msgid "Import Record"
 msgstr ""
 
-#: field.bra.valid_values.label:3959
+#: field.bra.valid_values.label:3991
 msgid "Valid Values"
 msgstr ""
 
-#: field.sstr.items.label:4505 field.siss.items.label:4574
+#: field.sstr.items.label:4537 field.siss.items.label:4606
 msgid "Items"
 msgstr ""
 
-#: field.ac.active.label:5548
+#: field.ac.active.label:5727
 msgid "IsActive?"
 msgstr ""
 
-#: field.au.other_phone.label:2921
+#: field.au.other_phone.label:2952
 msgid "Other Phone"
 msgstr ""
 
-#: field.actsced.id.label:5830
+#: field.actsced.id.label:6022
 msgid "Default Entry ID"
 msgstr ""
 
-#: class.acqfdeb.label:7272
+#: class.acqfdeb.label:7466
 msgid "Debit From Fund"
 msgstr ""
 
-#: field.rxpt.total.label:8474
+#: field.rxpt.total.label:8667
 msgid "Total Paid Amount"
 msgstr ""
 
-#: field.au.family_name.label:2909 field.stgu.family_name.label:8760
+#: field.au.family_name.label:2940 field.stgu.family_name.label:8953
 msgid "Last Name"
 msgstr ""
 
-#: field.uvu.page.label:9569
+#: field.uvu.page.label:9768
 msgid "Page"
 msgstr ""
 
-#: class.mous.label:2596
+#: class.mous.label:2627
 msgid "Open User Summary"
 msgstr ""
 
-#: field.au.stat_cat_entries.label:2891
-#: field.sunit.stat_cat_entries.label:4642
-#: field.acp.stat_cat_entries.label:6059
+#: field.au.stat_cat_entries.label:2922
+#: field.sunit.stat_cat_entries.label:4674
+#: field.acp.stat_cat_entries.label:6251
 msgid "Statistical Category Entries"
 msgstr ""
 
-#: field.vmp.owner.label:195 field.vibtg.owner.label:251
-#: field.viiad.owner.label:326 field.vbq.owner.label:367
+#: field.vmp.owner.label:195 field.vibtg.owner.label:249
+#: field.viiad.owner.label:324 field.vbq.owner.label:365
 #: field.vaq.owner.label:507 field.cracct.owner.label:903
-#: field.are.owner.label:2213 field.bre.owner.label:2653
-#: field.chdd.owner.label:2816 field.aal.owner.label:3488
-#: field.auss.owner.label:3519 field.acqpro.owner.label:6857
-#: field.acqfs.owner.label:7203 field.acqpl.owner.label:7640
-#: field.acqpo.owner.label:7688 field.acqpoh.owner.label:7735
-#: field.acqedi.owner.label:8165 field.afs.owner.label:8823
-#: field.cbc.org_unit.label:10576
+#: field.are.owner.label:2243 field.bre.owner.label:2684
+#: field.chdd.owner.label:2847 field.aal.owner.label:3520
+#: field.auss.owner.label:3551 field.acqpro.owner.label:7051
+#: field.acqfs.owner.label:7397 field.acqpl.owner.label:7834
+#: field.acqpo.owner.label:7882 field.acqpoh.owner.label:7929
+#: field.acqedi.owner.label:8358 field.afs.owner.label:9022
+#: field.cbc.org_unit.label:10775
 msgid "Owner"
 msgstr ""
 
-#: field.bresv.current_resource.label:4058
+#: field.bresv.current_resource.label:4090
 msgid "Current Resource"
 msgstr ""
 
-#: class.acqfcb.label:7420
+#: class.acqfcb.label:7614
 msgid "Fund Combined Balance"
 msgstr ""
 
-#: field.ahr.holdable_formats.label:5120
-#: field.ahopl.holdable_formats.label:5247
-#: field.alhr.holdable_formats.label:5323
+#: field.ahr.holdable_formats.label:5152
+#: field.ahopl.holdable_formats.label:5299
+#: field.alhr.holdable_formats.label:5384
+#: field.combahr.holdable_formats.label:5466
+#: field.aahr.holdable_formats.label:5524
 msgid "Holdable Formats (for M-type hold)"
 msgstr ""
 
-#: class.acqie.label:6958
+#: class.acqie.label:7152
 msgid "Invoice Entry"
 msgstr ""
 
-#: field.vibtf.grp.label:219 field.pgpt.grp.label:3399
-#: field.acplgm.lgroup.label:4243
+#: field.vibtf.grp.label:219 field.pgpt.grp.label:3431
+#: field.acplgm.lgroup.label:4275
 msgid "Group"
 msgstr ""
 
-#: field.au.ident_type2.label:2914
+#: field.au.ident_type2.label:2945
 msgid "Secondary Identification Type"
 msgstr ""
 
-#: field.actscsf.name.label:5567 field.ascsf.name.label:6539
+#: field.actscsf.name.label:5746 field.ascsf.name.label:6733
 msgid "Field Name"
 msgstr ""
 
@@ -314,317 +319,328 @@ msgstr ""
 msgid "Staff Member"
 msgstr ""
 
-#: field.rsr.uniform_title.label:8405
+#: field.rsr.uniform_title.label:8598
 msgid "Uniform Title (normalized)"
 msgstr ""
 
-#: field.sasum.generated_coverage.label:4735
-#: field.sbsum.generated_coverage.label:4760
-#: field.sssum.generated_coverage.label:4787
-#: field.sisum.generated_coverage.label:4814
+#: field.sasum.generated_coverage.label:4767
+#: field.sbsum.generated_coverage.label:4792
+#: field.sssum.generated_coverage.label:4819
+#: field.sisum.generated_coverage.label:4846
 msgid "Generated Coverage"
 msgstr ""
 
-#: class.mdp.label:6475
+#: class.mdp.label:6669
 msgid "Payments: Desk"
 msgstr ""
 
-#: field.qrc.column_type.label:9086
+#: field.qrc.column_type.label:9285
 msgid "Column Type"
 msgstr ""
 
-#: field.aou.shortname.label:5404
+#: field.ahopl.usr_second_given_name.label:5331
+msgid "User Second Given Name"
+msgstr ""
+
+#: field.aou.shortname.label:5583
 msgid "Short (Policy) Name"
 msgstr ""
 
-#: field.acn.deleted.label:2526 field.au.deleted.label:2936
-#: field.sre.deleted.label:4310 field.sunit.deleted.label:4614
-#: field.acp.deleted.label:6032
+#: field.acn.deleted.label:2557 field.au.deleted.label:2967
+#: field.sre.deleted.label:4342 field.sunit.deleted.label:4646
+#: field.acp.deleted.label:6224
 msgid "Is Deleted"
 msgstr ""
 
-#: field.mg.xact_finish.label:5752
+#: field.mg.xact_finish.label:5944
 msgid "Transaction Finish Timestamp"
 msgstr ""
 
-#: field.cmc.c_weight.label:2350
+#: field.cmc.c_weight.label:2381
 msgid "C Weight"
 msgstr ""
 
-#: class.actsced.label:5828
+#: class.actsced.label:6020
 msgid "User Stat Cat Default Entry"
 msgstr ""
 
-#: field.mb.billing_ts.label:6642
+#: field.mb.billing_ts.label:6836
 msgid "Billing Timestamp"
 msgstr ""
 
-#: field.acqscl.item.label:8676
+#: field.acqscl.item.label:8869
 msgid "Serial Item"
 msgstr ""
 
-#: class.acqpa.label:7038
+#: class.acqpa.label:7232
 msgid "Provider Address"
 msgstr ""
 
-#: field.acqlia.id.label:7981
+#: field.acqlia.id.label:8174
 msgid "Attribute Value ID"
 msgstr ""
 
-#: class.ahcm.label:4161
+#: class.ahcm.label:4193
 msgid "Hold Copy Map"
 msgstr ""
 
-#: class.arn.label:3561
+#: class.arn.label:3593
 msgid "Authority Record Note"
 msgstr ""
 
-#: class.rocit.label:10337
+#: class.rocit.label:10536
 msgid "Classic Item List"
 msgstr ""
 
-#: field.aba.sorter.label:2160
+#: field.aba.sorter.label:2190
 msgid "Sorter Attribute"
 msgstr ""
 
-#: field.ccls.depth.label:1681
+#: field.ccls.depth.label:1709
 msgid "Min Depth"
 msgstr ""
 
-#: field.acqpon.value.label:7772
+#: field.acqpon.value.label:7966
 msgid "Vote Value"
 msgstr ""
 
-#: field.vii.definition.label:273
+#: field.vii.definition.label:271
 msgid "Attribute Definition"
 msgstr ""
 
-#: class.acqcl.label:8644
+#: class.acqcl.label:8837
 msgid "Claim"
 msgstr ""
 
-#: class.cbt.label:6726 field.rmocbbol.billing_type.label:10387
-#: field.rmocbbcol.billing_type.label:10412
-#: field.rmocbbhol.billing_type.label:10440
+#: class.cbt.label:6920 field.rmocbbol.billing_type.label:10586
+#: field.rmocbbcol.billing_type.label:10611
+#: field.rmocbbhol.billing_type.label:10639
 msgid "Billing Type"
 msgstr ""
 
-#: field.atul.event_def.label:1236
+#: field.atul.event_def.label:1264
 msgid "Event Definition ID"
 msgstr ""
 
-#: field.atul.add_time.label:1237
+#: field.atul.add_time.label:1265
 msgid "Event Add Time"
 msgstr ""
 
-#: class.rrf.label:8270
+#: class.rrf.label:8463
 msgid "Report Folder"
 msgstr ""
 
-#: field.jub.lineitem_notes.label:7858
+#: field.jub.lineitem_notes.label:8052
 msgid "Line Item Notes"
 msgstr ""
 
-#: field.ahtc.hold.label:6609
+#: field.ahtc.hold.label:6803
 msgid "Hold requiring Transit"
 msgstr ""
 
-#: field.aout.name.label:5699
+#: field.aout.name.label:5891
 msgid "Type Name"
 msgstr ""
 
-#: field.ahr.cancel_time.label:5134 field.ahopl.cancel_time.label:5261
-#: field.alhr.cancel_time.label:5335
+#: field.ahr.cancel_time.label:5166 field.ahopl.cancel_time.label:5313
+#: field.alhr.cancel_time.label:5396 field.combahr.cancel_time.label:5482
+#: field.aahr.cancel_time.label:5540
 msgid "Hold Cancel Date/Time"
 msgstr ""
 
-#: class.acsaf.label:2084
+#: class.acsaf.label:2112
 msgid "Authority Control Set Authority Field"
 msgstr ""
 
-#: class.acqcle.label:8656
+#: class.acqcle.label:8849
 msgid "Claim Event"
 msgstr ""
 
-#: class.xcol.label:9197
+#: class.xcol.label:9396
 msgid "Column Expression"
 msgstr ""
 
 #: field.crad.format.label:793 field.cza.format.label:953
-#: field.cvrfm.value.label:1447 field.cmf.format.label:2375
+#: field.cvrfm.value.label:1475 field.cmf.format.label:2406
 msgid "Format"
 msgstr ""
 
-#: class.aiit.label:1303
+#: class.aiit.label:1331
 msgid "Non-bibliographic Invoice Item Type"
 msgstr ""
 
-#: field.au.usrname.label:2931
+#: field.au.usrname.label:2962
 msgid "OPAC/Staff Client User Name"
 msgstr ""
 
-#: field.vii.circ_lib.label:279 field.viiad.circ_lib.label:331
-#: field.circ.circ_lib.label:3672 field.combcirc.circ_lib.label:3745
-#: field.acirc.circ_lib.label:3814 field.sunit.circ_lib.label:4607
-#: field.acp.circ_lib.label:6025 field.ancc.circ_lib.label:6236
-#: field.aufhl.circ_lib.label:8856 field.aufhil.circ_lib.label:8878
-#: field.aufhol.circ_lib.label:8908 field.rodcirc.circ_lib.label:10290
-#: field.rmocbbcol.circ_lib.label:10410 field.rmobbcol.circ_lib.label:10424
+#: field.vii.circ_lib.label:277 field.viiad.circ_lib.label:329
+#: field.circ.circ_lib.label:3704 field.combcirc.circ_lib.label:3777
+#: field.acirc.circ_lib.label:3846 field.sunit.circ_lib.label:4639
+#: field.acp.circ_lib.label:6217 field.ancc.circ_lib.label:6428
+#: field.aufhl.circ_lib.label:9055 field.aufhil.circ_lib.label:9077
+#: field.aufhol.circ_lib.label:9107 field.rodcirc.circ_lib.label:10489
+#: field.rmocbbcol.circ_lib.label:10609 field.rmobbcol.circ_lib.label:10623
 msgid "Circulating Library"
 msgstr ""
 
-#: field.afs.scheduled_time.label:8827
+#: field.afs.scheduled_time.label:9026
 msgid "Scheduled Time"
 msgstr ""
 
-#: field.auri.call_number_maps.label:2570
+#: field.auri.call_number_maps.label:2601
 msgid "Call Number Maps"
 msgstr ""
 
-#: class.acnn.label:3531
+#: class.acnn.label:3563
 msgid "Call Number Note"
 msgstr ""
 
-#: field.qdt.is_numeric.label:8955
+#: field.qdt.is_numeric.label:9154
 msgid "Is Numeric"
 msgstr ""
 
-#: class.cmfpm.label:9376
+#: class.cmfpm.label:9575
 msgid "MARC21 Fixed Field Map"
 msgstr ""
 
-#: field.ccmm.max_fine_rule.label:1623 field.circ.max_fine_rule.label:3681
-#: field.combcirc.max_fine_rule.label:3754
-#: field.acirc.max_fine_rule.label:3823 class.crmf.label:6166
-#: field.rodcirc.max_fine_rule.label:10299
+#: field.ccmm.max_fine_rule.label:1651 field.circ.max_fine_rule.label:3713
+#: field.combcirc.max_fine_rule.label:3786
+#: field.acirc.max_fine_rule.label:3855 class.crmf.label:6358
+#: field.rodcirc.max_fine_rule.label:10498
 msgid "Max Fine Rule"
 msgstr ""
 
-#: field.cuat.ewhat.label:2990
+#: field.cuat.ewhat.label:3021
 msgid "Event Type"
 msgstr ""
 
-#: class.chmm.label:1547
+#: class.chmm.label:1575
 msgid "Hold Matrix Matchpoint"
 msgstr ""
 
-#: field.bre.subject_field_entries.label:2659
+#: field.bre.subject_field_entries.label:2690
 msgid "Indexed Subject Field Entries"
 msgstr ""
 
-#: class.acpl.label:4187
+#: class.acpl.label:4219
 msgid "Copy/Shelving Location"
 msgstr ""
 
-#: field.acqofscred.sort_date.label:7262
+#: field.acqofscred.sort_date.label:7456
 msgid "Sort Date"
 msgstr ""
 
-#: field.asvr.response_group_id.label:2011
+#: field.asvr.response_group_id.label:2039
 msgid "Response Group ID"
 msgstr ""
 
-#: class.aus.label:1919
+#: class.aus.label:1947
 msgid "User Setting"
 msgstr ""
 
-#: class.actscecm.label:6300
+#: class.actscecm.label:6492
 msgid "User Statistical Category Entry"
 msgstr ""
 
-#: field.aoa.san.label:5031 field.acqpro.san.label:6862
+#: field.aoa.san.label:5063 field.acqpro.san.label:7056
 msgid "SAN"
 msgstr ""
 
-#: class.ccls.label:1675
+#: class.ccls.label:1703
 msgid "Circulation Limit Set"
 msgstr ""
 
-#: class.asc.label:5528
+#: class.asc.label:5707
 msgid "Asset Statistical Category"
 msgstr ""
 
-#: class.jub.label:7835 field.acqlin.lineitem.label:7962
+#: field.ahopl.usr_alias.label:5338
+msgid "User Alias"
+msgstr ""
+
+#: class.jub.label:8029 field.acqlin.lineitem.label:8155
 msgid "Line Item"
 msgstr ""
 
-#: field.cracct.path.label:902 field.acqedi.path.label:8164
-#: field.uvu.path.label:9568
+#: field.cracct.path.label:902 field.acqedi.path.label:8357
+#: field.uvu.path.label:9767
 msgid "Path"
 msgstr ""
 
-#: field.vii.pub_note.label:294 field.viiad.pub_note.label:345
+#: field.vii.pub_note.label:292 field.viiad.pub_note.label:343
 msgid "Public Note"
 msgstr ""
 
-#: field.acplg.top.label:4224
+#: field.acplg.top.label:4256
 msgid "Display Above Orgs"
 msgstr ""
 
-#: field.rccbs.usr_home_ou_name.label:10070
+#: field.rccbs.usr_home_ou_name.label:10269
 msgid "User Home Library Name"
 msgstr ""
 
-#: field.au.credit_forward_balance.label:2903
+#: field.au.credit_forward_balance.label:2934
 msgid "User Credit Balance"
 msgstr ""
 
-#: field.scap.enum_5.label:4349
+#: field.scap.enum_5.label:4381
 msgid "Enum 5"
 msgstr ""
 
-#: class.mcrp.label:5648
+#: class.mcrp.label:5827
 msgid "House Credit Payment"
 msgstr ""
 
-#: field.acn.uri_maps.label:2534
-msgid "URI Maps"
+#: field.czifm.id.label:974 field.cmcts.id.label:10140
+#: field.cmfts.id.label:10165
+msgid "Map ID"
 msgstr ""
 
-#: field.ahr.eligible_copies.label:5139 field.ahopl.eligible_copies.label:5266
-#: field.alhr.eligible_copies.label:5340
+#: field.ahr.eligible_copies.label:5171 field.ahopl.eligible_copies.label:5318
+#: field.alhr.eligible_copies.label:5401
 msgid "Eligible Copies"
 msgstr ""
 
-#: field.ccmlsm.limit_set.label:1702 field.cclscmm.limit_set.label:1729
-#: field.cclsacpl.limit_set.label:1754 field.cclsgm.limit_set.label:1780
+#: field.ccmlsm.limit_set.label:1730 field.cclscmm.limit_set.label:1757
+#: field.cclsacpl.limit_set.label:1782 field.cclsgm.limit_set.label:1808
 msgid "Limit Set"
 msgstr ""
 
-#: class.bmp.label:2731 field.acp.parts.label:6060
+#: class.bmp.label:2762 field.acp.parts.label:6252
 msgid "Monograph Parts"
 msgstr ""
 
-#: field.brav.valid_value.label:3983
+#: field.brav.valid_value.label:4015
 msgid "Valid Value"
 msgstr ""
 
-#: field.rhrr.target.label:8449
+#: field.rhrr.target.label:8642
 msgid "Hold Target"
 msgstr ""
 
-#: field.asvr.effective_date.label:2008
+#: field.asvr.effective_date.label:2036
 msgid "Effective Answer Date/Time"
 msgstr ""
 
-#: field.ahr.capture_time.label:5112 field.ahopl.capture_time.label:5239
-#: field.alhr.capture_time.label:5315
+#: field.ahr.capture_time.label:5144 field.ahopl.capture_time.label:5291
+#: field.alhr.capture_time.label:5376 field.combahr.capture_time.label:5458
+#: field.aahr.capture_time.label:5516
 msgid "Capture Date/Time"
 msgstr ""
 
-#: field.acqpl.id.label:7639
+#: field.acqpl.id.label:7833
 msgid "Selection List ID"
 msgstr ""
 
-#: class.pupm.label:6370
+#: class.pupm.label:6562
 msgid "User Permission Map"
 msgstr ""
 
-#: class.auricnm.label:2578
+#: class.auricnm.label:2609
 msgid "Electronic Access URI to Call Number Map"
 msgstr ""
 
-#: field.acqfap.percent.label:7617
+#: field.acqfap.percent.label:7811
 msgid "Percent"
 msgstr ""
 
@@ -632,103 +648,108 @@ msgstr ""
 msgid "Search Label"
 msgstr ""
 
-#: field.sunit.loan_duration.label:4624 field.acp.loan_duration.label:6043
-#: field.act.loan_duration.label:6114
+#: field.sunit.loan_duration.label:4656 field.acp.loan_duration.label:6235
+#: field.act.loan_duration.label:6306
 msgid "Loan Duration"
 msgstr ""
 
-#: field.vbq.queue_type.label:370 field.vaq.queue_type.label:510
-#: field.mrd.item_type.label:3357 field.aua.address_type.label:3465
-#: field.scap.type.label:4339 field.mb.btype.label:6650
-#: field.acqpca.address_type.label:7105 field.acqlia.attr_type.label:7983
-#: field.qbv.type.label:9004 field.bmpc.ptype.label:9363
+#: field.vbq.queue_type.label:368 field.vaq.queue_type.label:510
+#: field.mrd.item_type.label:3389 field.aua.address_type.label:3497
+#: field.scap.type.label:4371 field.mb.btype.label:6844
+#: field.acqpca.address_type.label:7299 field.acqlia.attr_type.label:8176
+#: field.qbv.type.label:9203 field.bmpc.ptype.label:9562
 msgid "Type"
 msgstr ""
 
-#: class.acplg.label:4217
+#: class.acplg.label:4249
 msgid "Copy/Shelving Location Group"
 msgstr ""
 
-#: field.cracct.username.label:899 field.acqedi.username.label:8161
+#: field.cracct.username.label:899 field.acqedi.username.label:8354
 msgid "Username"
 msgstr ""
 
-#: class.ccnbn.label:5518
+#: class.ccnbn.label:5697
 msgid "Call Number Bucket Note"
 msgstr ""
 
-#: field.acqfsum.allocated_total.label:7562
+#: field.acqfsum.allocated_total.label:7756
 msgid "Total Allocated"
 msgstr ""
 
-#: field.cmcts.index_lang.label:9946 field.cmfts.index_lang.label:9971
+#: field.cmcts.index_lang.label:10145 field.cmfts.index_lang.label:10170
 msgid "Index Language"
 msgstr ""
 
-#: field.cbho.rtime.label:2407
+#: field.cbho.rtime.label:2438
 msgid "Hold Request Time"
 msgstr ""
 
-#: field.ahn.hold.label:4175 field.aufh.hold.label:6267
+#: field.ahn.hold.label:4207 field.aufh.hold.label:6459
 msgid "Hold"
 msgstr ""
 
-#: field.atev.id.label:1139 field.atevparam.id.label:1164
-#: field.atul.id.label:1235
+#: field.atev.id.label:1167 field.atevparam.id.label:1192
+#: field.atul.id.label:1263
 msgid "Event ID"
 msgstr ""
 
-#: field.mcrp.xact.label:5656 field.mb.xact.label:6649
-msgid "Transaction"
+#: class.cubin.label:6048
+msgid "User Bucket Item Note"
 msgstr ""
 
-#: field.acqafsb.amount.label:7470
+#: field.acqafsb.amount.label:7664
 msgid "Total Spent Balance"
 msgstr ""
 
-#: class.ccbi.label:2036
+#: class.ccbi.label:2064
 msgid "Copy Bucket Item"
 msgstr ""
 
-#: field.acqpo.order_date.label:7696 field.acqpoh.order_date.label:7743
+#: field.acqpo.order_date.label:7890 field.acqpoh.order_date.label:7937
 msgid "Order Date"
 msgstr ""
 
-#: field.sunit.fine_level.label:4622 field.acp.fine_level.label:6040
-#: field.act.fine_level.label:6115
+#: field.sunit.fine_level.label:4654 field.acp.fine_level.label:6232
+#: field.act.fine_level.label:6307
 msgid "Fine Level"
 msgstr ""
 
-#: field.cbho.pprox.label:2399
+#: field.cbho.pprox.label:2430
 msgid "Capture Lib to Pickup Lib Proximity"
 msgstr ""
 
-#: field.sdist.streams.label:4438
+#: field.sdist.streams.label:4470
 msgid "Streams"
 msgstr ""
 
-#: field.pgt.application_perm.label:6191
+#: field.pgt.application_perm.label:6383
 msgid "Required Permission"
 msgstr ""
 
-#: field.sunit.status_changed_time.label:4630
-#: field.acp.status_changed_time.label:6049
+#: field.sunit.status_changed_time.label:4662
+#: field.acp.status_changed_time.label:6241
 msgid "Copy Status Changed Time"
 msgstr ""
 
-#: field.sunit.mint_condition.label:4631 field.ahr.mint_condition.label:5146
-#: field.ahopl.mint_condition.label:5273 field.alhr.mint_condition.label:5347
-#: field.acp.mint_condition.label:6050
+#: field.sunit.mint_condition.label:4663 field.ahr.mint_condition.label:5178
+#: field.ahopl.mint_condition.label:5325 field.alhr.mint_condition.label:5408
+#: field.combahr.mint_condition.label:5490
+#: field.aahr.mint_condition.label:5548 field.acp.mint_condition.label:6242
 msgid "Is Mint Condition"
 msgstr ""
 
-#: field.rccc.dewey_block_hundreds.label:10023
+#: field.rccc.dewey_block_hundreds.label:10222
 msgid "Dewey Block - Hundreds"
 msgstr ""
 
-#: field.chmw.marc_form.label:1473 field.ccmw.marc_form.label:1504
-#: field.chmm.marc_form.label:1561 field.ccmm.marc_form.label:1612
-#: field.rccc.item_form.label:10004
+#: field.ahopl.usr_alias_or_display_name.label:5337
+msgid "User Alias or Display Name"
+msgstr ""
+
+#: field.chmw.marc_form.label:1501 field.ccmw.marc_form.label:1532
+#: field.chmm.marc_form.label:1589 field.ccmm.marc_form.label:1640
+#: field.rccc.item_form.label:10203
 msgid "MARC Form"
 msgstr ""
 
@@ -736,90 +757,92 @@ msgstr ""
 msgid "Order of Application"
 msgstr ""
 
-#: field.ssr.visible.label:4983
+#: field.ssr.visible.label:5015
 msgid "Visible"
 msgstr ""
 
-#: field.atev.error_output.label:1150
+#: field.atev.error_output.label:1178
 msgid "Error Output"
 msgstr ""
 
-#: field.circ.id.label:3679 field.combcirc.id.label:3752
-#: field.acirc.id.label:3821 field.rodcirc.id.label:10297
+#: field.circ.id.label:3711 field.combcirc.id.label:3784
+#: field.acirc.id.label:3853 field.rodcirc.id.label:10496
 msgid "Circ ID"
 msgstr ""
 
-#: field.cwa.active.label:1527 field.chmm.active.label:1550
-#: field.ccmm.active.label:1603 field.scap.active.label:4343
-#: field.cmcts.active.label:9944 field.cmfts.active.label:9969
+#: field.cwa.active.label:1555 field.chmm.active.label:1578
+#: field.ccmm.active.label:1631 field.scap.active.label:4375
+#: field.cmcts.active.label:10143 field.cmfts.active.label:10168
 msgid "Active?"
 msgstr ""
 
-#: class.ascecm.label:4837
+#: class.ascecm.label:4869
 msgid "Statistical Category Entry Copy Map"
 msgstr ""
 
-#: field.aws.toolbars.label:1273
+#: field.aws.toolbars.label:1301
 msgid "Toolbars"
 msgstr ""
 
-#: field.atev.add_time.label:1142
+#: field.atev.add_time.label:1170
 msgid "Add Time"
 msgstr ""
 
-#: field.cmc.buoyant.label:2346
+#: field.cmc.buoyant.label:2376
 msgid "Buoyant?"
 msgstr ""
 
-#: field.rocit.stat_cat_1_value.label:10353
+#: field.rocit.stat_cat_1_value.label:10552
 msgid "Legacy Stat Cat 1 Value"
 msgstr ""
 
-#: field.atul.perm_lib.label:1250
+#: field.atul.perm_lib.label:1278
 msgid "Permission Context"
 msgstr ""
 
-#: field.acpl.circulate.label:4189
+#: field.acpl.circulate.label:4221
 msgid "Can Circulate?"
 msgstr ""
 
-#: field.sunit.stat_cat_entry_copy_maps.label:4638
-#: field.acp.stat_cat_entry_copy_maps.label:6054
+#: field.sunit.stat_cat_entry_copy_maps.label:4670
+#: field.acp.stat_cat_entry_copy_maps.label:6246
 msgid "Stat-Cat entry maps"
 msgstr ""
 
-#: field.cbc.padding.label:10580
+#: field.cbc.padding.label:10779
 msgid "Padding"
 msgstr ""
 
-#: field.atcol.module.label:1010 field.atval.module.label:1018
-#: field.atreact.module.label:1034 field.atclean.module.label:1050
+#: field.atcol.module.label:1038 field.atval.module.label:1046
+#: field.atreact.module.label:1062 field.atclean.module.label:1078
 msgid "Module Name"
 msgstr ""
 
-#: class.ccnbin.label:4125
+#: class.ccnbin.label:4157
 msgid "Call Number Bucket Item Note"
 msgstr ""
 
 #: field.vqbr.create_time.label:409 field.vqar.create_time.label:530
-#: field.acqfdeb.create_time.label:7281 field.acqfa.create_time.label:7586
-#: field.acqfap.create_time.label:7620 field.acqpoh.create_time.label:7739
-#: field.acqlih.create_time.label:7904 field.acqdfa.create_time.label:8562
-#: field.uvs.create_time.label:9456 field.cfdfs.create_time.label:9716
+#: field.acqfdeb.create_time.label:7475 field.acqfa.create_time.label:7780
+#: field.acqfap.create_time.label:7814 field.acqpoh.create_time.label:7933
+#: field.acqlih.create_time.label:8098 field.acqdfa.create_time.label:8755
+#: field.uvs.create_time.label:9655 field.cfdfs.create_time.label:9915
 msgid "Create Time"
 msgstr ""
 
-#: class.coustl.label:10598
+#: class.coustl.label:10797
 msgid "Organizational Unit Setting Type Log"
 msgstr ""
 
-#: field.combcirc.usr_birth_year.label:3776
-#: field.acirc.usr_birth_year.label:3849
+#: field.combcirc.usr_birth_year.label:3808
+#: field.acirc.usr_birth_year.label:3881
+#: field.combahr.usr_birth_year.label:5477
+#: field.aahr.usr_birth_year.label:5535
 msgid "Patron Birth Year"
 msgstr ""
 
-#: field.atc.hold_transit_copy.label:1983 class.ahtc.label:6604
-#: field.iatc.hold_transit_copy.label:10223
+#: field.atc.hold_transit_copy.label:2011 class.ahtc.label:6798
+#: field.iatc.hold_transit_copy.label:10422
 msgid "Hold Transit"
 msgstr ""
 
@@ -827,275 +850,293 @@ msgstr ""
 msgid "Last Stop Fines Time"
 msgstr ""
 
-#: field.aur.need_before.label:6775
+#: field.aur.need_before.label:6969
 msgid "Need Before Date/Time"
 msgstr ""
 
-#: class.afscv.label:8841
+#: class.afscv.label:9040
 msgid "Fieldset Column Value"
 msgstr ""
 
-#: field.aoupa.prox_adjustment.label:4945
+#: field.aoupa.prox_adjustment.label:4977
 msgid "Proximity Adjustment"
 msgstr ""
 
-#: field.ccm.sip2_media_type.label:1288
+#: field.ccm.sip2_media_type.label:1316
 msgid "SIP2 Media Type"
 msgstr ""
 
 #: field.vqbrad.code.label:445 field.vqarad.code.label:562
 #: field.ccvm.code.label:874 field.cza.code.label:952
-#: field.ccm.code.label:1285 field.aiit.code.label:1305
-#: field.acqim.code.label:1322 field.ccpbt.code.label:1338
-#: field.ccnbt.code.label:1354 field.cbrebt.code.label:1414
-#: field.cubt.code.label:1430 field.cvrfm.code.label:1446
-#: field.aba.code.label:2158 field.acqpro.code.label:6859
-#: field.acqipm.code.label:6909 field.acqfs.code.label:7205
-#: field.acqf.code.label:7312 field.acqfsum.code.label:7554
-#: field.acqliat.code.label:7941 field.acqliad.code.label:8031
-#: field.acqlimad.code.label:8046 field.acqligad.code.label:8066
-#: field.acqliuad.code.label:8076 field.acqlipad.code.label:8089
-#: field.acqlilad.code.label:8149 field.acqclt.code.label:8607
-#: field.acqclet.code.label:8627 field.cmrtm.code.label:9737
+#: field.ccm.code.label:1313 field.aiit.code.label:1333
+#: field.acqim.code.label:1350 field.ccpbt.code.label:1366
+#: field.ccnbt.code.label:1382 field.cbrebt.code.label:1442
+#: field.cubt.code.label:1458 field.cvrfm.code.label:1474
+#: field.aba.code.label:2188 field.acqpro.code.label:7053
+#: field.acqipm.code.label:7103 field.acqfs.code.label:7399
+#: field.acqf.code.label:7506 field.acqfsum.code.label:7748
+#: field.acqliat.code.label:8135 field.acqliad.code.label:8224
+#: field.acqlimad.code.label:8239 field.acqligad.code.label:8259
+#: field.acqliuad.code.label:8269 field.acqlipad.code.label:8282
+#: field.acqlilad.code.label:8342 field.acqclt.code.label:8800
+#: field.acqclet.code.label:8820 field.cmrtm.code.label:9936
 msgid "Code"
 msgstr ""
 
-#: class.cubi.label:5841
+#: class.cubi.label:6033
 msgid "User Bucket Item"
 msgstr ""
 
-#: field.circ.due_date.label:3675 field.combcirc.due_date.label:3748
-#: field.acirc.due_date.label:3817 field.rodcirc.due_date.label:10293
+#: field.circ.due_date.label:3707 field.combcirc.due_date.label:3780
+#: field.acirc.due_date.label:3849 field.rodcirc.due_date.label:10492
 msgid "Due Date/Time"
 msgstr ""
 
-#: class.acqafsb.label:7467
+#: class.acqafsb.label:7661
 msgid "All Fund Spent Balance"
 msgstr ""
 
-#: class.acqafst.label:7457
+#: class.acqafst.label:7651
 msgid "All Fund Spent Total"
 msgstr ""
 
-#: field.aur.holdable_formats.label:6769
+#: field.aur.holdable_formats.label:6963
 msgid "Holdable Formats"
 msgstr ""
 
-#: field.acqpo.id.label:7687 field.acqpoh.id.label:7734
-#: field.acqmapinv.purchase_order.label:10558
+#: field.acqpo.id.label:7881 field.acqpoh.id.label:7928
+#: field.acqmapinv.purchase_order.label:10757
 msgid "Purchase Order ID"
 msgstr ""
 
-#: field.sunit.age_protect.label:4602 field.acp.age_protect.label:6020
+#: field.sunit.age_protect.label:4634 field.acp.age_protect.label:6212
 msgid "Age Hold Protection"
 msgstr ""
 
-#: field.brt.name.label:3890
+#: field.brt.name.label:3922
 msgid "Resource Type Name"
 msgstr ""
 
-#: class.sunit.label:4599 field.sitem.unit.label:4679
+#: class.sunit.label:4631 field.sitem.unit.label:4711
 msgid "Unit"
 msgstr ""
 
-#: class.cst.label:2589 class.csp.label:3377
-#: field.ausp.standing_penalty.label:3443
+#: class.cst.label:2620 class.csp.label:3409
+#: field.ausp.standing_penalty.label:3475
 msgid "Standing Penalty"
 msgstr ""
 
-#: field.circ.checkin_staff.label:3670 field.combcirc.checkin_staff.label:3743
-#: field.acirc.checkin_staff.label:3812
-#: field.rodcirc.checkin_staff.label:10288
+#: field.circ.checkin_staff.label:3702 field.combcirc.checkin_staff.label:3775
+#: field.acirc.checkin_staff.label:3844
+#: field.rodcirc.checkin_staff.label:10487
 msgid "Check In Staff"
 msgstr ""
 
-#: field.mdp.cash_drawer.label:6484
+#: field.mdp.cash_drawer.label:6678
 msgid "Cash Drawer"
 msgstr ""
 
-#: field.acnc.field.label:2475
+#: field.acnc.field.label:2506
 msgid "Call number fields"
 msgstr ""
 
-#: field.acqf.spent_total.label:7325
+#: field.acqf.spent_total.label:7519
 msgid "Spent Total"
 msgstr ""
 
-#: class.cza.label:946
+#: class.cza.label:946 field.czifm.z3950_attr.label:978
 msgid "Z39.50 Attribute"
 msgstr ""
 
-#: field.mbtslv.billing_location.label:1885
-#: field.mg.billing_location.label:5748
+#: field.mbtslv.billing_location.label:1913
+#: field.mg.billing_location.label:5940
 msgid "Billing Location"
 msgstr ""
 
-#: field.ccmlsm.fallthrough.label:1703
+#: field.ccmlsm.fallthrough.label:1731
 msgid "Fallthrough"
 msgstr ""
 
-#: class.srlu.label:4529
+#: class.srlu.label:4561
 msgid "Routing List User"
 msgstr ""
 
-#: field.mrd.pub_status.label:3359
+#: field.mrd.pub_status.label:3391
 msgid "Pub Status"
 msgstr ""
 
-#: field.aufhmxl.max.label:8890
+#: field.aufhmxl.max.label:9089
 msgid "Max Loop"
 msgstr ""
 
-#: field.atev.async_output.label:1151
+#: field.atev.async_output.label:1179
 msgid "Asynchronous Output"
 msgstr ""
 
-#: class.ccnbt.label:1352
+#: class.ccnbt.label:1380
 msgid "Call Number Bucket Type"
 msgstr ""
 
-#: field.mckp.cash_drawer.label:6002
+#: field.mckp.cash_drawer.label:6194
 msgid "Workstation link"
 msgstr ""
 
-#: field.combcirc.usr_post_code.label:3764
-#: field.acirc.usr_post_code.label:3833
+#: field.combcirc.usr_post_code.label:3796
+#: field.acirc.usr_post_code.label:3865 field.combahr.usr_post_code.label:5474
+#: field.aahr.usr_post_code.label:5532
 msgid "Patron ZIP"
 msgstr ""
 
-#: field.circ.xact_start.label:3693 field.combcirc.xact_start.label:3766
-#: field.acirc.xact_start.label:3835 field.rodcirc.xact_start.label:10310
+#: field.circ.xact_start.label:3725 field.combcirc.xact_start.label:3798
+#: field.acirc.xact_start.label:3867 field.rodcirc.xact_start.label:10509
 msgid "Check Out Date/Time"
 msgstr ""
 
-#: class.acqclet.label:8623 field.acqcle.type.label:8659
-#: field.acqscle.type.label:8687
-msgid "Claim Event Type"
+#: field.rxbt.unvoided.label:8654
+msgid "Unvoided Billing Amount"
 msgstr ""
 
-#: field.circ.billable_transaction.label:3701
-#: field.combcirc.billable_transaction.label:3770
-#: field.acirc.billable_transaction.label:3843
-#: field.rodcirc.billable_transaction.label:10313
+#: field.circ.billable_transaction.label:3733
+#: field.combcirc.billable_transaction.label:3802
+#: field.acirc.billable_transaction.label:3875
+#: field.rodcirc.billable_transaction.label:10512
 msgid "Base Transaction"
 msgstr ""
 
-#: class.acqlin.label:7959
+#: class.acqlin.label:8152
 msgid "Line Item Note"
 msgstr ""
 
-#: field.cnct.in_house.label:5684
+#: field.cnct.in_house.label:5876
 msgid "In House?"
 msgstr ""
 
-#: field.au.card.label:2899
+#: field.au.card.label:2930
 msgid "Current Library Card"
 msgstr ""
 
-#: field.acpn.creator.label:3139
+#: field.acpn.creator.label:3171
 msgid "Note Creator"
 msgstr ""
 
-#: field.acqlisum.estimated_amount.label:10175
-#: field.acqlisumi.estimated_amount.label:10195
+#: field.acqlisum.estimated_amount.label:10374
+#: field.acqlisumi.estimated_amount.label:10394
 msgid "Estimated Amount"
 msgstr ""
 
-#: field.acqfsrcat.amount.label:7500
-msgid "Total Allocated from Funding Source"
+#: field.ath.passive.label:1023
+msgid "Passive"
 msgstr ""
 
-#: field.acp.last_circ.label:6057 field.rlc.last_circ.label:9915
+#: field.acp.last_circ.label:6249 field.rlc.last_circ.label:10114
 msgid "Last Circulation Date"
 msgstr ""
 
-#: field.brt.resources.label:3899 field.aou.resources.label:5422
+#: field.brt.resources.label:3931 field.aou.resources.label:5601
 msgid "Resources"
 msgstr ""
 
-#: field.sstr.routing_label.label:4504
+#: field.cmc.combined.label:2378
+msgid "Combined?"
+msgstr ""
+
+#: field.sstr.routing_label.label:4536
 msgid "Routing Label"
 msgstr ""
 
-#: class.acpm.label:2750
+#: class.acpm.label:2781
 msgid "Copy Monograph Part Map"
 msgstr ""
 
-#: field.circ.target_copy.label:3690 field.combcirc.target_copy.label:3763
-#: field.acirc.target_copy.label:3832 field.rodcirc.target_copy.label:10307
+#: field.circ.target_copy.label:3722 field.combcirc.target_copy.label:3795
+#: field.acirc.target_copy.label:3864 field.rodcirc.target_copy.label:10506
 msgid "Circulating Item"
 msgstr ""
 
-#: class.cubt.label:1428
+#: class.cubt.label:1456
 msgid "User Bucket Type"
 msgstr ""
 
-#: field.atul.template_output.label:1245
+#: field.atul.template_output.label:1273
 msgid "Event Template Output"
 msgstr ""
 
-#: field.ccmw.is_renewal.label:1495 field.ccmm.is_renewal.label:1602
+#: field.ccmw.is_renewal.label:1523 field.ccmm.is_renewal.label:1630
 msgid "Renewal?"
 msgstr ""
 
-#: field.acs.id.label:2064
+#: field.acs.id.label:2092
 msgid "Control Set ID"
 msgstr ""
 
-#: field.act.age_protect.label:6116
+#: field.act.age_protect.label:6308
 msgid "Age Protect"
 msgstr ""
 
-#: field.acqlid.recv_time.label:8002
+#: field.acqlid.recv_time.label:8195
 msgid "Actual Receive Date"
 msgstr ""
 
-#: field.cracct.account.label:901 field.acqedi.account.label:8163
+#: field.cracct.account.label:901 field.acqedi.account.label:8356
 msgid "Account"
 msgstr ""
 
-#: field.acqf.debits.label:7320
+#: field.acqf.debits.label:7514
 msgid "Debits"
 msgstr ""
 
-#: class.ccbin.label:2051
+#: class.ccbin.label:2079
 msgid "Copy Bucket Item Note"
 msgstr ""
 
-#: field.atc.prev_dest.label:1980
+#: field.ahopl.usr_family_name.label:5332
+msgid "User Family Name"
+msgstr ""
+
+#: field.atc.prev_dest.label:2008
 msgid "Prev Destination"
 msgstr ""
 
-#: class.acnc.label:2470
+#: class.acnc.label:2501
 msgid "Call number classification scheme"
 msgstr ""
 
-#: class.aufh.label:6262
+#: class.aufh.label:6454
 msgid "Unfulfilled Hold Targets"
 msgstr ""
 
-#: field.rhcrpbap.holds_at_pickup_library.label:9874
+#: field.rhcrpbap.holds_at_pickup_library.label:10073
 msgid "Active Holds at Pickup Library"
 msgstr ""
 
-#: field.rsr.series_statement.label:8410
+#: field.ahopl.usr_suffix.label:5334
+msgid "User Suffix"
+msgstr ""
+
+#: field.ahr.behind_desk.label:5182 field.ahopl.behind_desk.label:5343
+#: field.alhr.behind_desk.label:5412
+msgid "Behind Desk"
+msgstr ""
+
+#: field.rsr.series_statement.label:8603
 msgid "Series Statement (normalized)"
 msgstr ""
 
-#: class.rccbs.label:10061
+#: class.rccbs.label:10260
 msgid "Classic Open Transaction Summary"
 msgstr ""
 
-#: field.artc.prev_hop.label:6577 field.ahtc.prev_hop.label:6612
+#: field.artc.prev_hop.label:6771 field.ahtc.prev_hop.label:6806
 msgid "Previous Stop"
 msgstr ""
 
-#: field.acqpa.address_type.label:7040
+#: field.acqpa.address_type.label:7234
 msgid "Address Type"
 msgstr ""
 
-#: field.ahr.cut_in_line.label:5145 field.ahopl.cut_in_line.label:5272
-#: field.alhr.cut_in_line.label:5346
+#: field.ahr.cut_in_line.label:5177 field.ahopl.cut_in_line.label:5324
+#: field.alhr.cut_in_line.label:5407 field.combahr.cut_in_line.label:5489
+#: field.aahr.cut_in_line.label:5547
 msgid "Top of Queue"
 msgstr ""
 
@@ -1103,24 +1144,24 @@ msgstr ""
 msgid "Auth"
 msgstr ""
 
-#: field.auact.event_time.label:3011
+#: field.auact.event_time.label:3042
 msgid "Event Time"
 msgstr ""
 
-#: field.acn.editor.label:2528 field.bre.editor.label:2644
-#: field.sunit.editor.label:4621 field.acp.editor.label:6039
+#: field.acn.editor.label:2559 field.bre.editor.label:2675
+#: field.sunit.editor.label:4653 field.acp.editor.label:6231
 msgid "Last Editing User"
 msgstr ""
 
-#: field.aou.settings.label:5412
+#: field.aou.settings.label:5591
 msgid "Settings"
 msgstr ""
 
-#: field.acqafet.amount.label:7450
+#: field.acqafet.amount.label:7644
 msgid "Total Encumbered Amount"
 msgstr ""
 
-#: field.aouctn.tree.label:5481
+#: field.aouctn.tree.label:5660
 msgid "Tree"
 msgstr ""
 
@@ -1136,40 +1177,41 @@ msgstr ""
 msgid "Queued Record"
 msgstr ""
 
-#: class.acqpoh.label:7729
+#: class.acqpoh.label:7923
 msgid "Purchase Order History"
 msgstr ""
 
-#: class.crahp.label:6149
+#: class.crahp.label:6341
 msgid "Age Hold Protection Rule"
 msgstr ""
 
-#: field.aou.workstations.label:5415
+#: field.aou.workstations.label:5594
 msgid "Workstations"
 msgstr ""
 
-#: field.aur.article_title.label:6781
+#: field.aur.article_title.label:6975
 msgid "Article Title"
 msgstr ""
 
-#: field.au.hold_requests.label:2887
+#: field.au.hold_requests.label:2918
 msgid "All Hold Requests"
 msgstr ""
 
-#: field.au.master_account.label:2919
+#: field.au.master_account.label:2950
 msgid "Is Group Lead Account"
 msgstr ""
 
-#: field.ahr.frozen.label:5140 field.ahopl.frozen.label:5267
-#: field.alhr.frozen.label:5341
+#: field.ahr.frozen.label:5172 field.ahopl.frozen.label:5319
+#: field.alhr.frozen.label:5402 field.combahr.frozen.label:5484
+#: field.aahr.frozen.label:5542
 msgid "Currently Frozen"
 msgstr ""
 
-#: field.acqpca.contact.label:7114
+#: field.acqpca.contact.label:7308
 msgid "Contact"
 msgstr ""
 
-#: class.puwoum.label:6359
+#: class.puwoum.label:6551
 msgid "User Work Org Unit Map"
 msgstr ""
 
@@ -1177,235 +1219,236 @@ msgstr ""
 msgid "Last Checkin Workstation"
 msgstr ""
 
-#: class.stgu.label:8749
+#: class.stgu.label:8942
 msgid "User Stage"
 msgstr ""
 
-#: field.ccmw.org_unit.label:1496 field.cwa.org_unit.label:1528
-#: field.ccmm.org_unit.label:1604 field.pgpt.org_unit.label:3402
-#: field.ausp.org_unit.label:3444 field.acplo.org.label:4270
-#: field.aouctn.org_unit.label:5482 field.cbt.owner.label:6730
-#: field.acqf.org.label:7308 field.acqfsum.org.label:7550
-#: field.acqfap.org.label:7615 field.acqpl.org_unit.label:7641
-#: field.acqclt.org_unit.label:8606 field.acqclet.org_unit.label:8626
-#: field.acqclp.org_unit.label:8703
+#: field.ccmw.org_unit.label:1524 field.cwa.org_unit.label:1556
+#: field.ccmm.org_unit.label:1632 field.pgpt.org_unit.label:3434
+#: field.ausp.org_unit.label:3476 field.acplo.org.label:4302
+#: field.aouctn.org_unit.label:5661 field.cbt.owner.label:6924
+#: field.acqf.org.label:7502 field.acqfsum.org.label:7744
+#: field.acqfap.org.label:7809 field.acqpl.org_unit.label:7835
+#: field.acqclt.org_unit.label:8799 field.acqclet.org_unit.label:8819
+#: field.acqclp.org_unit.label:8896
 msgid "Org Unit"
 msgstr ""
 
-#: class.ahopl.label:5175
+#: class.ahopl.label:5208
 msgid "Hold On Pull List"
 msgstr ""
 
-#: class.mkfe.label:3296
+#: class.mkfe.label:3328
 msgid "Keyword Field Entry"
 msgstr ""
 
-#: class.asvq.label:1820
+#: class.asvq.label:1848
 msgid "User Survey Question"
 msgstr ""
 
-#: class.mfae.label:3236
+#: class.mfae.label:3268
 msgid "Combined Facet Entry"
 msgstr ""
 
-#: field.circ.phone_renewal.label:3683 field.combcirc.phone_renewal.label:3756
-#: field.acirc.phone_renewal.label:3825
-#: field.rodcirc.phone_renewal.label:10301
+#: field.circ.phone_renewal.label:3715 field.combcirc.phone_renewal.label:3788
+#: field.acirc.phone_renewal.label:3857
+#: field.rodcirc.phone_renewal.label:10500
 msgid "Phone Renewal"
 msgstr ""
 
-#: field.cuat.transient.label:2995
+#: field.cuat.transient.label:3026
 msgid "Transient"
 msgstr ""
 
-#: class.siss.label:4560 field.sitem.issuance.label:4677
-#: field.smhc.issuance.label:4745
+#: class.siss.label:4592 field.sitem.issuance.label:4709
+#: field.smhc.issuance.label:4777
 msgid "Issuance"
 msgstr ""
 
-#: class.mife.label:6276
+#: class.mife.label:6468
 msgid "Identifier Field Entry"
 msgstr ""
 
-#: field.acqlia.definition.label:7986
+#: field.acqlia.definition.label:8179
 msgid "Definition"
 msgstr ""
 
-#: class.sra.label:4880
+#: class.sra.label:4912
 msgid "Relevance Adjustment"
 msgstr ""
 
-#: field.aur.article_pages.label:6782
+#: field.aur.article_pages.label:6976
 msgid "Article Pages"
 msgstr ""
 
-#: field.cmf.facet_field.label:2377
+#: field.cmf.facet_field.label:2408
 msgid "Facet Field"
 msgstr ""
 
-#: field.sre.edit_date.label:4311
+#: field.sre.edit_date.label:4343
 msgid "Edit date"
 msgstr ""
 
-#: field.acqlid.claims.label:8012
+#: field.acqlid.claims.label:8205
 msgid "Claims"
 msgstr ""
 
-#: class.ppl.label:3209
+#: class.ppl.label:3241
 msgid "Permission List"
 msgstr ""
 
-#: field.atevdef.hook.label:1099 field.atul.hook.label:1232
+#: field.atevdef.hook.label:1127 field.atul.hook.label:1260
 msgid "Hook"
 msgstr ""
 
-#: field.bmpc.id.label:9362
+#: field.bmpc.id.label:9561
 msgid "Temp ID"
 msgstr ""
 
-#: class.acqinv.label:6922 field.acqie.invoice.label:6961
-#: field.acqii.invoice.label:6998
+#: class.acqinv.label:7116 field.acqie.invoice.label:7155
+#: field.acqii.invoice.label:7192
 msgid "Invoice"
 msgstr ""
 
-#: field.atenv.path.label:1068
+#: field.atenv.path.label:1096
 msgid "Field Path"
 msgstr ""
 
-#: class.rlcd.label:9749
+#: class.rlcd.label:9948
 msgid "Last Copy Delete Time"
 msgstr ""
 
-#: field.mdp.accepting_usr.label:6483
+#: field.mbp.accepting_usr.label:6625 field.mdp.accepting_usr.label:6677
 msgid "Accepting User"
 msgstr ""
 
-#: class.qrc.label:9080
+#: class.qrc.label:9279
 msgid "Record Column"
 msgstr ""
 
-#: field.ahr.thaw_date.label:5141 field.ahopl.thaw_date.label:5268
-#: field.alhr.thaw_date.label:5342
+#: field.ahr.thaw_date.label:5173 field.ahopl.thaw_date.label:5320
+#: field.alhr.thaw_date.label:5403 field.combahr.thaw_date.label:5485
+#: field.aahr.thaw_date.label:5543
 msgid "Thaw Date (if frozen)"
 msgstr ""
 
-#: field.acqinv.inv_type.label:6930
+#: field.acqinv.inv_type.label:7124
 msgid "Invoice Type"
 msgstr ""
 
-#: field.acqpro.fax_phone.label:6869 field.acqpa.fax_phone.label:7051
-#: field.acqpca.fax_phone.label:7116
+#: field.acqpro.fax_phone.label:7063 field.acqpa.fax_phone.label:7245
+#: field.acqpca.fax_phone.label:7310
 msgid "Fax Phone"
 msgstr ""
 
-#: class.bmpc.label:9360
+#: class.bmpc.label:9559
 msgid "MARC21 Physical Characteristics"
 msgstr ""
 
-#: field.acqinv.payment_method.label:6933
+#: field.acqinv.payment_method.label:7127
 msgid "Payment Method"
 msgstr ""
 
-#: class.afs.label:8820
+#: class.afs.label:9019
 msgid "Fieldset"
 msgstr ""
 
-#: field.rmsr.pubdate.label:8363 field.rssr.pubdate.label:8387
-#: field.rsr.pubdate.label:8408
+#: field.rmsr.pubdate.label:8556 field.rssr.pubdate.label:8580
+#: field.rsr.pubdate.label:8601
 msgid "Publication Year (normalized)"
 msgstr ""
 
-#: field.uvs.attempts.label:9459
+#: field.uvs.attempts.label:9658
 msgid "Verification Attempts"
 msgstr ""
 
-#: field.scap.enum_1.label:4345
+#: field.scap.enum_1.label:4377
 msgid "Enum 1"
 msgstr ""
 
-#: field.scap.enum_3.label:4347
+#: field.scap.enum_3.label:4379
 msgid "Enum 3"
 msgstr ""
 
-#: field.scap.enum_2.label:4346
+#: field.scap.enum_2.label:4378
 msgid "Enum 2"
 msgstr ""
 
-#: field.asva.answer.label:6211
+#: field.asva.answer.label:6403
 msgid "Answer Text"
 msgstr ""
 
-#: field.scap.enum_4.label:4348
+#: field.scap.enum_4.label:4380
 msgid "Enum 4"
 msgstr ""
 
-#: field.scap.enum_6.label:4350
+#: field.scap.enum_6.label:4382
 msgid "Enum 6"
 msgstr ""
 
 #: field.vqbr.id.label:408 field.vqar.id.label:529 field.mra.id.label:835
-#: field.bre.id.label:2646 field.aufh.id.label:6268 field.rmsr.id.label:8355
-#: field.rssr.id.label:8379 field.rsr.id.label:8398 field.rlcd.id.label:9763
-#: field.rhcrpb.id.label:9826 field.rhcrpbap.id.label:9872
+#: field.bre.id.label:2677 field.aufh.id.label:6460 field.rmsr.id.label:8548
+#: field.rssr.id.label:8572 field.rsr.id.label:8591 field.rlcd.id.label:9962
+#: field.rhcrpb.id.label:10025 field.rhcrpbap.id.label:10071
 msgid "Record ID"
 msgstr ""
 
-#: field.siss.holding_link_id.label:4573
+#: field.siss.holding_link_id.label:4605
 msgid "Holding Link ID"
 msgstr ""
 
-#: field.sdist.index_summary.label:4442 class.sisum.label:4810
+#: field.sdist.index_summary.label:4474 class.sisum.label:4842
 msgid "Index Issue Summary"
 msgstr ""
 
-#: field.bre.attrs.label:2668
+#: field.bre.attrs.label:2699
 msgid "SVF Attributes"
 msgstr ""
 
-#: field.au.email.label:2906 field.aou.email.label:5405
-#: field.stgu.email.label:8755
+#: field.au.email.label:2937 field.aou.email.label:5584
+#: field.stgu.email.label:8948
 msgid "Email Address"
 msgstr ""
 
-#: class.xbool.label:9151
+#: class.xbool.label:9350
 msgid "Boolean Expression"
 msgstr ""
 
-#: field.mrd.audience.label:3348
+#: field.mrd.audience.label:3380
 msgid "Audn"
 msgstr ""
 
-#: class.xstr.label:9333
+#: class.xstr.label:9532
 msgid "String Expression"
 msgstr ""
 
-#: class.acrlid.label:10108
+#: class.acrlid.label:10307
 msgid "Claim Ready Lineitem Details"
 msgstr ""
 
-#: field.acqdf.name.label:8503
+#: field.acqdf.name.label:8696
 msgid "Formula Name"
 msgstr ""
 
-#: field.circ.usr.label:3691 field.ancc.patron.label:6240
-#: field.rodcirc.usr.label:10308
+#: field.circ.usr.label:3723 field.ancc.patron.label:6432
+#: field.rodcirc.usr.label:10507
 msgid "Patron"
 msgstr ""
 
-#: field.cmfpm.length.label:9383 field.cmpcsm.length.label:9413
-#: field.cbc.length.label:10579
+#: field.cmfpm.length.label:9582 field.cmpcsm.length.label:9612
+#: field.cbc.length.label:10778
 msgid "Length"
 msgstr ""
 
-#: field.au.cards.label:2885
+#: field.au.cards.label:2916
 msgid "All Library Cards"
 msgstr ""
 
-#: field.sitem.shadowed.label:4685
+#: field.sitem.shadowed.label:4717
 msgid "Shadowed?"
 msgstr ""
 
-#: field.qfpd.id.label:8989
+#: field.qfpd.id.label:9188
 msgid "Function Param Def ID"
 msgstr ""
 
@@ -1413,7 +1456,7 @@ msgstr ""
 msgid "Matrix Test Result"
 msgstr ""
 
-#: field.rccbs.patron_zip.label:10094
+#: field.rccbs.patron_zip.label:10293
 msgid "User ZIP Code"
 msgstr ""
 
@@ -1421,23 +1464,23 @@ msgstr ""
 msgid "Record Matching Definition Set"
 msgstr ""
 
-#: field.mrd.cat_form.label:3350
+#: field.mrd.cat_form.label:3382
 msgid "Cat Form"
 msgstr ""
 
-#: field.qfs.id.label:8977
+#: field.qfs.id.label:9176
 msgid "Function Signature ID"
 msgstr ""
 
-#: field.atc.dest.label:1974 field.iatc.dest.label:10215
+#: field.atc.dest.label:2002 field.iatc.dest.label:10414
 msgid "Destination"
 msgstr ""
 
-#: field.ahopl.copy_location_order_position.label:5277
+#: field.ahopl.copy_location_order_position.label:5329
 msgid "Copy Location Sort Order"
 msgstr ""
 
-#: class.mfp.label:3328
+#: class.mfp.label:3360
 msgid "Forgive Payment"
 msgstr ""
 
@@ -1445,91 +1488,91 @@ msgstr ""
 msgid "Final Target Record"
 msgstr ""
 
-#: field.acn.uris.label:2535
+#: field.acn.uris.label:2566
 msgid "URIs"
 msgstr ""
 
-#: class.acqfat.label:7352
+#: class.acqfat.label:7546
 msgid "Fund Allocation Total"
 msgstr ""
 
-#: field.rocit.stat_cat_2_value.label:10354
+#: field.rocit.stat_cat_2_value.label:10553
 msgid "Legacy Stat Cat 2 Value"
 msgstr ""
 
-#: class.svr.label:4287
+#: class.svr.label:4319
 msgid "Serial Virtual Record"
 msgstr ""
 
-#: field.chmm.distance_is_from_owner.label:1567
+#: field.chmm.distance_is_from_owner.label:1595
 msgid "Range is from Owning Lib?"
 msgstr ""
 
-#: field.acqlisum.paid_amount.label:10177
-#: field.acqlisumi.paid_amount.label:10197
+#: field.acqlisum.paid_amount.label:10376
+#: field.acqlisumi.paid_amount.label:10396
 msgid "Paid Amount"
 msgstr ""
 
-#: field.acqii.inv_item_type.label:7001 field.acqpoi.inv_item_type.label:7803
+#: field.acqii.inv_item_type.label:7195 field.acqpoi.inv_item_type.label:7997
 msgid "Invoice Item Type"
 msgstr ""
 
-#: field.stgsc.value.label:8815
+#: field.stgsc.value.label:9014
 msgid "Stat Cat Value"
 msgstr ""
 
-#: field.acqftr.transfer_time.label:7146
+#: field.acqftr.transfer_time.label:7340
 msgid "Transfer Time"
 msgstr ""
 
-#: class.mfr.label:3167
+#: class.mfr.label:3199
 msgid "Flattened MARC Fields"
 msgstr ""
 
-#: class.acpn.label:3136
+#: class.acpn.label:3168
 msgid "Copy Note"
 msgstr ""
 
-#: field.cmc.a_weight.label:2348
+#: field.cmc.a_weight.label:2379
 msgid "A Weight"
 msgstr ""
 
-#: field.cbho.aprox.label:2401
+#: field.cbho.aprox.label:2432
 msgid "Adjusted Circ Lib to Pickup Lib Proximity"
 msgstr ""
 
-#: field.atc.persistant_transfer.label:1977
-#: field.iatc.persistant_transfer.label:10218
+#: field.atc.persistant_transfer.label:2005
+#: field.iatc.persistant_transfer.label:10417
 msgid "Is Persistent? (unused)"
 msgstr ""
 
-#: field.aou.fiscal_calendar.label:5408 class.acqfc.label:7159
+#: field.aou.fiscal_calendar.label:5587 class.acqfc.label:7353
 msgid "Fiscal Calendar"
 msgstr ""
 
-#: class.qseq.label:8938
+#: class.qseq.label:9137
 msgid "Query Sequence"
 msgstr ""
 
-#: field.qxp.operator.label:9024 field.xop.operator.label:9308
-#: field.xser.operator.label:9325
+#: field.qxp.operator.label:9223 field.xop.operator.label:9507
+#: field.xser.operator.label:9524
 msgid "Operator"
 msgstr ""
 
-#: field.acqct.code.label:6818
+#: field.acqct.code.label:7012
 msgid "Currency Code"
 msgstr ""
 
-#: class.coust.label:3098
+#: class.coust.label:3130
 msgid "Organizational Unit Setting Type"
 msgstr ""
 
-#: field.ancc.duedate.label:6242
+#: field.ancc.duedate.label:6434
 msgid "Virtual Due Date/Time"
 msgstr ""
 
-#: field.circ.unrecovered.label:3705 field.bresv.unrecovered.label:4039
-#: field.mbt.unrecovered.label:5794
+#: field.circ.unrecovered.label:3737 field.bresv.unrecovered.label:4071
+#: field.mbt.unrecovered.label:5986
 msgid "Unrecovered Debt"
 msgstr ""
 
@@ -1537,100 +1580,100 @@ msgstr ""
 msgid "User Sharing Opt-in"
 msgstr ""
 
-#: field.aun.title.label:1898 field.acpn.title.label:3143
+#: field.aun.title.label:1926 field.acpn.title.label:3175
 msgid "Note Title"
 msgstr ""
 
-#: field.cmcts.index_weight.label:9945 field.cmfts.index_weight.label:9970
+#: field.cmcts.index_weight.label:10144 field.cmfts.index_weight.label:10169
 msgid "Index Weight"
 msgstr ""
 
-#: field.combcirc.copy_owning_lib.label:3779
-#: field.acirc.copy_owning_lib.label:3852
+#: field.combcirc.copy_owning_lib.label:3811
+#: field.acirc.copy_owning_lib.label:3884
 msgid "Copy Owning Library"
 msgstr ""
 
-#: field.aua.replaces.label:3477
+#: field.aua.replaces.label:3509
 msgid "Replaces"
 msgstr ""
 
-#: field.uvs.selectors.label:9458
+#: field.uvs.selectors.label:9657
 msgid "URL Selectors"
 msgstr ""
 
-#: field.ahopl.is_staff_hold.label:5281
+#: field.ahopl.is_staff_hold.label:5341
 msgid "Is Staff Hold?"
 msgstr ""
 
-#: class.ancc.label:6234
+#: class.ancc.label:6426
 msgid "Non-cataloged Circulation"
 msgstr ""
 
-#: field.brav.id.label:3980
+#: field.brav.id.label:4012
 msgid "Resource Attribute Value ID"
 msgstr ""
 
-#: field.siss.holding_code.label:4571
+#: field.siss.holding_code.label:4603
 msgid "Holding Code"
 msgstr ""
 
-#: field.rccc.patron_home_lib.label:10013
+#: field.rccc.patron_home_lib.label:10212
 msgid "Patron Home Library Link"
 msgstr ""
 
-#: field.circ.billings.label:3699 field.combcirc.billings.label:3768
-#: field.acirc.billings.label:3841 field.rodcirc.billings.label:10311
+#: field.circ.billings.label:3731 field.combcirc.billings.label:3800
+#: field.acirc.billings.label:3873 field.rodcirc.billings.label:10510
 msgid "Transaction Billings"
 msgstr ""
 
-#: class.stgma.label:8779
+#: class.stgma.label:8976
 msgid "Mailing Address Stage"
 msgstr ""
 
-#: field.bra.id.label:3954
+#: field.bra.id.label:3986
 msgid "Resource Attribute ID"
 msgstr ""
 
-#: field.crmf.is_percent.label:6171
+#: field.crmf.is_percent.label:6363
 msgid "Is Percent"
 msgstr ""
 
-#: field.acqfy.calendar.label:7181
+#: field.acqfy.calendar.label:7375
 msgid "Calendar"
 msgstr ""
 
-#: class.acqligad.label:8063
+#: class.acqligad.label:8256
 msgid "Line Item Generated Attribute Definition"
 msgstr ""
 
-#: field.bresv.summary.label:4044 field.mbt.summary.label:5801
+#: field.bresv.summary.label:4076 field.mbt.summary.label:5993
 msgid "Payment Summary"
 msgstr ""
 
-#: class.asfge.label:5080
+#: class.asfge.label:5112
 msgid "Search Filter Group Entry"
 msgstr ""
 
-#: class.bra.label:3952 field.brav.attr.label:3982
-#: field.bram.resource_attr.label:4007
+#: class.bra.label:3984 field.brav.attr.label:4014
+#: field.bram.resource_attr.label:4039
 msgid "Resource Attribute"
 msgstr ""
 
-#: class.acqpro.label:6853 field.acqpron.provider.label:6893
-#: field.acqinv.provider.label:6926 field.acqpa.provider.label:7045
-#: field.acqpc.provider.label:7077 field.acqpo.provider.label:7691
-#: field.acqpoh.provider.label:7741 field.jub.provider.label:7841
-#: field.acqlih.provider.label:7900 field.acqlipad.provider.label:8092
-#: field.acqphsm.provider.label:8121 field.acqedi.provider.label:8167
+#: class.acqpro.label:7047 field.acqpron.provider.label:7087
+#: field.acqinv.provider.label:7120 field.acqpa.provider.label:7239
+#: field.acqpc.provider.label:7271 field.acqpo.provider.label:7885
+#: field.acqpoh.provider.label:7935 field.jub.provider.label:8035
+#: field.acqlih.provider.label:8094 field.acqlipad.provider.label:8285
+#: field.acqphsm.provider.label:8314 field.acqedi.provider.label:8360
 msgid "Provider"
 msgstr ""
 
-#: class.qbv.label:9000 field.qxp.bind_variable.label:9030
-#: field.xbind.bind_variable.label:9143
+#: class.qbv.label:9199 field.qxp.bind_variable.label:9229
+#: field.xbind.bind_variable.label:9342
 msgid "Bind Variable"
 msgstr ""
 
-#: field.qseq.id.label:8940
+#: field.qseq.id.label:9139
 msgid "Query Seq ID"
 msgstr ""
 
@@ -1638,15 +1681,15 @@ msgstr ""
 msgid "Matches"
 msgstr ""
 
-#: field.acqftr.transfer_user.label:7147
+#: field.acqftr.transfer_user.label:7341
 msgid "Transfer User"
 msgstr ""
 
-#: field.ccmw.user_home_ou.label:1499 field.ccmm.user_home_ou.label:1607
+#: field.ccmw.user_home_ou.label:1527 field.ccmm.user_home_ou.label:1635
 msgid "User Home Lib"
 msgstr ""
 
-#: field.ancc.id.label:6238
+#: field.ancc.id.label:6430
 msgid "Non-cat Circulation ID"
 msgstr ""
 
@@ -1654,148 +1697,149 @@ msgstr ""
 msgid "Match Set Type"
 msgstr ""
 
-#: field.bresv.xact_start.label:4038 field.mbt.xact_start.label:5793
-#: field.rccbs.xact_start.label:10076
+#: field.bresv.xact_start.label:4070 field.mbt.xact_start.label:5985
+#: field.rccbs.xact_start.label:10275
 msgid "Transaction Start Date/Time"
 msgstr ""
 
-#: class.rmobbhol.label:10450
+#: class.rmobbhol.label:10649
 msgid "Open Circulation Balance by User Home Library and Owning Library"
 msgstr ""
 
-#: class.qfr.label:9058
+#: class.qfr.label:9257
 msgid "From Relation"
 msgstr ""
 
-#: class.chddv.label:2831
+#: class.chddv.label:2862
 msgid "Hard Due Date Values"
 msgstr ""
 
-#: field.asvq.survey.label:1826 field.asvr.survey.label:2012
-#: class.asv.label:4989
+#: field.asvq.survey.label:1854 field.asvr.survey.label:2040
+#: class.asv.label:5021
 msgid "Survey"
 msgstr ""
 
-#: field.aus.id.label:1921
+#: field.aus.id.label:1949
 msgid "Setting ID"
 msgstr ""
 
-#: class.cub.label:5622
+#: class.cub.label:5801
 msgid "User Bucket"
 msgstr ""
 
-#: field.sunit.dummy_isbn.label:4615 field.acp.dummy_isbn.label:6033
+#: field.sunit.dummy_isbn.label:4647 field.acp.dummy_isbn.label:6225
 msgid "Dummy ISBN"
 msgstr ""
 
-#: field.ath.key.label:992
+#: field.ath.key.label:1020
 msgid "Hook Key"
 msgstr ""
 
-#: field.acn.label.label:2530 field.ahopl.call_number_label.label:5279
-#: field.acqlid.cn_label.label:8001 field.rccc.call_number_label.label:10010
+#: field.acn.label.label:2561 field.ahopl.call_number_label.label:5339
+#: field.acqlid.cn_label.label:8194 field.rccc.call_number_label.label:10209
 msgid "Call Number Label"
 msgstr ""
 
-#: field.aua.county.label:3468 field.aal.county.label:3495
-#: field.acqpa.county.label:7043 field.acqpca.county.label:7108
+#: field.aua.county.label:3500 field.aal.county.label:3527
+#: field.acqpa.county.label:7237 field.acqpca.county.label:7302
+#: field.stgma.county.label:8984 field.stgba.county.label:9000
 msgid "County"
 msgstr ""
 
-#: field.acn.prefix.label:2538 field.cbc.prefix.label:10577
+#: field.acn.prefix.label:2569 field.cbc.prefix.label:10776
 msgid "Prefix"
 msgstr ""
 
-#: field.ahrn.pub.label:5378
+#: field.ahrn.pub.label:5440
 msgid "Pub?"
 msgstr ""
 
-#: field.jub.expected_recv_time.label:7847
+#: field.jub.expected_recv_time.label:8041
 msgid "Expected Receive Date"
 msgstr ""
 
-#: field.aoupa.circ_mod.label:4942 field.act.circ_modifier.label:6123
-#: field.acqlid.circ_modifier.label:8008 field.rccc.circ_modifier.label:10000
-#: field.rocit.circ_modifier.label:10349
+#: field.aoupa.circ_mod.label:4974 field.act.circ_modifier.label:6315
+#: field.acqlid.circ_modifier.label:8201 field.rccc.circ_modifier.label:10199
+#: field.rocit.circ_modifier.label:10548
 msgid "Circ Modifier"
 msgstr ""
 
-#: field.atul.update_time.label:1240
+#: field.atul.update_time.label:1268
 msgid "Event Update Time"
 msgstr ""
 
-#: field.rsr.series_title.label:8409
+#: field.rsr.series_title.label:8602
 msgid "Series Title (normalized)"
 msgstr ""
 
-#: field.acqfcb.amount.label:7423
+#: field.acqfcb.amount.label:7617
 msgid "Balance after Spent and Encumbered"
 msgstr ""
 
-#: field.actscsf.one_only.label:5568 field.ascsf.one_only.label:6540
+#: field.actscsf.one_only.label:5747 field.ascsf.one_only.label:6734
 msgid "Exclusive?"
 msgstr ""
 
-#: field.aufh.current_copy.label:6265
+#: field.aufh.current_copy.label:6457
 msgid "Non-fulfilling Copy"
 msgstr ""
 
-#: field.qsq.type.label:8920
+#: field.qsq.type.label:9119
 msgid "Query type"
 msgstr ""
 
-#: class.rof.label:8230
+#: class.rof.label:8423
 msgid "Output Folder"
 msgstr ""
 
-#: field.stgu.row_id.label:8751 field.stgc.row_id.label:8771
-#: field.stgma.row_id.label:8781 field.stgba.row_id.label:8796
-#: field.stgsc.row_id.label:8811
+#: field.stgu.row_id.label:8944 field.stgc.row_id.label:8968
+#: field.stgma.row_id.label:8978 field.stgba.row_id.label:8994
+#: field.stgsc.row_id.label:9010
 msgid "Row ID"
 msgstr ""
 
-#: field.siss.caption_and_pattern.label:4568
+#: field.siss.caption_and_pattern.label:4600
 msgid "Caption/Pattern"
 msgstr ""
 
 #: field.vie.description.label:392 field.vqbrad.description.label:446
 #: field.vqarad.description.label:563 field.cin.description.label:746
 #: field.crad.description.label:786 field.ccvm.description.label:876
-#: field.ath.description.label:994 field.atcol.description.label:1011
-#: field.atval.description.label:1019 field.atreact.description.label:1035
-#: field.atclean.description.label:1051 field.ccm.description.label:1287
-#: field.cclg.description.label:1662 field.ccls.description.label:1683
-#: field.acs.description.label:2066 field.acsaf.description.label:2093
-#: field.at.description.label:2141 field.aba.description.label:2161
-#: field.cam.description.label:2442 field.cust.description.label:3079
-#: field.asv.description.label:4993 field.pgt.description.label:6186
-#: field.acqcr.description.label:7669 field.acqliat.description.label:7942
-#: field.acqliad.description.label:8032 field.acqlimad.description.label:8047
-#: field.acqligad.description.label:8067 field.acqliuad.description.label:8077
-#: field.acqlipad.description.label:8090 field.acqlilad.description.label:8150
-#: field.acqclt.description.label:8608 field.acqclet.description.label:8628
-#: field.acqclp.description.label:8705 field.qbv.description.label:9005
-#: field.cfdi.description.label:9692
+#: field.ath.description.label:1022 field.atcol.description.label:1039
+#: field.atval.description.label:1047 field.atreact.description.label:1063
+#: field.atclean.description.label:1079 field.ccm.description.label:1315
+#: field.cclg.description.label:1690 field.ccls.description.label:1711
+#: field.acs.description.label:2094 field.acsaf.description.label:2122
+#: field.at.description.label:2171 field.aba.description.label:2191
+#: field.cam.description.label:2473 field.cust.description.label:3110
+#: field.asv.description.label:5025 field.pgt.description.label:6378
+#: field.acqcr.description.label:7863 field.acqliat.description.label:8136
+#: field.acqliad.description.label:8225 field.acqlimad.description.label:8240
+#: field.acqligad.description.label:8260 field.acqliuad.description.label:8270
+#: field.acqlipad.description.label:8283 field.acqlilad.description.label:8343
+#: field.acqclt.description.label:8801 field.acqclet.description.label:8821
+#: field.acqclp.description.label:8898 field.qbv.description.label:9204
+#: field.cfdi.description.label:9891
 msgid "Description"
 msgstr ""
 
-#: field.uvu.fragment.label:9571
+#: field.uvu.fragment.label:9770
 msgid "Fragment"
 msgstr ""
 
-#: field.acqpl.entry_count.label:7646
+#: field.acqpl.entry_count.label:7840
 msgid "Entry Count"
 msgstr ""
 
-#: field.aufh.circ_lib.label:6264
+#: field.aufh.circ_lib.label:6456
 msgid "Non-fulfilling Library"
 msgstr ""
 
-#: class.mtfe.label:6288
+#: class.mtfe.label:6480
 msgid "Title Field Entry"
 msgstr ""
 
-#: class.clm.label:2260
+#: class.clm.label:2290
 msgid "Language Map"
 msgstr ""
 
@@ -1803,44 +1847,44 @@ msgstr ""
 msgid "Filter?"
 msgstr ""
 
-#: field.brsrc.attr_maps.label:3930 field.bra.attr_maps.label:3960
-#: field.brav.attr_maps.label:3984
+#: field.brsrc.attr_maps.label:3962 field.bra.attr_maps.label:3992
+#: field.brav.attr_maps.label:4016
 msgid "Resource Attribute Maps"
 msgstr ""
 
-#: field.vii.error_detail.label:275 field.vqbr.error_detail.label:416
+#: field.vii.error_detail.label:273 field.vqbr.error_detail.label:416
 #: field.vqar.error_detail.label:536
 msgid "Import Error Detail"
 msgstr ""
 
-#: field.asv.usr_summary.label:5002
+#: field.asv.usr_summary.label:5034
 msgid "Display in User Summary"
 msgstr ""
 
-#: field.rccc.stat_cat_1_value.label:10024
+#: field.rccc.stat_cat_1_value.label:10223
 msgid "Legacy CAT1 Value"
 msgstr ""
 
-#: field.qfr.parent_relation.label:9067
+#: field.qfr.parent_relation.label:9266
 msgid "Parent Relation ID"
 msgstr ""
 
-#: class.acqfy.label:7178 field.acqfy.year.label:7182
+#: class.acqfy.label:7372 field.acqfy.year.label:7376
 msgid "Fiscal Year"
 msgstr ""
 
-#: field.circ.checkin_time.label:3671 field.combcirc.checkin_time.label:3744
-#: field.acirc.checkin_time.label:3813 field.rodcirc.checkin_time.label:10289
+#: field.circ.checkin_time.label:3703 field.combcirc.checkin_time.label:3776
+#: field.acirc.checkin_time.label:3845 field.rodcirc.checkin_time.label:10488
 msgid "Check In Date/Time"
 msgstr ""
 
-#: field.act.owning_lib.label:6105 field.rocit.owning_lib.label:10359
+#: field.act.owning_lib.label:6297 field.rocit.owning_lib.label:10558
 msgid "Owning Lib"
 msgstr ""
 
-#: field.mbts.last_billing_type.label:1854
-#: field.mbtslv.last_billing_type.label:1875
-#: field.rccbs.last_billing_type.label:10089
+#: field.mbts.last_billing_type.label:1882
+#: field.mbtslv.last_billing_type.label:1903
+#: field.rccbs.last_billing_type.label:10288
 msgid "Last Billing Type"
 msgstr ""
 
@@ -1848,19 +1892,19 @@ msgstr ""
 msgid "Boolean Operator"
 msgstr ""
 
-#: field.qsi.stored_query.label:9097 field.qobi.stored_query.label:9112
+#: field.qsi.stored_query.label:9296 field.qobi.stored_query.label:9311
 msgid "Stored Query ID"
 msgstr ""
 
-#: class.rhcrpbap.label:9841
+#: class.rhcrpbap.label:10040
 msgid "Hold/Copy Ratio per Bib and Pickup Library"
 msgstr ""
 
-#: class.cclsgm.label:1777
+#: class.cclsgm.label:1805
 msgid "Circulation Limit Set Group Map"
 msgstr ""
 
-#: field.sre.active.label:4306
+#: field.sre.active.label:4338
 msgid "Is Active"
 msgstr ""
 
@@ -1868,67 +1912,67 @@ msgstr ""
 msgid "Attrs"
 msgstr ""
 
-#: field.acsaf.nfi.label:2091
+#: field.acsaf.nfi.label:2120
 msgid "Non-filing Indicator"
 msgstr ""
 
-#: class.uvs.label:9443
+#: class.uvs.label:9642
 msgid "URL Verification Session"
 msgstr ""
 
-#: field.vii.internal_id.label:297 field.viiad.internal_id.label:349
+#: field.vii.internal_id.label:295 field.viiad.internal_id.label:347
 msgid "Overlay Match ID"
 msgstr ""
 
-#: field.aihu.org_unit.label:1947 field.ancihu.org_unit.label:1961
-#: field.acqcr.org_unit.label:7667
+#: field.aihu.org_unit.label:1975 field.ancihu.org_unit.label:1989
+#: field.acqcr.org_unit.label:7861
 msgid "Using Library"
 msgstr ""
 
-#: field.ergbhu.update_type.label:8484
+#: field.ergbhu.update_type.label:8677
 msgid "Update Type"
 msgstr ""
 
-#: field.bre.marc.label:2648
+#: field.bre.marc.label:2679
 msgid "MARC21Slim"
 msgstr ""
 
-#: field.acqpron.edit_time.label:6896 field.acqpl.edit_time.label:7644
-#: field.acqpo.edit_time.label:7690 field.acqpoh.edit_time.label:7740
-#: field.acqpon.edit_time.label:7770 field.jub.edit_time.label:7843
-#: field.acqlih.edit_time.label:7905 field.acqlin.edit_time.label:7965
+#: field.acqpron.edit_time.label:7090 field.acqpl.edit_time.label:7838
+#: field.acqpo.edit_time.label:7884 field.acqpoh.edit_time.label:7934
+#: field.acqpon.edit_time.label:7964 field.jub.edit_time.label:8037
+#: field.acqlih.edit_time.label:8099 field.acqlin.edit_time.label:8158
 msgid "Edit Time"
 msgstr ""
 
-#: field.ssubn.title.label:4414 field.sdistn.title.label:4475
-#: field.sin.title.label:4721 field.ahrn.title.label:5375
-#: field.aur.title.label:6778 field.acqpoi.title.label:7804
-#: field.rocit.title.label:10339
+#: field.ssubn.title.label:4446 field.sdistn.title.label:4507
+#: field.sin.title.label:4753 field.ahrn.title.label:5437
+#: field.aur.title.label:6972 field.acqpoi.title.label:7998
+#: field.rocit.title.label:10538
 msgid "Title"
 msgstr ""
 
-#: field.vqbr.bib_source.label:413 class.cbs.label:5770
+#: field.vqbr.bib_source.label:413 class.cbs.label:5962
 msgid "Bib Source"
 msgstr ""
 
-#: field.circ.checkin_scan_time.label:3697
-#: field.acirc.checkin_scan_time.label:3839
+#: field.circ.checkin_scan_time.label:3729
+#: field.acirc.checkin_scan_time.label:3871
 msgid "Checkin Scan Date/Time"
 msgstr ""
 
-#: field.acqinv.payment_auth.label:6932
+#: field.acqinv.payment_auth.label:7126
 msgid "Payment Auth"
 msgstr ""
 
-#: class.mwp.label:5893
+#: class.mwp.label:6085
 msgid "Work Payment"
 msgstr ""
 
-#: class.acirc.label:3809
+#: class.acirc.label:3841
 msgid "Aged (patronless) Circulation"
 msgstr ""
 
-#: class.cbho.label:2395
+#: class.cbho.label:2426
 msgid "Best-Hold Sort Order"
 msgstr ""
 
@@ -1936,75 +1980,75 @@ msgstr ""
 msgid "Importance"
 msgstr ""
 
-#: class.vqbrad.label:442
-msgid "Queued Bib Record Attribute Definition"
+#: class.acqfsrcb.label:7701
+msgid "Funding Source Balance"
 msgstr ""
 
-#: class.pugm.label:6658
+#: class.pugm.label:6852
 msgid "User Group Map"
 msgstr ""
 
-#: field.cbho.approx.label:2402
+#: field.cbho.approx.label:2433
 msgid "Adjusted Capture Location to Pickup Lib Proximity"
 msgstr ""
 
-#: field.aua.street2.label:3473 field.aal.street2.label:3493
-#: field.acqpca.street2.label:7113 field.stgma.street2.label:8785
-#: field.stgba.street2.label:8800
+#: field.aua.street2.label:3505 field.aal.street2.label:3525
+#: field.acqpca.street2.label:7307 field.stgma.street2.label:8982
+#: field.stgba.street2.label:8998
 msgid "Street (2)"
 msgstr ""
 
-#: class.ccmlsm.label:1698
+#: class.ccmlsm.label:1726
 msgid "Circulation Matrix Limit Set Map"
 msgstr ""
 
-#: field.acs.thesauri.label:2068 field.acsaf.thesauri.label:2096
+#: field.acs.thesauri.label:2096 field.acsaf.thesauri.label:2126
 msgid "Thesauri"
 msgstr ""
 
-#: field.cclsgm.limit_group.label:1781
+#: field.cclsgm.limit_group.label:1809
 msgid "Limit Group"
 msgstr ""
 
-#: field.au.barred.label:2897
+#: field.au.barred.label:2928
 msgid "Barred"
 msgstr ""
 
-#: field.ctcl.name.label:9930
+#: field.ctcl.name.label:10129
 msgid "Text Search Config Name"
 msgstr ""
 
-#: class.ateo.label:969
+#: class.ateo.label:997
 msgid "Event Output"
 msgstr ""
 
-#: field.aba.fields.label:2162
+#: field.aba.fields.label:2192
 msgid "Authority Fields"
 msgstr ""
 
-#: field.ccls.global.label:1682
+#: field.ccls.global.label:1710
 msgid "Global"
 msgstr ""
 
-#: field.cbho.depth.label:2405
+#: field.cbho.depth.label:2436
 msgid "Hold Selection Depth"
 msgstr ""
 
-#: field.viiad.tag.label:328 field.vmsp.tag.label:647 field.vmsq.tag.label:682
-#: field.acsaf.tag.label:2089 field.acsbf.tag.label:2121
-#: field.mfr.tag.label:3174 field.cmfpm.tag.label:9380
-#: field.uvu.tag.label:9560
+#: field.viiad.tag.label:326 field.vmsp.tag.label:647 field.vmsq.tag.label:682
+#: field.acsaf.tag.label:2117 field.acsbf.tag.label:2151
+#: field.mfr.tag.label:3206 field.cmfpm.tag.label:9579
+#: field.uvu.tag.label:9759
 msgid "Tag"
 msgstr ""
 
-#: field.acqf.rollover.label:7313 field.acqfsum.rollover.label:7555
+#: field.acqf.rollover.label:7507 field.acqfsum.rollover.label:7749
 msgid "Rollover"
 msgstr ""
 
 #: field.vqbrad.xpath.label:447 field.vqarad.xpath.label:564
-#: field.crad.xpath.label:792 field.cmf.xpath.label:2373
-#: field.acqlimad.xpath.label:8048 field.acqligad.xpath.label:8068
-#: field.acqlipad.xpath.label:8091 field.uvus.xpath.label:9518
+#: field.crad.xpath.label:792 field.cmf.xpath.label:2404
+#: field.acqlimad.xpath.label:8241 field.acqligad.xpath.label:8261
+#: field.acqlipad.xpath.label:8284 field.uvus.xpath.label:9717
 msgid "XPath"
 msgstr ""
 
@@ -2012,33 +2056,33 @@ msgstr ""
 msgid "Record Matching Definition"
 msgstr ""
 
-#: field.mrd.date2.label:3364
+#: field.mrd.date2.label:3396
 msgid "Date2"
 msgstr ""
 
-#: field.artc.source.label:6578 field.ahtc.source.label:6613
+#: field.artc.source.label:6772 field.ahtc.source.label:6807
 msgid "Sending Library"
 msgstr ""
 
-#: field.vibtg.label.label:252 field.cgf.label.label:728
+#: field.vibtg.label.label:250 field.cgf.label.label:728
 #: field.crad.label.label:785 field.cracct.label.label:897
 #: field.czs.label.label:922 field.cza.label.label:951
-#: field.atenv.label.label:1070 field.aiit.name.label:1306
-#: field.acqim.name.label:1323 field.ccpbt.label.label:1339
-#: field.ccnbt.label.label:1355 field.cbrebt.label.label:1415
-#: field.cubt.label.label:1431 field.cmc.label.label:2345
-#: field.cmf.label.label:2372 field.acns.label.label:2486
-#: field.acnp.label.label:2505 field.auri.label.label:2567
-#: field.cuat.label.label:2992 field.atb.label.label:3031
-#: field.cust.label.label:3078 field.sdist.label.label:4430
-#: field.siss.label.label:4569 field.acqcr.label.label:7668
-#: field.acqedi.label.label:8159 field.qbv.label.label:9003
-#: field.cmpctm.label.label:9397 field.cmpcsm.label.label:9414
-#: field.cmpcvm.label.label:9431
+#: field.czifm.label.label:975 field.atenv.label.label:1098
+#: field.aiit.name.label:1334 field.acqim.name.label:1351
+#: field.ccpbt.label.label:1367 field.ccnbt.label.label:1383
+#: field.cbrebt.label.label:1443 field.cubt.label.label:1459
+#: field.cmc.label.label:2375 field.cmf.label.label:2403
+#: field.acns.label.label:2517 field.acnp.label.label:2536
+#: field.auri.label.label:2598 field.cuat.label.label:3023
+#: field.atb.label.label:3062 field.cust.label.label:3109
+#: field.sdist.label.label:4462 field.siss.label.label:4601
+#: field.acqcr.label.label:7862 field.acqedi.label.label:8352
+#: field.qbv.label.label:9202 field.cmpctm.label.label:9596
+#: field.cmpcsm.label.label:9613 field.cmpcvm.label.label:9630
 msgid "Label"
 msgstr ""
 
-#: class.at.label:2136
+#: class.at.label:2166
 msgid "Authority Thesaurus"
 msgstr ""
 
@@ -2050,15 +2094,15 @@ msgstr ""
 msgid "Normalizer"
 msgstr ""
 
-#: field.mrd.item_form.label:3355
+#: field.mrd.item_form.label:3387
 msgid "Form"
 msgstr ""
 
-#: field.bre.subscriptions.label:2667
+#: field.bre.subscriptions.label:2698
 msgid "Subscriptions"
 msgstr ""
 
-#: field.acqie.actual_cost.label:6969 field.acqii.actual_cost.label:7006
+#: field.acqie.actual_cost.label:7163 field.acqii.actual_cost.label:7200
 msgid "Actual Cost"
 msgstr ""
 
@@ -2070,80 +2114,80 @@ msgstr ""
 msgid "SVF Record Attribute to Indexing Normalizer Map"
 msgstr ""
 
-#: field.mfr.ind2.label:3171
+#: field.mfr.ind2.label:3203
 msgid "Indicator 2"
 msgstr ""
 
-#: field.au.checkins.label:2942 field.aou.checkins.label:5414
+#: field.au.checkins.label:2973 field.aou.checkins.label:5593
 msgid "Checkins"
 msgstr ""
 
-#: field.actscsf.field.label:5566 field.ascsf.field.label:6538
+#: field.actscsf.field.label:5745 field.ascsf.field.label:6732
 msgid "Field Identifier"
 msgstr ""
 
-#: field.cblvl.code.label:4867
+#: field.cblvl.code.label:4899
 msgid "Bib Level Code"
 msgstr ""
 
-#: field.acpl.id.label:4192 field.acplo.location.label:4269
+#: field.acpl.id.label:4224 field.acplo.location.label:4301
 msgid "Location ID"
 msgstr ""
 
-#: field.acqdf.owner.label:8502
+#: field.acqdf.owner.label:8695
 msgid "Formula Owner"
 msgstr ""
 
-#: class.sdist.label:4423 field.sdistn.distribution.label:4471
-#: field.sstr.distribution.label:4503 field.sasum.distribution.label:4734
-#: field.sbsum.distribution.label:4759 field.sssum.distribution.label:4786
-#: field.sisum.distribution.label:4813
+#: class.sdist.label:4455 field.sdistn.distribution.label:4503
+#: field.sstr.distribution.label:4535 field.sasum.distribution.label:4766
+#: field.sbsum.distribution.label:4791 field.sssum.distribution.label:4818
+#: field.sisum.distribution.label:4845
 msgid "Distribution"
 msgstr ""
 
-#: field.bre.simple_record.label:2665
+#: field.bre.simple_record.label:2696
 msgid "Simple Record Extracts "
 msgstr ""
 
-#: class.actsce.label:5814
+#: class.actsce.label:6006
 msgid "User Stat Cat Entry"
 msgstr ""
 
-#: field.au.juvenile.label:2933
+#: field.au.juvenile.label:2964
 msgid "Juvenile"
 msgstr ""
 
-#: class.acqftm.label:10482
+#: class.acqftm.label:10681
 msgid "Fund Tag Map"
 msgstr ""
 
-#: class.acn.label:2521 field.sunit.call_number.label:4605
-#: field.acp.call_number.label:6023
+#: class.acn.label:2552 field.sunit.call_number.label:4637
+#: field.acp.call_number.label:6215
 msgid "Call Number/Volume"
 msgstr ""
 
-#: field.uvsbrem.session.label:9493 field.uvus.session.label:9519
-#: field.uvu.session.label:9558 field.uvva.session.label:9612
+#: field.uvsbrem.session.label:9692 field.uvus.session.label:9718
+#: field.uvu.session.label:9757 field.uvva.session.label:9811
 msgid "Session"
 msgstr ""
 
-#: field.atul.user_data.label:1244
+#: field.atul.user_data.label:1272
 msgid "Event User Data"
 msgstr ""
 
-#: field.aoupa.item_circ_lib.label:4937
+#: field.aoupa.item_circ_lib.label:4969
 msgid "Item Circ Lib"
 msgstr ""
 
-#: field.rhcrpbap.copy_count_everywhere.label:9877
+#: field.rhcrpbap.copy_count_everywhere.label:10076
 msgid "Holdable Copy Count Everywhere"
 msgstr ""
 
-#: field.sunit.notes.label:4637 field.acp.notes.label:6053
+#: field.sunit.notes.label:4669 field.acp.notes.label:6245
 msgid "Copy Notes"
 msgstr ""
 
-#: field.vii.deposit.label:285 field.viiad.deposit.label:336
+#: field.vii.deposit.label:283 field.viiad.deposit.label:334
 msgid "Deposit"
 msgstr ""
 
@@ -2151,237 +2195,243 @@ msgstr ""
 msgid "Match ID"
 msgstr ""
 
-#: class.mbe.label:3248
+#: class.mbe.label:3280
 msgid "Combined Browse Entry"
 msgstr ""
 
-#: field.chmw.juvenile_flag.label:1476 field.ccmw.juvenile_flag.label:1508
-#: field.ccmm.juvenile_flag.label:1616
+#: field.chmw.juvenile_flag.label:1504 field.ccmw.juvenile_flag.label:1536
+#: field.ccmm.juvenile_flag.label:1644
 msgid "Juvenile?"
 msgstr ""
 
-#: field.actscecm.stat_cat.label:6303 field.aaactsc.stat_cat.label:10624
-#: field.aaasc.stat_cat.label:10636
+#: field.actscecm.stat_cat.label:6495 field.aaactsc.stat_cat.label:10823
+#: field.aaasc.stat_cat.label:10835
 msgid "Statistical Category"
 msgstr ""
 
-#: field.acqfc.id.label:7161
+#: field.acqfc.id.label:7355
 msgid "Fiscal Calendar ID"
 msgstr ""
 
-#: field.vii.circulate.label:284 field.viiad.circulate.label:335
+#: field.vii.circulate.label:282 field.viiad.circulate.label:333
 msgid "Circulate"
 msgstr ""
 
-#: class.abl.label:2249
+#: class.abl.label:2279
 msgid "Authority-Bibliographic Record Link"
 msgstr ""
 
-#: field.aur.isxn.label:6777
+#: field.aur.isxn.label:6971
 msgid "ISxN"
 msgstr ""
 
-#: field.acn.edit_date.label:2527 field.sunit.edit_date.label:4620
-#: field.acp.edit_date.label:6038
+#: field.acn.edit_date.label:2558 field.sunit.edit_date.label:4652
+#: field.acp.edit_date.label:6230
 msgid "Last Edit Date/Time"
 msgstr ""
 
-#: field.vbq.id.label:366 field.vaq.id.label:506
+#: field.vbq.id.label:364 field.vaq.id.label:506
 msgid "Queue ID"
 msgstr ""
 
-#: field.brt.tgt_rsrc_types.label:3901
+#: field.brt.tgt_rsrc_types.label:3933
 msgid "Target Resource Types"
 msgstr ""
 
-#: field.aoupa.absolute_adjustment.label:4944
+#: field.aoupa.absolute_adjustment.label:4976
 msgid "Absolute adjustment?"
 msgstr ""
 
-#: field.cuat.ehow.label:2991
+#: field.cuat.ehow.label:3022
 msgid "Event Mechanism"
 msgstr ""
 
-#: field.actsce.stat_cat.label:5818 field.actsced.stat_cat.label:5832
-#: field.asce.stat_cat.label:6528
+#: field.actsce.stat_cat.label:6010 field.actsced.stat_cat.label:6024
+#: field.asce.stat_cat.label:6722
 msgid "Stat Cat"
 msgstr ""
 
-#: field.asc.required.label:5537 field.actsc.required.label:5592
+#: field.asc.required.label:5716 field.actsc.required.label:5771
 msgid "Required"
 msgstr ""
 
-#: field.acqfs.summary.label:7206 field.acqf.summary.label:7318
+#: field.acqfs.summary.label:7400 field.acqf.summary.label:7512
 msgid "Summary"
 msgstr ""
 
-#: field.rccc.dewey_range_hundreds.label:10021
+#: field.rccc.dewey_range_hundreds.label:10220
 msgid "Dewey Range - Hundreds"
 msgstr ""
 
-#: class.qxp.label:9013 field.qsi.expression.label:9099
-#: field.qobi.expression.label:9114
+#: class.qxp.label:9212 field.qsi.expression.label:9298
+#: field.qobi.expression.label:9313
 msgid "Expression"
 msgstr ""
 
-#: class.acqedi.label:8156 field.acqedim.account.label:8197
+#: class.acqedi.label:8349 field.acqedim.account.label:8390
 msgid "EDI Account"
 msgstr ""
 
-#: class.uvus.label:9509
+#: class.uvus.label:9708
 msgid "URL Verification URL Selector"
 msgstr ""
 
-#: field.cracct.last_activity.label:904 field.acqedi.last_activity.label:8166
+#: field.cracct.last_activity.label:904 field.acqedi.last_activity.label:8359
 msgid "Last Activity"
 msgstr ""
 
-#: field.cclsgm.check_only.label:1782
+#: field.cclsgm.check_only.label:1810
 msgid "Check Only"
 msgstr ""
 
-#: field.aouctn.children.label:5485
+#: field.aouctn.children.label:5664
 msgid "Children"
 msgstr ""
 
-#: field.ocirccount.out.label:3615 field.ocirclist.out.label:3657
+#: field.ocirccount.out.label:3647 field.ocirclist.out.label:3689
 msgid "Out"
 msgstr ""
 
-#: field.aupr.has_been_reset.label:1913
+#: field.aupr.has_been_reset.label:1941
 msgid "Was Reset?"
 msgstr ""
 
-#: field.au.settings.label:2889
+#: field.au.settings.label:2920
 msgid "All User Settings"
 msgstr ""
 
-#: field.rocit.dewey_block_hundreds.label:10347
+#: field.rocit.dewey_block_hundreds.label:10546
 msgid "Dewy Hundreds"
 msgstr ""
 
-#: field.pgt.perm_interval.label:6190
+#: field.pgt.perm_interval.label:6382
 msgid "User Expiration Interval"
 msgstr ""
 
-#: class.acqliat.label:7938
+#: class.acqliat.label:8132
 msgid "Line Item Alert Text"
 msgstr ""
 
-#: class.mrd.label:3346
+#: class.mrd.label:3378
 msgid "Basic Record Descriptor"
 msgstr ""
 
-#: field.chmm.transit_range.label:1568
+#: field.chmm.transit_range.label:1596
 msgid "Transit Range"
 msgstr ""
 
-#: field.ahopl.issuance_label.label:5280
+#: field.ahopl.issuance_label.label:5340
 msgid "Issuance Label"
 msgstr ""
 
-#: field.mwp.id.label:5898 field.mgp.id.label:5916 field.mckp.id.label:6004
-#: field.mp.id.label:6400 field.mbp.id.label:6428 field.mndp.id.label:6456
-#: field.mdp.id.label:6478
+#: field.mwp.id.label:6090 field.mgp.id.label:6108 field.mckp.id.label:6196
+#: field.mp.id.label:6592 field.mbp.id.label:6620 field.mndp.id.label:6650
+#: field.mdp.id.label:6672
 msgid "Payment ID"
 msgstr ""
 
-#: class.cbrebin.label:6514
+#: class.cbrebin.label:6708
 msgid "Biblio Record Entry Bucket Item Note"
 msgstr ""
 
-#: field.chdd.forceto.label:2814
+#: field.chdd.forceto.label:2845
 msgid "Always Use?"
 msgstr ""
 
-#: class.cifm.label:2455
+#: class.cifm.label:2486
 msgid "Item Form Map"
 msgstr ""
 
-#: field.jub.eg_bib_id.label:7845 field.acqlih.eg_bib_id.label:7907
+#: field.jub.eg_bib_id.label:8039 field.acqlih.eg_bib_id.label:8101
 msgid "Evergreen Bib ID"
 msgstr ""
 
-#: field.atevdef.granularity.label:1110
+#: field.atevdef.granularity.label:1138
 msgid "Granularity"
 msgstr ""
 
-#: field.afs.pkey_value.label:8832
+#: field.afs.pkey_value.label:9031
 msgid "Primary Key Value"
 msgstr ""
 
-#: field.bra.name.label:3956
+#: field.bra.name.label:3988
 msgid "Resource Attribute Name"
 msgstr ""
 
-#: field.acqlisum.cancel_count.label:10172
-#: field.acqlisumi.cancel_count.label:10192
+#: field.acqlisum.cancel_count.label:10371
+#: field.acqlisumi.cancel_count.label:10391
 msgid "Cancel Count"
 msgstr ""
 
-#: class.acqft.label:10462
+#: class.acqft.label:10661
 msgid "Fund Tag"
 msgstr ""
 
-#: field.smhc.ind1.label:4747
+#: field.smhc.ind1.label:4779
 msgid "First Indicator"
 msgstr ""
 
-#: field.cwa.hold_weights.label:1530
+#: field.cwa.hold_weights.label:1558
 msgid "Hold Weights"
 msgstr ""
 
-#: field.mbts.usr.label:1860 field.mbtslv.usr.label:1881
+#: field.mbts.usr.label:1888 field.mbtslv.usr.label:1909
 msgid "Billed User"
 msgstr ""
 
-#: field.acqii.title.label:7002
+#: field.jub.queued_record.label:8048 field.acqlih.queued_record.label:8107
+msgid "Queued Vandelay Record"
+msgstr ""
+
+#: field.acqii.title.label:7196
 msgid "Title or Item Name"
 msgstr ""
 
-#: field.cifm.code.label:2457
-msgid "Item Form Code"
+#: class.acqafcb.label:7671
+msgid "All Fund Combined Total"
 msgstr ""
 
-#: class.i18n_l.label:6709
+#: class.i18n_l.label:6903
 msgid "Locale"
 msgstr ""
 
-#: field.rmsr.quality.label:8357 field.rssr.quality.label:8381
-#: field.rsr.quality.label:8401
+#: field.rmsr.quality.label:8550 field.rssr.quality.label:8574
+#: field.rsr.quality.label:8594
 msgid "Overall Record Quality"
 msgstr ""
 
-#: field.sunit.detailed_contents.label:4636
+#: field.sunit.detailed_contents.label:4668
 msgid "Detailed Contents"
 msgstr ""
 
-#: field.vii.id.label:271
+#: field.vii.id.label:269
 msgid "Import Item ID"
 msgstr ""
 
-#: field.vmsq.svf.label:681
+#: field.vmsq.svf.label:681 field.czifm.record_attr.label:977
 msgid "Record Attribute"
 msgstr ""
 
-#: class.clfm.label:5877 field.rccc.lit_form.label:10003
+#: class.clfm.label:6069 field.rccc.lit_form.label:10202
 msgid "Literary Form"
 msgstr ""
 
-#: field.ahr.prev_check_time.label:5126 field.ahopl.prev_check_time.label:5253
-#: field.alhr.prev_check_time.label:5327
+#: field.ahr.prev_check_time.label:5158 field.ahopl.prev_check_time.label:5305
+#: field.alhr.prev_check_time.label:5388
+#: field.combahr.prev_check_time.label:5471
+#: field.aahr.prev_check_time.label:5529
 msgid "Last Targeting Date/Time"
 msgstr ""
 
-#: field.ssr.rel.label:4979
+#: field.ssr.rel.label:5011
 msgid "Relevance"
 msgstr ""
 
-#: field.rccc.language.label:10002
+#: field.rccc.language.label:10201
 msgid "Item Language"
 msgstr ""
 
-#: class.acqlisum.label:10167
+#: class.acqlisum.label:10366
 msgid "Lineitem Summary"
 msgstr ""
 
@@ -2389,101 +2439,101 @@ msgstr ""
 msgid "Queued Authority Record Attribute Definition"
 msgstr ""
 
-#: field.cbho.cut.label:2404
+#: field.cbho.cut.label:2435
 msgid "Hold Cut-in-line State"
 msgstr ""
 
-#: field.aout.opac_label.label:5700
+#: field.aout.opac_label.label:5892
 msgid "OPAC Label"
 msgstr ""
 
-#: field.atevdef.usr_field.label:1111
+#: field.atevdef.usr_field.label:1139
 msgid "Opt-In User Field"
 msgstr ""
 
-#: field.au.survey_responses.label:2892
+#: field.au.survey_responses.label:2923
 msgid "Survey Responses"
 msgstr ""
 
-#: field.acp.peer_record_maps.label:6061
+#: field.acp.peer_record_maps.label:6253
 msgid "Peer Record Maps"
 msgstr ""
 
-#: field.acqofscred.sort_priority.label:7261
+#: field.acqofscred.sort_priority.label:7455
 msgid "Sort Priority"
 msgstr ""
 
-#: class.acqscl.label:8672
+#: class.acqscl.label:8865
 msgid "Serial Claim"
 msgstr ""
 
-#: field.cmcts.search_lang.label:9947 field.cmfts.search_lang.label:9972
+#: field.cmcts.search_lang.label:10146 field.cmfts.search_lang.label:10171
 msgid "Search Language"
 msgstr ""
 
-#: class.rsce2.label:10050
+#: class.rsce2.label:10249
 msgid "CAT2 Entry"
 msgstr ""
 
-#: field.acqedim.process_time.label:8201
+#: field.acqedim.process_time.label:8394
 msgid "Time Processed"
 msgstr ""
 
-#: field.aout.id.label:5698
+#: field.aout.id.label:5890
 msgid "Type ID"
 msgstr ""
 
-#: class.bre.label:2635 field.brt.record.label:3896
+#: class.bre.label:2666 field.brt.record.label:3928
 msgid "Bibliographic Record"
 msgstr ""
 
-#: field.ahrcc.id.label:6554
+#: field.ahrcc.id.label:6748
 msgid "Cause ID"
 msgstr ""
 
-#: field.acqinv.receiver.label:6925
+#: field.acqinv.receiver.label:7119
 msgid "Receiver"
 msgstr ""
 
-#: field.mp.cash_payment.label:6406 field.mbp.cash_payment.label:6434
+#: field.mp.cash_payment.label:6598 field.mbp.cash_payment.label:6627
 msgid "Cash Payment Detail"
 msgstr ""
 
-#: field.vmp.id.label:194 field.vibtf.id.label:218 field.mfr.id.label:3169
+#: field.vmp.id.label:194 field.vibtf.id.label:218 field.mfr.id.label:3201
 msgid "Field ID"
 msgstr ""
 
-#: field.acqedi.in_dir.label:8168
+#: field.acqedi.in_dir.label:8361
 msgid "Incoming Directory"
 msgstr ""
 
-#: field.qsq.from_clause.label:8923
+#: field.qsq.from_clause.label:9122
 msgid "FROM Clause"
 msgstr ""
 
-#: field.ancc.item_type.label:6239
+#: field.ancc.item_type.label:6431
 msgid "Non-cat Item Type"
 msgstr ""
 
-#: field.atev.user_data.label:1148
+#: field.atev.user_data.label:1176
 msgid "User Data"
 msgstr ""
 
-#: class.aal.label:3485
+#: class.aal.label:3517
 msgid "Address Alert"
 msgstr ""
 
-#: field.mbts.balance_owed.label:1850 field.mbtslv.balance_owed.label:1871
-#: field.rccbs.balance_owed.label:10096
+#: field.mbts.balance_owed.label:1878 field.mbtslv.balance_owed.label:1899
+#: field.rccbs.balance_owed.label:10295
 msgid "Balance Owed"
 msgstr ""
 
-#: field.acsaf.bib_fields.label:2095
+#: field.acsaf.bib_fields.label:2125
 msgid "Controlled Bib Fields"
 msgstr ""
 
-#: field.au.second_given_name.label:2926
-#: field.stgu.second_given_name.label:8759
+#: field.au.second_given_name.label:2957
+#: field.stgu.second_given_name.label:8952
 msgid "Middle Name"
 msgstr ""
 
@@ -2491,36 +2541,36 @@ msgstr ""
 msgid "Min. Quality Ratio"
 msgstr ""
 
-#: field.aou.rsrc_types.label:5421
+#: field.aou.rsrc_types.label:5600
 msgid "Resource Types"
 msgstr ""
 
-#: class.cclg.label:1658
+#: class.cclg.label:1686
 msgid "Circulation Limit Group"
 msgstr ""
 
-#: field.aur.lineitem.label:6772 field.acqie.lineitem.label:6963
-#: field.acqlid.lineitem.label:7998
+#: field.aur.lineitem.label:6966 field.acqie.lineitem.label:7157
+#: field.acqlid.lineitem.label:8191
 msgid "PO Line Item"
 msgstr ""
 
-#: field.auact.etype.label:3010
+#: field.auact.etype.label:3041
 msgid "Activity Type"
 msgstr ""
 
-#: field.acqedim.error_time.label:8202
+#: field.acqedim.error_time.label:8395
 msgid "Time of Error"
 msgstr ""
 
-#: class.atev.label:1137
+#: class.atev.label:1165
 msgid "Trigger Event Entry"
 msgstr ""
 
-#: field.rocit.age_protect.label:10362
+#: field.rocit.age_protect.label:10561
 msgid "Age Protection"
 msgstr ""
 
-#: field.acqfc.name.label:7162
+#: field.acqfc.name.label:7356
 msgid "Fiscal Calendar Name"
 msgstr ""
 
@@ -2528,40 +2578,40 @@ msgstr ""
 msgid "Z39.50 Source"
 msgstr ""
 
-#: field.acn.record.label:2532 field.combcirc.copy_bib_record.label:3781
-#: field.acirc.copy_bib_record.label:3854 field.sre.record.label:4307
-#: field.aur.eg_bib.label:6773
+#: field.acn.record.label:2563 field.combcirc.copy_bib_record.label:3813
+#: field.acirc.copy_bib_record.label:3886 field.sre.record.label:4339
+#: field.aur.eg_bib.label:6967
 msgid "Bib Record"
 msgstr ""
 
-#: field.clfm.code.label:5879
+#: field.clfm.code.label:6071
 msgid "LitF Code"
 msgstr ""
 
-#: field.cifm.value.label:2458
+#: field.cifm.value.label:2489
 msgid "Item Form"
 msgstr ""
 
-#: field.acqftr.id.label:7141
+#: field.acqftr.id.label:7335
 msgid "Fund Transfer ID"
 msgstr ""
 
-#: field.ahr.requestor.label:5129 field.ahopl.requestor.label:5256
-#: field.alhr.requestor.label:5330
+#: field.ahr.requestor.label:5161 field.ahopl.requestor.label:5308
+#: field.alhr.requestor.label:5391 field.stgu.requesting_usr.label:8959
 msgid "Requesting User"
 msgstr ""
 
-#: field.auoi.opt_in_ws.label:711 class.aws.label:1268
-#: field.circ.workstation.label:3695 field.acirc.workstation.label:3837
+#: field.auoi.opt_in_ws.label:711 class.aws.label:1296
+#: field.circ.workstation.label:3727 field.acirc.workstation.label:3869
 msgid "Workstation"
 msgstr ""
 
-#: field.ocirccount.long_overdue.label:3619
-#: field.ocirclist.long_overdue.label:3661
+#: field.ocirccount.long_overdue.label:3651
+#: field.ocirclist.long_overdue.label:3693
 msgid "Long Overdue"
 msgstr ""
 
-#: field.rocit.owning_lib_name.label:10357
+#: field.rocit.owning_lib_name.label:10556
 msgid "Owning Lib Name"
 msgstr ""
 
@@ -2570,40 +2620,40 @@ msgid "Metabib Field to Indexing Normalizer Map"
 msgstr ""
 
 #: field.vqbra.record.label:464 field.vqara.record.label:581
-#: field.ssr.record.label:4980 field.bmpc.record.label:9366
+#: field.ssr.record.label:5012 field.bmpc.record.label:9565
 msgid "Record"
 msgstr ""
 
-#: field.acqfsum.encumbrance_total.label:7564
+#: field.acqfsum.encumbrance_total.label:7758
 msgid "Total Encumbered"
 msgstr ""
 
-#: field.aal.match_all.label:3490
+#: field.aal.match_all.label:3522
 msgid "Match All Fields"
 msgstr ""
 
-#: class.ath.label:990
+#: class.ath.label:1018
 msgid "Trigger Hook Point"
 msgstr ""
 
-#: field.rhcrpb.hold_copy_ratio.label:9829
+#: field.rhcrpb.hold_copy_ratio.label:10028
 msgid "Hold/Copy Ratio"
 msgstr ""
 
-#: field.bresv.return_time.label:4051
+#: field.bresv.return_time.label:4083
 msgid "Return Time"
 msgstr ""
 
-#: field.qdt.is_composite.label:8956
+#: field.qdt.is_composite.label:9155
 msgid "Is Composite"
 msgstr ""
 
-#: field.rocit.call_number_label.label:10345
+#: field.rocit.call_number_label.label:10544
 msgid "Callnumber Label"
 msgstr ""
 
-#: field.chmw.marc_bib_level.label:1474 field.ccmw.marc_bib_level.label:1505
-#: field.chmm.marc_bib_level.label:1562 field.ccmm.marc_bib_level.label:1613
+#: field.chmw.marc_bib_level.label:1502 field.ccmw.marc_bib_level.label:1533
+#: field.chmm.marc_bib_level.label:1590 field.ccmm.marc_bib_level.label:1641
 msgid "MARC Bib Level"
 msgstr ""
 
@@ -2611,110 +2661,111 @@ msgstr ""
 msgid "SMS Carrier"
 msgstr ""
 
-#: field.mp.check_payment.label:6409 field.mbp.check_payment.label:6437
+#: field.mp.check_payment.label:6601 field.mbp.check_payment.label:6630
 msgid "Check Payment Detail"
 msgstr ""
 
-#: field.acqpro.default_copy_count.label:6871
+#: field.acqpro.default_copy_count.label:7065
 msgid "Default # Copies"
 msgstr ""
 
-#: class.acqpc.label:7074
+#: class.acqpc.label:7268
 msgid "Provider Contact"
 msgstr ""
 
-#: field.rccc.circ_lib_id.label:9996
+#: field.rccc.circ_lib_id.label:10195
 msgid "Library Circulation Location Link"
 msgstr ""
 
-#: field.acpl.orders.label:4196 field.aou.copy_location_orders.label:5417
+#: field.acpl.orders.label:4228 field.aou.copy_location_orders.label:5596
 msgid "Copy Location Orders"
 msgstr ""
 
-#: field.acqafcb.amount.label:7480
+#: field.acqafcb.amount.label:7674
 msgid "Total Combined Balance"
 msgstr ""
 
-#: field.pgt.usergroup.label:6192
+#: field.pgt.usergroup.label:6384
 msgid "Is User Group"
 msgstr ""
 
-#: field.acqfdeb.debit_type.label:7280
+#: field.acqfdeb.debit_type.label:7474
 msgid "Debit Type"
 msgstr ""
 
-#: class.ssr.label:4976
+#: class.ssr.label:5008
 msgid "Search Result"
 msgstr ""
 
-#: field.ausp.set_date.label:3440
+#: field.ausp.set_date.label:3472
 msgid "Set Date"
 msgstr ""
 
-#: field.bre.fingerprint.label:2645 field.rmsr.fingerprint.label:8356
-#: field.rssr.fingerprint.label:8380 field.rsr.fingerprint.label:8400
+#: field.bre.fingerprint.label:2676 field.rmsr.fingerprint.label:8549
+#: field.rssr.fingerprint.label:8573 field.rsr.fingerprint.label:8593
 msgid "Fingerprint"
 msgstr ""
 
-#: class.vibtg.label:243
+#: class.vibtg.label:241
 msgid "Import/Overlay Field Groups for Removal"
 msgstr ""
 
-#: field.ateo.data.label:973
+#: field.ateo.data.label:1001
 msgid "Data"
 msgstr ""
 
-#: field.smhc.ind2.label:4748
+#: field.smhc.ind2.label:4780
 msgid "Second Indicator"
 msgstr ""
 
-#: class.i18n.label:6669
+#: class.i18n.label:6863
 msgid "i18n Core"
 msgstr ""
 
-#: class.circ.label:3667 field.rccc.id.label:9994
+#: field.combahr.staff_placed.label:5478 field.aahr.staff_placed.label:5536
+msgid "Staff Placed?"
+msgstr ""
+
+#: class.circ.label:3699 field.rccc.id.label:10193
 msgid "Circulation"
 msgstr ""
 
-#: field.cgf.enabled.label:730 field.atevdef.active.label:1097
-#: field.cuat.enabled.label:2994
+#: field.cgf.enabled.label:730 field.atevdef.active.label:1125
+#: field.cuat.enabled.label:3025
 msgid "Enabled"
 msgstr ""
 
-#: field.qfr.type.label:9061
+#: field.qfr.type.label:9260
 msgid "From Relation Type"
 msgstr ""
 
-#: class.rhcrpb.label:9776
+#: class.rhcrpb.label:9975
 msgid "Hold/Copy Ratio per Bib"
 msgstr ""
 
-#: field.vii.alert_message.label:293 field.viiad.alert_message.label:344
-#: field.au.alert_message.label:2896 field.aal.alert_message.label:3491
-#: field.sunit.alert_message.label:4603 field.acp.alert_message.label:6021
-#: field.act.alert_message.label:6125
-msgid "Alert Message"
+#: field.artc.reservation.label:6768
+msgid "Reservation requiring Transit"
 msgstr ""
 
-#: field.sre.creator.label:4309 field.ssubn.creator.label:4411
-#: field.sdistn.creator.label:4472 field.siss.creator.label:4563
-#: field.sitem.creator.label:4673 field.sin.creator.label:4718
-#: field.act.creator.label:6106 field.acqpron.creator.label:6894
-#: field.acqpl.creator.label:7647 field.acqpo.creator.label:7694
-#: field.acqpoh.creator.label:7736 field.acqpon.creator.label:7768
-#: field.jub.creator.label:7849 field.acqlih.creator.label:7897
-#: field.acqlin.creator.label:7963 field.acqdfa.creator.label:8561
-#: field.acqcle.creator.label:8662 field.acqscle.creator.label:8690
-#: field.uvs.creator.label:9454 field.cfdfs.creator.label:9714
-#: field.rocit.creator.label:10361
+#: field.sre.creator.label:4341 field.ssubn.creator.label:4443
+#: field.sdistn.creator.label:4504 field.siss.creator.label:4595
+#: field.sitem.creator.label:4705 field.sin.creator.label:4750
+#: field.act.creator.label:6298 field.acqpron.creator.label:7088
+#: field.acqpl.creator.label:7841 field.acqpo.creator.label:7888
+#: field.acqpoh.creator.label:7930 field.acqpon.creator.label:7962
+#: field.jub.creator.label:8043 field.acqlih.creator.label:8091
+#: field.acqlin.creator.label:8156 field.acqdfa.creator.label:8754
+#: field.acqcle.creator.label:8855 field.acqscle.creator.label:8883
+#: field.uvs.creator.label:9653 field.cfdfs.creator.label:9913
+#: field.rocit.creator.label:10560
 msgid "Creator"
 msgstr ""
 
-#: field.asvq.id.label:1824
+#: field.asvq.id.label:1852
 msgid "Question ID"
 msgstr ""
 
-#: class.acqpon.label:7764
+#: class.acqpon.label:7958
 msgid "PO Note"
 msgstr ""
 
@@ -2722,27 +2773,27 @@ msgstr ""
 msgid "Transmission Format"
 msgstr ""
 
-#: field.acqpoh.audit_action.label:7733 field.acqlih.audit_action.label:7895
+#: field.acqpoh.audit_action.label:7927 field.acqlih.audit_action.label:8089
 msgid "Audit Action"
 msgstr ""
 
-#: field.chddv.active_date.label:2836
+#: field.chddv.active_date.label:2867
 msgid "Active Date"
 msgstr ""
 
-#: field.qsf.subfield_type.label:8967
+#: field.qsf.subfield_type.label:9166
 msgid "Subfield Type"
 msgstr ""
 
-#: field.acqfsrcct.amount.label:7490
+#: field.acqfsrcct.amount.label:7684
 msgid "Total Credits to Funding Source"
 msgstr ""
 
-#: class.mct.label:2614
+#: class.mct.label:2645
 msgid "Collections Tracker"
 msgstr ""
 
-#: field.qsi.grouped_by.label:9101
+#: field.qsi.grouped_by.label:9300
 msgid "Is Grouped By"
 msgstr ""
 
@@ -2755,103 +2806,103 @@ msgid "DB"
 msgstr ""
 
 #: field.vibtf.field.label:220 field.vqbra.field.label:465
-#: field.vqara.field.label:582 field.cmsa.field.label:2326
+#: field.vqara.field.label:582 field.cmsa.field.label:2356
 msgid "Field"
 msgstr ""
 
-#: field.atb.org.label:3029 field.acpl.owning_lib.label:4195
-#: field.acplg.owner.label:4222 field.sre.owning_lib.label:4317
+#: field.atb.org.label:3060 field.acpl.owning_lib.label:4227
+#: field.acplg.owner.label:4254 field.sre.owning_lib.label:4349
 msgid "Owning Org Unit"
 msgstr ""
 
-#: field.scap.chron_5.label:4355
+#: field.scap.chron_5.label:4387
 msgid "Chron 5"
 msgstr ""
 
-#: field.scap.chron_4.label:4354
+#: field.scap.chron_4.label:4386
 msgid "Chron 4"
 msgstr ""
 
-#: field.mbts.xact_finish.label:1861 field.mbtslv.xact_finish.label:1882
+#: field.mbts.xact_finish.label:1889 field.mbtslv.xact_finish.label:1910
 msgid "Transaction Finish Time"
 msgstr ""
 
-#: field.scap.chron_1.label:4351
+#: field.scap.chron_1.label:4383
 msgid "Chron 1"
 msgstr ""
 
-#: field.scap.chron_3.label:4353
+#: field.scap.chron_3.label:4385
 msgid "Chron 3"
 msgstr ""
 
-#: field.scap.chron_2.label:4352
+#: field.scap.chron_2.label:4384
 msgid "Chron 2"
 msgstr ""
 
-#: field.accs.start_time.label:170 field.atev.start_time.label:1144
-#: field.bresv.start_time.label:4046 field.uvva.start_time.label:9613
+#: field.accs.start_time.label:170 field.atev.start_time.label:1172
+#: field.bresv.start_time.label:4078 field.uvva.start_time.label:9812
 msgid "Start Time"
 msgstr ""
 
-#: class.xop.label:9301 class.xser.label:9319
+#: class.xop.label:9500 class.xser.label:9518
 msgid "Operator Expression"
 msgstr ""
 
-#: field.rxbt.total.label:8463
+#: field.rxbt.total.label:8656
 msgid "Total Billing Amount"
 msgstr ""
 
-#: field.circ.xact_finish.label:3692 field.combcirc.xact_finish.label:3765
-#: field.acirc.xact_finish.label:3834 field.bresv.xact_finish.label:4037
-#: field.mbt.xact_finish.label:5792 field.rodcirc.xact_finish.label:10309
+#: field.circ.xact_finish.label:3724 field.combcirc.xact_finish.label:3797
+#: field.acirc.xact_finish.label:3866 field.bresv.xact_finish.label:4069
+#: field.mbt.xact_finish.label:5984 field.rodcirc.xact_finish.label:10508
 msgid "Transaction Finish Date/Time"
 msgstr ""
 
-#: field.acqedim.translate_time.label:8200
+#: field.acqedim.translate_time.label:8393
 msgid "Time Translated"
 msgstr ""
 
-#: class.acqfdt.label:7369
+#: class.acqfdt.label:7563
 msgid "Total Debit from Fund"
 msgstr ""
 
-#: field.vmp.name.label:196 field.viiad.name.label:327
-#: field.vbq.name.label:368 field.vaq.name.label:508 field.vms.name.label:623
+#: field.vmp.name.label:196 field.viiad.name.label:325
+#: field.vbq.name.label:366 field.vaq.name.label:508 field.vms.name.label:623
 #: field.cgf.name.label:727 field.cin.name.label:745 field.crad.name.label:784
 #: field.csc.name.label:818 field.cza.name.label:950
-#: field.atevdef.name.label:1109 field.atul.name.label:1233
-#: field.ccm.name.label:1286 field.bpt.name.label:1371
-#: field.chmw.name.label:1463 field.ccmw.name.label:1494
-#: field.cclg.name.label:1661 field.ccls.name.label:1678
-#: field.aus.name.label:1922 field.acs.name.label:2065
-#: field.acsaf.name.label:2092 field.at.name.label:2140
-#: field.aba.name.label:2159 field.cxt.name.label:2306
-#: field.cmc.name.label:2344 field.cmf.name.label:2371
-#: field.cbho.name.label:2398 field.acnc.name.label:2473
-#: field.chdd.name.label:2813 field.cust.name.label:3077
-#: field.auss.name.label:3520 field.acpl.name.label:4193
-#: field.acplg.name.label:4220 field.asv.name.label:4996
-#: field.aou.name.label:5401 field.asc.name.label:5532
-#: field.actsc.name.label:5585 field.cnct.name.label:5685
-#: field.act.name.label:6110 field.cbt.name.label:6729
-#: field.acqipm.name.label:6910 field.acqpc.name.label:7078
-#: field.acqf.name.label:7309 field.acqfsum.name.label:7551
-#: field.acqpl.name.label:7642 field.acqpo.name.label:7697
-#: field.acqpoh.name.label:7744 field.acqlia.attr_name.label:7984
-#: field.acqphsm.name.label:8122 field.qbv.name.label:9002
-#: field.uvs.name.label:9452 field.cfdfs.name.label:9712
+#: field.atevdef.name.label:1137 field.atul.name.label:1261
+#: field.ccm.name.label:1314 field.bpt.name.label:1399
+#: field.chmw.name.label:1491 field.ccmw.name.label:1522
+#: field.cclg.name.label:1689 field.ccls.name.label:1706
+#: field.aus.name.label:1950 field.acs.name.label:2093
+#: field.acsaf.name.label:2121 field.at.name.label:2170
+#: field.aba.name.label:2189 field.cxt.name.label:2336
+#: field.cmc.name.label:2374 field.cmf.name.label:2402
+#: field.cbho.name.label:2429 field.acnc.name.label:2504
+#: field.chdd.name.label:2844 field.cust.name.label:3108
+#: field.auss.name.label:3552 field.acpl.name.label:4225
+#: field.acplg.name.label:4252 field.asv.name.label:5028
+#: field.aou.name.label:5580 field.asc.name.label:5711
+#: field.actsc.name.label:5764 field.cnct.name.label:5877
+#: field.act.name.label:6302 field.cbt.name.label:6923
+#: field.acqipm.name.label:7104 field.acqpc.name.label:7272
+#: field.acqf.name.label:7503 field.acqfsum.name.label:7745
+#: field.acqpl.name.label:7836 field.acqpo.name.label:7891
+#: field.acqpoh.name.label:7938 field.acqlia.attr_name.label:8177
+#: field.acqphsm.name.label:8315 field.qbv.name.label:9201
+#: field.uvs.name.label:9651 field.cfdfs.name.label:9911
 msgid "Name"
 msgstr ""
 
-#: class.aaasc.label:10632
+#: class.aaasc.label:10831
 msgid "Circ-Archived Copy Statistical Category Entries"
 msgstr ""
 
-#: field.clm.code.label:2262 field.bre.language.label:2656
+#: field.clm.code.label:2292 field.bre.language.label:2687
 msgid "Language Code"
 msgstr ""
 
-#: field.au.ws_ou.label:2893
+#: field.au.ws_ou.label:2924
 msgid "Workstation Org Unit"
 msgstr ""
 
@@ -2859,19 +2910,19 @@ msgstr ""
 msgid "Bib Import Merge Profile"
 msgstr ""
 
-#: field.qseq.seq_no.label:8942 field.qsf.seq_no.label:8966
-#: field.qfpd.seq_no.label:8991 field.qxp.seq_no.label:9019
-#: field.qcb.seq_no.label:9047 field.qfr.seq_no.label:9068
-#: field.qrc.seq_no.label:9084 field.qsi.seq_no.label:9098
-#: field.qobi.seq_no.label:9113 field.xbet.seq_no.label:9127
-#: field.xbind.seq_no.label:9142 field.xbool.seq_no.label:9156
-#: field.xcase.seq_no.label:9170 field.xcast.seq_no.label:9185
-#: field.xcol.seq_no.label:9202 field.xex.seq_no.label:9217
-#: field.xfunc.seq_no.label:9232 field.xin.seq_no.label:9248
-#: field.xisnull.seq_no.label:9265 field.xnull.seq_no.label:9280
-#: field.xnum.seq_no.label:9293 field.xop.seq_no.label:9306
-#: field.xser.seq_no.label:9324 field.xstr.seq_no.label:9338
-#: field.xsubq.seq_no.label:9351
+#: field.qseq.seq_no.label:9141 field.qsf.seq_no.label:9165
+#: field.qfpd.seq_no.label:9190 field.qxp.seq_no.label:9218
+#: field.qcb.seq_no.label:9246 field.qfr.seq_no.label:9267
+#: field.qrc.seq_no.label:9283 field.qsi.seq_no.label:9297
+#: field.qobi.seq_no.label:9312 field.xbet.seq_no.label:9326
+#: field.xbind.seq_no.label:9341 field.xbool.seq_no.label:9355
+#: field.xcase.seq_no.label:9369 field.xcast.seq_no.label:9384
+#: field.xcol.seq_no.label:9401 field.xex.seq_no.label:9416
+#: field.xfunc.seq_no.label:9431 field.xin.seq_no.label:9447
+#: field.xisnull.seq_no.label:9464 field.xnull.seq_no.label:9479
+#: field.xnum.seq_no.label:9492 field.xop.seq_no.label:9505
+#: field.xser.seq_no.label:9523 field.xstr.seq_no.label:9537
+#: field.xsubq.seq_no.label:9550
 msgid "Sequence Number"
 msgstr ""
 
@@ -2879,60 +2930,61 @@ msgstr ""
 msgid "Last Checkin Scan Time"
 msgstr ""
 
-#: field.uvuv.res_text.label:9655
+#: field.uvuv.res_text.label:9854
 msgid "Result Text"
 msgstr ""
 
-#: field.vii.call_number.label:280 field.viiad.call_number.label:332
-#: field.auricnm.call_number.label:2582
-#: field.combcirc.copy_call_number.label:3777
-#: field.acirc.copy_call_number.label:3850
+#: field.vii.call_number.label:278 field.viiad.call_number.label:330
+#: field.auricnm.call_number.label:2613
+#: field.combcirc.copy_call_number.label:3809
+#: field.acirc.copy_call_number.label:3882
 msgid "Call Number"
 msgstr ""
 
-#: field.atev.template_output.label:1149
+#: field.atev.template_output.label:1177
 msgid "Template Output"
 msgstr ""
 
-#: field.acqdf.id.label:8501 field.acqdfe.formula.label:8524
+#: field.acqdf.id.label:8694 field.acqdfe.formula.label:8717
 msgid "Formula ID"
 msgstr ""
 
-#: field.act.mint_condition.label:6128
+#: field.act.mint_condition.label:6320
 msgid "Mint Condition?"
 msgstr ""
 
-#: field.circbyyr.is_renewal.label:10273
+#: field.circbyyr.is_renewal.label:10472
 msgid "Renewal"
 msgstr ""
 
-#: class.bram.label:4003
+#: class.bram.label:4035
 msgid "Resource Attribute Map"
 msgstr ""
 
-#: field.rccbs.usr_home_ou.label:10071
+#: field.rccbs.usr_home_ou.label:10270
 msgid "User Home Library Link"
 msgstr ""
 
-#: class.cbc.label:10572
+#: class.cbc.label:10771
 msgid "Barcode Completions"
 msgstr ""
 
-#: field.acqpc.role.label:7079
+#: field.acqpc.role.label:7273
 msgid "Role"
 msgstr ""
 
-#: field.au.day_phone.label:2904 field.stgu.day_phone.label:8761
+#: field.au.day_phone.label:2935 field.stgu.day_phone.label:8954
 msgid "Daytime Phone"
 msgstr ""
 
-#: field.bresv.email_notify.label:4062 field.ahr.email_notify.label:5114
-#: field.ahopl.email_notify.label:5241 field.alhr.email_notify.label:5317
+#: field.bresv.email_notify.label:4094 field.ahr.email_notify.label:5146
+#: field.ahopl.email_notify.label:5293 field.alhr.email_notify.label:5378
+#: field.combahr.email_notify.label:5460 field.aahr.email_notify.label:5518
 msgid "Notify by Email?"
 msgstr ""
 
-#: field.acqlisum.invoice_count.label:10173
-#: field.acqlisumi.invoice_count.label:10193
+#: field.acqlisum.invoice_count.label:10372
+#: field.acqlisumi.invoice_count.label:10392
 msgid "Invoice Count"
 msgstr ""
 
@@ -2940,57 +2992,58 @@ msgstr ""
 msgid "User Payment Summary"
 msgstr ""
 
-#: field.acqinv.recv_method.label:6929
+#: field.acqinv.recv_method.label:7123
 msgid "Receive Method"
 msgstr ""
 
-#: field.au.notes.label:2937
+#: field.au.notes.label:2968
 msgid "User Notes"
 msgstr ""
 
-#: field.asc.id.label:5531 field.actsc.id.label:5584
-#: field.stgsc.statcat.label:8814
+#: field.asc.id.label:5710 field.actsc.id.label:5763
+#: field.stgsc.statcat.label:9013
 msgid "Stat Cat ID"
 msgstr ""
 
-#: field.acqexr.from_currency.label:6835
+#: field.acqexr.from_currency.label:7029
 msgid "From Currency"
 msgstr ""
 
-#: field.mrd.enc_level.label:3353
+#: field.mrd.enc_level.label:3385
 msgid "ELvl"
 msgstr ""
 
-#: field.qsq.use_all.label:8921
+#: field.qsq.use_all.label:9120
 msgid "Use ALL"
 msgstr ""
 
-#: class.atreact.label:1032
+#: class.atreact.label:1060
 msgid "Trigger Event Reactor"
 msgstr ""
 
-#: field.acqf.combined_balance.label:7326
+#: field.acqf.combined_balance.label:7520
 msgid "Combined Balance"
 msgstr ""
 
-#: field.acqii.po_item.label:7009 class.acqpoi.label:7798
+#: field.acqii.po_item.label:7203 class.acqpoi.label:7992
 msgid "Purchase Order Item"
 msgstr ""
 
-#: field.ahr.selection_ou.label:5131 field.ahopl.selection_ou.label:5258
-#: field.alhr.selection_ou.label:5332
+#: field.ahr.selection_ou.label:5163 field.ahopl.selection_ou.label:5310
+#: field.alhr.selection_ou.label:5393 field.combahr.selection_ou.label:5480
+#: field.aahr.selection_ou.label:5538
 msgid "Selection Locus"
 msgstr ""
 
-#: field.atenv.collector.label:1069
+#: field.atenv.collector.label:1097
 msgid "Collector"
 msgstr ""
 
-#: class.acqafet.label:7447
+#: class.acqafet.label:7641
 msgid "All Fund Encumbrance Total"
 msgstr ""
 
-#: field.pgt.children.label:6185
+#: field.pgt.children.label:6377
 msgid "Child Groups"
 msgstr ""
 
@@ -2998,113 +3051,114 @@ msgstr ""
 msgid "Last Checkin Time"
 msgstr ""
 
-#: field.bre.tcn_value.label:2652 field.rmsr.tcn_value.label:8359
-#: field.rssr.tcn_value.label:8383 field.rsr.tcn_value.label:8403
+#: field.bre.tcn_value.label:2683 field.rmsr.tcn_value.label:8552
+#: field.rssr.tcn_value.label:8576 field.rsr.tcn_value.label:8596
 msgid "TCN Value"
 msgstr ""
 
-#: field.act.location.label:6113 field.acqdfe.location.label:8528
+#: field.act.location.label:6305 field.acqdfe.location.label:8721
 msgid "Location"
 msgstr ""
 
-#: class.cmpcvm.label:9426
+#: class.cmpcvm.label:9625
 msgid "MARC21 Physical Characteristic Value Map"
 msgstr ""
 
-#: class.cam.label:2439
+#: class.cam.label:2470
 msgid "Audience Map"
 msgstr ""
 
-#: field.acqpro.prepayment_required.label:6865
-#: field.acqpo.prepayment_required.label:7699
-#: field.acqpoh.prepayment_required.label:7746
+#: field.acqpro.prepayment_required.label:7059
+#: field.acqpo.prepayment_required.label:7893
+#: field.acqpoh.prepayment_required.label:7940
 msgid "Prepayment Required"
 msgstr ""
 
-#: field.au.profile.label:2925 field.stgu.profile.label:8754
+#: field.au.profile.label:2956 field.stgu.profile.label:8947
 msgid "Main (Profile) Permission Group"
 msgstr ""
 
 #: field.vmsp.subfield.label:648 field.vmsq.subfield.label:683
-#: field.mfr.subfield.label:3173 field.smhc.subfield.label:4749
-#: field.acqphsm.subfield.label:8123 class.qsf.label:8962
-#: field.bmpc.subfield.label:9364 field.cmpcsm.subfield.label:9411
-#: field.cmpcvm.ptype_subfield.label:9430 field.uvu.subfield.label:9561
+#: field.mfr.subfield.label:3205 field.smhc.subfield.label:4781
+#: field.acqphsm.subfield.label:8316 class.qsf.label:9161
+#: field.bmpc.subfield.label:9563 field.cmpcsm.subfield.label:9610
+#: field.cmpcvm.ptype_subfield.label:9629 field.uvu.subfield.label:9760
 msgid "Subfield"
 msgstr ""
 
-#: field.acn.creator.label:2525 field.sunit.creator.label:4613
-#: field.acp.creator.label:6031
+#: field.acn.creator.label:2556 field.sunit.creator.label:4645
+#: field.acp.creator.label:6223
 msgid "Creating User"
 msgstr ""
 
-#: field.sunit.holdable.label:4623 field.acp.holdable.label:6041
+#: field.sunit.holdable.label:4655 field.acp.holdable.label:6233
 msgid "Is Holdable"
 msgstr ""
 
-#: field.acqlin.id.label:7961
+#: field.acqlin.id.label:8154
 msgid "PO Line Item Note ID"
 msgstr ""
 
-#: class.ergbhu.label:8480
+#: class.ergbhu.label:8673
 msgid "Bib IDs by Holding Add/Delete Time (OCLC batch update)"
 msgstr ""
 
-#: class.acqftr.label:7139
+#: class.acqftr.label:7333
 msgid "Fund Transfer"
 msgstr ""
 
-#: field.circ.max_fine.label:3680 field.combcirc.max_fine.label:3753
-#: field.acirc.max_fine.label:3822 field.brt.max_fine.label:3893
-#: field.bresv.max_fine.label:4055 field.crmf.amount.label:6168
-#: field.rodcirc.max_fine.label:10298
+#: field.circ.max_fine.label:3712 field.combcirc.max_fine.label:3785
+#: field.acirc.max_fine.label:3854 field.brt.max_fine.label:3925
+#: field.bresv.max_fine.label:4087 field.crmf.amount.label:6360
+#: field.rodcirc.max_fine.label:10497
 msgid "Max Fine Amount"
 msgstr ""
 
-#: field.act.deposit.label:6118
+#: field.act.deposit.label:6310
 msgid "Deposit?"
 msgstr ""
 
-#: field.auss.target.label:3524 field.acqii.target.label:7010
-#: field.acqpoi.target.label:7809
+#: field.auss.target.label:3556 field.acqii.target.label:7204
+#: field.acqpoi.target.label:8003
 msgid "Target"
 msgstr ""
 
-#: field.qfr.subquery.label:9064
+#: field.qfr.subquery.label:9263
 msgid "Subquery ID"
 msgstr ""
 
-#: field.acqftm.tag.label:10486
+#: field.acqftm.tag.label:10685
 msgid "Tag ID"
 msgstr ""
 
-#: field.ccmm.hard_due_date.label:1624 class.chdd.label:2810
-#: field.chddv.hard_due_date.label:2834
+#: field.ccmm.hard_due_date.label:1652 class.chdd.label:2841
+#: field.chddv.hard_due_date.label:2865
 msgid "Hard Due Date"
 msgstr ""
 
-#: field.ahr.hold_type.label:5119 field.ahopl.hold_type.label:5246
-#: field.alhr.hold_type.label:5322
+#: field.ahr.hold_type.label:5151 field.ahopl.hold_type.label:5298
+#: field.alhr.hold_type.label:5383 field.combahr.hold_type.label:5465
+#: field.aahr.hold_type.label:5523
 msgid "Hold Type"
 msgstr ""
 
-#: field.acqfdeb.origin_currency_type.label:7277
+#: field.acqfdeb.origin_currency_type.label:7471
 msgid "Origin Currency"
 msgstr ""
 
-#: field.acqda.credit_amount.label:8595
+#: field.acqda.credit_amount.label:8788
 msgid "Credit Amount"
 msgstr ""
 
-#: field.au.alias.label:2932
+#: field.au.alias.label:2963
 msgid "OPAC/Staff Client Holds Alias"
 msgstr ""
 
-#: field.aou.children.label:5395
+#: field.aou.children.label:5574
 msgid "Subordinate Organizational Units"
 msgstr ""
 
-#: field.mfr.value.label:3175
+#: field.mfr.value.label:3207
 msgid "Normalized Value"
 msgstr ""
 
@@ -3112,15 +3166,15 @@ msgstr ""
 msgid "Checkout Workstation"
 msgstr ""
 
-#: class.cxt.label:2304
+#: class.cxt.label:2334
 msgid "XML/XSLT Transform Definition"
 msgstr ""
 
-#: class.acqmapinv.label:10509
+#: class.acqmapinv.label:10708
 msgid "Acq Map to Invoice View"
 msgstr ""
 
-#: field.acqf.allocation_total.label:7322
+#: field.acqf.allocation_total.label:7516
 msgid "Allocation Total"
 msgstr ""
 
@@ -3128,60 +3182,62 @@ msgstr ""
 msgid "Last Renewal Time"
 msgstr ""
 
-#: class.acs.label:2062
+#: class.acs.label:2090
 msgid "Authority Control Set"
 msgstr ""
 
-#: field.jub.source_label.label:7846 field.acqlih.source_label.label:7908
+#: field.jub.source_label.label:8040 field.acqlih.source_label.label:8102
 msgid "Source Label"
 msgstr ""
 
-#: field.acsaf.id.label:2086
+#: field.acsaf.id.label:2114
 msgid "Control Set Authority Field ID"
 msgstr ""
 
-#: field.ahr.fulfillment_time.label:5118
-#: field.ahopl.fulfillment_time.label:5245
-#: field.alhr.fulfillment_time.label:5321
+#: field.ahr.fulfillment_time.label:5150
+#: field.ahopl.fulfillment_time.label:5297
+#: field.alhr.fulfillment_time.label:5382
+#: field.combahr.fulfillment_time.label:5464
+#: field.aahr.fulfillment_time.label:5522
 msgid "Fulfillment Date/Time"
 msgstr ""
 
-#: field.ausp.note.label:3446 field.srlu.note.label:4536
-#: field.mg.note.label:5750 field.mwp.note.label:5899
-#: field.mgp.note.label:5917 field.mckp.note.label:6005
-#: field.mp.note.label:6401 field.mbp.note.label:6429
-#: field.mndp.note.label:6457 field.mdp.note.label:6479
-#: field.mb.note.label:6645 field.acqinv.note.label:6934
-#: field.acqie.note.label:6966 field.acqii.note.label:7004
-#: field.acqftr.note.label:7148 field.acqfscred.note.label:7233
-#: field.acqofscred.note.label:7265 field.acqfa.note.label:7585
-#: field.acqfap.note.label:7619 field.acqpoi.note.label:7806
-#: field.acqlid.note.label:8009 field.acqcle.note.label:8663
-#: field.acqscle.note.label:8691
+#: field.ausp.note.label:3478 field.srlu.note.label:4568
+#: field.mg.note.label:5942 field.mwp.note.label:6091
+#: field.mgp.note.label:6109 field.mckp.note.label:6197
+#: field.mp.note.label:6593 field.mbp.note.label:6621
+#: field.mndp.note.label:6651 field.mdp.note.label:6673
+#: field.mb.note.label:6839 field.acqinv.note.label:7128
+#: field.acqie.note.label:7160 field.acqii.note.label:7198
+#: field.acqftr.note.label:7342 field.acqfscred.note.label:7427
+#: field.acqofscred.note.label:7459 field.acqfa.note.label:7779
+#: field.acqfap.note.label:7813 field.acqpoi.note.label:8000
+#: field.acqlid.note.label:8202 field.acqcle.note.label:8856
+#: field.acqscle.note.label:8884
 msgid "Note"
 msgstr ""
 
-#: class.ccnbi.label:4110
+#: class.ccnbi.label:4142
 msgid "Call Number Bucket Item"
 msgstr ""
 
-#: class.xbet.label:9122
+#: class.xbet.label:9321
 msgid "Between Expression"
 msgstr ""
 
-#: field.ateo.events.label:975
+#: field.ateo.events.label:1003
 msgid "Events"
 msgstr ""
 
-#: field.act.circ_lib.label:6111 field.rocit.circ_lib.label:10360
+#: field.act.circ_lib.label:6303 field.rocit.circ_lib.label:10559
 msgid "Circ Lib"
 msgstr ""
 
-#: field.acn.id.label:2529
+#: field.acn.id.label:2560
 msgid "Call Number/Volume ID"
 msgstr ""
 
-#: field.qfr.join_type.label:9069
+#: field.qfr.join_type.label:9268
 msgid "Join Type"
 msgstr ""
 
@@ -3189,50 +3245,50 @@ msgstr ""
 msgid "Queued Authority Record"
 msgstr ""
 
-#: field.bresv.capture_staff.label:4061
+#: field.bresv.capture_staff.label:4093
 msgid "Capture Staff"
 msgstr ""
 
-#: field.circ.aaasc_entries.label:3708 field.combcirc.aaasc_entries.label:3783
-#: field.acirc.aaasc_entries.label:3856
+#: field.circ.aaasc_entries.label:3740 field.combcirc.aaasc_entries.label:3815
+#: field.acirc.aaasc_entries.label:3888
 msgid "Archived Copy Stat-Cat Entries"
 msgstr ""
 
-#: class.acqclpa.label:8720 field.acrlid.claim_policy_action.label:10157
+#: class.acqclpa.label:8913 field.acrlid.claim_policy_action.label:10356
 msgid "Claim Policy Action"
 msgstr ""
 
-#: field.chmw.id.label:1462
+#: field.chmw.id.label:1490
 msgid "Hold Weights ID"
 msgstr ""
 
-#: field.bresv.payments.label:4041 field.mbt.payments.label:5798
+#: field.bresv.payments.label:4073 field.mbt.payments.label:5990
 msgid "Payment Line Items"
 msgstr ""
 
-#: field.sra.multiplier.label:4886
+#: field.sra.multiplier.label:4918
 msgid "Multiplier"
 msgstr ""
 
-#: field.uvs.id.label:9451
+#: field.uvs.id.label:9650
 msgid "Session ID"
 msgstr ""
 
-#: field.atul.run_time.label:1238
+#: field.atul.run_time.label:1266
 msgid "Event Run Time"
 msgstr ""
 
-#: field.stgu.row_date.label:8752 field.stgc.row_date.label:8772
-#: field.stgma.row_date.label:8782 field.stgba.row_date.label:8797
-#: field.stgsc.row_date.label:8812
+#: field.stgu.row_date.label:8945 field.stgc.row_date.label:8969
+#: field.stgma.row_date.label:8979 field.stgba.row_date.label:8995
+#: field.stgsc.row_date.label:9011
 msgid "Row Date"
 msgstr ""
 
-#: class.qobi.label:9109
+#: class.qobi.label:9308
 msgid "Order By Item"
 msgstr ""
 
-#: class.cblvl.label:4865
+#: class.cblvl.label:4897
 msgid "Bib Level Map"
 msgstr ""
 
@@ -3240,58 +3296,60 @@ msgstr ""
 msgid "Replace Specification"
 msgstr ""
 
-#: class.mcp.label:3308 field.mdp.cash_payment.label:6486
+#: class.mcp.label:3340 field.mdp.cash_payment.label:6680
 msgid "Cash Payment"
 msgstr ""
 
-#: field.ahr.fulfillment_lib.label:5116 field.ahopl.fulfillment_lib.label:5243
-#: field.alhr.fulfillment_lib.label:5319
+#: field.ahr.fulfillment_lib.label:5148 field.ahopl.fulfillment_lib.label:5295
+#: field.alhr.fulfillment_lib.label:5380
+#: field.combahr.fulfillment_lib.label:5462
+#: field.aahr.fulfillment_lib.label:5520
 msgid "Fulfilling Library"
 msgstr ""
 
-#: field.rocit.shelving_location.label:10350
+#: field.rocit.shelving_location.label:10549
 msgid "Shelving Location Name"
 msgstr ""
 
-#: field.atc.id.label:1976 field.artc.id.label:6575 field.ahtc.id.label:6610
-#: field.iatc.id.label:10217
+#: field.atc.id.label:2004 field.artc.id.label:6769 field.ahtc.id.label:6804
+#: field.iatc.id.label:10416
 msgid "Transit ID"
 msgstr ""
 
-#: field.mcrp.note.label:5654
+#: field.mcrp.note.label:5833
 msgid "Payment Note"
 msgstr ""
 
-#: field.atul.start_time.label:1239
+#: field.atul.start_time.label:1267
 msgid "Event Start Time"
 msgstr ""
 
-#: class.fdoc.label:6689
+#: class.fdoc.label:6883
 msgid "IDL Field Doc"
 msgstr ""
 
-#: field.sunit.total_circ_count.label:4640
-#: field.acp.total_circ_count.label:6056
+#: field.sunit.total_circ_count.label:4672
+#: field.acp.total_circ_count.label:6248
 msgid "Total Circulations"
 msgstr ""
 
-#: field.ccmm.script_test.label:1627
+#: field.ccmm.script_test.label:1655
 msgid "Script Test"
 msgstr ""
 
-#: field.qobi.id.label:9111
+#: field.qobi.id.label:9310
 msgid "Order By Item ID"
 msgstr ""
 
-#: field.uvsbrem.id.label:9492
+#: field.uvsbrem.id.label:9691
 msgid "Bucket Item ID"
 msgstr ""
 
-#: field.cbho.hprox.label:2400
+#: field.cbho.hprox.label:2431
 msgid "Circ Lib to Request Lib Proximity"
 msgstr ""
 
-#: field.ahr.sms_carrier.label:5124 field.ahopl.sms_carrier.label:5251
+#: field.ahr.sms_carrier.label:5156 field.ahopl.sms_carrier.label:5303
 msgid "Notifications SMS Carrier"
 msgstr ""
 
@@ -3299,117 +3357,117 @@ msgstr ""
 msgid "Match Set ID"
 msgstr ""
 
-#: field.bre.create_date.label:2640 field.au.create_date.label:2902
-#: field.circ.create_time.label:3694 field.combcirc.create_time.label:3767
-#: field.acirc.create_time.label:3836
+#: field.bre.create_date.label:2671 field.au.create_date.label:2933
+#: field.circ.create_time.label:3726 field.combcirc.create_time.label:3799
+#: field.acirc.create_time.label:3868
 msgid "Record Creation Date/Time"
 msgstr ""
 
-#: field.ocirccount.claims_returned.label:3618
-#: field.ocirclist.claims_returned.label:3660
+#: field.ocirccount.claims_returned.label:3650
+#: field.ocirclist.claims_returned.label:3692
 msgid "Claims Returned"
 msgstr ""
 
-#: field.chmw.request_ou.label:1465 field.chmm.request_ou.label:1553
-#: field.bresv.request_lib.label:4059
+#: field.chmw.request_ou.label:1493 field.chmm.request_ou.label:1581
+#: field.bresv.request_lib.label:4091
 msgid "Request Library"
 msgstr ""
 
-#: field.asvr.usr.label:2013
+#: field.asvr.usr.label:2041
 msgid "Responding User"
 msgstr ""
 
-#: class.atval.label:1016
+#: class.atval.label:1044
 msgid "Trigger Condition Validator"
 msgstr ""
 
-#: class.acqexr.label:6832
+#: class.acqexr.label:7026
 msgid "Exchange Rate"
 msgstr ""
 
-#: field.qxp.table_alias.label:9021 field.qfr.table_alias.label:9066
-#: field.xcol.table_alias.label:9203
+#: field.qxp.table_alias.label:9220 field.qfr.table_alias.label:9265
+#: field.xcol.table_alias.label:9402
 msgid "Table Alias"
 msgstr ""
 
-#: field.vbq.complete.label:369 field.vaq.complete.label:509
-#: field.acqinv.complete.label:6935 field.stgu.complete.label:8765
-#: field.stgc.complete.label:8775 field.stgma.complete.label:8790
-#: field.stgba.complete.label:8805 field.stgsc.complete.label:8816
+#: field.vbq.complete.label:367 field.vaq.complete.label:509
+#: field.acqinv.complete.label:7129 field.stgu.complete.label:8958
+#: field.stgc.complete.label:8972 field.stgma.complete.label:8988
+#: field.stgba.complete.label:9004 field.stgsc.complete.label:9015
 msgid "Complete"
 msgstr ""
 
-#: field.cnct.id.label:5683
+#: field.cnct.id.label:5875
 msgid "Non-cat Type ID"
 msgstr ""
 
-#: field.qdt.id.label:8953
+#: field.qdt.id.label:9152
 msgid "Datatype ID"
 msgstr ""
 
-#: field.atevdef.cleanup_failure.label:1103
+#: field.atevdef.cleanup_failure.label:1131
 msgid "Failure Cleanup"
 msgstr ""
 
-#: field.ccmm.circulate.label:1620 field.act.circulate.label:6117
+#: field.ccmm.circulate.label:1648 field.act.circulate.label:6309
 msgid "Circulate?"
 msgstr ""
 
-#: field.chmw.usr_grp.label:1469 field.chmm.usr_grp.label:1557
+#: field.chmw.usr_grp.label:1497 field.chmm.usr_grp.label:1585
 msgid "User Permission Group"
 msgstr ""
 
-#: field.acqclet.library_initiated.label:8629
+#: field.acqclet.library_initiated.label:8822
 msgid "Library Initiated"
 msgstr ""
 
-#: field.bresv.attr_val_maps.label:4063
+#: field.bresv.attr_val_maps.label:4095
 msgid "Attribute Value Maps"
 msgstr ""
 
-#: field.scap.start_date.label:4341 field.ssub.start_date.label:4380
+#: field.scap.start_date.label:4373 field.ssub.start_date.label:4412
 msgid "Start Date"
 msgstr ""
 
-#: field.acn.label_class.label:2537
+#: field.acn.label_class.label:2568
 msgid "Classification Scheme"
 msgstr ""
 
-#: class.mb.label:6639
+#: class.mb.label:6833
 msgid "Billing Line Item"
 msgstr ""
 
-#: field.brav.attr_val_maps.label:3985
+#: field.brav.attr_val_maps.label:4017
 msgid "Resource Attribute Value Maps"
 msgstr ""
 
-#: field.cxt.prefix.label:2308
+#: field.cxt.prefix.label:2338
 msgid "Namespace Prefix"
 msgstr ""
 
-#: class.mucs.label:5735
+#: class.mucs.label:5927
 msgid "User Circulation Summary"
 msgstr ""
 
-#: class.ocirccount.label:3583
+#: class.ocirccount.label:3615
 msgid "Open Circulation Count"
 msgstr ""
 
-#: field.cmcts.id.label:9941 field.cmfts.id.label:9966
-msgid "Map ID"
+#: field.acn.uri_maps.label:2565
+msgid "URI Maps"
 msgstr ""
 
-#: class.asq.label:5045
+#: class.asq.label:5077
 msgid "Search Query"
 msgstr ""
 
-#: field.brt.catalog_item.label:3895 field.brsrc.catalog_item.label:3933
+#: field.brt.catalog_item.label:3927 field.brsrc.catalog_item.label:3965
 msgid "Catalog Item"
 msgstr ""
 
-#: field.mbts.last_billing_note.label:1852
-#: field.mbtslv.last_billing_note.label:1873
-#: field.rccbs.last_billing_note.label:10088
+#: field.mbts.last_billing_note.label:1880
+#: field.mbtslv.last_billing_note.label:1901
+#: field.rccbs.last_billing_note.label:10287
 msgid "Last Billing Note"
 msgstr ""
 
@@ -3417,7 +3475,7 @@ msgstr ""
 msgid "Port"
 msgstr ""
 
-#: class.acqlid.label:7995
+#: class.acqlid.label:8188
 msgid "Line Item Detail"
 msgstr ""
 
@@ -3425,41 +3483,41 @@ msgstr ""
 msgid "Sorter?"
 msgstr ""
 
-#: class.sasum.label:4730
+#: class.sasum.label:4762
 msgid "All Issues' Summaries"
 msgstr ""
 
-#: class.ahrcc.label:6552
+#: class.ahrcc.label:6746
 msgid "Hold Request Cancel Cause"
 msgstr ""
 
-#: field.ccmm.renewals.label:1625
+#: field.ccmm.renewals.label:1653
 msgid "Renewals Override"
 msgstr ""
 
-#: field.acn.label_sortkey.label:2536
+#: field.acn.label_sortkey.label:2567
 msgid "Call Number Sort Key"
 msgstr ""
 
-#: class.moucs.label:6251
+#: class.moucs.label:6443
 msgid "Open User Circulation Summary"
 msgstr ""
 
-#: field.acqf.propagate.label:7314 field.acqfsum.propagate.label:7556
+#: field.acqf.propagate.label:7508 field.acqfsum.propagate.label:7750
 msgid "Propagate"
 msgstr ""
 
-#: field.circ.aaactsc_entries.label:3707
-#: field.combcirc.aaactsc_entries.label:3782
-#: field.acirc.aaactsc_entries.label:3855
+#: field.circ.aaactsc_entries.label:3739
+#: field.combcirc.aaactsc_entries.label:3814
+#: field.acirc.aaactsc_entries.label:3887
 msgid "Archived Patron Stat-Cat Entries"
 msgstr ""
 
-#: field.bre.author_field_entries.label:2662
+#: field.bre.author_field_entries.label:2693
 msgid "Indexed Author Field Entries"
 msgstr ""
 
-#: class.sre.label:4304
+#: class.sre.label:4336
 msgid "Serial Record Entry"
 msgstr ""
 
@@ -3467,123 +3525,129 @@ msgstr ""
 msgid "Remove RegExp"
 msgstr ""
 
-#: field.chmm.holdable.label:1566 field.act.holdable.label:6120
+#: field.chmm.holdable.label:1594 field.act.holdable.label:6312
 msgid "Holdable?"
 msgstr ""
 
-#: field.acsaf.control_set.label:2088 field.at.control_set.label:2139
-#: field.are.control_set.label:2212
+#: field.acsaf.control_set.label:2116 field.at.control_set.label:2169
+#: field.are.control_set.label:2242
 msgid "Control Set"
 msgstr ""
 
-#: class.mobts.label:2851
+#: class.mobts.label:2882
 msgid "Open Billable Transaction Summary"
 msgstr ""
 
-#: field.act.circ_as_type.label:6124
+#: field.act.circ_as_type.label:6316
 msgid "Circ As Type"
 msgstr ""
 
-#: field.acqedim.message_type.label:8208
+#: field.acqedim.message_type.label:8401
 msgid "Message Type"
 msgstr ""
 
-#: class.vbq.label:364
+#: class.vbq.label:362
 msgid "Import/Overlay Bib Queue"
 msgstr ""
 
-#: field.aupr.uuid.label:1910
+#: field.aupr.uuid.label:1938
 msgid "UUID"
 msgstr ""
 
-#: field.aur.hold.label:6767
+#: field.aur.hold.label:6961
 msgid "Place Hold"
 msgstr ""
 
-#: class.act.label:6102
+#: class.act.label:6294
 msgid "Asset Copy Template"
 msgstr ""
 
-#: field.artc.persistant_transfer.label:6576
-#: field.ahtc.persistant_transfer.label:6611
+#: field.artc.persistant_transfer.label:6770
+#: field.ahtc.persistant_transfer.label:6805
 msgid "Is Persistent?"
 msgstr ""
 
-#: class.cwa.label:1524
-msgid "Matrix Weight Association"
+#: field.acqii.fund_debit.label:7194 field.acqpoi.fund_debit.label:7996
+#: field.acqlid.fund_debit.label:8198 field.acqda.fund_debit.label:8785
+msgid "Fund Debit"
 msgstr ""
 
-#: field.au.net_access_level.label:2920
+#: field.au.net_access_level.label:2951
 msgid "Internet Access Level"
 msgstr ""
 
-#: class.xsubq.label:9346
+#: class.xsubq.label:9545
 msgid "Subquery Expression"
 msgstr ""
 
-#: field.qfs.return_type.label:8979
+#: field.qfs.return_type.label:9178
 msgid "Return Type"
 msgstr ""
 
-#: field.mcrp.payment_type.label:5657 field.mwp.payment_type.label:5903
-#: field.mgp.payment_type.label:5921 field.mckp.payment_type.label:6009
-#: field.mp.payment_type.label:6403 field.mbp.payment_type.label:6431
-#: field.mndp.payment_type.label:6459 field.mdp.payment_type.label:6481
+#: field.mcrp.payment_type.label:5836 field.mwp.payment_type.label:6095
+#: field.mgp.payment_type.label:6113 field.mckp.payment_type.label:6201
+#: field.mp.payment_type.label:6595 field.mbp.payment_type.label:6623
+#: field.mndp.payment_type.label:6653 field.mdp.payment_type.label:6675
 msgid "Payment Type"
 msgstr ""
 
-#: class.acplgm.label:4240
+#: class.acplgm.label:4272
 msgid "Copy/Shelving Location Group Map"
 msgstr ""
 
-#: class.ctcl.label:9927
+#: class.ctcl.label:10126
 msgid "Text Search Configs"
 msgstr ""
 
-#: field.sdist.receive_unit_template.label:4432
+#: field.sdist.receive_unit_template.label:4464
 msgid "Receive Unit Template"
 msgstr ""
 
-#: field.rccbs.last_billing_ts.label:10087
+#: field.rccbs.last_billing_ts.label:10286
 msgid "Last Billing Date/Time"
 msgstr ""
 
-#: field.mcrp.amount_collected.label:5652
-#: field.mwp.amount_collected.label:5897 field.mgp.amount_collected.label:5915
-#: field.mckp.amount_collected.label:6001
+#: field.mcrp.amount_collected.label:5831
+#: field.mwp.amount_collected.label:6089 field.mgp.amount_collected.label:6107
+#: field.mckp.amount_collected.label:6193
 msgid "Amount Collected"
 msgstr ""
 
-#: field.ahr.current_copy.label:5113 field.ahopl.current_copy.label:5240
-#: field.alhr.current_copy.label:5316
+#: field.ahr.current_copy.label:5145 field.ahopl.current_copy.label:5292
+#: field.alhr.current_copy.label:5377 field.combahr.current_copy.label:5459
+#: field.aahr.current_copy.label:5517
 msgid "Currently Targeted Copy"
 msgstr ""
 
-#: field.qbv.actual_value.label:9007
+#: field.qbv.actual_value.label:9206
 msgid "Actual Value"
 msgstr ""
 
-#: class.are.label:2200
+#: class.are.label:2230
 msgid "Authority Record Entry"
 msgstr ""
 
-#: field.jub.order_summary.label:7861
+#: field.jub.order_summary.label:8055
 msgid "Order Summary"
 msgstr ""
 
-#: class.acqfs.label:7199 field.acqfsrcct.funding_source.label:7489
-#: field.acqfsrcat.funding_source.label:7499
-#: field.acqfsrcb.funding_source.label:7509
-#: field.acqfa.funding_source.label:7582
-#: field.acqfap.funding_source.label:7614
+#: field.vbq.match_bucket.label:371
+msgid "Match Bucket"
+msgstr ""
+
+#: class.acqfs.label:7393 field.acqfsrcct.funding_source.label:7683
+#: field.acqfsrcat.funding_source.label:7693
+#: field.acqfsrcb.funding_source.label:7703
+#: field.acqfa.funding_source.label:7776
+#: field.acqfap.funding_source.label:7808
 msgid "Funding Source"
 msgstr ""
 
-#: field.acqft.owner.label:10465
+#: field.acqft.owner.label:10664
 msgid "Fund Tag Owner"
 msgstr ""
 
-#: class.acqfa.label:7578
+#: class.acqfa.label:7772
 msgid "Fund Allocation"
 msgstr ""
 
@@ -3591,23 +3655,27 @@ msgstr ""
 msgid "Opt-in ID"
 msgstr ""
 
-#: field.asvq.answers.label:1822
+#: field.asvq.answers.label:1850
 msgid "Answers"
 msgstr ""
 
-#: field.rocit.stat_cat_1.label:10351
+#: field.rocit.stat_cat_1.label:10550
 msgid "Legacy Stat Cat 1"
 msgstr ""
 
-#: field.rocit.stat_cat_2.label:10352
+#: field.czifm.z3950_attr_type.label:979
+msgid "Z39.50 Attribute Type"
+msgstr ""
+
+#: field.rocit.stat_cat_2.label:10551
 msgid "Legacy Stat Cat 2"
 msgstr ""
 
-#: field.bre.identifier_field_entries.label:2661
+#: field.bre.identifier_field_entries.label:2692
 msgid "Indexed Identifier Field Entries"
 msgstr ""
 
-#: field.acsaf.sub_entries.label:2094
+#: field.acsaf.sub_entries.label:2124
 msgid "Subordinate Entries"
 msgstr ""
 
@@ -3615,19 +3683,24 @@ msgstr ""
 msgid "Truncation"
 msgstr ""
 
-#: class.cbfp.label:2421
+#: class.cbfp.label:2452
 msgid "Fingerprint Definition"
 msgstr ""
 
-#: field.afs.applied_time.label:8828
+#: class.acqclet.label:8816 field.acqcle.type.label:8852
+#: field.acqscle.type.label:8880
+msgid "Claim Event Type"
+msgstr ""
+
+#: field.afs.applied_time.label:9027
 msgid "Applied Time"
 msgstr ""
 
-#: class.acqipm.label:6907
+#: class.acqipm.label:7101
 msgid "Invoice Payment Method"
 msgstr ""
 
-#: class.asva.label:6208
+#: class.asva.label:6400
 msgid "Survey Answer"
 msgstr ""
 
@@ -3635,240 +3708,247 @@ msgstr ""
 msgid "SVF Record Attribute"
 msgstr ""
 
-#: field.ahr.transit.label:5111 field.ahopl.transit.label:5238
-#: field.alhr.transit.label:5314
+#: field.ahr.transit.label:5143 field.ahopl.transit.label:5290
+#: field.alhr.transit.label:5375
 msgid "Transit"
 msgstr ""
 
-#: field.atevdef.max_delay.label:1105
+#: field.atevdef.max_delay.label:1133
 msgid "Max Event Validity Delay"
 msgstr ""
 
-#: field.uvs.container.label:9455
+#: field.uvs.container.label:9654
 msgid "Record Container"
 msgstr ""
 
-#: field.acqdf.skip_count.label:8504
+#: field.acqdf.skip_count.label:8697
 msgid "Skip Count"
 msgstr ""
 
-#: field.bpbcm.peer_record.label:1388
+#: field.bpbcm.peer_record.label:1416
 msgid "Peer Record"
 msgstr ""
 
-#: field.circ.grace_period.label:3687 field.combcirc.grace_period.label:3760
-#: field.acirc.grace_period.label:3829
+#: field.circ.grace_period.label:3719 field.combcirc.grace_period.label:3792
+#: field.acirc.grace_period.label:3861
 msgid "Grace Period"
 msgstr ""
 
-#: field.bresv.capture_time.label:4048
+#: field.bresv.capture_time.label:4080
 msgid "Capture Time"
 msgstr ""
 
-#: class.acqafat.label:7437
-msgid "All Fund Allocation Total"
+#: class.vii.label:267
+msgid "Import Item"
 msgstr ""
 
-#: field.asv.start_date.label:5001
+#: field.asv.start_date.label:5033
 msgid "Survey Start Date/Time"
 msgstr ""
 
-#: class.acqlilad.label:8146
+#: class.acqlilad.label:8339
 msgid "Line Item Local Attribute Definition"
 msgstr ""
 
-#: field.au.checkouts.label:2886
+#: field.au.checkouts.label:2917
 msgid "All Circulations"
 msgstr ""
 
-#: field.aouctn.sibling_order.label:5484
+#: field.aouctn.sibling_order.label:5663
 msgid "Sibling Sort Order"
 msgstr ""
 
-#: field.aws.name.label:1271
+#: field.aws.name.label:1299
 msgid "Workstation Name"
 msgstr ""
 
-#: field.circ.parent_circ.label:3698 field.acirc.parent_circ.label:3840
+#: field.circ.parent_circ.label:3730 field.acirc.parent_circ.label:3872
 msgid "Parent Circulation"
 msgstr ""
 
-#: class.ccnb.label:5502
+#: class.ccnb.label:5681
 msgid "Call Number Bucket"
 msgstr ""
 
-#: field.ssub.scaps.label:4386
+#: field.ssub.scaps.label:4418
 msgid "Captions and Patterns"
 msgstr ""
 
-#: field.ahr.fulfillment_staff.label:5117
-#: field.ahopl.fulfillment_staff.label:5244
-#: field.alhr.fulfillment_staff.label:5320
+#: field.ahr.fulfillment_staff.label:5149
+#: field.ahopl.fulfillment_staff.label:5296
+#: field.alhr.fulfillment_staff.label:5381
+#: field.combahr.fulfillment_staff.label:5463
+#: field.aahr.fulfillment_staff.label:5521
 msgid "Fulfilling Staff"
 msgstr ""
 
-#: field.acqinv.entries.label:6936 field.jub.invoice_entries.label:7860
+#: field.acqinv.entries.label:7130 field.jub.invoice_entries.label:8054
 msgid "Invoice Entries"
 msgstr ""
 
-#: field.mp.work_payment.label:6410 field.mbp.work_payment.label:6438
-#: field.mndp.work_payment.label:6462
+#: field.mp.work_payment.label:6602 field.mbp.work_payment.label:6631
+#: field.mndp.work_payment.label:6656
 msgid "Work Payment Detail"
 msgstr ""
 
-#: class.acqfsb.label:7517
+#: class.acqfsb.label:7711
 msgid "Fund Spent Balance"
 msgstr ""
 
-#: field.mrd.lit_form.label:3358
+#: field.mrd.lit_form.label:3390
 msgid "LitF"
 msgstr ""
 
-#: field.rhcrpbap.everywhere_ratio.label:9879
+#: field.rhcrpbap.everywhere_ratio.label:10078
 msgid "Hold/Copy Ratio Everywhere"
 msgstr ""
 
-#: field.auss.query_type.label:3523
+#: field.auss.query_type.label:3555
 msgid "Query Type"
 msgstr ""
 
-#: field.acqfet.amount.label:7389
+#: field.acqfet.amount.label:7583
 msgid "Total Encumbrance Amount"
 msgstr ""
 
-#: field.aua.valid.label:3475 field.acqpca.valid.label:7115
+#: field.aua.valid.label:3507 field.acqpca.valid.label:7309
 msgid "Valid Address?"
 msgstr ""
 
-#: field.acqclpa.action.label:8725
+#: field.acqclpa.action.label:8918
 msgid "Action (Event Type)"
 msgstr ""
 
-#: class.aouhoo.label:2700 field.aou.hours_of_operation.label:5425
+#: class.aouhoo.label:2731 field.aou.hours_of_operation.label:5604
 msgid "Hours of Operation"
 msgstr ""
 
-#: field.cmrtm.blvl_val.label:9739
+#: field.cmrtm.blvl_val.label:9938
 msgid "BLvl Value"
 msgstr ""
 
-#: field.acqedim.error.label:8206
+#: field.acqedim.error.label:8399
 msgid "Error"
 msgstr ""
 
-#: field.aws.circulations.label:1274 field.sunit.circulations.label:4639
-#: field.aou.circulations.label:5411 field.acp.circulations.label:6055
+#: field.aws.circulations.label:1302 field.sunit.circulations.label:4671
+#: field.aou.circulations.label:5590 field.acp.circulations.label:6247
 msgid "Circulations"
 msgstr ""
 
-#: field.brsrc.overbook.label:3925
+#: field.brsrc.overbook.label:3957
 msgid "Overbook"
 msgstr ""
 
-#: field.acqinv.id.label:6924
+#: field.acqinv.id.label:7118
 msgid "Internal Invoice ID"
 msgstr ""
 
-#: field.acqfscred.deadline_date.label:7234
+#: field.acqfscred.deadline_date.label:7428
 msgid "Deadline Date"
 msgstr ""
 
-#: field.aou.resv_pickups.label:5420
+#: field.aou.resv_pickups.label:5599
 msgid "Reservation Pickups"
 msgstr ""
 
-#: field.asv.id.label:4995
+#: field.asv.id.label:5027
 msgid "Survey ID"
 msgstr ""
 
-#: field.rccc.patron_county.label:10015
+#: field.rccc.patron_county.label:10214
 msgid "Patron County"
 msgstr ""
 
-#: class.acqim.label:1320
+#: class.acqim.label:1348
 msgid "Invoice Method used by Vendor"
 msgstr ""
 
-#: field.acqpoi.estimated_cost.label:7807
+#: field.acqpoi.estimated_cost.label:8001
 msgid "Estimated Cost"
 msgstr ""
 
-#: field.crahp.prox.label:6154
+#: field.crahp.prox.label:6346
 msgid "Allowed Proximity"
 msgstr ""
 
-#: field.atb.layout.label:3032
+#: field.atb.layout.label:3063
 msgid "Layout"
 msgstr ""
 
-#: field.qdt.datatype_name.label:8954
+#: field.qdt.datatype_name.label:9153
 msgid "Datatype Name"
 msgstr ""
 
-#: field.mbt.grocery.label:5795
+#: field.mbt.grocery.label:5987
 msgid "Grocery Billing link"
 msgstr ""
 
-#: field.vbq.match_set.label:371 field.vaq.match_set.label:511
+#: field.vbq.match_set.label:369 field.vaq.match_set.label:511
 #: field.vmsp.match_set.label:644 field.vmsq.match_set.label:680
 msgid "Match Set"
 msgstr ""
 
-#: field.aou.id.label:5398
+#: field.aou.id.label:5577
 msgid "Organizational Unit ID"
 msgstr ""
 
-#: field.crahp.id.label:6152 field.crmf.id.label:6169
+#: field.crahp.id.label:6344 field.crmf.id.label:6361
 msgid "Rule ID"
 msgstr ""
 
-#: field.acqinv.inv_ident.label:6931
+#: field.acqinv.inv_ident.label:7125
 msgid "Vendor Invoice ID"
 msgstr ""
 
-#: field.cmf.browse_xpath.label:2380
+#: field.ahopl.usr_prefix.label:5333
+msgid "User Prefix"
+msgstr ""
+
+#: field.cmf.browse_xpath.label:2411
 msgid "Browse XPath"
 msgstr ""
 
-#: field.acns.label_sortkey.label:2487 field.acnp.label_sortkey.label:2506
+#: field.acns.label_sortkey.label:2518 field.acnp.label_sortkey.label:2537
 msgid "Label Sort Key"
 msgstr ""
 
-#: field.qseq.parent_query.label:8941
+#: field.qseq.parent_query.label:9140
 msgid "Parent Query"
 msgstr ""
 
-#: field.acqf.balance_stop_percent.label:7317
-#: field.acqfsum.balance_stop_percent.label:7559
+#: field.acqf.balance_stop_percent.label:7511
+#: field.acqfsum.balance_stop_percent.label:7753
 msgid "Balance Stop Percent"
 msgstr ""
 
-#: field.atevdef.delay.label:1104
+#: field.atevdef.delay.label:1132
 msgid "Processing Delay"
 msgstr ""
 
-#: class.acqfsrcat.label:7497
-msgid "Total Allocation to Funding Source"
+#: field.vqbr.purpose.label:417 field.vqar.purpose.label:537
+#: field.aouct.purpose.label:5646
+msgid "Purpose"
 msgstr ""
 
-#: class.cust.label:3075
+#: class.cust.label:3106
 msgid "User Setting Type"
 msgstr ""
 
-#: field.qfr.table_name.label:9062
+#: field.qfr.table_name.label:9261
 msgid "Table Name"
 msgstr ""
 
-#: field.citm.code.label:4852
+#: field.citm.code.label:4884
 msgid "Item Type Code"
 msgstr ""
 
-#: field.au.standing.label:2927
+#: field.au.standing.label:2958
 msgid "Standing (unused)"
 msgstr ""
 
-#: field.cracct.password.label:900 field.au.passwd.label:2922
-#: field.acqedi.password.label:8162 field.stgu.passwd.label:8756
+#: field.cracct.password.label:900 field.au.passwd.label:2953
+#: field.acqedi.password.label:8355 field.stgu.passwd.label:8949
 msgid "Password"
 msgstr ""
 
@@ -3876,52 +3956,52 @@ msgstr ""
 msgid "Global Flags and Settings"
 msgstr ""
 
-#: class.acqii.label:6995
+#: class.acqii.label:7189
 msgid "Non-bibliographic Invoice Item"
 msgstr ""
 
-#: field.cfdfs.filters.label:9717
+#: field.cfdfs.filters.label:9916
 msgid "Filters"
 msgstr ""
 
-#: field.cmc.fields.label:2352
+#: field.cmc.fields.label:2383
 msgid "Fields"
 msgstr ""
 
-#: field.ccmm.total_copy_hold_ratio.label:1628
+#: field.ccmm.total_copy_hold_ratio.label:1656
 msgid "Minimum Total Copy/Hold Ratio"
 msgstr ""
 
-#: field.mg.payments.label:5755
+#: field.mg.payments.label:5947
 msgid "Payments"
 msgstr ""
 
-#: field.acqlih.expected_recv_time.label:7903
+#: field.acqlih.expected_recv_time.label:8097
 msgid "Expected Receive Time"
 msgstr ""
 
-#: field.au.usr_activity.label:2946
+#: field.au.usr_activity.label:2977
 msgid "User Activity Entries"
 msgstr ""
 
-#: field.bre.title_field_entries.label:2660
+#: field.bre.title_field_entries.label:2691
 msgid "Indexed Title Field Entries"
 msgstr ""
 
-#: field.vii.circ_modifier.label:291 field.viiad.circ_modifier.label:342
-#: class.ccm.label:1283 field.chmw.circ_modifier.label:1471
-#: field.ccmw.circ_modifier.label:1501 field.chmm.circ_modifier.label:1559
-#: field.ccmm.circ_modifier.label:1609 field.cclscmm.circ_mod.label:1730
-#: field.sunit.circ_modifier.label:4608 field.acp.circ_modifier.label:6026
-#: field.acqdfe.circ_modifier.label:8530
+#: field.vii.circ_modifier.label:289 field.viiad.circ_modifier.label:340
+#: class.ccm.label:1311 field.chmw.circ_modifier.label:1499
+#: field.ccmw.circ_modifier.label:1529 field.chmm.circ_modifier.label:1587
+#: field.ccmm.circ_modifier.label:1637 field.cclscmm.circ_mod.label:1758
+#: field.sunit.circ_modifier.label:4640 field.acp.circ_modifier.label:6218
+#: field.acqdfe.circ_modifier.label:8723
 msgid "Circulation Modifier"
 msgstr ""
 
-#: field.aou.addresses.label:5413 field.acqpro.addresses.label:6861
+#: field.aou.addresses.label:5592 field.acqpro.addresses.label:7055
 msgid "Addresses"
 msgstr ""
 
-#: field.acp.peer_records.label:6062
+#: field.acp.peer_records.label:6254
 msgid "Peer Records"
 msgstr ""
 
@@ -3933,105 +4013,105 @@ msgstr ""
 msgid "Opt-in Date/Time"
 msgstr ""
 
-#: field.afscv.col.label:8845 field.qxp.column_name.label:9022
-#: field.qrc.column_name.label:9085 field.xcol.column_name.label:9204
-#: field.xfunc.column_name.label:9233
+#: field.afscv.col.label:9044 field.qxp.column_name.label:9221
+#: field.qrc.column_name.label:9284 field.xcol.column_name.label:9403
+#: field.xfunc.column_name.label:9432
 msgid "Column Name"
 msgstr ""
 
-#: field.acqf.year.label:7310 field.acqfsum.year.label:7552
-#: field.circbyyr.year.label:10272
+#: field.acqf.year.label:7504 field.acqfsum.year.label:7746
+#: field.circbyyr.year.label:10471
 msgid "Year"
 msgstr ""
 
-#: field.cuat.ewho.label:2989
+#: field.cuat.ewho.label:3020
 msgid "Event Caller"
 msgstr ""
 
-#: field.rxbt.voided.label:8462
+#: field.rxbt.voided.label:8655
 msgid "Voided Billing Amount"
 msgstr ""
 
-#: class.acqfsum.label:7533
+#: class.acqfsum.label:7727
 msgid "Fund Summary"
 msgstr ""
 
-#: field.jub.estimated_unit_price.label:7853
-#: field.acqlih.estimated_unit_price.label:7912
+#: field.jub.estimated_unit_price.label:8047
+#: field.acqlih.estimated_unit_price.label:8106
 msgid "Estimated Unit Price"
 msgstr ""
 
+#: field.acsaf.linking_subfield.label:2123
+msgid "Linking Subfield"
+msgstr ""
+
 #: field.crad.sf_list.label:790
 msgid "MARC Subfields"
 msgstr ""
 
-#: field.acs.authority_fields.label:2067
+#: field.acs.authority_fields.label:2095
 msgid "Controlling Authority Fields"
 msgstr ""
 
-#: class.mbtslv.label:1869
+#: class.mbtslv.label:1897
 msgid "Billable Transaction Summary with Billing Location"
 msgstr ""
 
-#: field.au.demographic.label:2938
+#: field.au.demographic.label:2969
 msgid "Demographic Info"
 msgstr ""
 
-#: class.atb.label:3025
+#: class.atb.label:3056
 msgid "Custom Toolbar"
 msgstr ""
 
-#: field.mbts.last_payment_note.label:1855
-#: field.mbtslv.last_payment_note.label:1876
-#: field.rccbs.last_payment_note.label:10084
+#: field.mbts.last_payment_note.label:1883
+#: field.mbtslv.last_payment_note.label:1904
+#: field.rccbs.last_payment_note.label:10283
 msgid "Last Payment Note"
 msgstr ""
 
-#: field.au.expire_date.label:2908
+#: field.au.expire_date.label:2939
 msgid "Privilege Expiration Date"
 msgstr ""
 
-#: field.ac.id.label:5550
+#: field.ac.id.label:5729
 msgid "Card ID"
 msgstr ""
 
-#: field.au.id.label:2912 field.ocirccount.usr.label:3614
-#: field.ocirclist.usr.label:3656 field.rud.id.label:8429
+#: field.au.id.label:2943 field.ocirccount.usr.label:3646
+#: field.ocirclist.usr.label:3688 field.rud.id.label:8622
 msgid "User ID"
 msgstr ""
 
-#: field.asc.entries.label:5530 field.actsc.entries.label:5582
-#: field.acqpl.entries.label:7645 field.acqdf.entries.label:8505
+#: field.asc.entries.label:5709 field.actsc.entries.label:5761
+#: field.acqpl.entries.label:7839 field.acqdf.entries.label:8698
 msgid "Entries"
 msgstr ""
 
-#: field.sunit.dummy_title.label:4619 field.acp.dummy_title.label:6037
+#: field.sunit.dummy_title.label:4651 field.acp.dummy_title.label:6229
 msgid "Precat Dummy Title"
 msgstr ""
 
-#: field.asc.sip_format.label:5536 field.actsc.sip_format.label:5590
-msgid "SIP Format"
-msgstr ""
-
-#: field.ahr.sms_notify.label:5123 field.ahopl.sms_notify.label:5250
+#: field.ahr.sms_notify.label:5155 field.ahopl.sms_notify.label:5302
 msgid "Notifications SMS Number"
 msgstr ""
 
-#: field.rccc.patron_home_lib_shortname.label:10014
+#: field.rccc.patron_home_lib_shortname.label:10213
 msgid "Patron Home Library Short (Policy) Name"
 msgstr ""
 
-#: field.aou.atc_prev_dests.label:5418
+#: field.aou.atc_prev_dests.label:5597
 msgid "Transit Copy Prev Destinations"
 msgstr ""
 
-#: field.mcrp.amount.label:5651 field.mwp.amount.label:5896
-#: field.mgp.amount.label:5914 field.mckp.amount.label:6000
-#: field.mp.amount.label:6399 field.mbp.amount.label:6427
-#: field.mndp.amount.label:6455 field.mdp.amount.label:6477
-#: field.mb.amount.label:6641 field.acqfscred.amount.label:7232
-#: field.acqofscred.amount.label:7264 field.acqfdeb.amount.label:7278
-#: field.acqfa.amount.label:7583
+#: field.mcrp.amount.label:5830 field.mwp.amount.label:6088
+#: field.mgp.amount.label:6106 field.mckp.amount.label:6192
+#: field.mp.amount.label:6591 field.mbp.amount.label:6619
+#: field.mndp.amount.label:6649 field.mdp.amount.label:6671
+#: field.mb.amount.label:6835 field.acqfscred.amount.label:7426
+#: field.acqofscred.amount.label:7458 field.acqfdeb.amount.label:7472
+#: field.acqfa.amount.label:7777
 msgid "Amount"
 msgstr ""
 
@@ -4039,60 +4119,60 @@ msgstr ""
 msgid "Workstation Payment Summary"
 msgstr ""
 
-#: field.bre.series_field_entries.label:2663
+#: field.bre.series_field_entries.label:2694
 msgid "Indexed Series Field Entries"
 msgstr ""
 
-#: class.bren.label:5718
+#: class.bren.label:5910
 msgid "Bib Record Note"
 msgstr ""
 
-#: field.jub.distribution_formulas.label:7859
+#: field.jub.distribution_formulas.label:8053
 msgid "Distribution Formulas"
 msgstr ""
 
-#: field.acqclet.id.label:8625
+#: field.acqclet.id.label:8818
 msgid "Claim Event Type ID"
 msgstr ""
 
-#: field.acnc.id.label:2472
+#: field.acnc.id.label:2503
 msgid "Call number class ID"
 msgstr ""
 
-#: field.acn.suffix.label:2539 field.au.suffix.label:2928
-#: field.cbc.suffix.label:10578
+#: field.acn.suffix.label:2570 field.au.suffix.label:2959
+#: field.cbc.suffix.label:10777
 msgid "Suffix"
 msgstr ""
 
-#: field.mrd.type_mat.label:3361
+#: field.mrd.type_mat.label:3393
 msgid "TMat"
 msgstr ""
 
-#: class.mckp.label:5997 field.mdp.check_payment.label:6488
+#: class.mckp.label:6189 field.mdp.check_payment.label:6682
 msgid "Check Payment"
 msgstr ""
 
-#: field.rccc.stat_cat_1.label:10018
+#: field.rccc.stat_cat_1.label:10217
 msgid "Legacy CAT1 Link"
 msgstr ""
 
-#: field.ccmm.available_copy_hold_ratio.label:1629
+#: field.ccmm.available_copy_hold_ratio.label:1657
 msgid "Minimum Available Copy/Hold Ratio"
 msgstr ""
 
-#: field.atev.update_time.label:1145 field.ergbhu.holding_update.label:8483
+#: field.atev.update_time.label:1173 field.ergbhu.holding_update.label:8676
 msgid "Update Time"
 msgstr ""
 
-#: field.acqinv.items.label:6937
+#: field.acqinv.items.label:7131
 msgid "Invoice Items"
 msgstr ""
 
-#: field.au.groups.label:2935
+#: field.au.groups.label:2966
 msgid "Additional Permission Groups"
 msgstr ""
 
-#: class.cbrebn.label:4151
+#: class.cbrebn.label:4183
 msgid "Bibliographic Record Entry Bucket Note"
 msgstr ""
 
@@ -4100,98 +4180,99 @@ msgstr ""
 msgid "Last Stop Fines"
 msgstr ""
 
-#: field.ahr.request_lib.label:5127 field.ahopl.request_lib.label:5254
-#: field.alhr.request_lib.label:5328
+#: field.ahr.request_lib.label:5159 field.ahopl.request_lib.label:5306
+#: field.alhr.request_lib.label:5389 field.combahr.request_lib.label:5472
+#: field.aahr.request_lib.label:5530
 msgid "Requesting Library"
 msgstr ""
 
-#: field.acplg.location_maps.label:4225
+#: field.acplg.location_maps.label:4257
 msgid "Copy Location Mappings"
 msgstr ""
 
-#: field.srlu.department.label:4535
+#: field.srlu.department.label:4567
 msgid "Department"
 msgstr ""
 
-#: class.cubin.label:5856
-msgid "User Bucket Item Note"
+#: field.mcrp.xact.label:5835 field.mb.xact.label:6843
+msgid "Transaction"
 msgstr ""
 
-#: field.acqliat.id.label:7940
+#: field.acqliat.id.label:8134
 msgid "Alert Text ID"
 msgstr ""
 
-#: field.aoupa.hold_request_lib.label:4940
+#: field.aoupa.hold_request_lib.label:4972
 msgid "Hold Request Lib"
 msgstr ""
 
-#: field.rud.general_division.label:8431
+#: field.rud.general_division.label:8624
 msgid "General Demographic Division"
 msgstr ""
 
-#: class.cfdfs.label:9704
+#: class.cfdfs.label:9903
 msgid "FilterDialog Filter Set"
 msgstr ""
 
-#: field.aou.ou_type.label:5402 class.aout.label:5692
+#: field.aou.ou_type.label:5581 class.aout.label:5884
 msgid "Organizational Unit Type"
 msgstr ""
 
-#: field.acqft.map_entries.label:10467
+#: field.acqft.map_entries.label:10666
 msgid "Map Entries"
 msgstr ""
 
-#: field.ahr.notify_count.label:5136 field.ahopl.notify_count.label:5263
-#: field.alhr.notify_count.label:5337
+#: field.ahr.notify_count.label:5168 field.ahopl.notify_count.label:5315
+#: field.alhr.notify_count.label:5398
 msgid "Notify Count"
 msgstr ""
 
-#: field.acqpo.amount_encumbered.label:7703
+#: field.acqpo.amount_encumbered.label:7897
 msgid "Amount Encumbered"
 msgstr ""
 
-#: field.cmf.facet_xpath.label:2378
+#: field.cmf.facet_xpath.label:2409
 msgid "Facet XPath"
 msgstr ""
 
-#: field.act.opac_visible.label:6126
+#: field.act.opac_visible.label:6318
 msgid "OPAC Visible?"
 msgstr ""
 
-#: field.rccc.stat_cat_2_value.label:10025
+#: field.rccc.stat_cat_2_value.label:10224
 msgid "Legacy CAT2 Value"
 msgstr ""
 
-#: field.asv.opac.label:4997
+#: field.asv.opac.label:5029
 msgid "OPAC Survey?"
 msgstr ""
 
-#: field.aupr.id.label:1909
+#: field.aupr.id.label:1937
 msgid "Request ID"
 msgstr ""
 
-#: field.atul.state.label:1243
+#: field.atul.state.label:1271
 msgid "Event State"
 msgstr ""
 
-#: field.bre.metarecord.label:2655 class.mmr.label:3181
-#: field.rsr.metarecord.label:8399
+#: field.bre.metarecord.label:2686 class.mmr.label:3213
+#: field.rsr.metarecord.label:8592
 msgid "Metarecord"
 msgstr ""
 
-#: field.acqdf.use_count.label:8506 field.rocit.use_count.label:10348
+#: field.acqdf.use_count.label:8699 field.rocit.use_count.label:10547
 msgid "Use Count"
 msgstr ""
 
-#: field.acqda.funding_source_credit.label:8594
+#: field.acqda.funding_source_credit.label:8787
 msgid "Funding Source Credit"
 msgstr ""
 
-#: field.atevdef.validator.label:1100
+#: field.atevdef.validator.label:1128
 msgid "Validator"
 msgstr ""
 
-#: field.acqpon.vendor_public.label:7773 field.acqlin.vendor_public.label:7969
+#: field.acqpon.vendor_public.label:7967 field.acqlin.vendor_public.label:8162
 msgid "Vendor Public"
 msgstr ""
 
@@ -4203,7 +4284,7 @@ msgstr ""
 msgid "Evergreen Record"
 msgstr ""
 
-#: field.sdist.display_grouping.label:4437
+#: field.sdist.display_grouping.label:4469
 msgid "Display Grouping"
 msgstr ""
 
@@ -4211,66 +4292,66 @@ msgstr ""
 msgid "Physical Characteristic"
 msgstr ""
 
-#: class.acqlimad.label:8043
+#: class.acqlimad.label:8236
 msgid "Line Item MARC Attribute Definition"
 msgstr ""
 
-#: field.pgpt.penalty.label:3400
+#: field.pgpt.penalty.label:3432
 msgid "Penalty"
 msgstr ""
 
-#: field.aaactsc.xact.label:10623 field.aaasc.xact.label:10635
+#: field.aaactsc.xact.label:10822 field.aaasc.xact.label:10834
 msgid "Circ"
 msgstr ""
 
-#: class.mccp.label:2275 field.mdp.credit_card_payment.label:6487
+#: class.mccp.label:2305 field.mdp.credit_card_payment.label:6681
 msgid "Credit Card Payment"
 msgstr ""
 
-#: field.srlu.reader.label:4534
+#: field.srlu.reader.label:4566
 msgid "Reader"
 msgstr ""
 
-#: class.rlc.label:9892 field.rlc.last_circ_or_create.label:9914
+#: class.rlc.label:10091 field.rlc.last_circ_or_create.label:10113
 msgid "Last Circulation or Creation Date"
 msgstr ""
 
-#: field.crad.fixed_field.label:796 field.cmfpm.fixed_field.label:9379
+#: field.crad.fixed_field.label:796 field.cmfpm.fixed_field.label:9578
 msgid "Fixed Field"
 msgstr ""
 
-#: field.aun.pub.label:1897 field.acpn.pub.label:3142
-#: field.acpl.opac_visible.label:4194 field.acplg.opac_visible.label:4221
+#: field.aun.pub.label:1925 field.acpn.pub.label:3174
+#: field.acpl.opac_visible.label:4226 field.acplg.opac_visible.label:4253
 msgid "Is OPAC Visible?"
 msgstr ""
 
-#: field.ssubn.pub.label:4413 field.sdistn.pub.label:4474
-#: field.sin.pub.label:4720
+#: field.ssubn.pub.label:4445 field.sdistn.pub.label:4506
+#: field.sin.pub.label:4752
 msgid "Public?"
 msgstr ""
 
-#: field.asvr.answer_date.label:2007
+#: field.asvr.answer_date.label:2035
 msgid "Answer Date/Time"
 msgstr ""
 
-#: field.acqfdeb.id.label:7274
+#: field.acqfdeb.id.label:7468
 msgid "Debit ID"
 msgstr ""
 
-#: field.mbts.xact_type.label:1863 field.mbtslv.xact_type.label:1884
-#: field.rccbs.xact_type.label:10078
+#: field.mbts.xact_type.label:1891 field.mbtslv.xact_type.label:1912
+#: field.rccbs.xact_type.label:10277
 msgid "Transaction Type"
 msgstr ""
 
-#: field.bresv.end_time.label:4047
+#: field.bresv.end_time.label:4079
 msgid "End Time"
 msgstr ""
 
-#: field.ateo.id.label:971
+#: field.ateo.id.label:999
 msgid "Output ID"
 msgstr ""
 
-#: field.au.billing_address.label:2898
+#: field.au.billing_address.label:2929
 msgid "Physical Address"
 msgstr ""
 
@@ -4278,31 +4359,31 @@ msgstr ""
 msgid "Z39.50 Attribute ID"
 msgstr ""
 
-#: field.qsf.composite_type.label:8965
+#: field.qsf.composite_type.label:9164
 msgid "Composite Type"
 msgstr ""
 
-#: class.lmap.label:4915
+#: class.lmap.label:4947
 msgid "Org Lasso Map"
 msgstr ""
 
-#: field.uvsbrem.target_biblio_record_entry.label:9495
+#: field.uvsbrem.target_biblio_record_entry.label:9694
 msgid "Target Biblio Record Entry"
 msgstr ""
 
-#: field.acqfs.allocations.label:7207 field.acqf.allocations.label:7319
+#: field.acqfs.allocations.label:7401 field.acqf.allocations.label:7513
 msgid "Allocations"
 msgstr ""
 
-#: class.acqfsrcb.label:7507
-msgid "Funding Source Balance"
+#: class.vqbrad.label:442
+msgid "Queued Bib Record Attribute Definition"
 msgstr ""
 
-#: field.acqfdeb.origin_amount.label:7276
+#: field.acqfdeb.origin_amount.label:7470
 msgid "Origin Amount"
 msgstr ""
 
-#: field.aur.request_type.label:6766
+#: field.aur.request_type.label:6960
 msgid "Request Type"
 msgstr ""
 
@@ -4310,18 +4391,18 @@ msgstr ""
 msgid "Record Node"
 msgstr ""
 
-#: field.circ.circ_type.label:3702 field.combcirc.circ_type.label:3771
-#: field.acirc.circ_type.label:3844 class.rcirct.label:8437
-#: field.rcirct.type.label:8440 field.rccc.circ_type.label:9998
-#: field.rodcirc.circ_type.label:10314
+#: field.circ.circ_type.label:3734 field.combcirc.circ_type.label:3803
+#: field.acirc.circ_type.label:3876 class.rcirct.label:8630
+#: field.rcirct.type.label:8633 field.rccc.circ_type.label:10197
+#: field.rodcirc.circ_type.label:10513
 msgid "Circulation Type"
 msgstr ""
 
-#: class.bpbcm.label:1384
+#: class.bpbcm.label:1412
 msgid "Bibliographic Record Peer Copy Map"
 msgstr ""
 
-#: class.cbreb.label:4135
+#: class.cbreb.label:4167
 msgid "Bibliographic Record Entry Bucket"
 msgstr ""
 
@@ -4329,145 +4410,148 @@ msgstr ""
 msgid "Quality Metric ID"
 msgstr ""
 
-#: class.cmpcsm.label:9407
+#: class.cmpcsm.label:9606
 msgid "MARC21 Physical Characteristic Subfield Map"
 msgstr ""
 
-#: field.rhcrpb.copy_count.label:9827
+#: field.rhcrpb.copy_count.label:10026
 msgid "Holdable Copy Count"
 msgstr ""
 
-#: field.qsq.id.label:8919
+#: field.qsq.id.label:9118
 msgid "Query ID"
 msgstr ""
 
-#: field.circ.fine_interval.label:3678 field.combcirc.fine_interval.label:3751
-#: field.acirc.fine_interval.label:3820 field.brt.fine_interval.label:3891
-#: field.bresv.fine_interval.label:4053
-#: field.rodcirc.fine_interval.label:10296
+#: field.circ.fine_interval.label:3710 field.combcirc.fine_interval.label:3783
+#: field.acirc.fine_interval.label:3852 field.brt.fine_interval.label:3923
+#: field.bresv.fine_interval.label:4085
+#: field.rodcirc.fine_interval.label:10495
 msgid "Fine Interval"
 msgstr ""
 
-#: field.circ.checkin_workstation.label:3696
-#: field.acirc.checkin_workstation.label:3838
+#: field.circ.checkin_workstation.label:3728
+#: field.acirc.checkin_workstation.label:3870
 msgid "Checkin Workstation"
 msgstr ""
 
-#: field.acqfc.years.label:7163
+#: field.acqfc.years.label:7357
 msgid "Years"
 msgstr ""
 
-#: class.aua.label:3463
+#: class.aua.label:3495
 msgid "User Address"
 msgstr ""
 
-#: field.atevdef.delay_field.label:1106
+#: field.atevdef.delay_field.label:1134
 msgid "Processing Delay Context Field"
 msgstr ""
 
-#: field.acqfsum.spent_total.label:7563
+#: field.acqfsum.spent_total.label:7757
 msgid "Total Spent"
 msgstr ""
 
-#: field.acqcl.lineitem_detail.label:8648
-#: field.acrlid.lineitem_detail.label:10156
+#: field.acqcl.lineitem_detail.label:8841
+#: field.acrlid.lineitem_detail.label:10355
 msgid "Lineitem Detail"
 msgstr ""
 
-#: field.qsq.use_distinct.label:8922
+#: field.qsq.use_distinct.label:9121
 msgid "Use DISTINCT"
 msgstr ""
 
-#: field.jub.id.label:7837 field.acqlih.id.label:7896
-#: field.acqmapinv.lineitem.label:10559
+#: field.jub.id.label:8031 field.acqlih.id.label:8090
+#: field.acqmapinv.lineitem.label:10758
 msgid "Lineitem ID"
 msgstr ""
 
-#: field.aba.maps.label:2163
+#: field.aba.maps.label:2193
 msgid "Authority Field Maps"
 msgstr ""
 
-#: class.cnal.label:3194
+#: class.cnal.label:3226
 msgid "Net Access Level"
 msgstr ""
 
-#: field.vii.opac_visible.label:296 field.viiad.opac_visible.label:347
-#: field.ccvm.opac_visible.label:877 field.sunit.opac_visible.label:4626
-#: field.aou.opac_visible.label:5407 field.asc.opac_visible.label:5533
-#: field.actsc.opac_visible.label:5586 field.acp.opac_visible.label:6045
-#: field.rocit.opac_visible.label:10363
+#: field.vii.opac_visible.label:294 field.viiad.opac_visible.label:345
+#: field.ccvm.opac_visible.label:877 field.sunit.opac_visible.label:4658
+#: field.aou.opac_visible.label:5586 field.asc.opac_visible.label:5712
+#: field.actsc.opac_visible.label:5765 field.acp.opac_visible.label:6237
+#: field.rocit.opac_visible.label:10562
 msgid "OPAC Visible"
 msgstr ""
 
-#: class.auri.label:2563
+#: class.auri.label:2594
 msgid "Electronic Access URI"
 msgstr ""
 
-#: class.mmrsm.label:3225
+#: class.mmrsm.label:3257
 msgid "Metarecord Source Map"
 msgstr ""
 
-#: field.atul.target_hold.label:1249
+#: field.atul.target_hold.label:1277
 msgid "Target Hold"
 msgstr ""
 
-#: field.ssr.total.label:4981
+#: field.ssr.total.label:5013
 msgid "Total Results"
 msgstr ""
 
-#: class.stgba.label:8794
+#: class.stgba.label:8992
 msgid "Billing Address Stage"
 msgstr ""
 
-#: class.cuat.label:2986
+#: class.cuat.label:3017
 msgid "User Activity Type"
 msgstr ""
 
-#: field.artc.reservation.label:6574
-msgid "Reservation requiring Transit"
+#: field.vii.alert_message.label:291 field.viiad.alert_message.label:342
+#: field.au.alert_message.label:2927 field.aal.alert_message.label:3523
+#: field.sunit.alert_message.label:4635 field.acp.alert_message.label:6213
+#: field.act.alert_message.label:6317
+msgid "Alert Message"
 msgstr ""
 
-#: field.sitem.date_received.label:4682
+#: field.sitem.date_received.label:4714
 msgid "Date Received"
 msgstr ""
 
-#: field.mbts.id.label:1851 field.mbtslv.id.label:1872
-#: field.bresv.id.label:4035 field.mg.id.label:5749 field.mbt.id.label:5790
-#: field.mwp.xact.label:5901 field.mgp.xact.label:5919
-#: field.rxbt.xact.label:8460 field.rxpt.xact.label:8471
-#: field.rccbs.id.label:10063
+#: field.mbts.id.label:1879 field.mbtslv.id.label:1900
+#: field.bresv.id.label:4067 field.mg.id.label:5941 field.mbt.id.label:5982
+#: field.mwp.xact.label:6093 field.mgp.xact.label:6111
+#: field.rxbt.xact.label:8653 field.rxpt.xact.label:8664
+#: field.rccbs.id.label:10262
 msgid "Transaction ID"
 msgstr ""
 
-#: field.ahn.notify_time.label:4180
+#: field.ahn.notify_time.label:4212
 msgid "Notification Date/Time"
 msgstr ""
 
-#: field.auss.create_date.label:3521 field.sre.create_date.label:4308
-#: field.scap.create_date.label:4340 field.ssubn.create_date.label:4412
-#: field.sdistn.create_date.label:4473 field.siss.create_date.label:4565
-#: field.sitem.create_date.label:4675 field.sin.create_date.label:4719
-#: field.act.create_date.label:6108 field.rocit.create_date.label:10356
+#: field.auss.create_date.label:3553 field.sre.create_date.label:4340
+#: field.scap.create_date.label:4372 field.ssubn.create_date.label:4444
+#: field.sdistn.create_date.label:4505 field.siss.create_date.label:4597
+#: field.sitem.create_date.label:4707 field.sin.create_date.label:4751
+#: field.act.create_date.label:6300 field.rocit.create_date.label:10555
 msgid "Create Date"
 msgstr ""
 
-#: field.artc.transit_copy.label:6581 field.ahtc.transit_copy.label:6616
+#: field.artc.transit_copy.label:6775 field.ahtc.transit_copy.label:6810
 msgid "Base Transit"
 msgstr ""
 
-#: field.ccmm.duration_rule.label:1621
+#: field.ccmm.duration_rule.label:1649
 msgid "Duration Rule"
 msgstr ""
 
-#: field.ccmw.copy_circ_lib.label:1497 field.ccmm.copy_circ_lib.label:1605
+#: field.ccmw.copy_circ_lib.label:1525 field.ccmm.copy_circ_lib.label:1633
 msgid "Copy Circ Lib"
 msgstr ""
 
-#: class.uvuv.label:9641
+#: class.uvuv.label:9840
 msgid "URL Verification"
 msgstr ""
 
-#: field.bre.share_depth.label:2654
+#: field.bre.share_depth.label:2685
 msgid "Share Depth"
 msgstr ""
 
@@ -4475,113 +4559,114 @@ msgstr ""
 msgid "Use Permission"
 msgstr ""
 
-#: field.rhcrpbap.pickup_library_ratio.label:9878
+#: field.rhcrpbap.pickup_library_ratio.label:10077
 msgid "Hold/Copy Ratio at Pickup Library"
 msgstr ""
 
-#: class.rtf.label:8250
+#: class.rtf.label:8443
 msgid "Template Folder"
 msgstr ""
 
-#: field.rccbs.demographic_general_division.label:10091
+#: field.rccbs.demographic_general_division.label:10290
 msgid "User Age Demographic"
 msgstr ""
 
-#: field.ahn.note.label:4178
+#: field.ahn.note.label:4210
 msgid "Notification Note"
 msgstr ""
 
-#: field.circ.duration_rule.label:3677 field.combcirc.duration_rule.label:3750
-#: field.acirc.duration_rule.label:3819
-#: field.rodcirc.duration_rule.label:10295
+#: field.circ.duration_rule.label:3709 field.combcirc.duration_rule.label:3782
+#: field.acirc.duration_rule.label:3851
+#: field.rodcirc.duration_rule.label:10494
 msgid "Circ Duration Rule"
 msgstr ""
 
-#: field.bravm.attr_value.label:4094
+#: field.bravm.attr_value.label:4126
 msgid "Attribute Map"
 msgstr ""
 
-#: field.asv.required.label:5000
+#: field.asv.required.label:5032
 msgid "Is Required?"
 msgstr ""
 
-#: field.atevparam.value.label:1167
+#: field.atevparam.value.label:1195
 msgid "Parameter Value"
 msgstr ""
 
-#: field.mb.voider.label:6648
+#: field.mb.voider.label:6842
 msgid "Voiding Staff Member"
 msgstr ""
 
-#: field.acqfy.year_end.label:7184
+#: field.acqfy.year_end.label:7378
 msgid "Year End"
 msgstr ""
 
-#: field.acqpro.url.label:6866 field.uvu.full_url.label:9563
-#: field.uvuv.url.label:9650
+#: field.acqpro.url.label:7060 field.uvu.full_url.label:9762
+#: field.uvuv.url.label:9849
 msgid "URL"
 msgstr ""
 
-#: field.auri.href.label:2566 field.auricnm.uri.label:2581
-#: field.sitem.uri.label:4680
+#: field.auri.href.label:2597 field.auricnm.uri.label:2612
+#: field.sitem.uri.label:4712
 msgid "URI"
 msgstr ""
 
-#: class.acqclt.label:8603 field.acqcl.type.label:8647
-#: field.acqscl.type.label:8675
+#: class.acqclt.label:8796 field.acqcl.type.label:8840
+#: field.acqscl.type.label:8868
 msgid "Claim Type"
 msgstr ""
 
-#: field.circ.payments.label:3700 field.combcirc.payments.label:3769
-#: field.acirc.payments.label:3842 field.rodcirc.payments.label:10312
+#: field.circ.payments.label:3732 field.combcirc.payments.label:3801
+#: field.acirc.payments.label:3874 field.rodcirc.payments.label:10511
 msgid "Transaction Payments"
 msgstr ""
 
-#: field.abaafm.field.label:2183
+#: field.abaafm.field.label:2213 field.aalink.field.label:5864
 msgid "Authority Field"
 msgstr ""
 
-#: field.brt.fine_amount.label:3892 field.bresv.fine_amount.label:4054
+#: field.brt.fine_amount.label:3924 field.bresv.fine_amount.label:4086
 msgid "Fine Amount"
 msgstr ""
 
-#: field.chmw.user_home_ou.label:1464 field.chmm.user_home_ou.label:1552
-#: field.rmocbbhol.home_ou.label:10438 field.rmobbhol.home_ou.label:10452
+#: field.chmw.user_home_ou.label:1492 field.chmm.user_home_ou.label:1580
+#: field.rmocbbhol.home_ou.label:10637 field.rmobbhol.home_ou.label:10651
 msgid "User Home Library"
 msgstr ""
 
-#: class.aun.label:1892
+#: class.aun.label:1920
 msgid "User Note"
 msgstr ""
 
-#: field.acqedi.id.label:8158
+#: field.acqedi.id.label:8351
 msgid "EDI Account ID"
 msgstr ""
 
-#: field.mp.forgive_payment.label:6411 field.mbp.forgive_payment.label:6439
-#: field.mndp.forgive_payment.label:6463
+#: field.mp.forgive_payment.label:6603 field.mbp.forgive_payment.label:6632
+#: field.mndp.forgive_payment.label:6657
 msgid "Forgive Payment Detail"
 msgstr ""
 
-#: class.cclscmm.label:1726
+#: class.cclscmm.label:1754
 msgid "Circulation Limit Set Circ Mod Map"
 msgstr ""
 
-#: field.brsrc.deposit.label:3927 field.sunit.deposit.label:4616
-#: field.acp.deposit.label:6034
+#: field.brsrc.deposit.label:3959 field.sunit.deposit.label:4648
+#: field.acp.deposit.label:6226
 msgid "Is Deposit Required"
 msgstr ""
 
-#: field.rhrr.bib_record.label:8451
+#: field.rhrr.bib_record.label:8644
 msgid "Target Bib Record"
 msgstr ""
 
-#: field.ahr.expire_time.label:5115 field.ahopl.expire_time.label:5242
-#: field.alhr.expire_time.label:5318
+#: field.ahr.expire_time.label:5147 field.ahopl.expire_time.label:5294
+#: field.alhr.expire_time.label:5379 field.combahr.expire_time.label:5461
+#: field.aahr.expire_time.label:5519
 msgid "Hold Expire Date/Time"
 msgstr ""
 
-#: field.bre.full_record_entries.label:2664
+#: field.bre.full_record_entries.label:2695
 msgid "Flattened MARC Fields "
 msgstr ""
 
@@ -4589,7 +4674,7 @@ msgstr ""
 msgid "SVF Record Attribute Defintion"
 msgstr ""
 
-#: field.acqpo.amount_spent.label:7704
+#: field.acqpo.amount_spent.label:7898
 msgid "Amount Spent"
 msgstr ""
 
@@ -4597,95 +4682,95 @@ msgstr ""
 msgid "String Length"
 msgstr ""
 
-#: class.rr.label:8307
+#: class.rr.label:8500
 msgid "Report"
 msgstr ""
 
-#: class.aoupa.label:4934
+#: class.aoupa.label:4966
 msgid "Org Unit Proximity Adjustment"
 msgstr ""
 
-#: field.cmsa.field_class.label:2325 field.cmf.field_class.label:2369
+#: field.cmsa.field_class.label:2355 field.cmf.field_class.label:2400
 msgid "Class"
 msgstr ""
 
-#: field.mp.voided.label:6405 field.mbp.voided.label:6433
-#: field.mndp.voided.label:6461 field.mdp.voided.label:6485
-#: field.mb.voided.label:6647
+#: field.mp.voided.label:6597 field.mbp.voided.label:6626
+#: field.mndp.voided.label:6655 field.mdp.voided.label:6679
+#: field.mb.voided.label:6841
 msgid "Voided?"
 msgstr ""
 
-#: class.viiad.label:323
+#: class.viiad.label:321
 msgid "Import Item Attribute Definition"
 msgstr ""
 
-#: field.rccc.circ_lib.label:9995
+#: field.rccc.circ_lib.label:10194
 msgid "Library Circulation Location Short (Policy) Name"
 msgstr ""
 
-#: field.aun.id.label:1896 field.acpn.id.label:3140
+#: field.aun.id.label:1924 field.acpn.id.label:3172
 msgid "Note ID"
 msgstr ""
 
-#: field.qfs.is_aggregate.label:8980
+#: field.qfs.is_aggregate.label:9179
 msgid "Is Aggregate"
 msgstr ""
 
-#: class.stgc.label:8769
+#: class.stgc.label:8966
 msgid "Card Stage"
 msgstr ""
 
-#: class.acplo.label:4266
+#: class.acplo.label:4298
 msgid "Copy/Shelving Location Order"
 msgstr ""
 
-#: field.rccc.stat_cat_2.label:10019
+#: field.rccc.stat_cat_2.label:10218
 msgid "Legacy CAT2 Link"
 msgstr ""
 
-#: field.rhcrpbap.copy_count_at_pickup_library.label:9875
+#: field.rhcrpbap.copy_count_at_pickup_library.label:10074
 msgid "Holdable Copy Count at Pickup Library"
 msgstr ""
 
-#: field.acqpa.valid.label:7050
+#: field.acqpa.valid.label:7244
 msgid "Is Valid?"
 msgstr ""
 
-#: field.ancihu.item_type.label:1960 field.citm.value.label:4853
+#: field.ancihu.item_type.label:1988 field.citm.value.label:4885
 msgid "Item Type"
 msgstr ""
 
-#: class.mafe.label:1931
+#: class.mafe.label:1959
 msgid "Author Field Entry"
 msgstr ""
 
-#: field.rxpt.voided.label:8473
+#: field.rxpt.voided.label:8666
 msgid "Voided (Returned) Paid Amount"
 msgstr ""
 
-#: field.acqlisum.recv_count.label:10171
-#: field.acqlisumi.recv_count.label:10191
+#: field.acqlisum.recv_count.label:10370
+#: field.acqlisumi.recv_count.label:10390
 msgid "Receive Count"
 msgstr ""
 
-#: field.ahr.phone_notify.label:5122 field.ahopl.phone_notify.label:5249
-#: field.alhr.phone_notify.label:5325
+#: field.ahr.phone_notify.label:5154 field.ahopl.phone_notify.label:5301
+#: field.alhr.phone_notify.label:5386
 msgid "Notifications Phone Number"
 msgstr ""
 
-#: field.jub.selector.label:7838
+#: field.jub.selector.label:8032
 msgid "Selecting User"
 msgstr ""
 
-#: field.mg.billable_transaction.label:5756
+#: field.mg.billable_transaction.label:5948
 msgid "Billable Transaction link"
 msgstr ""
 
-#: class.cmpctm.label:9394
+#: class.cmpctm.label:9593
 msgid "MARC21 Physical Characteristic Type Map"
 msgstr ""
 
-#: field.mrd.date1.label:3363
+#: field.mrd.date1.label:3395
 msgid "Date1"
 msgstr ""
 
@@ -4693,103 +4778,108 @@ msgstr ""
 msgid "Import/Overlay Authority Queue"
 msgstr ""
 
-#: field.bresv.billings.label:4040 field.mbt.billings.label:5797
+#: field.bresv.billings.label:4072 field.mbt.billings.label:5989
 msgid "Billing Line Items"
 msgstr ""
 
-#: field.acsaf.sf_list.label:2090
+#: field.acsaf.sf_list.label:2118
 msgid "Subfield List"
 msgstr ""
 
-#: field.atul.error_output.label:1246
+#: field.atul.error_output.label:1274
 msgid "Event Error Output"
 msgstr ""
 
-#: field.bre.last_xact_id.label:2647 field.au.last_xact_id.label:2917
-#: field.sre.last_xact_id.label:4314
+#: field.bre.last_xact_id.label:2678 field.au.last_xact_id.label:2948
+#: field.sre.last_xact_id.label:4346
 msgid "Last Transaction ID"
 msgstr ""
 
-#: class.alhr.label:5308
+#: class.alhr.label:5369
 msgid "Last Captured Hold Request"
 msgstr ""
 
-#: field.rccbs.usr.label:10074
+#: field.combahr.phone_notify.label:5468 field.aahr.phone_notify.label:5526
+msgid "Notify by Phone?"
+msgstr ""
+
+#: field.rccbs.usr.label:10273
 msgid "User Link"
 msgstr ""
 
-#: class.ssubn.label:4407
+#: class.ssubn.label:4439
 msgid "Subscription Note"
 msgstr ""
 
-#: field.vibtg.id.label:250 field.vqbrad.id.label:444
+#: field.vibtg.id.label:248 field.vqbrad.id.label:444
 #: field.vqarad.id.label:561 field.cin.id.label:744 field.cmfinm.id.label:762
 #: field.csc.id.label:816 field.crainm.id.label:850 field.ccvm.id.label:872
-#: field.cracct.id.label:896 field.bpt.id.label:1370 field.bpbcm.id.label:1386
-#: field.cclg.id.label:1660 field.ccls.id.label:1677
-#: field.ccmlsm.id.label:1700 field.cclscmm.id.label:1728
-#: field.cclsacpl.id.label:1753 field.cclsgm.id.label:1779
-#: field.cmf.id.label:2370 field.cbho.id.label:2397 field.acns.id.label:2485
-#: field.acnp.id.label:2504 field.auricnm.id.label:2580
-#: field.chdd.id.label:2812 field.chddv.id.label:2833 field.cuat.id.label:2988
-#: field.auact.id.label:3008 field.atb.id.label:3027 field.pgpt.id.label:3398
-#: field.ausp.id.label:3439 field.auss.id.label:3518 field.acplg.id.label:4219
-#: field.acplgm.id.label:4242 field.sre.id.label:4313 field.scap.id.label:4337
-#: field.ssub.id.label:4378 field.ssubn.id.label:4409
-#: field.sdist.id.label:4425 field.sdistn.id.label:4470
-#: field.sstr.id.label:4502 field.srlu.id.label:4531 field.siss.id.label:4562
-#: field.sunit.id.label:4601 field.sitem.id.label:4672 field.sin.id.label:4716
-#: field.smhc.id.label:4744 field.sbsum.id.label:4758
-#: field.sssum.id.label:4785 field.sisum.id.label:4812 field.sra.id.label:4882
-#: field.aoupa.id.label:4936 field.ssr.id.label:4978 field.ahrn.id.label:5373
-#: field.aouct.id.label:5465 field.aouctn.id.label:5480
-#: field.act.id.label:6104 field.cbt.id.label:6728 field.aurt.id.label:6748
-#: field.aur.id.label:6764 field.acqie.id.label:6960 field.acqii.id.label:6997
-#: field.acqpa.id.label:7044 field.acqpc.id.label:7076
-#: field.acqcr.id.label:7666 field.acqpoi.id.label:7800
-#: field.acqphsm.id.label:8120 field.acqdfa.id.label:8560
-#: field.acqclp.id.label:8702 field.acqclpa.id.label:8722
-#: field.cmfpm.id.label:9378 field.cmpcsm.id.label:9409
-#: field.cmpcvm.id.label:9428 field.cfdfs.id.label:9711
-#: field.cbc.id.label:10574 field.coustl.id.label:10600
-#: field.aaactsc.id.label:10622 field.aaasc.id.label:10634
+#: field.cracct.id.label:896 field.bpt.id.label:1398 field.bpbcm.id.label:1414
+#: field.cclg.id.label:1688 field.ccls.id.label:1705
+#: field.ccmlsm.id.label:1728 field.cclscmm.id.label:1756
+#: field.cclsacpl.id.label:1781 field.cclsgm.id.label:1807
+#: field.cmf.id.label:2401 field.cbho.id.label:2428 field.acns.id.label:2516
+#: field.acnp.id.label:2535 field.auricnm.id.label:2611
+#: field.chdd.id.label:2843 field.chddv.id.label:2864 field.cuat.id.label:3019
+#: field.auact.id.label:3039 field.atb.id.label:3058 field.pgpt.id.label:3430
+#: field.ausp.id.label:3471 field.auss.id.label:3550 field.acplg.id.label:4251
+#: field.acplgm.id.label:4274 field.sre.id.label:4345 field.scap.id.label:4369
+#: field.ssub.id.label:4410 field.ssubn.id.label:4441
+#: field.sdist.id.label:4457 field.sdistn.id.label:4502
+#: field.sstr.id.label:4534 field.srlu.id.label:4563 field.siss.id.label:4594
+#: field.sunit.id.label:4633 field.sitem.id.label:4704 field.sin.id.label:4748
+#: field.smhc.id.label:4776 field.sbsum.id.label:4790
+#: field.sssum.id.label:4817 field.sisum.id.label:4844 field.sra.id.label:4914
+#: field.aoupa.id.label:4968 field.ssr.id.label:5010 field.ahrn.id.label:5435
+#: field.aouct.id.label:5644 field.aouctn.id.label:5659
+#: field.aalink.id.label:5861 field.act.id.label:6296 field.cbt.id.label:6922
+#: field.aurt.id.label:6942 field.aur.id.label:6958 field.acqie.id.label:7154
+#: field.acqii.id.label:7191 field.acqpa.id.label:7238
+#: field.acqpc.id.label:7270 field.acqcr.id.label:7860
+#: field.acqpoi.id.label:7994 field.acqphsm.id.label:8313
+#: field.acqdfa.id.label:8753 field.acqclp.id.label:8895
+#: field.acqclpa.id.label:8915 field.cmfpm.id.label:9577
+#: field.cmpcsm.id.label:9608 field.cmpcvm.id.label:9627
+#: field.cfdfs.id.label:9910 field.cbc.id.label:10773
+#: field.coustl.id.label:10799 field.aaactsc.id.label:10821
+#: field.aaasc.id.label:10833
 msgid "ID"
 msgstr ""
 
-#: class.qfs.label:8975
+#: class.qfs.label:9174
 msgid "Function Signature"
 msgstr ""
 
-#: class.cmfts.label:9964
+#: class.cmfts.label:10163
 msgid "Metabib Field TS Map"
 msgstr ""
 
-#: field.ath.core_type.label:993
+#: field.ath.core_type.label:1021
 msgid "Core Type"
 msgstr ""
 
-#: field.mb.billing_type.label:6643
+#: field.mb.billing_type.label:6837
 msgid "Legacy Billing Type"
 msgstr ""
 
-#: field.acqpa.street1.label:7048
+#: field.acqpa.street1.label:7242
 msgid "Street 1"
 msgstr ""
 
-#: field.clm.value.label:2263
+#: field.clm.value.label:2293
 msgid "Language"
 msgstr ""
 
-#: field.acqpa.street2.label:7049
+#: field.acqpa.street2.label:7243
 msgid "Street 2"
 msgstr ""
 
-#: field.cust.datatype.label:3080 class.qdt.label:8951
-#: field.qfpd.datatype.label:8992
+#: field.cust.datatype.label:3111 class.qdt.label:9150
+#: field.qfpd.datatype.label:9191
 msgid "Datatype"
 msgstr ""
 
-#: class.cclsacpl.label:1751
+#: class.cclsacpl.label:1779
 msgid "Circulation Limit Set Copy Location Map"
 msgstr ""
 
@@ -4797,67 +4887,68 @@ msgstr ""
 msgid "Attribute ID"
 msgstr ""
 
-#: class.brav.label:3978
+#: class.brav.label:4010
 msgid "Resource Attribute Value"
 msgstr ""
 
-#: field.ahr.target.label:5132 field.ahopl.target.label:5259
-#: field.alhr.target.label:5333
+#: field.ahr.target.label:5164 field.ahopl.target.label:5311
+#: field.alhr.target.label:5394 field.combahr.target.label:5481
+#: field.aahr.target.label:5539
 msgid "Target Object ID"
 msgstr ""
 
-#: field.acqlisum.claim_count.label:10174
-#: field.acqlisumi.claim_count.label:10194
+#: field.acqlisum.claim_count.label:10373
+#: field.acqlisumi.claim_count.label:10393
 msgid "Claim Count"
 msgstr ""
 
-#: class.cvrfm.label:1444 field.chmw.marc_vr_format.label:1475
-#: field.ccmw.marc_vr_format.label:1506 field.chmm.marc_vr_format.label:1563
-#: field.ccmm.marc_vr_format.label:1614
+#: class.cvrfm.label:1472 field.chmw.marc_vr_format.label:1503
+#: field.ccmw.marc_vr_format.label:1534 field.chmm.marc_vr_format.label:1591
+#: field.ccmm.marc_vr_format.label:1642
 msgid "Videorecording Format"
 msgstr ""
 
-#: class.sdistn.label:4468
+#: class.sdistn.label:4500
 msgid "Distribution Note"
 msgstr ""
 
-#: field.acqfs.id.label:7201 field.acqfscred.funding_source.label:7231
-#: field.acqofscred.funding_source.label:7263
+#: field.acqfs.id.label:7395 field.acqfscred.funding_source.label:7425
+#: field.acqofscred.funding_source.label:7457
 msgid "Funding Source ID"
 msgstr ""
 
-#: field.atev.state.label:1147 field.aua.state.label:3471
-#: field.aal.state.label:3496 field.acqpa.state.label:7047
-#: field.acqpca.state.label:7111 field.acqpo.state.label:7692
-#: field.acqpoh.state.label:7742 field.jub.state.label:7848
-#: field.acqlih.state.label:7909 field.stgma.state.label:8787
-#: field.stgba.state.label:8802
+#: field.atev.state.label:1175 field.aua.state.label:3503
+#: field.aal.state.label:3528 field.acqpa.state.label:7241
+#: field.acqpca.state.label:7305 field.acqpo.state.label:7886
+#: field.acqpoh.state.label:7936 field.jub.state.label:8042
+#: field.acqlih.state.label:8103 field.stgma.state.label:8985
+#: field.stgba.state.label:9001
 msgid "State"
 msgstr ""
 
-#: field.cwa.circ_weights.label:1529
+#: field.cwa.circ_weights.label:1557
 msgid "Circ Weights"
 msgstr ""
 
-#: field.actsce.id.label:5816 field.actscecm.id.label:6302
-#: field.asce.id.label:6526 field.acqdfe.id.label:8523
-#: field.rsce1.id.label:10041 field.rsce2.id.label:10052
+#: field.actsce.id.label:6008 field.actscecm.id.label:6494
+#: field.asce.id.label:6720 field.acqdfe.id.label:8716
+#: field.rsce1.id.label:10240 field.rsce2.id.label:10251
 msgid "Entry ID"
 msgstr ""
 
-#: field.chmm.age_hold_protect_rule.label:1571
+#: field.chmm.age_hold_protect_rule.label:1599
 msgid "Copy Age Hold Protection Rule"
 msgstr ""
 
-#: field.qfr.id.label:9060 field.qrc.from_relation.label:9083
+#: field.qfr.id.label:9259 field.qrc.from_relation.label:9282
 msgid "From Relation ID"
 msgstr ""
 
-#: field.chmm.include_frozen_holds.label:1570
+#: field.chmm.include_frozen_holds.label:1598
 msgid "Max includes Frozen"
 msgstr ""
 
-#: class.asvr.label:2004
+#: class.asvr.label:2032
 msgid "Survey Response"
 msgstr ""
 
@@ -4865,110 +4956,119 @@ msgstr ""
 msgid "Starting Position"
 msgstr ""
 
-#: field.uvu.redirect_from.label:9556
+#: field.uvu.redirect_from.label:9755
 msgid "Redirected From"
 msgstr ""
 
-#: field.au.claims_never_checked_out_count.label:2901
+#: field.au.claims_never_checked_out_count.label:2932
 msgid "Claims Never Checked Out Count"
 msgstr ""
 
-#: field.au.permissions.label:2888
+#: field.au.permissions.label:2919
 msgid "All Permissions"
 msgstr ""
 
-#: field.cit.id.label:1806
+#: field.cit.id.label:1834
 msgid "Identification ID"
 msgstr ""
 
-#: field.acnc.normalizer.label:2474
+#: field.acnc.normalizer.label:2505
 msgid "Normalizer function"
 msgstr ""
 
-#: field.aou.users.label:5409
+#: field.aou.users.label:5588
 msgid "Users"
 msgstr ""
 
-#: field.vii.price.label:289 field.viiad.price.label:340
-#: field.sunit.price.label:4627 field.acp.price.label:6046
-#: field.act.price.label:6122 field.rocit.price.label:10343
+#: field.vii.price.label:287 field.viiad.price.label:338
+#: field.sunit.price.label:4659 field.acp.price.label:6238
+#: field.act.price.label:6314 field.rocit.price.label:10542
 msgid "Price"
 msgstr ""
 
-#: field.pgt.id.label:6187
+#: field.pgt.id.label:6379
 msgid "Group ID"
 msgstr ""
 
-#: field.sdist.summary_method.label:4427
+#: field.sdist.summary_method.label:4459
 msgid "Summary Method"
 msgstr ""
 
-#: field.vii.deposit_amount.label:286 field.viiad.deposit_amount.label:337
-#: field.brsrc.deposit_amount.label:3928 field.sunit.deposit_amount.label:4617
-#: field.acp.deposit_amount.label:6035 field.act.deposit_amount.label:6121
-#: field.rocit.deposit_amount.label:10365
+#: field.vii.deposit_amount.label:284 field.viiad.deposit_amount.label:335
+#: field.brsrc.deposit_amount.label:3960 field.sunit.deposit_amount.label:4649
+#: field.acp.deposit_amount.label:6227 field.act.deposit_amount.label:6313
+#: field.rocit.deposit_amount.label:10564
 msgid "Deposit Amount"
 msgstr ""
 
-#: field.acqpron.id.label:6892 field.acqpon.id.label:7766
+#: field.acqpron.id.label:7086 field.acqpon.id.label:7960
 msgid "PO Note ID"
 msgstr ""
 
-#: field.jub.queued_record.label:7854 field.acqlih.queued_record.label:7913
-msgid "Queued Vandelay Record"
+#: field.ahopl.usr_first_given_name.label:5330
+msgid "User First Given Name"
+msgstr ""
+
+#: field.cust.fm_class.label:3112
+msgid "Fieldmapper Class"
 msgstr ""
 
-#: field.chmw.marc_type.label:1472 field.ccmw.marc_type.label:1503
-#: field.chmm.marc_type.label:1560 field.ccmm.marc_type.label:1611
-#: field.rccc.item_type.label:10005
+#: field.chmw.marc_type.label:1500 field.ccmw.marc_type.label:1531
+#: field.chmm.marc_type.label:1588 field.ccmm.marc_type.label:1639
+#: field.rccc.item_type.label:10204
 msgid "MARC Type"
 msgstr ""
 
-#: field.bre.edit_date.label:2643
+#: field.bre.edit_date.label:2674
 msgid "Last Edit Data/Time"
 msgstr ""
 
-#: field.ahr.shelf_time.label:5142 field.ahopl.shelf_time.label:5269
-#: field.alhr.shelf_time.label:5343
+#: field.ahr.shelf_time.label:5174 field.ahopl.shelf_time.label:5321
+#: field.alhr.shelf_time.label:5404 field.combahr.shelf_time.label:5486
+#: field.aahr.shelf_time.label:5544
 msgid "Shelf Time"
 msgstr ""
 
-#: field.acqie.amount_paid.label:6970 field.acqii.amount_paid.label:7008
+#: field.acqie.amount_paid.label:7164 field.acqii.amount_paid.label:7202
 msgid "Amount Paid"
 msgstr ""
 
-#: field.rccc.dewey_range_tens.label:10020
+#: field.rccc.dewey_range_tens.label:10219
 msgid "Dewey Range - Tens"
 msgstr ""
 
-#: class.acqofscred.label:7258
+#: class.acqofscred.label:7452
 msgid "Ordered Funding Source Credit"
 msgstr ""
 
-#: field.rsr.geographic_subject.label:8415
+#: field.rsr.geographic_subject.label:8608
 msgid "Geographic Subjects (normalized)"
 msgstr ""
 
-#: field.auss.query_text.label:3522
+#: field.auss.query_text.label:3554
 msgid "Query Text"
 msgstr ""
 
-#: field.acpl.label_suffix.label:4199
+#: field.cust.reg_default.label:3115
+msgid "Registration Default"
+msgstr ""
+
+#: field.acpl.label_suffix.label:4231
 msgid "Label Suffix"
 msgstr ""
 
-#: field.atc.target_copy.label:1982 field.artc.target_copy.label:6580
-#: field.ahtc.target_copy.label:6615 field.iatc.target_copy.label:10222
+#: field.atc.target_copy.label:2010 field.artc.target_copy.label:6774
+#: field.ahtc.target_copy.label:6809 field.iatc.target_copy.label:10421
 msgid "Transited Copy"
 msgstr ""
 
-#: field.ccmw.copy_location.label:1502 field.ccmm.copy_location.label:1610
-#: field.cclsacpl.copy_loc.label:1755 field.acplgm.location.label:4244
-#: field.aoupa.copy_location.label:4941 field.acqlid.location.label:8007
+#: field.ccmw.copy_location.label:1530 field.ccmm.copy_location.label:1638
+#: field.cclsacpl.copy_loc.label:1783 field.acplgm.location.label:4276
+#: field.aoupa.copy_location.label:4973 field.acqlid.location.label:8200
 msgid "Copy Location"
 msgstr ""
 
-#: field.acqie.phys_item_count.label:6965
+#: field.acqie.phys_item_count.label:7159
 msgid "Physical Item Count"
 msgstr ""
 
@@ -4976,107 +5076,111 @@ msgstr ""
 msgid "Queued Bib Record Match"
 msgstr ""
 
-#: field.acqexr.ratio.label:6837
+#: field.acqexr.ratio.label:7031
 msgid "Ratio"
 msgstr ""
 
-#: field.ahopl.potential_copies.label:5282
+#: field.ahopl.potential_copies.label:5342
 msgid "Potential Copies"
 msgstr ""
 
-#: field.mfr.record.label:3172 field.mrd.record.label:3360
+#: field.mfr.record.label:3204 field.mrd.record.label:3392
 msgid "Bib Record Entry"
 msgstr ""
 
-#: field.uvu.tld.label:9567
+#: field.uvu.tld.label:9766
 msgid "TLD"
 msgstr ""
 
-#: class.sin.label:4714
+#: class.sin.label:4746
 msgid "Item Note"
 msgstr ""
 
-#: field.acqfy.id.label:7180
+#: field.acqfy.id.label:7374
 msgid "Fiscal Year ID"
 msgstr ""
 
-#: field.ccmw.usr_age_lower_bound.label:1509
-#: field.ccmm.usr_age_lower_bound.label:1617
+#: field.ccmw.usr_age_lower_bound.label:1537
+#: field.ccmm.usr_age_lower_bound.label:1645
 msgid "User Age: Lower Bound"
 msgstr ""
 
+#: field.combahr.sms_notify.label:5469 field.aahr.sms_notify.label:5527
+msgid "Notify by SMS?"
+msgstr ""
+
 #: field.czs.record_format.label:926
 msgid "Record Format"
 msgstr ""
 
-#: field.atevdef.cleanup_success.label:1102
+#: field.atevdef.cleanup_success.label:1130
 msgid "Success Cleanup"
 msgstr ""
 
-#: class.uvu.label:9547
+#: class.uvu.label:9746
 msgid "URL Verification URL"
 msgstr ""
 
-#: class.pgpm.label:6312
+#: class.pgpm.label:6504
 msgid "Group Permission Map"
 msgstr ""
 
-#: field.ahr.notifications.label:5137 field.ahopl.notifications.label:5264
-#: field.alhr.notifications.label:5338
+#: field.ahr.notifications.label:5169 field.ahopl.notifications.label:5316
+#: field.alhr.notifications.label:5399
 msgid "Notifications"
 msgstr ""
 
-#: field.circ.payment_total.label:3704 field.combcirc.payment_total.label:3773
-#: field.acirc.payment_total.label:3846 field.bresv.payment_total.label:4043
-#: field.mg.payment_total.label:5758 field.mbt.payment_total.label:5800
-#: field.rodcirc.payment_total.label:10316
+#: field.circ.payment_total.label:3736 field.combcirc.payment_total.label:3805
+#: field.acirc.payment_total.label:3878 field.bresv.payment_total.label:4075
+#: field.mg.payment_total.label:5950 field.mbt.payment_total.label:5992
+#: field.rodcirc.payment_total.label:10515
 msgid "Payment Totals"
 msgstr ""
 
-#: field.rccc.patron_id.label:10012
-msgid "Patron Link"
+#: class.aalink.label:5859
+msgid "Authority to Authority Linking"
 msgstr ""
 
-#: field.vii.copy_number.label:281 field.viiad.copy_number.label:348
+#: field.vii.copy_number.label:279 field.viiad.copy_number.label:346
 msgid "Copy Number"
 msgstr ""
 
-#: field.acn.notes.label:2533 field.ssub.notes.label:4387
-#: field.sdist.notes.label:4439 field.sitem.notes.label:4684
-#: field.ahr.notes.label:5148 field.ahopl.notes.label:5275
-#: field.alhr.notes.label:5349 field.acqpo.notes.label:7701
+#: field.acn.notes.label:2564 field.ssub.notes.label:4419
+#: field.sdist.notes.label:4471 field.sitem.notes.label:4716
+#: field.ahr.notes.label:5180 field.ahopl.notes.label:5327
+#: field.alhr.notes.label:5410 field.acqpo.notes.label:7895
 msgid "Notes"
 msgstr ""
 
 #: field.vqbra.attr_value.label:466 field.vqara.attr_value.label:583
 #: field.vmsq.value.label:684 field.cgf.value.label:729
-#: field.ccvm.value.label:875 field.aus.value.label:1924
-#: field.ssubn.value.label:4415 field.sdistn.value.label:4476
-#: field.sin.value.label:4722 field.smhc.value.label:4750
-#: field.asce.value.label:6529 field.acqlia.attr_value.label:7985
-#: field.bmpc.value.label:9365 field.cmpcvm.value.label:9429
+#: field.ccvm.value.label:875 field.aus.value.label:1952
+#: field.ssubn.value.label:4447 field.sdistn.value.label:4508
+#: field.sin.value.label:4754 field.smhc.value.label:4782
+#: field.asce.value.label:6723 field.acqlia.attr_value.label:8178
+#: field.bmpc.value.label:9564 field.cmpcvm.value.label:9628
 msgid "Value"
 msgstr ""
 
-#: class.rsce1.label:10039
+#: class.rsce1.label:10238
 msgid "CAT1 Entry"
 msgstr ""
 
-#: field.mfr.ind1.label:3170
+#: field.mfr.ind1.label:3202
 msgid "Indicator 1"
 msgstr ""
 
-#: class.acsbf.label:2117
+#: class.acsbf.label:2147
 msgid "Authority Control Set Bib Field"
 msgstr ""
 
-#: field.acqpo.ordering_agency.label:7693
-#: field.acqpoh.ordering_agency.label:7738
-#: field.acrlid.ordering_agency.label:10153
+#: field.acqpo.ordering_agency.label:7887
+#: field.acqpoh.ordering_agency.label:7932
+#: field.acrlid.ordering_agency.label:10352
 msgid "Ordering Agency"
 msgstr ""
 
-#: field.ahrn.slip.label:5377
+#: field.ahrn.slip.label:5439
 msgid "Slip?"
 msgstr ""
 
@@ -5084,43 +5188,43 @@ msgstr ""
 msgid "Negate"
 msgstr ""
 
-#: class.aouctn.label:5478
+#: class.aouctn.label:5657
 msgid "Org Unit Custom Tree Node"
 msgstr ""
 
-#: field.qxp.left_operand.label:9023 field.xbet.left_operand.label:9128
-#: field.xcase.left_operand.label:9171 field.xcast.left_operand.label:9186
-#: field.xin.left_operand.label:9249 field.xisnull.left_operand.label:9266
-#: field.xop.left_operand.label:9307
+#: field.qxp.left_operand.label:9222 field.xbet.left_operand.label:9327
+#: field.xcase.left_operand.label:9370 field.xcast.left_operand.label:9385
+#: field.xin.left_operand.label:9448 field.xisnull.left_operand.label:9465
+#: field.xop.left_operand.label:9506
 msgid "Left Operand"
 msgstr ""
 
-#: class.cnct.label:5680
+#: class.cnct.label:5872
 msgid "Non-cataloged Type"
 msgstr ""
 
-#: class.cmcts.label:9939
+#: class.cmcts.label:10138
 msgid "Metabib Class TS Map"
 msgstr ""
 
-#: field.qrc.id.label:9082
+#: field.qrc.id.label:9281
 msgid "Record Column ID"
 msgstr ""
 
-#: class.ahn.label:4173
+#: class.ahn.label:4205
 msgid "Hold Notification"
 msgstr ""
 
-#: field.rcirct.id.label:8439 field.rmocbbol.id.label:10385
-#: field.rmocbbcol.id.label:10409 field.rmocbbhol.id.label:10437
+#: field.rcirct.id.label:8632 field.rmocbbol.id.label:10584
+#: field.rmocbbcol.id.label:10608 field.rmocbbhol.id.label:10636
 msgid "Circulation ID"
 msgstr ""
 
-#: field.acqlid.receiver.label:8003
+#: field.acqlid.receiver.label:8196
 msgid "Receiving User"
 msgstr ""
 
-#: field.aou.holds_address.label:5397
+#: field.aou.holds_address.label:5576
 msgid "Holds Receiving Address"
 msgstr ""
 
@@ -5128,78 +5232,78 @@ msgstr ""
 msgid "Record Quality Metric"
 msgstr ""
 
-#: field.acqlih.selector.label:7899
+#: field.acqlih.selector.label:8093
 msgid "Selector"
 msgstr ""
 
-#: field.rocit.tcn_value.label:10367
+#: field.rocit.tcn_value.label:10566
 msgid "TCN"
 msgstr ""
 
-#: field.acqie.cost_billed.label:6968 field.acqii.cost_billed.label:7005
+#: field.acqie.cost_billed.label:7162 field.acqii.cost_billed.label:7199
 msgid "Cost Billed"
 msgstr ""
 
-#: class.aupr.label:1907
+#: class.aupr.label:1935
 msgid "User password reset requests"
 msgstr ""
 
-#: field.artc.copy_status.label:6571 field.ahtc.copy_status.label:6606
+#: field.artc.copy_status.label:6765 field.ahtc.copy_status.label:6800
 msgid "Copy Status at Transit"
 msgstr ""
 
-#: class.acqfet.label:7386
-msgid "Total Fund Encumbrance"
+#: field.abaafm.id.label:2212
+msgid "Axis Authority Field Map ID"
 msgstr ""
 
-#: field.brsrc.user_fee.label:3929
+#: field.brsrc.user_fee.label:3961
 msgid "User Fee"
 msgstr ""
 
-#: field.acqcl.id.label:8646 field.acqcle.claim.label:8660
-#: field.acqscl.id.label:8674 field.acqscle.claim.label:8688
+#: field.acqcl.id.label:8839 field.acqcle.claim.label:8853
+#: field.acqscl.id.label:8867 field.acqscle.claim.label:8881
 msgid "Claim ID"
 msgstr ""
 
-#: field.mp.credit_payment.label:6408 field.mbp.credit_payment.label:6436
-#: field.mndp.credit_payment.label:6465
+#: field.mp.credit_payment.label:6600 field.mbp.credit_payment.label:6629
+#: field.mndp.credit_payment.label:6659
 msgid "Credit Payment Detail"
 msgstr ""
 
-#: field.sdist.unit_label_suffix.label:4436
+#: field.sdist.unit_label_suffix.label:4468
 msgid "Unit Label Suffix"
 msgstr ""
 
-#: field.qxp.subquery.label:9027 field.xex.subquery.label:9218
-#: field.xin.subquery.label:9250 field.xsubq.subquery.label:9352
+#: field.qxp.subquery.label:9226 field.xex.subquery.label:9417
+#: field.xin.subquery.label:9449 field.xsubq.subquery.label:9551
 msgid "Subquery"
 msgstr ""
 
-#: class.ccmm.label:1599
+#: class.ccmm.label:1627
 msgid "Circulation Matrix Matchpoint"
 msgstr ""
 
-#: field.acqlid.eg_copy_id.label:7999
+#: field.acqlid.eg_copy_id.label:8192
 msgid "Evergreen Copy ID"
 msgstr ""
 
-#: class.scap.label:4335
+#: class.scap.label:4367
 msgid "Caption and Pattern"
 msgstr ""
 
-#: field.uvu.query.label:9570
+#: field.uvu.query.label:9769
 msgid "Query"
 msgstr ""
 
-#: field.rccc.demographic_general_division.label:10008
+#: field.rccc.demographic_general_division.label:10207
 msgid "Patron Age Demographic"
 msgstr ""
 
-#: field.rsr.corporate_subject.label:8418
+#: field.rsr.corporate_subject.label:8611
 msgid "Corporate Name Subjects (normalized)"
 msgstr ""
 
-#: field.cbho.priority.label:2403 field.pgt.hold_priority.label:6193
+#: field.cbho.priority.label:2434 field.pgt.hold_priority.label:6385
 msgid "Hold Priority"
 msgstr ""
 
@@ -5207,31 +5311,32 @@ msgstr ""
 msgid "Queued Bib Record"
 msgstr ""
 
-#: field.uvuv.id.label:9649
+#: field.uvuv.id.label:9848
 msgid "Verification ID"
 msgstr ""
 
-#: field.acqfs.name.label:7202
+#: field.acqfs.name.label:7396
 msgid "Funding Source Name"
 msgstr ""
 
-#: class.acqdfe.label:8521
+#: class.acqdfe.label:8714
 msgid "Distribution Formula Entry"
 msgstr ""
 
-#: field.aua.id.label:3469 field.acqpca.id.label:7109
+#: field.aua.id.label:3501 field.acqpca.id.label:7303
 msgid "Address ID"
 msgstr ""
 
-#: field.rccbs.patron_county.label:10092
+#: field.rccbs.patron_county.label:10291
 msgid "User County"
 msgstr ""
 
-#: field.acqf.tags.label:7321
+#: field.acqf.tags.label:7515
 msgid "Tags"
 msgstr ""
 
-#: field.combcirc.usr_home_ou.label:3774 field.acirc.usr_home_ou.label:3847
+#: field.combcirc.usr_home_ou.label:3806 field.acirc.usr_home_ou.label:3879
+#: field.combahr.usr_home_ou.label:5475 field.aahr.usr_home_ou.label:5533
 msgid "Patron Home Library"
 msgstr ""
 
@@ -5239,22 +5344,22 @@ msgstr ""
 msgid "Remote (3rd party) Account"
 msgstr ""
 
-#: field.stgu.usrname.label:8753 field.stgc.usrname.label:8773
-#: field.stgma.usrname.label:8783 field.stgba.usrname.label:8798
-#: field.stgsc.usrname.label:8813
+#: field.stgu.usrname.label:8946 field.stgc.usrname.label:8970
+#: field.stgma.usrname.label:8980 field.stgba.usrname.label:8996
+#: field.stgsc.usrname.label:9012
 msgid "User Name"
 msgstr ""
 
-#: field.actsc.default_entries.label:5583
-#: field.actsce.default_entries.label:5820
+#: field.actsc.default_entries.label:5762
+#: field.actsce.default_entries.label:6012
 msgid "Default Entries"
 msgstr ""
 
-#: field.aur.other_info.label:6787
+#: field.aur.other_info.label:6981
 msgid "Other Info"
 msgstr ""
 
-#: field.chmw.requestor_grp.label:1470 field.chmm.requestor_grp.label:1558
+#: field.chmw.requestor_grp.label:1498 field.chmm.requestor_grp.label:1586
 msgid "Requestor Permission Group"
 msgstr ""
 
@@ -5266,186 +5371,184 @@ msgstr ""
 msgid "Virtual Record"
 msgstr ""
 
-#: class.brt.label:3887 field.brsrc.type.label:3924
-#: field.bra.resource_type.label:3957
+#: class.brt.label:3919 field.brsrc.type.label:3956
+#: field.bra.resource_type.label:3989
 msgid "Resource Type"
 msgstr ""
 
-#: field.cxt.xslt.label:2309
+#: field.cxt.xslt.label:2339
 msgid "XSLT"
 msgstr ""
 
-#: field.au.addresses.label:2884
+#: field.au.addresses.label:2915
 msgid "All Addresses"
 msgstr ""
 
-#: field.ccmw.usr_age_upper_bound.label:1510
-#: field.ccmm.usr_age_upper_bound.label:1618
+#: field.ccmw.usr_age_upper_bound.label:1538
+#: field.ccmm.usr_age_upper_bound.label:1646
 msgid "User Age: Upper Bound"
 msgstr ""
 
-#: class.stgsc.label:8809
+#: class.stgsc.label:9008
 msgid "Statistical Category Stage"
 msgstr ""
 
-#: field.aua.post_code.label:3470 field.aal.post_code.label:3498
-#: field.acqpca.post_code.label:7110 field.stgma.post_code.label:8789
-#: field.stgba.post_code.label:8804
-msgid "Postal Code"
+#: field.mrd.vr_format.label:3394
+msgid "Video Recording Format"
 msgstr ""
 
-#: field.acqpo.po_items.label:7705
+#: field.acqpo.po_items.label:7899
 msgid "PO Items"
 msgstr ""
 
-#: field.amtr.matchpoint.label:157 field.chmm.id.label:1549
-#: field.ccmm.id.label:1601
+#: field.amtr.matchpoint.label:157 field.chmm.id.label:1577
+#: field.ccmm.id.label:1629
 msgid "Matchpoint ID"
 msgstr ""
 
-#: field.rccbs.profile_group.label:10097
+#: field.rccbs.profile_group.label:10296
 msgid "User Profile Group"
 msgstr ""
 
-#: class.actscsf.label:5564 class.ascsf.label:6536
+#: class.actscsf.label:5743 class.ascsf.label:6730
 msgid "SIP Statistical Category Field Identifier"
 msgstr ""
 
-#: field.au.performed_circulations.label:2943
+#: field.au.performed_circulations.label:2974
 msgid "Circulations Performed as Staff"
 msgstr ""
 
-#: field.asvr.id.label:2009 field.asva.id.label:6212
+#: field.asvr.id.label:2037 field.asva.id.label:6404
 msgid "Answer ID"
 msgstr ""
 
-#: class.ahrn.label:5371
+#: class.ahrn.label:5433
 msgid "Hold Request Note"
 msgstr ""
 
-#: field.rmobbol.billing_types.label:10399
-#: field.rmobbcol.billing_types.label:10426
-#: field.rmobbhol.billing_types.label:10454
+#: field.rmobbol.billing_types.label:10598
+#: field.rmobbcol.billing_types.label:10625
+#: field.rmobbhol.billing_types.label:10653
 msgid "Billing Types"
 msgstr ""
 
-#: field.au.last_update_time.label:2934
+#: field.au.last_update_time.label:2965
 msgid "Record Last Update Time"
 msgstr ""
 
-#: field.aua.city.label:3466 field.aal.city.label:3494
-#: field.acqpa.city.label:7041 field.acqpca.city.label:7106
-#: field.stgma.city.label:8786 field.stgba.city.label:8801
+#: field.aua.city.label:3498 field.aal.city.label:3526
+#: field.acqpa.city.label:7235 field.acqpca.city.label:7300
+#: field.stgma.city.label:8983 field.stgba.city.label:8999
 msgid "City"
 msgstr ""
 
-#: field.ccm.avg_wait_time.label:1290
+#: field.ccm.avg_wait_time.label:1318
 msgid "Average Wait Time"
 msgstr ""
 
-#: class.crcd.label:2789
+#: class.crcd.label:2820
 msgid "Circulation Duration Rule"
 msgstr ""
 
-#: field.sunit.holds.label:4641 field.acp.holds.label:6058
+#: field.sunit.holds.label:4673 field.acp.holds.label:6250
 msgid "Holds"
 msgstr ""
 
-#: field.sunit.summary_contents.label:4635
+#: field.sunit.summary_contents.label:4667
 msgid "Summary Contents"
 msgstr ""
 
-#: class.rccc.label:9992
+#: class.rccc.label:10191
 msgid "Classic Circulation View"
 msgstr ""
 
-#: field.aihu.id.label:1945 field.ancihu.id.label:1959
+#: field.aihu.id.label:1973 field.ancihu.id.label:1987
 msgid "Use ID"
 msgstr ""
 
-#: field.atc.dest_recv_time.label:1975 field.artc.dest_recv_time.label:6573
-#: field.ahtc.dest_recv_time.label:6608 field.iatc.dest_recv_time.label:10216
+#: field.atc.dest_recv_time.label:2003 field.artc.dest_recv_time.label:6767
+#: field.ahtc.dest_recv_time.label:6802 field.iatc.dest_recv_time.label:10415
 msgid "Receive Date/Time"
 msgstr ""
 
-#: field.asv.poll.label:4999
+#: field.asv.poll.label:5031
 msgid "Poll Style?"
 msgstr ""
 
-#: field.qcb.id.label:9045
+#: field.qcb.id.label:9244
 msgid "Case Branch ID"
 msgstr ""
 
-#: field.sasum.id.label:4733
+#: field.sasum.id.label:4765
 msgid "Native ID"
 msgstr ""
 
-#: class.ocirclist.label:3625
+#: class.ocirclist.label:3657
 msgid "Open Circulation List"
 msgstr ""
 
-#: field.acpn.owning_copy.label:3141
+#: field.acpn.owning_copy.label:3173
 msgid "Copy"
 msgstr ""
 
-#: field.aout.can_have_vols.label:5696
+#: field.aout.can_have_vols.label:5888
 msgid "Can Have Volumes?"
 msgstr ""
 
-#: field.rocit.stop_fines.label:10369
+#: field.rocit.stop_fines.label:10568
 msgid "Stop Fines Reason"
 msgstr ""
 
-#: field.clfm.description.label:5880
+#: field.clfm.description.label:6072
 msgid "LitF Description"
 msgstr ""
 
-#: field.aihu.item.label:1946 class.sitem.label:4670 field.sin.item.label:4717
-#: class.acp.label:6018
+#: field.aihu.item.label:1974 class.sitem.label:4702 field.sin.item.label:4749
+#: class.acp.label:6210
 msgid "Item"
 msgstr ""
 
-#: field.aout.parent.label:5701
+#: field.aout.parent.label:5893
 msgid "Parent Type"
 msgstr ""
 
-#: class.rud.label:8427
+#: class.rud.label:8620
 msgid "User Demographics"
 msgstr ""
 
-#: field.atc.prev_hop.label:1978 field.iatc.prev_hop.label:10219
+#: field.atc.prev_hop.label:2006 field.iatc.prev_hop.label:10418
 msgid "Previous Hop (unused)"
 msgstr ""
 
-#: field.sitem.date_expected.label:4681
+#: field.sitem.date_expected.label:4713
 msgid "Date Expected"
 msgstr ""
 
-#: field.acqpro.holding_tag.label:6860
+#: field.acqpro.holding_tag.label:7054
 msgid "Holdings Tag"
 msgstr ""
 
-#: field.acqct.label.label:6819
+#: field.acqct.label.label:7013
 msgid "Currency Label"
 msgstr ""
 
-#: field.acqfdeb.encumbrance.label:7279
+#: field.acqfdeb.encumbrance.label:7473
 msgid "Encumbrance"
 msgstr ""
 
-#: field.brsrc.tgt_rsrcs.label:3931
+#: field.brsrc.tgt_rsrcs.label:3963
 msgid "Reservation Target Resources"
 msgstr ""
 
-#: field.sunit.dummy_author.label:4618 field.acp.dummy_author.label:6036
+#: field.sunit.dummy_author.label:4650 field.acp.dummy_author.label:6228
 msgid "Precat Dummy Author"
 msgstr ""
 
-#: field.qbv.default_value.label:9006 field.cmfpm.default_val.label:9384
+#: field.qbv.default_value.label:9205 field.cmfpm.default_val.label:9583
 msgid "Default Value"
 msgstr ""
 
-#: field.ausp.staff.label:3442
+#: field.ausp.staff.label:3474
 msgid "Staff"
 msgstr ""
 
@@ -5455,16 +5558,17 @@ msgstr ""
 msgid "Quality"
 msgstr ""
 
-#: field.ahr.cancel_note.label:5144 field.ahopl.cancel_note.label:5271
-#: field.alhr.cancel_note.label:5345
+#: field.ahr.cancel_note.label:5176 field.ahopl.cancel_note.label:5323
+#: field.alhr.cancel_note.label:5406 field.combahr.cancel_note.label:5488
+#: field.aahr.cancel_note.label:5546
 msgid "Cancelation note"
 msgstr ""
 
-#: field.acqedi.vendacct.label:8169
+#: field.acqedi.vendacct.label:8362
 msgid "Vendor Account Number"
 msgstr ""
 
-#: class.combcirc.label:3740
+#: class.combcirc.label:3772
 msgid "Combined Aged and Active Circulations"
 msgstr ""
 
@@ -5472,39 +5576,39 @@ msgstr ""
 msgid "Preserve Specification"
 msgstr ""
 
-#: field.mp.goods_payment.label:6412 field.mbp.goods_payment.label:6440
-#: field.mndp.goods_payment.label:6464
+#: field.mp.goods_payment.label:6604 field.mbp.goods_payment.label:6633
+#: field.mndp.goods_payment.label:6658
 msgid "Goods Payment Detail"
 msgstr ""
 
-#: class.rmobbol.label:10396
+#: class.rmobbol.label:10595
 msgid "Open Circulation Balance by Owning Library"
 msgstr ""
 
-#: class.mndp.label:6453
+#: class.mndp.label:6647
 msgid "Payments: Non-drawer Staff"
 msgstr ""
 
-#: field.uvva.id.label:9610
+#: field.uvva.id.label:9809
 msgid "Attempt ID"
 msgstr ""
 
-#: field.brt.id.label:3889
+#: field.brt.id.label:3921
 msgid "Resource Type ID"
 msgstr ""
 
-#: field.acqfdeb.fund.label:7275 field.acqf.id.label:7307
-#: field.acqfat.fund.label:7354 field.acqfdt.fund.label:7371
-#: field.acqfet.fund.label:7388 field.acqfst.fund.label:7405
-#: field.acqfcb.fund.label:7422 field.acqafat.fund.label:7439
-#: field.acqafet.fund.label:7449 field.acqafst.fund.label:7459
-#: field.acqafsb.fund.label:7469 field.acqafcb.fund.label:7479
-#: field.acqfsb.fund.label:7519 field.acqfsum.id.label:7549
-#: field.acqftm.fund.label:10485
+#: field.acqfdeb.fund.label:7469 field.acqf.id.label:7501
+#: field.acqfat.fund.label:7548 field.acqfdt.fund.label:7565
+#: field.acqfet.fund.label:7582 field.acqfst.fund.label:7599
+#: field.acqfcb.fund.label:7616 field.acqafat.fund.label:7633
+#: field.acqafet.fund.label:7643 field.acqafst.fund.label:7653
+#: field.acqafsb.fund.label:7663 field.acqafcb.fund.label:7673
+#: field.acqfsb.fund.label:7713 field.acqfsum.id.label:7743
+#: field.acqftm.fund.label:10684
 msgid "Fund ID"
 msgstr ""
 
-#: field.acqinv.recv_date.label:6928
+#: field.acqinv.recv_date.label:7122
 msgid "Invoice Date"
 msgstr ""
 
@@ -5512,11 +5616,11 @@ msgstr ""
 msgid "SVF Attribute"
 msgstr ""
 
-#: field.sdist.basic_summary.label:4440 class.sbsum.label:4756
+#: field.sdist.basic_summary.label:4472 class.sbsum.label:4788
 msgid "Basic Issue Summary"
 msgstr ""
 
-#: field.sunit.floating.label:4632 field.acp.floating.label:6051
+#: field.sunit.floating.label:4664 field.acp.floating.label:6243
 msgid "Is Floating"
 msgstr ""
 
@@ -5524,417 +5628,424 @@ msgstr ""
 msgid "Normalizers"
 msgstr ""
 
-#: field.acsaf.axis_maps.label:2097
+#: field.acsaf.axis_maps.label:2127
 msgid "Browse Axis Maps"
 msgstr ""
 
-#: field.rocit.patron_name.label:10372
+#: field.rocit.patron_name.label:10571
 msgid "Patron Name"
 msgstr ""
 
-#: field.aou.phone.label:5406
+#: field.aou.phone.label:5585
 msgid "Phone Number"
 msgstr ""
 
-#: class.atc.label:1971
+#: class.atc.label:1999
 msgid "Copy Transit"
 msgstr ""
 
-#: field.acqie.purchase_order.label:6962 field.acqii.purchase_order.label:6999
-#: class.acqpo.label:7685 field.acqpon.purchase_order.label:7767
-#: field.acqpoi.purchase_order.label:7801 field.jub.purchase_order.label:7840
-#: field.acqlih.purchase_order.label:7901
-#: field.acqedim.purchase_order.label:8207
-#: field.acrlid.purchase_order.label:10154
+#: field.acqie.purchase_order.label:7156 field.acqii.purchase_order.label:7193
+#: class.acqpo.label:7879 field.acqpon.purchase_order.label:7961
+#: field.acqpoi.purchase_order.label:7995 field.jub.purchase_order.label:8034
+#: field.acqlih.purchase_order.label:8095
+#: field.acqedim.purchase_order.label:8400
+#: field.acrlid.purchase_order.label:10353
 msgid "Purchase Order"
 msgstr ""
 
-#: class.mfe.label:3271
+#: class.mfe.label:3303
 msgid "Combined Field Entry View"
 msgstr ""
 
-#: field.acqedim.id.label:8196
+#: field.acqedim.id.label:8389
 msgid "EDI Message ID"
 msgstr ""
 
-#: field.acplg.pos.label:4223 field.acplo.position.label:4271
-#: field.srlu.pos.label:4533 field.aoupa.pos.label:4943
-#: field.acqdfe.position.label:8525
+#: field.acplg.pos.label:4255 field.acplo.position.label:4303
+#: field.srlu.pos.label:4565 field.aoupa.pos.label:4975
+#: field.acqdfe.position.label:8718
 msgid "Position"
 msgstr ""
 
-#: field.sunit.circ_as_type.label:4606 field.acp.circ_as_type.label:6024
+#: field.sunit.circ_as_type.label:4638 field.acp.circ_as_type.label:6216
 msgid "Circulation Type (MARC)"
 msgstr ""
 
-#: field.vibtg.always_apply.label:253
+#: field.vibtg.always_apply.label:251
 msgid "Always Apply"
 msgstr ""
 
-#: class.acqliad.label:8028
+#: class.acqliad.label:8221
 msgid "Line Item Attribute Definition"
 msgstr ""
 
-#: field.aws.id.label:1270 field.au.wsid.label:2894
+#: field.aws.id.label:1298 field.au.wsid.label:2925
 msgid "Workstation ID"
 msgstr ""
 
-#: field.ccmlsm.matchpoint.label:1701
+#: field.ccmlsm.matchpoint.label:1729
 msgid "Matchpoint"
 msgstr ""
 
-#: field.bram.id.label:4005
+#: field.bram.id.label:4037
 msgid "Resource Attribute Map ID"
 msgstr ""
 
-#: field.acqftr.funding_source_credit.label:7149
+#: field.acqftr.funding_source_credit.label:7343
 msgid "Funding Source Credit ID"
 msgstr ""
 
-#: field.acqfy.year_begin.label:7183
+#: field.acqfy.year_begin.label:7377
 msgid "Year Begin"
 msgstr ""
 
-#: field.ahr.usr.label:5133 field.ahopl.usr.label:5260
-#: field.alhr.usr.label:5334
+#: field.ahr.usr.label:5165 field.ahopl.usr.label:5312
+#: field.alhr.usr.label:5395
 msgid "Hold User"
 msgstr ""
 
-#: field.ssub.record_entry.label:4382
+#: field.ssub.record_entry.label:4414
 msgid "Bibliographic Record Entry"
 msgstr ""
 
-#: field.rhcrpbap.holds_everywhere.label:9876
+#: field.rhcrpbap.holds_everywhere.label:10075
 msgid "Active Holds Everywhere"
 msgstr ""
 
-#: field.au.usrgroup.label:2930
+#: field.au.usrgroup.label:2961
 msgid "Family Linkage or other Group"
 msgstr ""
 
-#: field.acqii.fund_debit.label:7000 field.acqpoi.fund_debit.label:7802
-#: field.acqlid.fund_debit.label:8005 field.acqda.fund_debit.label:8592
-msgid "Fund Debit"
+#: class.cwa.label:1552
+msgid "Matrix Weight Association"
 msgstr ""
 
-#: field.cmf.browse_field.label:2379
+#: field.cmf.browse_field.label:2410
 msgid "Browse Field"
 msgstr ""
 
-#: field.aout.depth.label:5697
+#: field.aout.depth.label:5889
 msgid "Type Depth"
 msgstr ""
 
-#: field.acqpro.email.label:6867 field.acqpc.email.label:7080
+#: field.acqpro.email.label:7061 field.acqpc.email.label:7274
 msgid "Email"
 msgstr ""
 
-#: field.rhcrpb.hold_count.label:9828
+#: field.rhcrpb.hold_count.label:10027
 msgid "Active Holds"
 msgstr ""
 
-#: class.lasso.label:4900
+#: class.lasso.label:4932
 msgid "Org Lasso"
 msgstr ""
 
-#: field.au.fund_alloc_pcts.label:2944 field.aou.fund_alloc_pcts.label:5416
-#: field.acqfs.fund_alloc_pcts.label:7209
+#: field.au.fund_alloc_pcts.label:2975 field.aou.fund_alloc_pcts.label:5595
+#: field.acqfs.fund_alloc_pcts.label:7403
 msgid "Fund Allocation Percentages"
 msgstr ""
 
-#: field.combcirc.usr_profile.label:3775 field.acirc.usr_profile.label:3848
-#: field.rccc.profile_group.label:10007
+#: field.combcirc.usr_profile.label:3807 field.acirc.usr_profile.label:3880
+#: field.combahr.usr_profile.label:5476 field.aahr.usr_profile.label:5534
+#: field.rccc.profile_group.label:10206
 msgid "Patron Profile Group"
 msgstr ""
 
-#: field.rccbs.usr_home_ou_shortname.label:10069
+#: field.rccbs.usr_home_ou_shortname.label:10268
 msgid "User Home Library Short (Policy) Name"
 msgstr ""
 
-#: field.acqii.fund.label:7007 class.acqf.label:7305
-#: field.acqfa.fund.label:7581 field.acqpoi.fund.label:7808
-#: field.acqlid.fund.label:8004 field.acqdfe.fund.label:8529
+#: field.acqii.fund.label:7201 class.acqf.label:7499
+#: field.acqfa.fund.label:7775 field.acqpoi.fund.label:8002
+#: field.acqlid.fund.label:8197 field.acqdfe.fund.label:8722
 msgid "Fund"
 msgstr ""
 
-#: field.atb.usr.label:3028
+#: field.atb.usr.label:3059
 msgid "Owning User"
 msgstr ""
 
-#: field.aiit.prorate.label:1307
+#: field.aiit.prorate.label:1335
 msgid "Prorate?"
 msgstr ""
 
-#: field.vii.imported_as.label:276
+#: field.vii.imported_as.label:274
 msgid "Final Target Copy"
 msgstr ""
 
-#: field.acqftm.id.label:10484
+#: field.acqftm.id.label:10683
 msgid "Map Entry ID"
 msgstr ""
 
-#: field.au.prefix.label:2924
+#: field.au.prefix.label:2955
 msgid "Prefix/Title"
 msgstr ""
 
-#: class.cubn.label:5638
+#: class.cubn.label:5817
 msgid "User Bucket Note"
 msgstr ""
 
-#: field.rccc.owning_lib_name.label:10001
+#: field.rccc.owning_lib_name.label:10200
 msgid "Owning Library Short (Policy) Name"
 msgstr ""
 
-#: field.uvu.domain.label:9566
+#: field.uvu.domain.label:9765
 msgid "Domain"
 msgstr ""
 
-#: class.iatc.label:10203
+#: class.iatc.label:10402
 msgid "Inter-system Copy Transit"
 msgstr ""
 
-#: class.acqlisumi.label:10183
+#: class.acqlisumi.label:10382
 msgid "Invoiceable Lineitem Summary"
 msgstr ""
 
-#: field.acqclp.name.label:8704
+#: field.acqclp.name.label:8897
 msgid "Claim Policy Name"
 msgstr ""
 
-#: class.atclean.label:1048
+#: class.atclean.label:1076
 msgid "Trigger Event Cleanup"
 msgstr ""
 
-#: field.acqf.encumbrance_total.label:7324
+#: field.acqf.encumbrance_total.label:7518
 msgid "Encumbrance Total"
 msgstr ""
 
-#: field.bpbcm.peer_type.label:1387
+#: field.bpbcm.peer_type.label:1415
 msgid "Peer Type"
 msgstr ""
 
-#: field.acqda.debit_amount.label:8593
+#: field.acqda.debit_amount.label:8786
 msgid "Debit Amount"
 msgstr ""
 
-#: class.acqafcb.label:7477
-msgid "All Fund Combined Total"
+#: field.cifm.code.label:2488
+msgid "Item Form Code"
 msgstr ""
 
-#: field.ateo.error_events.label:976
+#: field.ateo.error_events.label:1004
 msgid "Error Events"
 msgstr ""
 
-#: field.aun.value.label:1900 field.acpn.value.label:3144
+#: field.aun.value.label:1928 field.acpn.value.label:3176
 msgid "Note Content"
 msgstr ""
 
-#: field.sdist.holding_lib.label:4429
+#: field.sdist.holding_lib.label:4461
 msgid "Holding Lib"
 msgstr ""
 
-#: field.vii.priv_note.label:295 field.viiad.priv_note.label:346
+#: field.vii.priv_note.label:293 field.viiad.priv_note.label:344
 msgid "Private Note"
 msgstr ""
 
-#: field.qxp.literal.label:9020 field.xbool.literal.label:9157
-#: field.xnum.literal.label:9294 field.xstr.literal.label:9339
+#: field.qxp.literal.label:9219 field.xbool.literal.label:9356
+#: field.xnum.literal.label:9493 field.xstr.literal.label:9538
 msgid "Literal"
 msgstr ""
 
-#: field.acqpron.value.label:6898 field.acqlin.value.label:7967
+#: field.acqpron.value.label:7092 field.acqlin.value.label:8160
 msgid "Note Value"
 msgstr ""
 
-#: field.ahr.current_shelf_lib.label:5149
-#: field.ahopl.current_shelf_lib.label:5276
-#: field.alhr.current_shelf_lib.label:5350
+#: field.ahr.current_shelf_lib.label:5181
+#: field.ahopl.current_shelf_lib.label:5328
+#: field.alhr.current_shelf_lib.label:5411
+#: field.combahr.current_shelf_lib.label:5492
+#: field.aahr.current_shelf_lib.label:5550
 msgid "Current Shelf Lib"
 msgstr ""
 
-#: field.acqfa.id.label:7580 field.acqfap.id.label:7613
+#: field.acqfa.id.label:7774 field.acqfap.id.label:7807
 msgid "Allocation ID"
 msgstr ""
 
-#: class.xbind.label:9137
+#: class.xbind.label:9336
 msgid "Bind Variable Expression"
 msgstr ""
 
-#: field.sra.bump_type.label:4885
+#: field.sra.bump_type.label:4917
 msgid "Bump Type"
 msgstr ""
 
-#: field.brsrc.curr_rsrcs.label:3932
+#: field.brsrc.curr_rsrcs.label:3964
 msgid "Reservation Current Resources"
 msgstr ""
 
-#: class.artc.label:6569
+#: class.artc.label:6763
 msgid "Reservation Transit"
 msgstr ""
 
-#: field.actsced.owner.label:5833
+#: field.actsced.owner.label:6025
 msgid "Default for Owner"
 msgstr ""
 
-#: field.auoi.usr.label:713 field.aun.usr.label:1899 field.aupr.usr.label:1911
-#: field.aus.usr.label:1923 field.auact.usr.label:3009
-#: field.ausp.usr.label:3441 field.aua.usr.label:3474
-#: field.bresv.usr.label:4036 field.ac.usr.label:5551 field.mg.usr.label:5751
-#: field.mbt.usr.label:5791 field.actscecm.target_usr.label:6305
-#: field.aur.usr.label:6765 field.acqliuad.usr.label:8078
-#: field.uvva.usr.label:9611
+#: field.auoi.usr.label:713 field.aun.usr.label:1927 field.aupr.usr.label:1939
+#: field.aus.usr.label:1951 field.auact.usr.label:3040
+#: field.ausp.usr.label:3473 field.aua.usr.label:3506
+#: field.bresv.usr.label:4068 field.ac.usr.label:5730 field.mg.usr.label:5943
+#: field.mbt.usr.label:5983 field.actscecm.target_usr.label:6497
+#: field.aur.usr.label:6959 field.acqliuad.usr.label:8271
+#: field.uvva.usr.label:9810
 msgid "User"
 msgstr ""
 
-#: field.atul.update_process.label:1242
+#: field.atul.update_process.label:1270
 msgid "Event Update PID"
 msgstr ""
 
-#: field.rccbs.billing_location_name.label:10066
+#: field.rccbs.billing_location_name.label:10265
 msgid "Billing Location Name"
 msgstr ""
 
-#: field.afs.stored_query.label:8831 class.qsq.label:8917
+#: field.afs.stored_query.label:9030 class.qsq.label:9116
 msgid "Stored Query"
 msgstr ""
 
-#: field.acqft.id.label:10464
+#: field.acqft.id.label:10663
 msgid "Fund Tag ID"
 msgstr ""
 
-#: field.cxt.namespace_uri.label:2307
+#: field.cxt.namespace_uri.label:2337
 msgid "Namespace URI"
 msgstr ""
 
-#: field.acqpoh.audit_time.label:7732 field.acqlih.audit_time.label:7894
+#: field.acqpoh.audit_time.label:7926 field.acqlih.audit_time.label:8088
 msgid "Audit Time"
 msgstr ""
 
-#: field.acqf.debit_total.label:7323
+#: field.acqf.debit_total.label:7517
 msgid "Debit Total"
 msgstr ""
 
-#: field.sra.field.label:4884
+#: field.sra.field.label:4916
 msgid "Index Field"
 msgstr ""
 
-#: class.xnum.label:9288
+#: class.xnum.label:9487
 msgid "Number Expression"
 msgstr ""
 
-#: field.aur.pubdate.label:6785
+#: field.aur.pubdate.label:6979
 msgid "Publication Date"
 msgstr ""
 
-#: field.au.mailing_address.label:2918 field.aal.mailing_address.label:3499
-#: field.aou.mailing_address.label:5400
+#: field.au.mailing_address.label:2949 field.aal.mailing_address.label:3531
+#: field.aou.mailing_address.label:5579
 msgid "Mailing Address"
 msgstr ""
 
-#: field.uvu.url_selector.label:9559
+#: field.uvu.url_selector.label:9758
 msgid "URL Selector"
 msgstr ""
 
-#: field.acqmapinv.po_item.label:10561
+#: field.acqmapinv.po_item.label:10760
 msgid "Purchase Order Item ID"
 msgstr ""
 
-#: class.acqdf.label:8499 field.acqdfa.formula.label:8563
+#: class.acqdf.label:8692 field.acqdfa.formula.label:8756
 msgid "Distribution Formula"
 msgstr ""
 
-#: field.acsaf.main_entry.label:2087
+#: field.acsaf.main_entry.label:2115
 msgid "Main Entry"
 msgstr ""
 
-#: field.acqexr.to_currency.label:6836
+#: field.acqexr.to_currency.label:7030
 msgid "To Currency"
 msgstr ""
 
-#: field.rsr.topic_subject.label:8414
+#: field.rsr.topic_subject.label:8607
 msgid "Topic Subjects (normalized)"
 msgstr ""
 
-#: field.cfdi.key.label:9691
+#: class.aahr.label:5513
+msgid "Aged Hold Request"
+msgstr ""
+
+#: field.cfdi.key.label:9890
 msgid "Interface Key"
 msgstr ""
 
-#: class.acqfscred.label:7228
+#: class.acqfscred.label:7422
 msgid "Credit to Funding Source"
 msgstr ""
 
-#: field.vii.location.label:283 field.viiad.location.label:334
-#: field.circ.copy_location.label:3706 field.combcirc.copy_location.label:3778
-#: field.acirc.copy_location.label:3851 field.sunit.location.label:4625
-#: field.acp.location.label:6044 field.rccc.shelving_location.label:10006
+#: field.vii.location.label:281 field.viiad.location.label:332
+#: field.circ.copy_location.label:3738 field.combcirc.copy_location.label:3810
+#: field.acirc.copy_location.label:3883 field.sunit.location.label:4657
+#: field.acp.location.label:6236 field.rccc.shelving_location.label:10205
 msgid "Shelving Location"
 msgstr ""
 
-#: field.chmw.pickup_ou.label:1466 field.chmm.pickup_ou.label:1554
-#: field.bresv.pickup_lib.label:4060 field.ahr.pickup_lib.label:5125
-#: field.ahopl.pickup_lib.label:5252 field.alhr.pickup_lib.label:5326
-#: field.aur.pickup_lib.label:6768 field.rhcrpbap.pickup_lib.label:9873
+#: field.chmw.pickup_ou.label:1494 field.chmm.pickup_ou.label:1582
+#: field.bresv.pickup_lib.label:4092 field.ahr.pickup_lib.label:5157
+#: field.ahopl.pickup_lib.label:5304 field.alhr.pickup_lib.label:5387
+#: field.combahr.pickup_lib.label:5470 field.aahr.pickup_lib.label:5528
+#: field.aur.pickup_lib.label:6962 field.rhcrpbap.pickup_lib.label:10072
 msgid "Pickup Library"
 msgstr ""
 
-#: field.actsced.stat_cat_entry.label:5831
+#: field.actsced.stat_cat_entry.label:6023
 msgid "Default Entry Value"
 msgstr ""
 
-#: field.bre.keyword_field_entries.label:2658
+#: field.bre.keyword_field_entries.label:2689
 msgid "Indexed Keyword Field Entries"
 msgstr ""
 
-#: class.rxbt.label:8458
+#: class.rxbt.label:8651
 msgid "Transaction Billing Totals"
 msgstr ""
 
-#: field.au.home_ou.label:2911 field.stgu.home_ou.label:8763
+#: field.au.home_ou.label:2942 field.stgu.home_ou.label:8956
 msgid "Home Library"
 msgstr ""
 
-#: field.cit.name.label:1807
+#: field.cit.name.label:1835
 msgid "Identification Name"
 msgstr ""
 
-#: field.sunit.cost.label:4633 field.acp.cost.label:6052
+#: field.sunit.cost.label:4665 field.acp.cost.label:6244
 msgid "Cost"
 msgstr ""
 
-#: field.mbt.circulation.label:5796
+#: field.mbt.circulation.label:5988
 msgid "Circulation Billing link"
 msgstr ""
 
-#: field.atc.copy_status.label:1973 field.iatc.copy_status.label:10214
+#: field.atc.copy_status.label:2001 field.iatc.copy_status.label:10413
 msgid "Pretransit Copy Status"
 msgstr ""
 
-#: field.ccmw.copy_owning_lib.label:1498 field.ccmm.copy_owning_lib.label:1606
+#: field.ccmw.copy_owning_lib.label:1526 field.ccmm.copy_owning_lib.label:1634
 msgid "Copy Owning Lib"
 msgstr ""
 
-#: field.qsq.offset_count.label:8927
+#: field.qsq.offset_count.label:9126
 msgid "OFFSET count"
 msgstr ""
 
-#: field.qxp.type.label:9016
+#: field.qxp.type.label:9215
 msgid "Expression Type"
 msgstr ""
 
-#: field.acpl.checkin_alert.label:4200
+#: field.acpl.checkin_alert.label:4232
 msgid "Checkin Alert"
 msgstr ""
 
-#: field.aufhl.count.label:8857 field.aufhil.count.label:8879
-#: field.aufhol.count.label:8909
+#: field.aufhl.count.label:9056 field.aufhil.count.label:9078
+#: field.aufhol.count.label:9108
 msgid "Loop Count"
 msgstr ""
 
-#: field.ahn.notify_staff.label:4179
+#: field.ahn.notify_staff.label:4211
 msgid "Notifying Staff"
 msgstr ""
 
-#: field.cbho.htime.label:2406
+#: field.cbho.htime.label:2437
 msgid "Copy Has Circulated From Home Lately"
 msgstr ""
 
@@ -5942,119 +6053,121 @@ msgstr ""
 msgid "Is Simple Selector"
 msgstr ""
 
-#: field.siss.date_published.label:4570
+#: field.siss.date_published.label:4602
 msgid "Date Published"
 msgstr ""
 
-#: field.clfm.value.label:5881
+#: field.clfm.value.label:6073
 msgid "LitF Name"
 msgstr ""
 
-#: field.ahr.shelf_expire_time.label:5147
-#: field.ahopl.shelf_expire_time.label:5274
-#: field.alhr.shelf_expire_time.label:5348
+#: field.ahr.shelf_expire_time.label:5179
+#: field.ahopl.shelf_expire_time.label:5326
+#: field.alhr.shelf_expire_time.label:5409
+#: field.combahr.shelf_expire_time.label:5491
+#: field.aahr.shelf_expire_time.label:5549
 msgid "Shelf Expire Time"
 msgstr ""
 
-#: field.bpbcm.target_copy.label:1389
+#: field.bpbcm.target_copy.label:1417
 msgid "Target Copy"
 msgstr ""
 
-#: field.vii.import_error.label:274 field.vqbr.import_error.label:415
+#: field.vii.import_error.label:272 field.vqbr.import_error.label:415
 #: field.vqar.import_error.label:535
 msgid "Import Error"
 msgstr ""
 
-#: field.ateo.is_error.label:974
+#: field.ateo.is_error.label:1002
 msgid "Is Error"
 msgstr ""
 
-#: class.uvsbrem.label:9478
+#: class.uvsbrem.label:9677
 msgid "URL Verify Session Biblio Record Entry Map"
 msgstr ""
 
-#: field.circ.desk_renewal.label:3674 field.combcirc.desk_renewal.label:3747
-#: field.acirc.desk_renewal.label:3816 field.rodcirc.desk_renewal.label:10292
+#: field.circ.desk_renewal.label:3706 field.combcirc.desk_renewal.label:3779
+#: field.acirc.desk_renewal.label:3848 field.rodcirc.desk_renewal.label:10491
 msgid "Desk Renewal"
 msgstr ""
 
-#: field.acqpro.name.label:6856
+#: field.acqpro.name.label:7050
 msgid "Provider Name"
 msgstr ""
 
-#: field.crahp.age.label:6151
+#: field.crahp.age.label:6343
 msgid "Item Age"
 msgstr ""
 
-#: field.au.ident_type.label:2913 field.stgu.ident_type.label:8757
+#: field.au.ident_type.label:2944 field.stgu.ident_type.label:8950
 msgid "Primary Identification Type"
 msgstr ""
 
-#: field.rccbs.total_owed.label:10081 field.rmocbbol.billed.label:10388
-#: field.rmocbbcol.billed.label:10413 field.rmocbbhol.billed.label:10441
+#: field.rccbs.total_owed.label:10280 field.rmocbbol.billed.label:10587
+#: field.rmocbbcol.billed.label:10612 field.rmocbbhol.billed.label:10640
 msgid "Total Billed"
 msgstr ""
 
-#: field.mbts.xact_start.label:1862 field.mbtslv.xact_start.label:1883
+#: field.mbts.xact_start.label:1890 field.mbtslv.xact_start.label:1911
 msgid "Transaction Start Time"
 msgstr ""
 
-#: field.cust.fm_class.label:3081
-msgid "Fielmapper Class"
+#: field.asc.sip_format.label:5715 field.actsc.sip_format.label:5769
+msgid "SIP Format"
 msgstr ""
 
-#: field.aua.within_city_limits.label:3476
+#: field.aua.within_city_limits.label:3508
 msgid "Within City Limits?"
 msgstr ""
 
-#: field.sbsum.textual_holdings.label:4761
-#: field.sssum.textual_holdings.label:4788
-#: field.sisum.textual_holdings.label:4815
+#: field.sbsum.textual_holdings.label:4793
+#: field.sssum.textual_holdings.label:4820
+#: field.sisum.textual_holdings.label:4847
 msgid "Textual Holdings"
 msgstr ""
 
-#: field.rhrr.hold_type.label:8450
+#: field.rhrr.hold_type.label:8643
 msgid "Hold Request Type"
 msgstr ""
 
-#: class.bpt.label:1368
+#: class.bpt.label:1396
 msgid "Bibliographic Record Peer Type"
 msgstr ""
 
-#: field.acqpo.lineitems.label:7700
+#: field.acqpo.lineitems.label:7894
 msgid "Line Items"
 msgstr ""
 
-#: field.atenv.event_def.label:1067 field.atev.event_def.label:1141
-#: field.atevparam.event_def.label:1165
+#: field.atenv.event_def.label:1095 field.atev.event_def.label:1169
+#: field.atevparam.event_def.label:1193
 msgid "Event Definition"
 msgstr ""
 
-#: field.qxp.right_operand.label:9025 field.xop.right_operand.label:9309
+#: field.qxp.right_operand.label:9224 field.xop.right_operand.label:9508
 msgid "Right Operand"
 msgstr ""
 
-#: field.aouctn.parent_node.label:5483
+#: field.aouctn.parent_node.label:5662
 msgid "Parent"
 msgstr ""
 
-#: class.rssr.label:8377
+#: class.rssr.label:8570
 msgid "Simple Record Extracts"
 msgstr ""
 
-#: class.acqdfa.label:8558
+#: class.acqdfa.label:8751
 msgid "Distribution Formula Application"
 msgstr ""
 
-#: field.acsbf.authority_field.label:2120
+#: field.acsbf.authority_field.label:2150
 msgid "Controlling Authority Field"
 msgstr ""
 
-#: field.acpn.create_date.label:3138
+#: field.acpn.create_date.label:3170
 msgid "Note Creation Date/Time"
 msgstr ""
 
-#: field.atev.update_process.label:1152
+#: field.atev.update_process.label:1180
 msgid "Update Process"
 msgstr ""
 
@@ -6062,67 +6175,67 @@ msgstr ""
 msgid "Region"
 msgstr ""
 
-#: field.atul.complete_time.label:1241
+#: field.atul.complete_time.label:1269
 msgid "Event Complete Time"
 msgstr ""
 
-#: field.cfdfs.interface.label:9715
+#: field.cfdfs.interface.label:9914
 msgid "Interface"
 msgstr ""
 
-#: class.mbp.label:6425
+#: class.mbp.label:6617
 msgid "Payments: Brick-and-mortar"
 msgstr ""
 
-#: field.uvu.id.label:9555
+#: field.uvu.id.label:9754
 msgid "URL ID"
 msgstr ""
 
-#: field.rccc.dewey.label:10011
+#: field.rccc.dewey.label:10210
 msgid "Call Number Dewey/Prefix"
 msgstr ""
 
-#: field.ath.passive.label:995
-msgid "Passive"
+#: field.acqfsrcat.amount.label:7694
+msgid "Total Allocated from Funding Source"
 msgstr ""
 
-#: field.aout.org_units.label:5702
+#: field.aout.org_units.label:5894
 msgid "Org Units"
 msgstr ""
 
-#: field.uvu.ord.label:9562
+#: field.uvu.ord.label:9761
 msgid "Ordinal Position"
 msgstr ""
 
-#: field.qfpd.function_id.label:8990 field.qxp.function_id.label:9026
-#: field.xfunc.function_id.label:9234
+#: field.qfpd.function_id.label:9189 field.qxp.function_id.label:9225
+#: field.xfunc.function_id.label:9433
 msgid "Function ID"
 msgstr ""
 
-#: field.acsbf.id.label:2119
+#: field.acsbf.id.label:2149
 msgid "Controlled Bib Field ID"
 msgstr ""
 
-#: field.atevdef.template.label:1108 class.rt.label:8290
+#: field.atevdef.template.label:1136 class.rt.label:8483
 msgid "Template"
 msgstr ""
 
-#: field.ccm.magnetic_media.label:1289
+#: field.ccm.magnetic_media.label:1317
 msgid "Magnetic Media"
 msgstr ""
 
-#: class.acqpl.label:7637 field.jub.picklist.label:7839
-#: field.acqlih.picklist.label:7902
+#: class.acqpl.label:7831 field.jub.picklist.label:8033
+#: field.acqlih.picklist.label:8096
 msgid "Selection List"
 msgstr ""
 
-#: field.ssub.issuances.label:4385
+#: field.ssub.issuances.label:4417
 msgid "Issuances"
 msgstr ""
 
-#: field.jub.item_count.label:7855 field.acqdfe.item_count.label:8526
-#: field.acqlisum.item_count.label:10170
-#: field.acqlisumi.item_count.label:10190
+#: field.jub.item_count.label:8049 field.acqdfe.item_count.label:8719
+#: field.acqlisum.item_count.label:10369
+#: field.acqlisumi.item_count.label:10389
 msgid "Item Count"
 msgstr ""
 
@@ -6130,89 +6243,89 @@ msgstr ""
 msgid "Error Code"
 msgstr ""
 
-#: field.atev.run_time.label:1143
+#: field.atev.run_time.label:1171
 msgid "Run Time"
 msgstr ""
 
-#: field.sstr.routing_list_users.label:4506
+#: field.sstr.routing_list_users.label:4538
 msgid "Routing List Users"
 msgstr ""
 
-#: field.acqftr.src_amount.label:7143
+#: field.acqftr.src_amount.label:7337
 msgid "Source Amount"
 msgstr ""
 
-#: field.asvq.responses.label:1823 field.asv.responses.label:4992
+#: field.asvq.responses.label:1851 field.asv.responses.label:5024
 msgid "Responses"
 msgstr ""
 
-#: field.uvu.verifications.label:9572
+#: field.uvu.verifications.label:9771
 msgid "Verifications"
 msgstr ""
 
-#: field.aur.publisher.label:6783
+#: field.aur.publisher.label:6977
 msgid "Publisher"
 msgstr ""
 
-#: field.qxp.negate.label:9029 field.xbet.negate.label:9129
-#: field.xbool.negate.label:9158 field.xcase.negate.label:9172
-#: field.xcast.negate.label:9188 field.xcol.negate.label:9205
-#: field.xex.negate.label:9219 field.xfunc.negate.label:9235
-#: field.xin.negate.label:9251 field.xisnull.negate.label:9267
-#: field.xnull.negate.label:9281 field.xop.negate.label:9310
-#: field.xser.negate.label:9326
+#: field.qxp.negate.label:9228 field.xbet.negate.label:9328
+#: field.xbool.negate.label:9357 field.xcase.negate.label:9371
+#: field.xcast.negate.label:9387 field.xcol.negate.label:9404
+#: field.xex.negate.label:9418 field.xfunc.negate.label:9434
+#: field.xin.negate.label:9450 field.xisnull.negate.label:9466
+#: field.xnull.negate.label:9480 field.xop.negate.label:9509
+#: field.xser.negate.label:9525
 msgid "Negate?"
 msgstr ""
 
-#: class.csg.label:3060 field.cust.grp.label:3082
+#: class.csg.label:3091 field.cust.grp.label:3113
 msgid "Settings Group"
 msgstr ""
 
-#: field.sunit.active_date.label:4612 field.acp.active_date.label:6030
+#: field.sunit.active_date.label:4644 field.acp.active_date.label:6222
 msgid "Active Date/Time"
 msgstr ""
 
-#: field.auri.call_numbers.label:2571 field.bre.call_numbers.label:2637
+#: field.auri.call_numbers.label:2602 field.bre.call_numbers.label:2668
 msgid "Call Numbers"
 msgstr ""
 
-#: field.mp.payment_ts.label:6402 field.mbp.payment_ts.label:6430
-#: field.mndp.payment_ts.label:6458 field.mdp.payment_ts.label:6480
+#: field.mp.payment_ts.label:6594 field.mbp.payment_ts.label:6622
+#: field.mndp.payment_ts.label:6652 field.mdp.payment_ts.label:6674
 msgid "Payment Date/Time"
 msgstr ""
 
-#: field.aupr.request_time.label:1912 field.bresv.request_time.label:4045
-#: field.uvuv.req_time.label:9652
+#: field.aupr.request_time.label:1940 field.bresv.request_time.label:4077
+#: field.uvuv.req_time.label:9851
 msgid "Request Time"
 msgstr ""
 
-#: field.acqf.balance_warning_percent.label:7316
-#: field.acqfsum.balance_warning_percent.label:7558
+#: field.acqf.balance_warning_percent.label:7510
+#: field.acqfsum.balance_warning_percent.label:7752
 msgid "Balance Warning Percent"
 msgstr ""
 
-#: field.aur.max_fee.label:6776
+#: field.aur.max_fee.label:6970
 msgid "Max Acceptable Fee"
 msgstr ""
 
-#: class.sstr.label:4500 field.srlu.stream.label:4532
-#: field.sitem.stream.label:4678
+#: class.sstr.label:4532 field.srlu.stream.label:4564
+#: field.sitem.stream.label:4710
 msgid "Stream"
 msgstr ""
 
-#: field.mrd.control_type.label:3352
+#: field.mrd.control_type.label:3384
 msgid "Ctrl"
 msgstr ""
 
-#: field.qxp.cast_type.label:9028 field.xcast.cast_type.label:9187
+#: field.qxp.cast_type.label:9227 field.xcast.cast_type.label:9386
 msgid "Cast Type"
 msgstr ""
 
-#: class.ancihu.label:1957
+#: class.ancihu.label:1985
 msgid "Non-cataloged In House Use"
 msgstr ""
 
-#: field.sdist.bind_unit_template.label:4434
+#: field.sdist.bind_unit_template.label:4466
 msgid "Bind Unit Template"
 msgstr ""
 
@@ -6220,96 +6333,97 @@ msgstr ""
 msgid "Required Parameter Count"
 msgstr ""
 
-#: field.sasum.show_generated.label:4736 field.sbsum.show_generated.label:4762
-#: field.sssum.show_generated.label:4789 field.sisum.show_generated.label:4816
+#: field.sasum.show_generated.label:4768 field.sbsum.show_generated.label:4794
+#: field.sssum.show_generated.label:4821 field.sisum.show_generated.label:4848
 msgid "Show Generated?"
 msgstr ""
 
-#: field.qxp.id.label:9015 field.xbet.id.label:9124 field.xbind.id.label:9139
-#: field.xbool.id.label:9153 field.xcase.id.label:9167
-#: field.xcast.id.label:9182 field.xcol.id.label:9199 field.xex.id.label:9214
-#: field.xfunc.id.label:9229 field.xin.id.label:9245
-#: field.xisnull.id.label:9262 field.xnull.id.label:9277
-#: field.xnum.id.label:9290 field.xop.id.label:9303 field.xser.id.label:9321
-#: field.xstr.id.label:9335 field.xsubq.id.label:9348
+#: field.qxp.id.label:9214 field.xbet.id.label:9323 field.xbind.id.label:9338
+#: field.xbool.id.label:9352 field.xcase.id.label:9366
+#: field.xcast.id.label:9381 field.xcol.id.label:9398 field.xex.id.label:9413
+#: field.xfunc.id.label:9428 field.xin.id.label:9444
+#: field.xisnull.id.label:9461 field.xnull.id.label:9476
+#: field.xnum.id.label:9489 field.xop.id.label:9502 field.xser.id.label:9520
+#: field.xstr.id.label:9534 field.xsubq.id.label:9547
 msgid "Expression ID"
 msgstr ""
 
-#: field.mbts.total_owed.label:1858 field.mbtslv.total_owed.label:1879
+#: field.mbts.total_owed.label:1886 field.mbtslv.total_owed.label:1907
 msgid "Total Owed"
 msgstr ""
 
-#: field.mbts.last_payment_ts.label:1856
-#: field.mbtslv.last_payment_ts.label:1877
+#: field.mbts.last_payment_ts.label:1884
+#: field.mbtslv.last_payment_ts.label:1905
 msgid "Last Payment Timestamp"
 msgstr ""
 
-#: field.atul.async_output.label:1247
+#: field.atul.async_output.label:1275
 msgid "Event Async Output"
 msgstr ""
 
-#: class.rsr.label:8396
+#: class.rsr.label:8589
 msgid "Simple Record"
 msgstr ""
 
-#: class.rmocbbcol.label:10407
+#: class.rmocbbcol.label:10606
 msgid "Open Circulation Billing by Circulating Library and Owning Library"
 msgstr ""
 
-#: field.asvr.answer.label:2006
+#: field.asvr.answer.label:2034
 msgid "Answer"
 msgstr ""
 
-#: class.xcase.label:9165
+#: class.xcase.label:9364
 msgid "Case Expression"
 msgstr ""
 
-#: field.vii.status.label:282 field.viiad.status.label:333
-#: field.sitem.status.label:4683 field.ahr.status.label:5110
-#: field.ahopl.status.label:5237 field.alhr.status.label:5313
-#: field.act.status.label:6112 field.acqedim.status.label:8203
-#: field.afs.status.label:8825 field.rocit.status.label:10368
+#: field.vii.status.label:280 field.viiad.status.label:331
+#: field.sitem.status.label:4715 field.ahr.status.label:5142
+#: field.ahopl.status.label:5289 field.alhr.status.label:5374
+#: field.combahr.status.label:5457 field.aahr.status.label:5515
+#: field.act.status.label:6304 field.acqedim.status.label:8396
+#: field.afs.status.label:9024 field.rocit.status.label:10567
 msgid "Status"
 msgstr ""
 
-#: field.rocit.patron_barcode.label:10371
+#: field.rocit.patron_barcode.label:10570
 msgid "Patron Barcode"
 msgstr ""
 
-#: field.acqftr.dest_amount.label:7145
+#: field.acqftr.dest_amount.label:7339
 msgid "Destination Amount"
 msgstr ""
 
-#: field.cmfinm.field.label:763 class.cmf.label:2367
-#: field.cmfts.metabib_field.label:9967
+#: field.cmfinm.field.label:763 field.czifm.metabib_field.label:976
+#: class.cmf.label:2398 field.cmfts.metabib_field.label:10166
 msgid "Metabib Field"
 msgstr ""
 
-#: field.uvs.search.label:9457
+#: field.uvs.search.label:9656
 msgid "Search Constraints"
 msgstr ""
 
-#: class.mbts.label:1848
+#: class.mbts.label:1876
 msgid "Billable Transaction Summary"
 msgstr ""
 
-#: field.acqfscred.id.label:7230
+#: field.acqfscred.id.label:7424
 msgid "Credit ID"
 msgstr ""
 
-#: field.mrd.item_lang.label:3356
+#: field.mrd.item_lang.label:3388
 msgid "Lang"
 msgstr ""
 
-#: field.cblvl.value.label:4868
+#: field.cblvl.value.label:4900
 msgid "Bib Level"
 msgstr ""
 
-#: field.mrd.id.label:3354
+#: field.mrd.id.label:3386
 msgid "Descriptor ID"
 msgstr ""
 
-#: class.cbrebt.label:1412
+#: class.cbrebt.label:1440
 msgid "Bibliographic Record Bucket Type"
 msgstr ""
 
@@ -6317,95 +6431,99 @@ msgstr ""
 msgid "Import/Overlay Fields for Removal"
 msgstr ""
 
-#: field.chmw.item_age.label:1478 field.ccmw.item_age.label:1511
-#: field.chmm.item_age.label:1565 field.ccmm.item_age.label:1619
+#: field.chmw.item_age.label:1506 field.ccmw.item_age.label:1539
+#: field.chmm.item_age.label:1593 field.ccmm.item_age.label:1647
 msgid "Item Age <"
 msgstr ""
 
-#: field.viiad.id.label:325 field.atenv.id.label:1066
-#: field.atevdef.id.label:1096 field.acqliad.id.label:8030
-#: field.acqlimad.id.label:8045 field.acqligad.id.label:8065
-#: field.acqliuad.id.label:8075 field.acqlipad.id.label:8088
-#: field.acqlilad.id.label:8148
+#: field.viiad.id.label:323 field.atenv.id.label:1094
+#: field.atevdef.id.label:1124 field.acqliad.id.label:8223
+#: field.acqlimad.id.label:8238 field.acqligad.id.label:8258
+#: field.acqliuad.id.label:8268 field.acqlipad.id.label:8281
+#: field.acqlilad.id.label:8341
 msgid "Definition ID"
 msgstr ""
 
-#: class.aaactsc.label:10620
+#: class.aaactsc.label:10819
 msgid "Circ-Archived Patron Statistical Category Entries"
 msgstr ""
 
-#: class.erfcc.label:8490
+#: class.erfcc.label:8683
 msgid "Total Circulation Count, Including Legacy"
 msgstr ""
 
-#: field.qsf.id.label:8964
+#: field.qsf.id.label:9163
 msgid "Subfield ID"
 msgstr ""
 
-#: field.aoupa.item_owning_lib.label:4938
+#: field.aoupa.item_owning_lib.label:4970
 msgid "Item Owning Lib"
 msgstr ""
 
-#: field.rmsr.biblio_record.label:8366 field.rssr.biblio_record.label:8390
-#: field.rsr.biblio_record.label:8420
+#: field.rmsr.biblio_record.label:8559 field.rssr.biblio_record.label:8583
+#: field.rsr.biblio_record.label:8613
 msgid "Full Bibliographic record"
 msgstr ""
 
+#: field.rccc.patron_id.label:10211
+msgid "Patron Link"
+msgstr ""
+
 #: field.vqbr.marc.label:411 field.vqar.marc.label:532
-#: field.sre.marc.label:4315 field.jub.marc.label:7844
-#: field.acqlih.marc.label:7906
+#: field.sre.marc.label:4347 field.jub.marc.label:8038
+#: field.acqlih.marc.label:8100
 msgid "MARC"
 msgstr ""
 
-#: field.aou.resv_requests.label:5419
+#: field.aou.resv_requests.label:5598
 msgid "Reservation Requests"
 msgstr ""
 
-#: class.aihu.label:1943
+#: class.aihu.label:1971
 msgid "In House Use"
 msgstr ""
 
-#: field.jub.lineitem_details.label:7857
+#: field.jub.lineitem_details.label:8051
 msgid "Line Item Details"
 msgstr ""
 
-#: field.cmc.b_weight.label:2349
+#: field.cmc.b_weight.label:2380
 msgid "B Weight"
 msgstr ""
 
-#: field.qsq.limit_count.label:8926
+#: field.qsq.limit_count.label:9125
 msgid "LIMIT count"
 msgstr ""
 
-#: field.aou.ill_address.label:5399
+#: field.aou.ill_address.label:5578
 msgid "ILL Receiving Address"
 msgstr ""
 
-#: class.cbrebi.label:6499
+#: class.cbrebi.label:6693
 msgid "Biblio Record Entry Bucket Item"
 msgstr ""
 
-#: class.atcol.label:1008
+#: class.atcol.label:1036
 msgid "Trigger Environment Collector"
 msgstr ""
 
-#: field.rmsr.author.label:8361 field.rssr.author.label:8385
-#: field.rsr.author.label:8406
+#: field.rmsr.author.label:8554 field.rssr.author.label:8578
+#: field.rsr.author.label:8599
 msgid "Author (normalized)"
 msgstr ""
 
-#: field.vii.holdable.label:288 field.viiad.holdable.label:339
+#: field.vii.holdable.label:286 field.viiad.holdable.label:337
 msgid "Holdable"
 msgstr ""
 
-#: field.circ.stop_fines_time.label:3689
-#: field.combcirc.stop_fines_time.label:3762
-#: field.acirc.stop_fines_time.label:3831
-#: field.rodcirc.stop_fines_time.label:10306
+#: field.circ.stop_fines_time.label:3721
+#: field.combcirc.stop_fines_time.label:3794
+#: field.acirc.stop_fines_time.label:3863
+#: field.rodcirc.stop_fines_time.label:10505
 msgid "Fine Stop Date/Time"
 msgstr ""
 
-#: field.acn.copies.label:2523 field.acpl.copies.label:4197
+#: field.acn.copies.label:2554 field.acpl.copies.label:4229
 msgid "Copies"
 msgstr ""
 
@@ -6413,85 +6531,87 @@ msgstr ""
 msgid "Import/Overlay Error Definitions"
 msgstr ""
 
-#: field.ssr.excluded.label:4985
+#: field.ssr.excluded.label:5017
 msgid "Excluded"
 msgstr ""
 
-#: field.uvu.scheme.label:9564
+#: field.uvu.scheme.label:9763
 msgid "Scheme"
 msgstr ""
 
-#: class.acqfap.label:7611
+#: class.acqfap.label:7805
 msgid "Fund Allocation Percent"
 msgstr ""
 
-#: class.aou.label:5393
+#: class.aou.label:5572
 msgid "Organizational Unit"
 msgstr ""
 
-#: field.ancc.circ_time.label:6237 field.rccc.xact_start.label:9997
+#: field.ancc.circ_time.label:6429 field.rccc.xact_start.label:10196
 msgid "Circulation Date/Time"
 msgstr ""
 
-#: class.msefe.label:5610
+#: class.msefe.label:5789
 msgid "Series Field Entry"
 msgstr ""
 
-#: field.ergbhu.id.label:8482
+#: field.ergbhu.id.label:8675
 msgid "Bib ID"
 msgstr ""
 
-#: field.rmsr.issn.label:8365 field.rssr.issn.label:8389
-#: field.rsr.issn.label:8413
+#: field.rmsr.issn.label:8558 field.rssr.issn.label:8582
+#: field.rsr.issn.label:8606
 msgid "ISSN"
 msgstr ""
 
-#: field.ahr.selection_depth.label:5130 field.ahopl.selection_depth.label:5257
-#: field.alhr.selection_depth.label:5331
+#: field.ahr.selection_depth.label:5162 field.ahopl.selection_depth.label:5309
+#: field.alhr.selection_depth.label:5392
+#: field.combahr.selection_depth.label:5479
+#: field.aahr.selection_depth.label:5537
 msgid "Item Selection Depth"
 msgstr ""
 
-#: field.afscv.val.label:8846
+#: field.afscv.val.label:9045
 msgid "Column Value"
 msgstr ""
 
-#: class.bresv.label:4033 field.bravm.reservation.label:4093
+#: class.bresv.label:4065 field.bravm.reservation.label:4125
 msgid "Reservation"
 msgstr ""
 
-#: field.rxpt.unvoided.label:8472
+#: field.rxpt.unvoided.label:8665
 msgid "Unvoided Paid Amount"
 msgstr ""
 
-#: field.acqfdt.amount.label:7372
+#: field.acqfdt.amount.label:7566
 msgid "Total Debit Amount"
 msgstr ""
 
-#: field.cam.code.label:2441
+#: field.cam.code.label:2472
 msgid "Audience Code"
 msgstr ""
 
-#: field.crahp.name.label:6153 field.crmf.name.label:6170
+#: field.crahp.name.label:6345 field.crmf.name.label:6362
 msgid "Rule Name"
 msgstr ""
 
-#: field.rlcd.last_delete_date.label:9764
+#: field.rlcd.last_delete_date.label:9963
 msgid "Delete Date/Time"
 msgstr ""
 
-#: class.atevdef.label:1094
+#: class.atevdef.label:1122
 msgid "Trigger Event Definition"
 msgstr ""
 
-#: field.cbt.default_price.label:6731
+#: field.cbt.default_price.label:6925
 msgid "Default Price"
 msgstr ""
 
-#: class.acns.label:2483
+#: class.acns.label:2514
 msgid "Call Number/Volume Suffix"
 msgstr ""
 
-#: field.uvuv.redirect_to.label:9656
+#: field.uvuv.redirect_to.label:9855
 msgid "Redirected To"
 msgstr ""
 
@@ -6499,28 +6619,28 @@ msgstr ""
 msgid "Failure Part"
 msgstr ""
 
-#: class.mbedm.label:3258
+#: class.mbedm.label:3290
 msgid "Combined Browse Entry Definition Map"
 msgstr ""
 
-#: class.xin.label:9243
+#: class.xin.label:9442
 msgid "In Expression"
 msgstr ""
 
-#: field.cbc.asset.label:10582
+#: field.cbc.asset.label:10781
 msgid "Applies to Items"
 msgstr ""
 
-#: field.acqie.billed_per_item.label:6967
+#: field.acqie.billed_per_item.label:7161
 msgid "Billed Cost per Item"
 msgstr ""
 
-#: field.jub.claim_policy.label:7851 field.acqlih.claim_policy.label:7910
-#: class.acqclp.label:8700
+#: field.jub.claim_policy.label:8045 field.acqlih.claim_policy.label:8104
+#: class.acqclp.label:8893
 msgid "Claim Policy"
 msgstr ""
 
-#: class.acqpron.label:6890
+#: class.acqpron.label:7084
 msgid "Provider Note"
 msgstr ""
 
@@ -6528,61 +6648,65 @@ msgstr ""
 msgid "Allowed Org Unit"
 msgstr ""
 
-#: class.xcast.label:9180
+#: class.xcast.label:9379
 msgid "Cast Expression"
 msgstr ""
 
-#: field.qfr.on_clause.label:9070
+#: field.qfr.on_clause.label:9269
 msgid "On Clause ID"
 msgstr ""
 
-#: field.circ.duration.label:3676 field.combcirc.duration.label:3749
-#: field.acirc.duration.label:3818 field.cnct.circ_duration.label:5682
-#: field.rodcirc.duration.label:10294
+#: field.aalink.target.label:5863
+msgid "Target Record"
+msgstr ""
+
+#: field.circ.duration.label:3708 field.combcirc.duration.label:3781
+#: field.acirc.duration.label:3850 field.cnct.circ_duration.label:5874
+#: field.rodcirc.duration.label:10493
 msgid "Circulation Duration"
 msgstr ""
 
-#: class.xfunc.label:9227
+#: class.xfunc.label:9426
 msgid "Function Expression"
 msgstr ""
 
-#: field.ahrn.body.label:5376
+#: field.ahrn.body.label:5438
 msgid "Body"
 msgstr ""
 
-#: field.acqft.name.label:10466
+#: field.acqft.name.label:10665
 msgid "Fund Tag Name"
 msgstr ""
 
-#: class.ard.label:2236
+#: class.ard.label:2266
 msgid "Authority Record Descriptor"
 msgstr ""
 
-#: class.rs.label:8328
+#: class.rs.label:8521
 msgid "Schedule"
 msgstr ""
 
-#: field.ccmm.recurring_fine_rule.label:1622
-#: field.circ.recurring_fine_rule.label:3685
-#: field.combcirc.recurring_fine_rule.label:3758
-#: field.acirc.recurring_fine_rule.label:3827 class.crrf.label:5977
-#: field.rodcirc.recurring_fine_rule.label:10303
+#: field.ccmm.recurring_fine_rule.label:1650
+#: field.circ.recurring_fine_rule.label:3717
+#: field.combcirc.recurring_fine_rule.label:3790
+#: field.acirc.recurring_fine_rule.label:3859 class.crrf.label:6169
+#: field.rodcirc.recurring_fine_rule.label:10502
 msgid "Recurring Fine Rule"
 msgstr ""
 
-#: field.atev.complete_time.label:1146
+#: field.atev.complete_time.label:1174
 msgid "Complete Time"
 msgstr ""
 
-#: class.acqda.label:8589
+#: class.acqda.label:8782
 msgid "Debit Attribution"
 msgstr ""
 
-#: class.ausp.label:3437
+#: class.ausp.label:3469
 msgid "User Standing Penalty"
 msgstr ""
 
-#: field.acqexr.id.label:6834
+#: field.acqexr.id.label:7028
 msgid "Exchange Rate ID"
 msgstr ""
 
@@ -6590,40 +6714,40 @@ msgstr ""
 msgid "Queued Bib Record Attribute"
 msgstr ""
 
-#: field.aun.create_date.label:1894 field.sunit.create_date.label:4611
-#: field.acp.create_date.label:6029
+#: field.aun.create_date.label:1922 field.sunit.create_date.label:4643
+#: field.acp.create_date.label:6221
 msgid "Creation Date/Time"
 msgstr ""
 
-#: class.vii.label:269
-msgid "Import Item"
+#: class.acqafat.label:7631
+msgid "All Fund Allocation Total"
 msgstr ""
 
-#: field.atevparam.param.label:1166
+#: field.atevparam.param.label:1194
 msgid "Parameter Name"
 msgstr ""
 
-#: class.smhc.label:4742
+#: class.smhc.label:4774
 msgid "Materialized Holding Code"
 msgstr ""
 
-#: field.acqfa.allocator.label:7584 field.acqfap.allocator.label:7618
+#: field.acqfa.allocator.label:7778 field.acqfap.allocator.label:7812
 msgid "Allocating User"
 msgstr ""
 
-#: field.afscv.id.label:8843
+#: field.afscv.id.label:9042
 msgid "Column Value ID"
 msgstr ""
 
-#: class.acqfst.label:7403
+#: class.acqfst.label:7597
 msgid "Total Spent from Fund"
 msgstr ""
 
-#: field.afs.classname.label:8829 field.qfr.class_name.label:9063
+#: field.afs.classname.label:9028 field.qfr.class_name.label:9262
 msgid "Class Name"
 msgstr ""
 
-#: class.pgpt.label:3396
+#: class.pgpt.label:3428
 msgid "Group Penalty Threshold"
 msgstr ""
 
@@ -6631,136 +6755,136 @@ msgstr ""
 msgid "Queued Authority Record Match"
 msgstr ""
 
-#: field.acqfscred.effective_date.label:7235
+#: field.acqfscred.effective_date.label:7429
 msgid "Effective Date"
 msgstr ""
 
-#: field.qfs.function_name.label:8978
+#: field.qfs.function_name.label:9177
 msgid "Function Name"
 msgstr ""
 
-#: class.actsc.label:5580
+#: class.actsc.label:5759
 msgid "User Statistical Category"
 msgstr ""
 
-#: class.auss.label:3516
+#: class.auss.label:3548
 msgid "User Saved Search"
 msgstr ""
 
-#: field.chddv.ceiling_date.label:2835
+#: field.chddv.ceiling_date.label:2866
 msgid "Ceiling Date"
 msgstr ""
 
-#: field.chmm.max_holds.label:1569
+#: field.chmm.max_holds.label:1597
 msgid "Max Holds"
 msgstr ""
 
-#: class.ac.label:5546
+#: class.ac.label:5725
 msgid "Library Card"
 msgstr ""
 
-#: field.aihu.staff.label:1948 field.ancihu.staff.label:1962
+#: field.aihu.staff.label:1976 field.ancihu.staff.label:1990
 msgid "Recording Staff"
 msgstr ""
 
-#: field.acplo.id.label:4268
+#: field.acplo.id.label:4300
 msgid "Location Order ID"
 msgstr ""
 
-#: field.aal.billing_address.label:3500 field.aou.billing_address.label:5396
+#: field.aal.billing_address.label:3532 field.aou.billing_address.label:5575
 msgid "Billing Address"
 msgstr ""
 
-#: field.aurt.label.label:6749
+#: field.aurt.label.label:6943
 msgid "Type Label"
 msgstr ""
 
-#: field.acqedim.jedi.label:8205
+#: field.acqedim.jedi.label:8398
 msgid "JEDI Message Body"
 msgstr ""
 
-#: class.mg.label:5746
+#: class.mg.label:5938
 msgid "Grocery Transaction"
 msgstr ""
 
-#: field.cmsa.alias.label:2324
+#: field.cmsa.alias.label:2354
 msgid "Alias (RegExp)"
 msgstr ""
 
-#: field.aur.phone_notify.label:6770
+#: field.aur.phone_notify.label:6964
 msgid "Phone Notify"
 msgstr ""
 
-#: class.cmc.label:2342 field.cmcts.field_class.label:9942
+#: class.cmc.label:2372 field.cmcts.field_class.label:10141
 msgid "Metabib Class"
 msgstr ""
 
-#: field.qseq.child_query.label:8943
+#: field.qseq.child_query.label:9142
 msgid "Child Query"
 msgstr ""
 
-#: field.acqinv.shipper.label:6927
+#: field.acqinv.shipper.label:7121
 msgid "Shipper"
 msgstr ""
 
-#: field.acqedi.vendcode.label:8170
+#: field.acqedi.vendcode.label:8363
 msgid "Vendor Assigned Code"
 msgstr ""
 
-#: field.cbho.shtime.label:2408
+#: field.cbho.shtime.label:2439
 msgid "Copy Has Been Home At All Lately"
 msgstr ""
 
-#: field.ahopl.usr_display_name.label:5278
+#: field.ahopl.usr_display_name.label:5336
 msgid "User Display Name"
 msgstr ""
 
-#: field.sdist.supplement_summary.label:4441 class.sssum.label:4783
+#: field.sdist.supplement_summary.label:4473 class.sssum.label:4815
 msgid "Supplemental Issue Summary"
 msgstr ""
 
-#: class.rmobbcol.label:10422
+#: class.rmobbcol.label:10621
 msgid "Open Circulation Balance by Circulating Library and Owning Library"
 msgstr ""
 
-#: field.ahr.notify_time.label:5135 field.ahopl.notify_time.label:5262
-#: field.alhr.notify_time.label:5336
+#: field.ahr.notify_time.label:5167 field.ahopl.notify_time.label:5314
+#: field.alhr.notify_time.label:5397
 msgid "Notify Time"
 msgstr ""
 
-#: field.afs.id.label:8822 field.afscv.fieldset.label:8844
+#: field.afs.id.label:9021 field.afscv.fieldset.label:9043
 msgid "Fieldset ID"
 msgstr ""
 
-#: class.ahr.label:5108
+#: class.ahr.label:5140
 msgid "Hold Request"
 msgstr ""
 
-#: field.bre.notes.label:2657
+#: field.bre.notes.label:2688
 msgid "Non-MARC Record Notes"
 msgstr ""
 
-#: field.acqpro.currency_type.label:6858 field.acqfs.currency_type.label:7204
+#: field.acqpro.currency_type.label:7052 field.acqfs.currency_type.label:7398
 msgid "Currency"
 msgstr ""
 
-#: class.rmocbbol.label:10383
+#: class.rmocbbol.label:10582
 msgid "Open Circulation Billing by Owning Library"
 msgstr ""
 
-#: field.acqfap.fund_code.label:7616
+#: field.acqfap.fund_code.label:7810
 msgid "Fund Code"
 msgstr ""
 
-#: class.atevparam.label:1162
+#: class.atevparam.label:1190
 msgid "Trigger Event Parameter"
 msgstr ""
 
-#: field.acp.last_captured_hold.label:6063
+#: field.acp.last_captured_hold.label:6255
 msgid "Last Captured Hold"
 msgstr ""
 
-#: field.bre.deleted.label:2642
+#: field.bre.deleted.label:2673
 msgid "Is Deleted?"
 msgstr ""
 
@@ -6768,182 +6892,187 @@ msgstr ""
 msgid "Circulation Chain Summary"
 msgstr ""
 
-#: field.sunit.circulate.label:4609 field.acp.circulate.label:6027
+#: field.sunit.circulate.label:4641 field.acp.circulate.label:6219
 msgid "Can Circulate"
 msgstr ""
 
-#: class.acqlia.label:7979
+#: class.acqlia.label:8172
 msgid "Line Item Attribute"
 msgstr ""
 
-#: field.ccmw.grp.label:1500 field.ccmm.grp.label:1608 class.pgt.label:6183
+#: field.ccmw.grp.label:1528 field.ccmm.grp.label:1636 class.pgt.label:6375
 msgid "Permission Group"
 msgstr ""
 
-#: field.ahr.id.label:5121 field.ahopl.id.label:5248 field.alhr.id.label:5324
-#: field.ahrn.hold.label:5374 field.rhrr.id.label:8448
-#: field.aufhl.hold.label:8855 field.aufhml.hold.label:8867
-#: field.aufhil.hold.label:8877 field.aufhmxl.hold.label:8889
-#: field.aufhol.hold.label:8907
+#: field.ahr.id.label:5153 field.ahopl.id.label:5300 field.alhr.id.label:5385
+#: field.ahrn.hold.label:5436 field.combahr.id.label:5467
+#: field.aahr.id.label:5525 field.rhrr.id.label:8641
+#: field.aufhl.hold.label:9054 field.aufhml.hold.label:9066
+#: field.aufhil.hold.label:9076 field.aufhmxl.hold.label:9088
+#: field.aufhol.hold.label:9106
 msgid "Hold ID"
 msgstr ""
 
-#: field.mbts.last_billing_ts.label:1853
-#: field.mbtslv.last_billing_ts.label:1874
+#: field.mbts.last_billing_ts.label:1881
+#: field.mbtslv.last_billing_ts.label:1902
 msgid "Last Billing Timestamp"
 msgstr ""
 
-#: class.xnull.label:9275
+#: class.xnull.label:9474
 msgid "Null Expression"
 msgstr ""
 
-#: field.rocit.dewey_block_tens.label:10346
+#: field.rocit.dewey_block_tens.label:10545
 msgid "Dewy Tens"
 msgstr ""
 
-#: field.acqlia.lineitem.label:7982 field.acqdfa.lineitem.label:8564
-#: field.acrlid.lineitem.label:10155 field.acqlisum.lineitem.label:10169
-#: field.acqlisumi.lineitem.label:10189
+#: field.acqlia.lineitem.label:8175 field.acqdfa.lineitem.label:8757
+#: field.acrlid.lineitem.label:10354 field.acqlisum.lineitem.label:10368
+#: field.acqlisumi.lineitem.label:10388
 msgid "Lineitem"
 msgstr ""
 
-#: field.bresv.cancel_time.label:4049
+#: field.bresv.cancel_time.label:4081
 msgid "Cancel Time"
 msgstr ""
 
-#: field.aout.children.label:5694
+#: field.aout.children.label:5886
 msgid "Subordinate Types"
 msgstr ""
 
-#: field.bre.fixed_fields.label:2638
+#: field.bre.fixed_fields.label:2669
 msgid "Fixed Field Entry"
 msgstr ""
 
-#: field.chmw.ref_flag.label:1477 field.ccmw.ref_flag.label:1507
-#: field.chmm.ref_flag.label:1564 field.ccmm.ref_flag.label:1615
-#: field.act.ref.label:6119
+#: field.chmw.ref_flag.label:1505 field.ccmw.ref_flag.label:1535
+#: field.chmm.ref_flag.label:1592 field.ccmm.ref_flag.label:1643
+#: field.act.ref.label:6311
 msgid "Reference?"
 msgstr ""
 
-#: field.rsr.external_uri.label:8419
+#: field.rsr.external_uri.label:8612
 msgid "External URI List (normalized)"
 msgstr ""
 
-#: field.vii.owning_lib.label:278 field.viiad.owning_lib.label:330
-#: field.vms.owner.label:624 field.atevdef.owner.label:1098
-#: field.aws.owning_lib.label:1272 field.chmw.item_owning_ou.label:1467
-#: field.chmm.item_owning_ou.label:1555 field.ccls.owning_lib.label:1679
-#: field.acns.owning_lib.label:2488 field.acnp.owning_lib.label:2507
-#: field.acn.owning_lib.label:2531 field.brt.owner.label:3894
-#: field.brsrc.owner.label:3923 field.bra.owner.label:3955
-#: field.brav.owner.label:3981 field.ssub.owning_lib.label:4379
-#: field.asv.owner.label:4998 field.asc.owner.label:5534
-#: field.actsc.owner.label:5587 field.cnct.owning_lib.label:5686
-#: field.acqliat.owning_lib.label:7943 field.acqlid.owning_lib.label:8006
-#: field.acqdfe.owning_lib.label:8527 field.afs.owning_lib.label:8824
-#: field.uvs.owning_lib.label:9453 field.uvsbrem.owning_lib.label:9494
-#: field.cfdfs.owning_lib.label:9713 field.rmocbbol.owning_lib.label:10386
-#: field.rmobbol.owning_lib.label:10398 field.rmocbbcol.owning_lib.label:10411
-#: field.rmobbcol.owning_lib.label:10425
-#: field.rmocbbhol.owning_lib.label:10439
-#: field.rmobbhol.owning_lib.label:10453
+#: field.vii.owning_lib.label:276 field.viiad.owning_lib.label:328
+#: field.vms.owner.label:624 field.atevdef.owner.label:1126
+#: field.aws.owning_lib.label:1300 field.chmw.item_owning_ou.label:1495
+#: field.chmm.item_owning_ou.label:1583 field.ccls.owning_lib.label:1707
+#: field.acns.owning_lib.label:2519 field.acnp.owning_lib.label:2538
+#: field.acn.owning_lib.label:2562 field.brt.owner.label:3926
+#: field.brsrc.owner.label:3955 field.bra.owner.label:3987
+#: field.brav.owner.label:4013 field.ssub.owning_lib.label:4411
+#: field.asv.owner.label:5030 field.asc.owner.label:5713
+#: field.actsc.owner.label:5766 field.cnct.owning_lib.label:5878
+#: field.acqliat.owning_lib.label:8137 field.acqlid.owning_lib.label:8199
+#: field.acqdfe.owning_lib.label:8720 field.afs.owning_lib.label:9023
+#: field.uvs.owning_lib.label:9652 field.uvsbrem.owning_lib.label:9693
+#: field.cfdfs.owning_lib.label:9912 field.rmocbbol.owning_lib.label:10585
+#: field.rmobbol.owning_lib.label:10597 field.rmocbbcol.owning_lib.label:10610
+#: field.rmobbcol.owning_lib.label:10624
+#: field.rmocbbhol.owning_lib.label:10638
+#: field.rmobbhol.owning_lib.label:10652
 msgid "Owning Library"
 msgstr ""
 
-#: field.rocit.circ_lib_name.label:10358
+#: field.rocit.circ_lib_name.label:10557
 msgid "Circ Lib Name"
 msgstr ""
 
-#: field.actsc.usr_summary.label:5588 class.mus.label:5866
+#: field.actsc.usr_summary.label:5767 class.mus.label:6058
 msgid "User Summary"
 msgstr ""
 
+#: class.combahr.label:5455
+msgid "Combined (Active & Aged) Hold Request"
+msgstr ""
+
 #: field.amtr.success.label:158
 msgid "Success"
 msgstr ""
 
-#: field.circ.circ_staff.label:3673 field.combcirc.circ_staff.label:3746
-#: field.acirc.circ_staff.label:3815 field.ancc.staff.label:6241
-#: field.rodcirc.circ_staff.label:10291
+#: field.circ.circ_staff.label:3705 field.combcirc.circ_staff.label:3778
+#: field.acirc.circ_staff.label:3847 field.ancc.staff.label:6433
+#: field.rodcirc.circ_staff.label:10490
 msgid "Circulating Staff"
 msgstr ""
 
-#: class.asce.label:6524
+#: class.asce.label:6718
 msgid "Item Stat Cat Entry"
 msgstr ""
 
-#: field.cbc.actor.label:10583
+#: field.cbc.actor.label:10782
 msgid "Applies to Users"
 msgstr ""
 
-#: field.mg.billings.label:5754
+#: field.mg.billings.label:5946
 msgid "Billings"
 msgstr ""
 
-#: field.aun.creator.label:1895
+#: field.aun.creator.label:1923
 msgid "Creating Staff"
 msgstr ""
 
-#: field.uvuv.res_time.label:9653
+#: field.uvuv.res_time.label:9852
 msgid "Result Time"
 msgstr ""
 
-#: field.act.floating.label:6127
+#: field.act.floating.label:6319
 msgid "Floating?"
 msgstr ""
 
-#: field.acpl.hold_verify.label:4191
+#: field.acpl.hold_verify.label:4223
 msgid "Hold Capture Requires Verification"
 msgstr ""
 
-#: field.rccbs.last_payment_ts.label:10083
+#: field.rccbs.last_payment_ts.label:10282
 msgid "Last Payment Date/Time"
 msgstr ""
 
-#: field.cuat.egroup.label:2993
+#: field.cuat.egroup.label:3024
 msgid "Activity Group"
 msgstr ""
 
-#: class.ccbn.label:6349
+#: class.ccbn.label:6541
 msgid "Copy Bucket Note"
 msgstr ""
 
-#: field.sunit.copy_number.label:4610 field.acp.copy_number.label:6028
+#: field.sunit.copy_number.label:4642 field.acp.copy_number.label:6220
 msgid "Copy Number on Volume"
 msgstr ""
 
-#: field.mbts.last_payment_type.label:1857
-#: field.mbtslv.last_payment_type.label:1878
-#: field.rccbs.last_payment_type.label:10085
+#: field.mbts.last_payment_type.label:1885
+#: field.mbtslv.last_payment_type.label:1906
+#: field.rccbs.last_payment_type.label:10284
 msgid "Last Payment Type"
 msgstr ""
 
-#: field.brsrc.id.label:3922
+#: field.brsrc.id.label:3954
 msgid "Resource ID"
 msgstr ""
 
-#: class.mgp.label:5911
+#: class.mgp.label:6103
 msgid "Goods Payment"
 msgstr ""
 
-#: field.rmsr.isbn.label:8364 field.rssr.isbn.label:8388
-#: field.rsr.isbn.label:8412
+#: field.rmsr.isbn.label:8557 field.rssr.isbn.label:8581
+#: field.rsr.isbn.label:8605
 msgid "ISBN"
 msgstr ""
 
-#: field.scap.pattern_code.label:4344
+#: field.scap.pattern_code.label:4376
 msgid "Pattern Code"
 msgstr ""
 
-#: field.au.first_given_name.label:2910 field.stgu.first_given_name.label:8758
+#: field.au.first_given_name.label:2941 field.stgu.first_given_name.label:8951
 msgid "First Name"
 msgstr ""
 
-#: field.acqfsum.combined_balance.label:7565
+#: field.acqfsum.combined_balance.label:7759
 msgid "Remaining Balance"
 msgstr ""
 
-#: field.acqpa.post_code.label:7046
+#: field.acqpa.post_code.label:7240
 msgid "Post Code"
 msgstr ""
 
@@ -6951,59 +7080,59 @@ msgstr ""
 msgid "Coded Field"
 msgstr ""
 
-#: field.ctcl.id.label:9929 field.cmcts.ts_config.label:9943
-#: field.cmfts.ts_config.label:9968
+#: field.ctcl.id.label:10128 field.cmcts.ts_config.label:10142
+#: field.cmfts.ts_config.label:10167
 msgid "Text Search Config"
 msgstr ""
 
-#: field.atc.source_send_time.label:1981
-#: field.artc.source_send_time.label:6579
-#: field.ahtc.source_send_time.label:6614
-#: field.iatc.source_send_time.label:10221
+#: field.atc.source_send_time.label:2009
+#: field.artc.source_send_time.label:6773
+#: field.ahtc.source_send_time.label:6808
+#: field.iatc.source_send_time.label:10420
 msgid "Send Date/Time"
 msgstr ""
 
-#: field.vii.barcode.label:290 field.viiad.barcode.label:341
-#: field.brsrc.barcode.label:3926 field.sunit.barcode.label:4604
-#: field.ac.barcode.label:5549 field.acp.barcode.label:6022
-#: field.acqlid.barcode.label:8000 field.stgc.barcode.label:8774
-#: field.rocit.barcode.label:10344
+#: field.vii.barcode.label:288 field.viiad.barcode.label:339
+#: field.brsrc.barcode.label:3958 field.sunit.barcode.label:4636
+#: field.ac.barcode.label:5728 field.acp.barcode.label:6214
+#: field.acqlid.barcode.label:8193 field.stgc.barcode.label:8971
+#: field.rocit.barcode.label:10543
 msgid "Barcode"
 msgstr ""
 
-#: field.bresv.pickup_time.label:4050
+#: field.bresv.pickup_time.label:4082
 msgid "Pickup Time"
 msgstr ""
 
-#: field.rccc.dewey_block_tens.label:10022
+#: field.rccc.dewey_block_tens.label:10221
 msgid "Dewey Block - Tens"
 msgstr ""
 
-#: field.acqfs.credits.label:7208
+#: field.acqfs.credits.label:7402
 msgid "Credits"
 msgstr ""
 
-#: field.au.open_billable_transactions_summary.label:2941
+#: field.au.open_billable_transactions_summary.label:2972
 msgid "Open Billable Transactions"
 msgstr ""
 
-#: field.rsr.genre.label:8416
+#: field.rsr.genre.label:8609
 msgid "Genres (normalized)"
 msgstr ""
 
-#: field.acqf.spent_balance.label:7327
+#: field.acqf.spent_balance.label:7521
 msgid "Spent Balance"
 msgstr ""
 
-#: field.bresv.target_resource_type.label:4056
+#: field.bresv.target_resource_type.label:4088
 msgid "Target Resource Type"
 msgstr ""
 
-#: field.pgt.parent.label:6189
+#: field.pgt.parent.label:6381
 msgid "Parent Group"
 msgstr ""
 
-#: class.acqscle.label:8684
+#: class.acqscle.label:8877
 msgid "Serial Claim Event"
 msgstr ""
 
@@ -7011,7 +7140,7 @@ msgstr ""
 msgid "Joiner"
 msgstr ""
 
-#: field.acqofscred.id.label:7260
+#: field.acqofscred.id.label:7454
 msgid "Ordered Fund Src ID"
 msgstr ""
 
@@ -7019,33 +7148,33 @@ msgstr ""
 msgid "Remove Specification"
 msgstr ""
 
-#: field.acqlid.id.label:7997
+#: field.acqlid.id.label:8190
 msgid "Item Detail ID"
 msgstr ""
 
-#: field.cmc.d_weight.label:2351
+#: field.cmc.d_weight.label:2382
 msgid "D Weight"
 msgstr ""
 
-#: field.acqpro.id.label:6855
+#: field.acqpro.id.label:7049
 msgid "Provider ID"
 msgstr ""
 
-#: class.qsi.label:9094
+#: class.qsi.label:9293
 msgid "Select Item"
 msgstr ""
 
-#: field.cmrtm.type_val.label:9738
+#: field.cmrtm.type_val.label:9937
 msgid "Type Value"
 msgstr ""
 
-#: class.aoucd.label:2769 field.aou.closed_dates.label:5410
+#: class.aoucd.label:2800 field.aou.closed_dates.label:5589
 msgid "Closed Dates"
 msgstr ""
 
-#: field.actsce.value.label:5819 field.rsce1.value.label:10043
-#: field.rsce2.value.label:10054 field.aaactsc.value.label:10625
-#: field.aaasc.value.label:10637
+#: field.actsce.value.label:6011 field.rsce1.value.label:10242
+#: field.rsce2.value.label:10253 field.aaactsc.value.label:10824
+#: field.aaasc.value.label:10836
 msgid "Entry Value"
 msgstr ""
 
@@ -7053,437 +7182,443 @@ msgstr ""
 msgid "Indexing Normalizer"
 msgstr ""
 
-#: field.combcirc.copy_circ_lib.label:3780
-#: field.acirc.copy_circ_lib.label:3853
+#: field.combcirc.copy_circ_lib.label:3812
+#: field.acirc.copy_circ_lib.label:3885
 msgid "Copy Circulating Library"
 msgstr ""
 
-#: field.ssr.checked.label:4982
+#: field.ssr.checked.label:5014
 msgid "Checked"
 msgstr ""
 
-#: field.acqclt.id.label:8605
+#: field.acqclt.id.label:8798
 msgid "Claim Type ID"
 msgstr ""
 
-#: field.vbq.item_attr_def.label:372
+#: field.vbq.item_attr_def.label:370
 msgid "Item Import Attribute Definition"
 msgstr ""
 
-#: field.acp.id.label:6042 field.erfcc.id.label:8492 field.rlc.id.label:9913
-#: field.circbyyr.copy.label:10270 field.rocit.id.label:10342
+#: field.acp.id.label:6234 field.erfcc.id.label:8685 field.rlc.id.label:10112
+#: field.circbyyr.copy.label:10469 field.rocit.id.label:10541
 msgid "Copy ID"
 msgstr ""
 
-#: field.atev.target.label:1140
+#: field.atev.target.label:1168
 msgid "Target ID"
 msgstr ""
 
-#: field.cbc.padding_end.label:10581
+#: field.cbc.padding_end.label:10780
 msgid "Padding At End"
 msgstr ""
 
-#: class.cfdi.label:9684
+#: class.cfdi.label:9883
 msgid "FilterDialog Interface"
 msgstr ""
 
-#: field.aur.author.label:6780 field.acqii.author.label:7003
-#: field.acqpoi.author.label:7805 field.rocit.author.label:10340
+#: field.aur.author.label:6974 field.acqii.author.label:7197
+#: field.acqpoi.author.label:7999 field.rocit.author.label:10539
 msgid "Author"
 msgstr ""
 
-#: class.rmsr.label:8353
+#: class.rmsr.label:8546
 msgid "Fast Simple Record Extracts"
 msgstr ""
 
-#: field.ahr.cancel_cause.label:5143 field.ahopl.cancel_cause.label:5270
-#: field.alhr.cancel_cause.label:5344
+#: field.ahr.cancel_cause.label:5175 field.ahopl.cancel_cause.label:5322
+#: field.alhr.cancel_cause.label:5405 field.combahr.cancel_cause.label:5487
+#: field.aahr.cancel_cause.label:5545
 msgid "Cancelation cause"
 msgstr ""
 
-#: field.viiad.keep.label:329
+#: field.viiad.keep.label:327
 msgid "Keep"
 msgstr ""
 
-#: field.bre.tcn_source.label:2651 field.rmsr.tcn_source.label:8358
-#: field.rssr.tcn_source.label:8382 field.rsr.tcn_source.label:8402
+#: field.bre.tcn_source.label:2682 field.rmsr.tcn_source.label:8551
+#: field.rssr.tcn_source.label:8575 field.rsr.tcn_source.label:8595
 msgid "TCN Source"
 msgstr ""
 
-#: field.aur.mentioned.label:6786
+#: field.aur.mentioned.label:6980
 msgid "Mentioned In"
 msgstr ""
 
-#: field.artc.dest.label:6572 field.ahtc.dest.label:6607
+#: field.artc.dest.label:6766 field.ahtc.dest.label:6801
 msgid "Destination Library"
 msgstr ""
 
-#: field.acqcle.id.label:8658 field.acqscle.id.label:8686
+#: field.acqcle.id.label:8851 field.acqscle.id.label:8879
 msgid "Claim Event ID"
 msgstr ""
 
-#: field.atevdef.group_field.label:1107
+#: field.atevdef.group_field.label:1135
 msgid "Processing Group Context Field"
 msgstr ""
 
-#: field.rocit.pubdate.label:10341
+#: field.rocit.pubdate.label:10540
 msgid "Pubdate"
 msgstr ""
 
-#: field.uvu.item.label:9557
+#: field.uvu.item.label:9756
 msgid "Container Item"
 msgstr ""
 
-#: field.rccc.copy_id.label:9999
+#: field.rccc.copy_id.label:10198
 msgid "Copy Link"
 msgstr ""
 
-#: class.acqphsm.label:8118
+#: class.acqphsm.label:8311
 msgid "Provider Holding Subfield Map"
 msgstr ""
 
-#: field.ssub.distributions.label:4384
+#: field.ssub.distributions.label:4416
 msgid "Distributions"
 msgstr ""
 
-#: field.asvq.question.label:1825 field.asvr.question.label:2010
-#: field.asva.question.label:6213
+#: field.asvq.question.label:1853 field.asvr.question.label:2038
+#: field.asva.question.label:6405
 msgid "Question"
 msgstr ""
 
-#: field.abaafm.id.label:2182
-msgid "Axis Authority Field Map ID"
+#: class.acqfet.label:7580
+msgid "Total Fund Encumbrance"
 msgstr ""
 
-#: field.atc.source.label:1979 field.sre.source.label:4316
-#: field.iatc.source.label:10220
+#: field.atc.source.label:2007 field.sre.source.label:4348
+#: field.iatc.source.label:10419
 msgid "Source"
 msgstr ""
 
-#: class.msfe.label:5965
+#: class.msfe.label:6157
 msgid "Subject Field Entry"
 msgstr ""
 
-#: field.sdist.unit_label_prefix.label:4435
+#: field.sdist.unit_label_prefix.label:4467
 msgid "Unit Label Prefix"
 msgstr ""
 
-#: field.circ.opac_renewal.label:3682 field.combcirc.opac_renewal.label:3755
-#: field.acirc.opac_renewal.label:3824 field.rodcirc.opac_renewal.label:10300
+#: field.circ.opac_renewal.label:3714 field.combcirc.opac_renewal.label:3787
+#: field.acirc.opac_renewal.label:3856 field.rodcirc.opac_renewal.label:10499
 msgid "OPAC Renewal"
 msgstr ""
 
-#: field.rccbs.barcode.label:10073
+#: field.rccbs.barcode.label:10272
 msgid "User Barcode"
 msgstr ""
 
-#: field.acpl.label_prefix.label:4198
+#: field.acpl.label_prefix.label:4230
 msgid "Label Prefix"
 msgstr ""
 
-#: field.acqpro.default_claim_policy.label:6870
+#: field.acqpro.default_claim_policy.label:7064
 msgid "Default Claim Policy"
 msgstr ""
 
-#: field.sasum.summary_type.label:4732
+#: field.sasum.summary_type.label:4764
 msgid "Summary Type"
 msgstr ""
 
-#: field.qsi.id.label:9096
+#: field.qsi.id.label:9295
 msgid "Select Item ID"
 msgstr ""
 
-#: field.acqie.inv_item_count.label:6964
+#: field.acqie.inv_item_count.label:7158
 msgid "Invoice Item Count"
 msgstr ""
 
-#: class.ccpbt.label:1336
+#: class.ccpbt.label:1364
 msgid "Copy Bucket Type"
 msgstr ""
 
-#: field.scap.subscription.label:4338 class.ssub.label:4376
-#: field.ssubn.subscription.label:4410 field.sdist.subscription.label:4428
-#: field.siss.subscription.label:4567
+#: field.scap.subscription.label:4370 class.ssub.label:4408
+#: field.ssubn.subscription.label:4442 field.sdist.subscription.label:4460
+#: field.siss.subscription.label:4599
 msgid "Subscription"
 msgstr ""
 
-#: field.afs.name.label:8830
+#: field.afs.name.label:9029
 msgid "Fieldset Name"
 msgstr ""
 
-#: field.acqliat.order_ident.label:7944 field.acqlia.order_ident.label:7987
+#: field.acqlia.order_ident.label:8180
 msgid "Order Identifier"
 msgstr ""
 
-#: field.mrd.bib_level.label:3349
+#: field.mrd.bib_level.label:3381
 msgid "BLvl"
 msgstr ""
 
-#: field.acqda.id.label:8591
+#: field.acqda.id.label:8784
 msgid "Debit Attribution ID"
 msgstr ""
 
-#: field.ahr.request_time.label:5128 field.ahopl.request_time.label:5255
-#: field.alhr.request_time.label:5329 field.aur.request_date.label:6774
+#: field.ahr.request_time.label:5160 field.ahopl.request_time.label:5307
+#: field.alhr.request_time.label:5390 field.combahr.request_time.label:5473
+#: field.aahr.request_time.label:5531 field.aur.request_date.label:6968
 msgid "Request Date/Time"
 msgstr ""
 
-#: class.acqliuad.label:8073
+#: class.acqliuad.label:8266
 msgid "Line Item User Attribute Definition"
 msgstr ""
 
-#: field.rccbs.xact_finish.label:10077
+#: field.rccbs.xact_finish.label:10276
 msgid "Transaction End Date/Time"
 msgstr ""
 
-#: class.aoc.label:5929
+#: class.aoc.label:6121
 msgid "Open Circulation"
 msgstr ""
 
-#: field.rmsr.title.label:8360 field.rssr.title.label:8384
-#: field.rsr.title.label:8404
+#: field.rmsr.title.label:8553 field.rssr.title.label:8577
+#: field.rsr.title.label:8597
 msgid "Title Proper (normalized)"
 msgstr ""
 
-#: field.aihu.use_time.label:1949 field.ancihu.use_time.label:1963
+#: field.aihu.use_time.label:1977 field.ancihu.use_time.label:1991
 msgid "Use Date/Time"
 msgstr ""
 
-#: field.qcb.result.label:9049
+#: field.qcb.result.label:9248
 msgid "Result"
 msgstr ""
 
-#: field.mcrp.accepting_usr.label:5650 field.mwp.accepting_usr.label:5895
-#: field.mgp.accepting_usr.label:5913 field.mckp.accepting_usr.label:5999
+#: field.mcrp.accepting_usr.label:5829 field.mwp.accepting_usr.label:6087
+#: field.mgp.accepting_usr.label:6105 field.mckp.accepting_usr.label:6191
 msgid "Accepting Staff Member"
 msgstr ""
 
-#: field.aal.id.label:3487
+#: field.aal.id.label:3519
 msgid "Address Alert ID"
 msgstr ""
 
-#: field.abaafm.axis.label:2184
+#: field.abaafm.axis.label:2214
 msgid "Axis"
 msgstr ""
 
-#: class.rodcirc.label:10285
+#: class.rodcirc.label:10484
 msgid "Overdue Circulation"
 msgstr ""
 
-#: field.bre.active.label:2639
+#: field.bre.active.label:2670
 msgid "Is Active?"
 msgstr ""
 
-#: field.actsc.allow_freetext.label:5593
+#: field.actsc.allow_freetext.label:5772
 msgid "Free Text"
 msgstr ""
 
-#: field.ausp.stop_date.label:3445
+#: field.ausp.stop_date.label:3477
 msgid "Stop Date"
 msgstr ""
 
-#: field.aua.pending.label:3478
+#: field.aua.pending.label:3510
 msgid "Pending"
 msgstr ""
 
-#: field.acqftr.src_fund.label:7142
+#: field.acqftr.src_fund.label:7336
 msgid "Source Fund"
 msgstr ""
 
-#: class.au.label:2882
+#: class.au.label:2913
 msgid "ILS User"
 msgstr ""
 
-#: field.acqpro.phone.label:6868 field.acqpc.phone.label:7081
+#: field.acqpro.phone.label:7062 field.acqpc.phone.label:7275
 msgid "Phone"
 msgstr ""
 
-#: field.acqedim.create_time.label:8199
+#: field.acqedim.create_time.label:8392
 msgid "Time Created"
 msgstr ""
 
-#: field.bre.quality.label:2649
+#: field.bre.quality.label:2680
 msgid "Overall Quality"
 msgstr ""
 
-#: field.csc.active.label:819 field.ccmlsm.active.label:1704
-#: field.auri.active.label:2569 field.au.active.label:2895
-#: field.aal.active.label:3489 field.sra.active.label:4883
-#: field.aouct.active.label:5466 field.acqpro.active.label:6864
-#: field.acqf.active.label:7315 field.acqfsum.active.label:7557
-#: field.cbc.active.label:10575
+#: field.csc.active.label:819 field.ccmlsm.active.label:1732
+#: field.auri.active.label:2600 field.au.active.label:2926
+#: field.aal.active.label:3521 field.sra.active.label:4915
+#: field.aouct.active.label:5645 field.acqpro.active.label:7058
+#: field.acqf.active.label:7509 field.acqfsum.active.label:7751
+#: field.cbc.active.label:10774
 msgid "Active"
 msgstr ""
 
-#: field.bram.value.label:4008
+#: field.bram.value.label:4040
 msgid "Attribute Value"
 msgstr ""
 
-#: field.circbyyr.count.label:10271
+#: field.circbyyr.count.label:10470
 msgid "Count"
 msgstr ""
 
-#: class.atul.label:1190
+#: class.atul.label:1218
 msgid "Action Trigger User Log"
 msgstr ""
 
-#: field.ahrn.staff.label:5379
+#: field.ahrn.staff.label:5441
 msgid "Staff?"
 msgstr ""
 
-#: field.cmc.restrict.label:2347 field.cmf.restrict.label:2381
+#: field.cmc.restrict.label:2377 field.cmf.restrict.label:2412
 msgid "Restrict?"
 msgstr ""
 
-#: field.atb.ws.label:3030
+#: field.atb.ws.label:3061
 msgid "Owning Workstation"
 msgstr ""
 
-#: field.mbts.total_paid.label:1859 field.mbtslv.total_paid.label:1880
-#: field.rccbs.total_paid.label:10080
+#: field.mbts.total_paid.label:1887 field.mbtslv.total_paid.label:1908
+#: field.rccbs.total_paid.label:10279
 msgid "Total Paid"
 msgstr ""
 
-#: field.chmm.strict_ou_match.label:1551
+#: field.chmm.strict_ou_match.label:1579
 msgid "Strict OU matches?"
 msgstr ""
 
-#: class.ccb.label:6333
+#: class.ccb.label:6525
 msgid "Copy Bucket"
 msgstr ""
 
-#: field.qsi.column_alias.label:9100
+#: field.qsi.column_alias.label:9299
 msgid "Column Alias"
 msgstr ""
 
-#: field.vmp.add_spec.label:197
-msgid "Add Specification"
+#: class.czifm.label:969
+msgid "Z39.50 Index Field Map"
 msgstr ""
 
-#: field.aur.email_notify.label:6771
+#: field.aur.email_notify.label:6965
 msgid "Email Notify"
 msgstr ""
 
-#: field.mcrp.payment.label:5658 field.mwp.payment.label:5902
-#: field.mgp.payment.label:5920 field.mckp.payment.label:6008
+#: field.mcrp.payment.label:5837 field.mwp.payment.label:6094
+#: field.mgp.payment.label:6112 field.mckp.payment.label:6200
 msgid "Payment link"
 msgstr ""
 
-#: field.acpl.holdable.label:4190
+#: field.acpl.holdable.label:4222
 msgid "Is Holdable?"
 msgstr ""
 
-#: field.cmcts.always.label:9948
+#: field.cmcts.always.label:10147
 msgid "Always Apply?"
 msgstr ""
 
-#: field.rccc.patron_city.label:10016
+#: field.rccc.patron_city.label:10215
 msgid "Patron City"
 msgstr ""
 
-#: class.aur.label:6762
+#: class.aur.label:6956
 msgid "User Purchase Request"
 msgstr ""
 
-#: field.asva.responses.label:6210
+#: field.asva.responses.label:6402
 msgid "Responses using this Answer"
 msgstr ""
 
-#: class.chmw.label:1460
+#: class.chmw.label:1488
 msgid "Hold Matrix Weights"
 msgstr ""
 
-#: class.xisnull.label:9260
+#: class.xisnull.label:9459
 msgid "IS NULL Expression"
 msgstr ""
 
-#: field.ssub.expected_date_offset.label:4383
+#: field.ssub.expected_date_offset.label:4415
 msgid "Expected Date Offset"
 msgstr ""
 
-#: field.rmsr.publisher.label:8362 field.rssr.publisher.label:8386
-#: field.rsr.publisher.label:8407
+#: field.rmsr.publisher.label:8555 field.rssr.publisher.label:8579
+#: field.rsr.publisher.label:8600
 msgid "Publisher (normalized)"
 msgstr ""
 
-#: field.ccmm.grace_period.label:1626
+#: field.ccmm.grace_period.label:1654
 msgid "Grace Period Override"
 msgstr ""
 
-#: field.rocit.due_date.label:10370
+#: field.rocit.due_date.label:10569
 msgid "Due Date"
 msgstr ""
 
-#: field.acqpro.edi_default.label:6863
+#: field.acqpro.edi_default.label:7057
 msgid "EDI Default"
 msgstr ""
 
-#: field.mb.id.label:6644
+#: field.mb.id.label:6838
 msgid "Billing ID"
 msgstr ""
 
+#: field.aalink.source.label:5862
+msgid "Source Record"
+msgstr ""
+
 #: field.vmsp.id.label:642
 msgid "Match Definition ID"
 msgstr ""
 
-#: field.acqpoh.audit_id.label:7731 field.acqlih.audit_id.label:7893
+#: field.acqpoh.audit_id.label:7925 field.acqlih.audit_id.label:8087
 msgid "Audit ID"
 msgstr ""
 
-#: field.scap.end_date.label:4342 field.ssub.end_date.label:4381
+#: field.scap.end_date.label:4374 field.ssub.end_date.label:4413
 msgid "End Date"
 msgstr ""
 
-#: class.brsrc.label:3920 field.bram.resource.label:4006
+#: class.brsrc.label:3952 field.bram.resource.label:4038
 msgid "Resource"
 msgstr ""
 
-#: field.aoupa.hold_pickup_lib.label:4939
+#: field.aoupa.hold_pickup_lib.label:4971
 msgid "Hold Pickup Lib"
 msgstr ""
 
-#: field.cam.value.label:2443
+#: field.cam.value.label:2474
 msgid "Audience"
 msgstr ""
 
-#: field.vii.circ_as_type.label:292 field.viiad.circ_as_type.label:343
+#: field.vii.circ_as_type.label:290 field.viiad.circ_as_type.label:341
 msgid "Circulate As MARC Type"
 msgstr ""
 
-#: field.acqpo.lineitem_count.label:7702
+#: field.acqpo.lineitem_count.label:7896
 msgid "Line Item Count"
 msgstr ""
 
-#: field.au.reservations.label:2945
+#: field.au.reservations.label:2976
 msgid "Reservations"
 msgstr ""
 
-#: class.rmocbbhol.label:10435
+#: class.rmocbbhol.label:10634
 msgid "Open Circulation Billing by User Home Library and Owning Library"
 msgstr ""
 
-#: field.vii.import_time.label:277 field.vqbr.import_time.label:410
+#: field.vii.import_time.label:275 field.vqbr.import_time.label:410
 #: field.vqar.import_time.label:531
 msgid "Import Time"
 msgstr ""
 
-#: field.pgpt.threshold.label:3401
+#: field.pgpt.threshold.label:3433
 msgid "Threshold"
 msgstr ""
 
-#: field.rccbs.billing_location.label:10067
+#: field.rccbs.billing_location.label:10266
 msgid "Billing Location Link"
 msgstr ""
 
-#: class.aba.label:2156
+#: class.aba.label:2186
 msgid "Authority Browse Axis"
 msgstr ""
 
-#: field.au.evening_phone.label:2907 field.stgu.evening_phone.label:8762
+#: field.au.evening_phone.label:2938 field.stgu.evening_phone.label:8955
 msgid "Evening Phone"
 msgstr ""
 
-#: field.acqedim.remote_file.label:8198
+#: field.acqedim.remote_file.label:8391
 msgid "Filename"
 msgstr ""
 
@@ -7491,52 +7626,55 @@ msgstr ""
 msgid "Last Renewal Workstation"
 msgstr ""
 
-#: field.pgt.name.label:6188
+#: field.pgt.name.label:6380
 msgid "Group Name"
 msgstr ""
 
-#: class.acqpca.label:7103
+#: class.acqpca.label:7297
 msgid "Provider Contact Address"
 msgstr ""
 
-#: field.chmw.item_circ_ou.label:1468 field.chmm.item_circ_ou.label:1556
+#: field.chmw.item_circ_ou.label:1496 field.chmm.item_circ_ou.label:1584
 msgid "Item Circ Library"
 msgstr ""
 
-#: field.mckp.xact.label:6007
+#: field.mckp.xact.label:6199
 msgid "Transaction link"
 msgstr ""
 
-#: field.acqfsrcb.amount.label:7510
+#: field.acqfsrcb.amount.label:7704
 msgid "Balance Remaining"
 msgstr ""
 
+#: field.vmp.add_spec.label:197
+msgid "Add Specification"
+msgstr ""
+
 #: class.vqara.label:578
 msgid "Queued Authority Record Attribute"
 msgstr ""
 
-#: field.vqbr.purpose.label:417 field.vqar.purpose.label:537
-#: field.aouct.purpose.label:5467
-msgid "Purpose"
+#: class.acqfsrcat.label:7691
+msgid "Total Allocation to Funding Source"
 msgstr ""
 
-#: field.aur.location.label:6784
+#: field.aur.location.label:6978
 msgid "Publication Location"
 msgstr ""
 
-#: field.acqcr.keep_debits.label:7670
+#: field.acqcr.keep_debits.label:7864
 msgid "Keep Debits?"
 msgstr ""
 
-#: field.ateo.create_time.label:972 field.acn.create_date.label:2524
+#: field.ateo.create_time.label:1000 field.acn.create_date.label:2555
 msgid "Create Date/Time"
 msgstr ""
 
-#: field.au.super_user.label:2929
+#: field.au.super_user.label:2960
 msgid "Is Super User"
 msgstr ""
 
-#: field.cmfpm.rec_type.label:9381
+#: field.cmfpm.rec_type.label:9580
 msgid "Record Type"
 msgstr ""
 
@@ -7545,339 +7683,343 @@ msgstr ""
 msgid "Attributes"
 msgstr ""
 
-#: field.qxp.parenthesize.label:9017 field.xbet.parenthesize.label:9125
-#: field.xbind.parenthesize.label:9140 field.xbool.parenthesize.label:9154
-#: field.xcase.parenthesize.label:9168 field.xcast.parenthesize.label:9183
-#: field.xcol.parenthesize.label:9200 field.xex.parenthesize.label:9215
-#: field.xfunc.parenthesize.label:9230 field.xin.parenthesize.label:9246
-#: field.xisnull.parenthesize.label:9263 field.xnull.parenthesize.label:9278
-#: field.xnum.parenthesize.label:9291 field.xop.parenthesize.label:9304
-#: field.xser.parenthesize.label:9322 field.xstr.parenthesize.label:9336
-#: field.xsubq.parenthesize.label:9349
+#: field.qxp.parenthesize.label:9216 field.xbet.parenthesize.label:9324
+#: field.xbind.parenthesize.label:9339 field.xbool.parenthesize.label:9353
+#: field.xcase.parenthesize.label:9367 field.xcast.parenthesize.label:9382
+#: field.xcol.parenthesize.label:9399 field.xex.parenthesize.label:9414
+#: field.xfunc.parenthesize.label:9429 field.xin.parenthesize.label:9445
+#: field.xisnull.parenthesize.label:9462 field.xnull.parenthesize.label:9477
+#: field.xnum.parenthesize.label:9490 field.xop.parenthesize.label:9503
+#: field.xser.parenthesize.label:9521 field.xstr.parenthesize.label:9535
+#: field.xsubq.parenthesize.label:9548
 msgid "Is Parenthesized"
 msgstr ""
 
-#: field.rccc.patron_zip.label:10017
+#: field.rccc.patron_zip.label:10216
 msgid "Patron ZIP Code"
 msgstr ""
 
-#: field.brt.resource_attrs.label:3900 field.aou.rsrc_attrs.label:5423
+#: field.brt.resource_attrs.label:3932 field.aou.rsrc_attrs.label:5602
 msgid "Resource Attributes"
 msgstr ""
 
-#: field.uvva.finish_time.label:9614
+#: field.uvva.finish_time.label:9813
 msgid "Finish Time"
 msgstr ""
 
-#: field.siss.holding_type.label:4572 field.smhc.holding_type.label:4746
+#: field.siss.holding_type.label:4604 field.smhc.holding_type.label:4778
 msgid "Holding Type"
 msgstr ""
 
-#: field.brt.elbow_room.label:3898
+#: field.brt.elbow_room.label:3930
 msgid "Inter-booking and Inter-circulation Interval"
 msgstr ""
 
-#: field.rsr.name_subject.label:8417
+#: field.rsr.name_subject.label:8610
 msgid "Personal Name Subjects (normalized)"
 msgstr ""
 
-#: field.asc.checkout_archive.label:5538
-#: field.actsc.checkout_archive.label:5591
+#: field.asc.checkout_archive.label:5717
+#: field.actsc.checkout_archive.label:5770
 msgid "Checkout Archive"
 msgstr ""
 
-#: class.acqedim.label:8194
+#: class.acqedim.label:8387
 msgid "EDI Message"
 msgstr ""
 
-#: field.atevdef.params.label:1114
+#: field.atevdef.params.label:1142
 msgid "Parameters"
 msgstr ""
 
-#: field.ahn.id.label:4176
+#: field.ahn.id.label:4208
 msgid "Notification ID"
 msgstr ""
 
-#: field.cmf.search_field.label:2376
+#: field.acsaf.display_sf_list.label:2119
+msgid "Subfield List for Display"
+msgstr ""
+
+#: field.cmf.search_field.label:2407
 msgid "Search Field"
 msgstr ""
 
-#: field.sre.editor.label:4312 field.siss.editor.label:4564
-#: field.sitem.editor.label:4674 field.act.editor.label:6107
-#: field.acqpron.editor.label:6897 field.acqpl.editor.label:7648
-#: field.acqpo.editor.label:7695 field.acqpoh.editor.label:7737
-#: field.acqpon.editor.label:7771 field.jub.editor.label:7850
-#: field.acqlih.editor.label:7898 field.acqlin.editor.label:7966
+#: field.sre.editor.label:4344 field.siss.editor.label:4596
+#: field.sitem.editor.label:4706 field.act.editor.label:6299
+#: field.acqpron.editor.label:7091 field.acqpl.editor.label:7842
+#: field.acqpo.editor.label:7889 field.acqpoh.editor.label:7931
+#: field.acqpon.editor.label:7965 field.jub.editor.label:8044
+#: field.acqlih.editor.label:8092 field.acqlin.editor.label:8159
 msgid "Editor"
 msgstr ""
 
-#: field.qsq.having_clause.label:8925
+#: field.qsq.having_clause.label:9124
 msgid "HAVING Clause"
 msgstr ""
 
-#: class.ccmw.label:1491
+#: class.ccmw.label:1519
 msgid "Circ Matrix Weights"
 msgstr ""
 
-#: class.afr.label:5666
+#: class.afr.label:5845
 msgid "Full Authority Record"
 msgstr ""
 
-#: field.atul.target_circ.label:1248
+#: field.atul.target_circ.label:1276
 msgid "Target Circulation"
 msgstr ""
 
-#: field.acqclpa.action_interval.label:8724
+#: field.acqclpa.action_interval.label:8917
 msgid "Action Interval"
 msgstr ""
 
-#: field.au.dob.label:2905 field.rud.dob.label:8430 field.stgu.dob.label:8764
+#: field.au.dob.label:2936 field.rud.dob.label:8623 field.stgu.dob.label:8957
 msgid "Date of Birth"
 msgstr ""
 
-#: field.aua.country.label:3467 field.aal.country.label:3497
-#: field.acqpa.country.label:7042 field.acqpca.country.label:7107
-#: field.stgma.country.label:8788 field.stgba.country.label:8803
+#: field.aua.country.label:3499 field.aal.country.label:3529
+#: field.acqpa.country.label:7236 field.acqpca.country.label:7301
+#: field.stgma.country.label:8986 field.stgba.country.label:9002
 msgid "Country"
 msgstr ""
 
-#: field.bre.creator.label:2641
+#: field.bre.creator.label:2672
 msgid "Record Creator"
 msgstr ""
 
-#: field.acqedim.edi.label:8204
+#: field.acqedim.edi.label:8397
 msgid "EDI Message Body"
 msgstr ""
 
-#: field.cwa.id.label:1526
+#: field.cwa.id.label:1554
 msgid "Assoc ID"
 msgstr ""
 
-#: class.qfpd.label:8987
+#: class.qfpd.label:9186
 msgid "Function Parameter Definition"
 msgstr ""
 
-#: field.acqpron.create_time.label:6895 field.acqpl.create_time.label:7643
-#: field.acqpo.create_time.label:7689 field.acqpon.create_time.label:7769
-#: field.jub.create_time.label:7842 field.acqlin.create_time.label:7964
-#: field.afs.creation_time.label:8826
+#: field.acqpron.create_time.label:7089 field.acqpl.create_time.label:7837
+#: field.acqpo.create_time.label:7883 field.acqpon.create_time.label:7963
+#: field.jub.create_time.label:8036 field.acqlin.create_time.label:8157
+#: field.afs.creation_time.label:9025
 msgid "Creation Time"
 msgstr ""
 
-#: field.acqlid.collection_code.label:8010
-#: field.acqdfe.collection_code.label:8531
+#: field.acqlid.collection_code.label:8203
+#: field.acqdfe.collection_code.label:8724
 msgid "Collection Code"
 msgstr ""
 
-#: field.acqfat.amount.label:7355 field.acqafat.amount.label:7440
+#: field.acqfat.amount.label:7549 field.acqafat.amount.label:7634
 msgid "Total Allocation Amount"
 msgstr ""
 
-#: field.sdist.bind_call_number.label:4433
+#: field.sdist.bind_call_number.label:4465
 msgid "Bind Call Number"
 msgstr ""
 
-#: field.atevdef.reactor.label:1101 field.atul.reactor.label:1234
+#: field.atevdef.reactor.label:1129 field.atul.reactor.label:1262
 msgid "Reactor"
 msgstr ""
 
-#: field.cmf.weight.label:2374
+#: field.cmf.weight.label:2405
 msgid "Weight"
 msgstr ""
 
-#: class.mbt.label:5788 field.mp.xact.label:6404 field.mbp.xact.label:6432
-#: field.mndp.xact.label:6460 field.mdp.xact.label:6482
+#: class.mbt.label:5980 field.mp.xact.label:6596 field.mbp.xact.label:6624
+#: field.mndp.xact.label:6654 field.mdp.xact.label:6676
 msgid "Billable Transaction"
 msgstr ""
 
-#: field.aou.parent_ou.label:5403
+#: field.aou.parent_ou.label:5582
 msgid "Parent Organizational Unit"
 msgstr ""
 
-#: field.au.photo_url.label:2923
+#: field.au.photo_url.label:2954
 msgid "Photo URL"
 msgstr ""
 
-#: class.mp.label:6397
+#: class.mp.label:6589
 msgid "Payments: All"
 msgstr ""
 
-#: field.asv.questions.label:4991
+#: field.asv.questions.label:5023
 msgid "Questions"
 msgstr ""
 
-#: field.atevdef.env.label:1113
+#: field.atevdef.env.label:1141
 msgid "Environment Entries"
 msgstr ""
 
-#: field.acqftr.dest_fund.label:7144
+#: field.acqftr.dest_fund.label:7338
 msgid "Destination Fund"
 msgstr ""
 
-#: field.qxp.parent_expr.label:9018 field.qcb.parent_expr.label:9046
-#: field.xbet.parent_expr.label:9126 field.xbind.parent_expr.label:9141
-#: field.xbool.parent_expr.label:9155 field.xcase.parent_expr.label:9169
-#: field.xcast.parent_expr.label:9184 field.xcol.parent_expr.label:9201
-#: field.xex.parent_expr.label:9216 field.xfunc.parent_expr.label:9231
-#: field.xin.parent_expr.label:9247 field.xisnull.parent_expr.label:9264
-#: field.xnull.parent_expr.label:9279 field.xnum.parent_expr.label:9292
-#: field.xop.parent_expr.label:9305 field.xser.parent_expr.label:9323
-#: field.xstr.parent_expr.label:9337 field.xsubq.parent_expr.label:9350
+#: field.qxp.parent_expr.label:9217 field.qcb.parent_expr.label:9245
+#: field.xbet.parent_expr.label:9325 field.xbind.parent_expr.label:9340
+#: field.xbool.parent_expr.label:9354 field.xcase.parent_expr.label:9368
+#: field.xcast.parent_expr.label:9383 field.xcol.parent_expr.label:9400
+#: field.xex.parent_expr.label:9415 field.xfunc.parent_expr.label:9430
+#: field.xin.parent_expr.label:9446 field.xisnull.parent_expr.label:9463
+#: field.xnull.parent_expr.label:9478 field.xnum.parent_expr.label:9491
+#: field.xop.parent_expr.label:9504 field.xser.parent_expr.label:9522
+#: field.xstr.parent_expr.label:9536 field.xsubq.parent_expr.label:9549
 msgid "Parent Expression"
 msgstr ""
 
-#: class.acnp.label:2502
+#: class.acnp.label:2533
 msgid "Call Number/Volume Prefix"
 msgstr ""
 
-#: field.cmfpm.start_pos.label:9382 field.cmpcsm.start_pos.label:9412
+#: field.cmfpm.start_pos.label:9581 field.cmpcsm.start_pos.label:9611
 msgid "Start Postion"
 msgstr ""
 
-#: field.qfr.function_call.label:9065
+#: field.qfr.function_call.label:9264
 msgid "Function Call ID"
 msgstr ""
 
-#: field.mckp.check_number.label:6003
+#: field.mckp.check_number.label:6195
 msgid "Check Number"
 msgstr ""
 
-#: field.au.ident_value.label:2915
+#: field.au.ident_value.label:2946
 msgid "Primary Identification"
 msgstr ""
 
-#: field.aur.cancel_reason.label:6788 class.acqcr.label:7664
-#: field.acqpo.cancel_reason.label:7698 field.acqpoh.cancel_reason.label:7745
-#: field.jub.cancel_reason.label:7852 field.acqlih.cancel_reason.label:7911
-#: field.acqlid.cancel_reason.label:8011
+#: field.aur.cancel_reason.label:6982 class.acqcr.label:7858
+#: field.acqpo.cancel_reason.label:7892 field.acqpoh.cancel_reason.label:7939
+#: field.jub.cancel_reason.label:8046 field.acqlih.cancel_reason.label:8105
+#: field.acqlid.cancel_reason.label:8204
 msgid "Cancel Reason"
 msgstr ""
 
-#: class.uvva.label:9602
+#: class.uvva.label:9801
 msgid "URL Verification Attempt"
 msgstr ""
 
-#: field.mrd.char_encoding.label:3351
+#: field.mrd.char_encoding.label:3383
 msgid "Character Encoding"
 msgstr ""
 
-#: field.acqcle.event_date.label:8661 field.acqscle.event_date.label:8689
+#: field.acqcle.event_date.label:8854 field.acqscle.event_date.label:8882
 msgid "Event Date"
 msgstr ""
 
-#: field.erfcc.circ_count.label:8493
+#: field.erfcc.circ_count.label:8686
 msgid "Total Circulation Count"
 msgstr ""
 
-#: field.au.money_summary.label:2940
+#: field.au.money_summary.label:2971
 msgid "Money Summary"
 msgstr ""
 
-#: field.sdist.receive_call_number.label:4431
+#: field.sdist.receive_call_number.label:4463
 msgid "Receive Call Number"
 msgstr ""
 
-#: field.aua.street1.label:3472 field.aal.street1.label:3492
-#: field.acqpca.street1.label:7112 field.stgma.street1.label:8784
-#: field.stgba.street1.label:8799
+#: field.aua.street1.label:3504 field.aal.street1.label:3524
+#: field.acqpca.street1.label:7306 field.stgma.street1.label:8981
+#: field.stgba.street1.label:8997
 msgid "Street (1)"
 msgstr ""
 
-#: field.ahrcc.label.label:6555
+#: field.ahrcc.label.label:6749
 msgid "Cause Label"
 msgstr ""
 
-#: field.ocirccount.overdue.label:3616 field.ocirclist.overdue.label:3658
+#: field.ocirccount.overdue.label:3648 field.ocirclist.overdue.label:3690
 msgid "Overdue"
 msgstr ""
 
-#: field.qcb.condition.label:9048
+#: field.qcb.condition.label:9247
 msgid "Condition"
 msgstr ""
 
-#: class.puopm.label:6383
+#: class.puopm.label:6575
 msgid "User Object Permission Map"
 msgstr ""
 
-#: field.circ.stop_fines.label:3688 field.combcirc.stop_fines.label:3761
-#: field.acirc.stop_fines.label:3830 field.rodcirc.stop_fines.label:10305
+#: field.circ.stop_fines.label:3720 field.combcirc.stop_fines.label:3793
+#: field.acirc.stop_fines.label:3862 field.rodcirc.stop_fines.label:10504
 msgid "Fine Stop Reason"
 msgstr ""
 
-#: field.auri.id.label:2565
+#: field.auri.id.label:2596
 msgid "URI ID"
 msgstr ""
 
-#: field.sunit.ref.label:4628 field.acp.ref.label:6047
+#: field.sunit.ref.label:4660 field.acp.ref.label:6239
 msgid "Is Reference"
 msgstr ""
 
-#: class.rhrr.label:8446
+#: class.rhrr.label:8639
 msgid "Hold Request Record"
 msgstr ""
 
-#: class.aurt.label:6746
+#: class.aurt.label:6940
 msgid "User Purchase Request Type"
 msgstr ""
 
-#: class.ccs.label:3418 field.sunit.status.label:4629
-#: field.acp.status.label:6048
+#: class.ccs.label:3450 field.sunit.status.label:4661
+#: field.acp.status.label:6240
 msgid "Copy Status"
 msgstr ""
 
-#: field.acqlisum.encumbrance_amount.label:10176
-#: field.acqlisumi.encumbrance_amount.label:10196
+#: field.acqlisum.encumbrance_amount.label:10375
+#: field.acqlisumi.encumbrance_amount.label:10395
 msgid "Encumbrance Amount"
 msgstr ""
 
-#: class.auact.label:3006
+#: class.auact.label:3037
 msgid "User Activity"
 msgstr ""
 
-#: field.atevdef.opt_in_setting.label:1112
+#: field.atevdef.opt_in_setting.label:1140
 msgid "Opt-In Setting Type"
 msgstr ""
 
-#: field.rmobbol.balance.label:10400 field.rmobbcol.balance.label:10427
-#: field.rmobbhol.balance.label:10455
+#: field.rmobbol.balance.label:10599 field.rmobbcol.balance.label:10626
+#: field.rmobbhol.balance.label:10654
 msgid "Balance"
 msgstr ""
 
-#: field.acqclpa.claim_policy.label:8723
+#: field.acqclpa.claim_policy.label:8916
 msgid "Claim Policy ID"
 msgstr ""
 
-#: field.au.standing_penalties.label:2890
+#: field.au.standing_penalties.label:2921
 msgid "Standing Penalties"
 msgstr ""
 
-#: class.acqct.label:6816 field.acqf.currency_type.label:7311
-#: field.acqfsum.currency_type.label:7553
+#: class.acqct.label:7010 field.acqf.currency_type.label:7505
+#: field.acqfsum.currency_type.label:7747
 msgid "Currency Type"
 msgstr ""
 
-#: field.aout.can_have_users.label:5695
+#: field.aout.can_have_users.label:5887
 msgid "Can Have Users?"
 msgstr ""
 
-#: field.rsr.summary.label:8411
+#: field.rsr.summary.label:8604
 msgid "Summary (normalized)"
 msgstr ""
 
-#: field.actsce.owner.label:5817 field.asce.owner.label:6527
-#: field.rsce1.owner.label:10042 field.rsce2.owner.label:10053
+#: field.actsce.owner.label:6009 field.asce.owner.label:6721
+#: field.rsce1.owner.label:10241 field.rsce2.owner.label:10252
 msgid "Entry Owner"
 msgstr ""
 
-#: field.jub.attributes.label:7856
+#: field.jub.attributes.label:8050
 msgid "Descriptive Attributes"
 msgstr ""
 
-#: field.actscecm.stat_cat_entry.label:6304
+#: field.actscecm.stat_cat_entry.label:6496
 msgid "Entry Text"
 msgstr ""
 
-#: field.artc.prev_dest.label:6582 field.ahtc.prev_dest.label:6617
+#: field.artc.prev_dest.label:6776 field.ahtc.prev_dest.label:6811
 msgid "Prev Destination Library"
 msgstr ""
 
@@ -7885,28 +8027,28 @@ msgstr ""
 msgid "Function"
 msgstr ""
 
-#: field.cust.opac_visible.label:3083
+#: field.cust.opac_visible.label:3114
 msgid "OPAC/Patron Visible"
 msgstr ""
 
-#: class.xex.label:9212
+#: class.xex.label:9411
 msgid "Exists Expression"
 msgstr ""
 
-#: field.aur.volume.label:6779
+#: field.aur.volume.label:6973
 msgid "Volume"
 msgstr ""
 
-#: field.siss.edit_date.label:4566 field.sitem.edit_date.label:4676
-#: field.act.edit_date.label:6109 field.rocit.edit_date.label:10355
+#: field.siss.edit_date.label:4598 field.sitem.edit_date.label:4708
+#: field.act.edit_date.label:6301 field.rocit.edit_date.label:10554
 msgid "Edit Date"
 msgstr ""
 
-#: field.acqlin.alert_text.label:7968
+#: field.acqlin.alert_text.label:8161
 msgid "Alert Text"
 msgstr ""
 
-#: field.cmpctm.ptype_key.label:9396 field.cmpcsm.ptype_key.label:9410
+#: field.cmpctm.ptype_key.label:9595 field.cmpcsm.ptype_key.label:9609
 msgid "Type Key"
 msgstr ""
 
@@ -7914,94 +8056,94 @@ msgstr ""
 msgid "Total Circs"
 msgstr ""
 
-#: field.chdd.ceiling_date.label:2815
+#: field.chdd.ceiling_date.label:2846
 msgid "Current Ceiling Date"
 msgstr ""
 
-#: field.ocirccount.lost.label:3617 field.ocirclist.lost.label:3659
+#: field.ocirccount.lost.label:3649 field.ocirclist.lost.label:3691
 msgid "Lost"
 msgstr ""
 
-#: field.ccls.items_out.label:1680
+#: field.ccls.items_out.label:1708
 msgid "Items Out"
 msgstr ""
 
-#: class.aouct.label:5463
+#: class.aouct.label:5642
 msgid "Org Unit Custom Tree"
 msgstr ""
 
-#: class.aoup.label:4964
+#: class.aoup.label:4996
 msgid "Org Unit Proximity"
 msgstr ""
 
-#: field.acqlimad.remove.label:8050 field.acqlipad.remove.label:8094
+#: field.acqlimad.remove.label:8243 field.acqlipad.remove.label:8287
 msgid "Remove"
 msgstr ""
 
-#: field.bre.authority_links.label:2666
+#: field.bre.authority_links.label:2697
 msgid "Authority Links"
 msgstr ""
 
-#: class.asfg.label:5058
+#: class.asfg.label:5090
 msgid "Search Filter Group"
 msgstr ""
 
-#: field.at.code.label:2138
+#: field.at.code.label:2168
 msgid "Thesaurus Code"
 msgstr ""
 
-#: field.uvus.urls.label:9520
+#: field.uvus.urls.label:9719
 msgid "URLs"
 msgstr ""
 
-#: class.qcb.label:9043
+#: class.qcb.label:9242
 msgid "Case Branch"
 msgstr ""
 
-#: field.circ.recurring_fine.label:3684
-#: field.combcirc.recurring_fine.label:3757
-#: field.acirc.recurring_fine.label:3826
-#: field.rodcirc.recurring_fine.label:10302
+#: field.circ.recurring_fine.label:3716
+#: field.combcirc.recurring_fine.label:3789
+#: field.acirc.recurring_fine.label:3858
+#: field.rodcirc.recurring_fine.label:10501
 msgid "Recurring Fine Amount"
 msgstr ""
 
-#: field.asv.end_date.label:4994
+#: field.asv.end_date.label:5026
 msgid "Survey End Date/Time"
 msgstr ""
 
-#: field.mg.xact_start.label:5753
+#: field.mg.xact_start.label:5945
 msgid "Transaction Start Timestamp"
 msgstr ""
 
-#: field.bresv.target_resource.label:4057
+#: field.bresv.target_resource.label:4089
 msgid "Target Resource"
 msgstr ""
 
-#: field.aufhml.min.label:8868
+#: field.aufhml.min.label:9067
 msgid "Min Loop"
 msgstr ""
 
-#: field.acqliad.ident.label:8033 field.acqlimad.ident.label:8049
-#: field.acqligad.ident.label:8069 field.acqliuad.ident.label:8079
-#: field.acqlipad.ident.label:8093 field.acqlilad.ident.label:8151
+#: field.acqliad.ident.label:8226 field.acqlimad.ident.label:8242
+#: field.acqligad.ident.label:8262 field.acqliuad.ident.label:8272
+#: field.acqlipad.ident.label:8286 field.acqlilad.ident.label:8344
 msgid "Is Identifier?"
 msgstr ""
 
-#: field.circ.renewal_remaining.label:3686
-#: field.combcirc.renewal_remaining.label:3759
-#: field.acirc.renewal_remaining.label:3828
-#: field.rodcirc.renewal_remaining.label:10304
+#: field.circ.renewal_remaining.label:3718
+#: field.combcirc.renewal_remaining.label:3791
+#: field.acirc.renewal_remaining.label:3860
+#: field.rodcirc.renewal_remaining.label:10503
 msgid "Remaining Renewals"
 msgstr ""
 
-#: field.mb.void_time.label:6646
+#: field.mb.void_time.label:6840
 msgid "Void Timestamp"
 msgstr ""
 
-#: field.acqmapinv.invoice.label:10560
+#: field.acqmapinv.invoice.label:10759
 msgid "Invoice ID"
 msgstr ""
 
-#: field.au.billable_transactions.label:2939
+#: field.au.billable_transactions.label:2970
 msgid "Billable Transactions"
 msgstr ""
index 2d32c7f..6b784ea 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-03-15 19:41:56-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:03-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -20,11 +20,11 @@ msgstr ""
 msgid ""
 msgstr ""
 
-#: 1598.MONEY_USER_CIRCULATION_SUMMARY_NOT_FOUND:443
+#: 1598.MONEY_USER_CIRCULATION_SUMMARY_NOT_FOUND:442
 msgid "The requested money_user_circulation_summary was not found"
 msgstr ""
 
-#: 1621.CONTAINER_COPY_BUCKET_NOT_FOUND:512
+#: 1621.CONTAINER_COPY_BUCKET_NOT_FOUND:511
 msgid "The requested container_copy_bucket was not found"
 msgstr ""
 
@@ -33,10 +33,12 @@ msgid "This item is too new to have a hold placed on it"
 msgstr ""
 
 #: 1214.PATRON_DUP_IDENT1:92
-msgid "The selected primary identification type and value are in use by another patron"
+msgid ""
+"The selected primary identification type and value are in use by another "
+"patron"
 msgstr ""
 
-#: 1561.PERMISSION_PERM_LIST_NOT_FOUND:335
+#: 1561.PERMISSION_PERM_LIST_NOT_FOUND:334
 msgid "The requested permission_perm_list was not found"
 msgstr ""
 
@@ -44,116 +46,133 @@ msgstr ""
 msgid "The patron is barred"
 msgstr ""
 
-#: 1645.CONFIG_CIRC_MATRIX_TEST_NOT_FOUND:584
+#: 1645.CONFIG_CIRC_MATRIX_TEST_NOT_FOUND:583
 msgid "The requested config_circ_matrix_test was not found"
 msgstr ""
 
-#: 1900.URL_VERIFY_NOT_SESSION_CREATOR:757
-msgid "You did not create this URL Verify session, so you cannot change it.  You may be able to clone it."
+#: 1900.URL_VERIFY_NOT_SESSION_CREATOR:756
+msgid ""
+"You did not create this URL Verify session, so you cannot change it.  You "
+"may be able to clone it."
 msgstr ""
 
-#: 1591.METABIB_SERIES_FIELD_ENTRY_NOT_FOUND:422
+#: 1591.METABIB_SERIES_FIELD_ENTRY_NOT_FOUND:421
 msgid "The requested metabib_series_field_entry was not found"
 msgstr ""
 
-#: 4003.CREDIT_PROCESSOR_NOT_ALLOWED:791
+#: 4003.CREDIT_PROCESSOR_NOT_ALLOWED:790
 msgid "The credit card processor you have named is not allowed"
 msgstr ""
 
-#: 4010.CREDIT_PROCESSOR_NO_DEFAULT_SELECTED:797
+#: 4010.CREDIT_PROCESSOR_NO_DEFAULT_SELECTED:796
 msgid "No default credit processor is selected"
 msgstr ""
 
-#: 1862.ACQ_FUND_EXCEEDS_STOP_PERCENT:667
-msgid "The requested acq.purchase_order cannot be activated because it would over-encumber a fund."
+#: 1862.ACQ_FUND_EXCEEDS_STOP_PERCENT:666
+msgid ""
+"The requested acq.purchase_order cannot be activated because it would over-"
+"encumber a fund."
 msgstr ""
 
-#: 1649.VANDELAY_IMPORT_ITEM_NOT_FOUND:596
+#: 1649.VANDELAY_IMPORT_ITEM_NOT_FOUND:595
 msgid "The requested vandelay.import_item was not found"
 msgstr ""
 
-#: 1639.REPORTER_SCHEDULE_NOT_FOUND:566
+#: 1639.REPORTER_SCHEDULE_NOT_FOUND:565
 msgid "The requested reporter_schedule was not found"
 msgstr ""
 
-#: 1847.ACQ_FUNDING_SOURCE_DEDIT_NOT_FOUND:622
+#: 1847.ACQ_FUNDING_SOURCE_DEDIT_NOT_FOUND:621
 msgid "The requested acq.funding_source_dedit was not found"
 msgstr ""
 
-#: 1641.ACTION_OPEN_CIRC_COUNT_BY_CIRC_MOD_NOT_FOUND:572
+#: 1641.ACTION_OPEN_CIRC_COUNT_BY_CIRC_MOD_NOT_FOUND:571
 msgid "The requested action_open_circ_count_by_circ_mod was not found"
 msgstr ""
 
-#: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:473
+#: 1589.ACTOR_CARD_NOT_FOUND:415
+msgid "The requested actor_card was not found"
+msgstr ""
+
+#: 10003.ACQ_LINEITEM_DETAIL_NO_ORG:978
+msgid "The lineitem detail has no owning_lib"
+msgstr ""
+
+#: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:472
 msgid "The requested metabib_subject_field_entry was not found"
 msgstr ""
 
-#: 1711.BIB_QUEUE_EXISTS:741
+#: 1711.BIB_QUEUE_EXISTS:740
 msgid "A bib record queue with the same name already exists"
 msgstr ""
 
-#: 1875.ACQ_LINEITEM_GENERATED_ATTR_DEFINITION_NOT_FOUND:685
-#: 1876.ACQ_LINEITEM_LOCAL_ATTR_DEFINITION_NOT_FOUND:688
-#: 1877.ACQ_LINEITEM_MARC_ATTR_DEFINITION_NOT_FOUND:691
-#: 1878.ACQ_LINEITEM_USR_ATTR_DEFINITION_NOT_FOUND:694
-#: 1879.ACQ_LINEITEM_PROVIDER_ATTR_DEFINITION_NOT_FOUND:697
+#: 1875.ACQ_LINEITEM_GENERATED_ATTR_DEFINITION_NOT_FOUND:684
+#: 1876.ACQ_LINEITEM_LOCAL_ATTR_DEFINITION_NOT_FOUND:687
+#: 1877.ACQ_LINEITEM_MARC_ATTR_DEFINITION_NOT_FOUND:690
+#: 1878.ACQ_LINEITEM_USR_ATTR_DEFINITION_NOT_FOUND:693
+#: 1879.ACQ_LINEITEM_PROVIDER_ATTR_DEFINITION_NOT_FOUND:696
 msgid "The requested acq_lineitem_attr was not found"
 msgstr ""
 
 #: 1207.REFUND_EXCEEDS_BALANCE:68
-msgid "A refund greater than the negative balance on a transaction was provided"
+msgid ""
+"A refund greater than the negative balance on a transaction was provided"
 msgstr ""
 
-#: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:199
-msgid "Someone attempted to retrieve a transit object from the system and the object was not found."
+#: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:198
+msgid ""
+"Someone attempted to retrieve a transit object from the system and the "
+"object was not found."
 msgstr ""
 
-#: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:270
+#: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:269
 msgid "The requested action_survey_response was not found"
 msgstr ""
 
-#: 1555.MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:318
+#: 1555.MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:317
 msgid "The requested money_open_billable_transaction_summary was not found"
 msgstr ""
 
-#: 7000.ROUTE_ITEM:834
-msgid "A copy needs to be routed to a different location The destination location will be specified by an 'org' key within the event object"
+#: 7000.ROUTE_ITEM:833
+msgid ""
+"A copy needs to be routed to a different location The destination location "
+"will be specified by an 'org' key within the event object"
 msgstr ""
 
-#: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:315
+#: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:314
 msgid "The requested config_rules_circ_duration was not found"
 msgstr ""
 
-#: 1607.ACTION_OPEN_CIRCULATION_NOT_FOUND:470
+#: 1607.ACTION_OPEN_CIRCULATION_NOT_FOUND:469
 msgid "The requested action_open_circulation was not found"
 msgstr ""
 
-#: 1559.METABIB_FULL_REC_NOT_FOUND:329
+#: 1559.METABIB_FULL_REC_NOT_FOUND:328
 msgid "The requested metabib_full_rec was not found"
 msgstr ""
 
-#: 1527.OPEN_TCN_NOT_FOUND:236
+#: 1527.OPEN_TCN_NOT_FOUND:235
 msgid "No TCN could be found that does not collide with existing records"
 msgstr ""
 
-#: 7016.ITEM_ON_HOLDS_SHELF:887
+#: 7016.ITEM_ON_HOLDS_SHELF:886
 msgid "This requested item is currently on the holds shelf"
 msgstr ""
 
-#: 2001.DATABASE_UPDATE_FAILED:768
+#: 2001.DATABASE_UPDATE_FAILED:767
 msgid "The attempt to write to the DB failed"
 msgstr ""
 
-#: 1563.METABIB_KEYWORD_FIELD_ENTRY_NOT_FOUND:341
+#: 1563.METABIB_KEYWORD_FIELD_ENTRY_NOT_FOUND:340
 msgid "The requested metabib_keyword_field_entry was not found"
 msgstr ""
 
-#: 1546.CONFIG_AUDIENCE_MAP_NOT_FOUND:294
+#: 1546.CONFIG_AUDIENCE_MAP_NOT_FOUND:293
 msgid "The requested config_audience_map was not found"
 msgstr ""
 
-#: 8004.OFFLINE_CONFIG_ERROR:935 8005.OFFLINE_CHECKSUM_FAILED:938
-#: 8006.OFFLINE_SESSION_NOT_FOUND:941
+#: 8004.OFFLINE_CONFIG_ERROR:936 8005.OFFLINE_CHECKSUM_FAILED:939
+#: 8006.OFFLINE_SESSION_NOT_FOUND:942
 msgid "Offline server is not configured properly"
 msgstr ""
 
@@ -161,19 +180,19 @@ msgstr ""
 msgid "User login session has either timed out or does not exist"
 msgstr ""
 
-#: 4019.CREDIT_PROCESSOR_INVALID_CC_NUMBER:800
+#: 4019.CREDIT_PROCESSOR_INVALID_CC_NUMBER:799
 msgid "An invalid credit card number has been supplied."
 msgstr ""
 
-#: 1880.CONFIG_BILLING_TYPE_NOT_FOUND:700
+#: 1880.CONFIG_BILLING_TYPE_NOT_FOUND:699
 msgid "The requested config_billing_type was not found"
 msgstr ""
 
-#: 1851.ACQ_FUND_ENCUMBRANCE_TOTAL_NOT_FOUND:634
+#: 1851.ACQ_FUND_ENCUMBRANCE_TOTAL_NOT_FOUND:633
 msgid "The requested acq.fund_encumbrance_total was not found"
 msgstr ""
 
-#: 1529.ACTOR_WORKSTATION_NOT_FOUND:244
+#: 1529.ACTOR_WORKSTATION_NOT_FOUND:243
 msgid "The requested actor_workstation was not found"
 msgstr ""
 
@@ -182,14 +201,16 @@ msgid "The copy in question is not in an ideal status for deleting"
 msgstr ""
 
 #: 1204.CIRC_BAD_STATUS:59
-msgid "The given circulation is not in a standard status or the circulation was never fully closed properly"
+msgid ""
+"The given circulation is not in a standard status or the circulation was "
+"never fully closed properly"
 msgstr ""
 
-#: 1855.ACQ_FUNDING_SOURCE_CREDIT_TOTAL_NOT_FOUND:646
+#: 1855.ACQ_FUNDING_SOURCE_CREDIT_TOTAL_NOT_FOUND:645
 msgid "The requested acq.funding_source_credit_total was not found"
 msgstr ""
 
-#: 1870.ACQ_LINEITEM_DETAIL_NOT_FOUND:673
+#: 1870.ACQ_LINEITEM_DETAIL_NOT_FOUND:672
 msgid "The requested acq.lineitem_detail was not found"
 msgstr ""
 
@@ -198,30 +219,32 @@ msgid "The user does not have a valid phone number assigned"
 msgstr ""
 
 #: 1002.ACTOR_USER_NOT_FOUND:34
-msgid "Someone attempted to retrieve a user from the system and the user was not found"
+msgid ""
+"Someone attempted to retrieve a user from the system and the user was not "
+"found"
 msgstr ""
 
-#: 7011.COPY_STATUS_LOST:872
+#: 7011.COPY_STATUS_LOST:871
 msgid "Copy is marked as lost"
 msgstr ""
 
-#: 7004.COPY_NOT_AVAILABLE:851
+#: 7004.COPY_NOT_AVAILABLE:850
 msgid "Copy is not available"
 msgstr ""
 
-#: 1643.VANDELAY_BIB_QUEUE_NOT_FOUND:578
+#: 1643.VANDELAY_BIB_QUEUE_NOT_FOUND:577
 msgid "The requested vandelay_bib_queue was not found"
 msgstr ""
 
-#: 1849.ACQ_FUND_DEBIT_TOTAL_NOT_FOUND:628
+#: 1849.ACQ_FUND_DEBIT_TOTAL_NOT_FOUND:627
 msgid "The requested acq.fund_debit_total was not found"
 msgstr ""
 
-#: 1636.REPORTER_OUTPUT_FOLDER_NOT_FOUND:557
+#: 1636.REPORTER_OUTPUT_FOLDER_NOT_FOUND:556
 msgid "The requested reporter_output_folder was not found"
 msgstr ""
 
-#: 7008.MAX_RENEWALS_REACHED:863
+#: 7008.MAX_RENEWALS_REACHED:862
 msgid "Circulation has no more renewals remaining"
 msgstr ""
 
@@ -229,35 +252,35 @@ msgstr ""
 msgid "This account is marked as inactive"
 msgstr ""
 
-#: 8003.OFFLINE_PARAM_ERROR:932
+#: 8003.OFFLINE_PARAM_ERROR:933
 msgid "Missing params in offline upload"
 msgstr ""
 
-#: 1637.REPORTER_REPORT_FOLDER_NOT_FOUND:560
+#: 1637.REPORTER_REPORT_FOLDER_NOT_FOUND:559
 msgid "The requested reporter_report_folder was not found"
 msgstr ""
 
-#: 1545.PERM_EX_NOT_FOUND:291
+#: 1545.PERM_EX_NOT_FOUND:290
 msgid "The requested perm_ex was not found"
 msgstr ""
 
-#: 10101.ACQ_ALREADY_CANCELED:987
+#: 10101.ACQ_ALREADY_CANCELED:988
 msgid "The object is already canceled."
 msgstr ""
 
-#: 1553.ACTOR_ORG_UNIT_CLOSED_DATE_NOT_FOUND:312
+#: 1553.ACTOR_ORG_UNIT_CLOSED_DATE_NOT_FOUND:311
 msgid "The requested actor_org_unit_closed_date was not found"
 msgstr ""
 
-#: 1531.ACTION_SURVEY_QUESTION_NOT_FOUND:250
+#: 1531.ACTION_SURVEY_QUESTION_NOT_FOUND:249
 msgid "The requested action_survey_question was not found"
 msgstr ""
 
-#: 1541.AUTHORITY_RECORD_DESCRIPTOR_NOT_FOUND:279
+#: 1541.AUTHORITY_RECORD_DESCRIPTOR_NOT_FOUND:278
 msgid "The requested authority_record_descriptor was not found"
 msgstr ""
 
-#: 1587.CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND:410
+#: 1587.CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND:409
 msgid "The requested container_call_number_bucket was not found"
 msgstr ""
 
@@ -265,37 +288,33 @@ msgstr ""
 msgid "The requested volume is marked as deleted"
 msgstr ""
 
-#: 1635.REPORTER_REPORT_NOT_FOUND:554
+#: 1635.REPORTER_REPORT_NOT_FOUND:553
 msgid "The requested reporter_report was not found"
 msgstr ""
 
-#: 1631.MONEY_COLLECTIONS_TRACKER_NOT_FOUND:542
-#: 1632.CONFIG_RULES_AGE_HOLD_PROTECT_NOT_FOUND:545
-#: 1633.MONEY_DESK_PAYMENT_NOT_FOUND:548
+#: 1631.MONEY_COLLECTIONS_TRACKER_NOT_FOUND:541
+#: 1632.CONFIG_RULES_AGE_HOLD_PROTECT_NOT_FOUND:544
+#: 1633.MONEY_DESK_PAYMENT_NOT_FOUND:547
 msgid "The requested money_collections_tracker was not found"
 msgstr ""
 
-#: 1651.AUTHORITY_RECORD_NUMBER_EXISTS:602
+#: 1651.AUTHORITY_RECORD_NUMBER_EXISTS:601
 msgid "An authority record already exists with the requested ARN"
 msgstr ""
 
-#: 11001.SERIAL_CAPTION_AND_PATTERN_HAS_ISSUANCES:1000
-msgid "The caption/pattern still has dependent issuances"
-msgstr ""
-
-#: 5000.PERM_FAILURE:814
+#: 5000.PERM_FAILURE:813
 msgid "Permission Denied"
 msgstr ""
 
-#: 7015.NEGATIVE_PATRON_BALANCE:884
+#: 7015.NEGATIVE_PATRON_BALANCE:883
 msgid "This requested action would result in a negative patron balance"
 msgstr ""
 
-#: 1569.ACTOR_USER_STANDING_PENALTY_NOT_FOUND:359
+#: 1569.ACTOR_USER_STANDING_PENALTY_NOT_FOUND:358
 msgid "The requested actor_user_standing_penalty was not found"
 msgstr ""
 
-#: 8000.OFFLINE_SESSION_ACTIVE:923
+#: 8000.OFFLINE_SESSION_ACTIVE:924
 msgid "An offline session for this location is currently processing"
 msgstr ""
 
@@ -303,75 +322,83 @@ msgstr ""
 msgid "The given username already exists in the database"
 msgstr ""
 
-#: 1602.ACTOR_STAT_CAT_ENTRY_NOT_FOUND:455
+#: 1602.ACTOR_STAT_CAT_ENTRY_NOT_FOUND:454
 msgid "The requested actor_stat_cat_entry was not found"
 msgstr ""
 
-#: 1710.CONTAINER_EXISTS:738
+#: 1710.CONTAINER_EXISTS:737
 msgid "User has already created a bucket with the requested name"
 msgstr ""
 
-#: 7001.PATRON_BAD_STANDING:841
-msgid "The patron in question is not able to check out materials because their account is in bad standing"
+#: 7001.PATRON_BAD_STANDING:840
+msgid ""
+"The patron in question is not able to check out materials because their "
+"account is in bad standing"
 msgstr ""
 
-#: 1525.BILLING_NOT_FOUND:232
+#: 1525.BILLING_NOT_FOUND:231
 msgid "Requested billing note does not exist"
 msgstr ""
 
-#: 11102.SERIAL_DISTRIBUTION_HAS_NO_CALL_NUMBER:1008
-msgid "Units cannot be created for the given item because its associated distribution does not have a call number."
+#: 11102.SERIAL_DISTRIBUTION_HAS_NO_CALL_NUMBER:1009
+msgid ""
+"Units cannot be created for the given item because its associated "
+"distribution does not have a call number."
 msgstr ""
 
-#: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:375
+#: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:374
 msgid "The requested container_biblio_record_entry_bucket was not found"
 msgstr ""
 
-#: 7021.RESERVATION_NOT_FOUND:905
+#: 7021.RESERVATION_NOT_FOUND:904
 msgid "Booking reservation not found"
 msgstr ""
 
-#: 1700.NON_CAT_TYPE_EXISTS:708
+#: 1700.NON_CAT_TYPE_EXISTS:707
 msgid "The non-cataloged type object already exists"
 msgstr ""
 
-#: 1860.ACQ_PURCHASE_ORDER_TOO_SHORT:661
-msgid "The requested acq.purchase_order cannot be split because it does not have more than one lineitem"
+#: 1860.ACQ_PURCHASE_ORDER_TOO_SHORT:660
+msgid ""
+"The requested acq.purchase_order cannot be split because it does not have "
+"more than one lineitem"
 msgstr ""
 
-#: 10004.ACQ_LINEITEM_NO_PRICE:980
+#: 10004.ACQ_LINEITEM_NO_PRICE:981
 msgid "The lineitem has no price"
 msgstr ""
 
 #: 1226.REFUND_EXCEEDS_DESK_PAYMENTS:140
-msgid "This refund amount is not allowed because it exceeds the total amount of desk payments for this transaction."
+msgid ""
+"This refund amount is not allowed because it exceeds the total amount of "
+"desk payments for this transaction."
 msgstr ""
 
-#: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:506
+#: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:505
 msgid "The requested actor_stat_cat_entry_user_map was not found"
 msgstr ""
 
-#: 1558.ASSET_COPY_NOTE_NOT_FOUND:326
+#: 1558.ASSET_COPY_NOTE_NOT_FOUND:325
 msgid "The requested asset_copy_note was not found"
 msgstr ""
 
-#: 1853.ACQ_FUND_COMBINED_BALANCE_NOT_FOUND:640
+#: 1853.ACQ_FUND_COMBINED_BALANCE_NOT_FOUND:639
 msgid "The requested acq.fund_combined_balance was not found"
 msgstr ""
 
-#: 1850.ACQ_FUND_ALLOCATION_TOTAL_NOT_FOUND:631
+#: 1850.ACQ_FUND_ALLOCATION_TOTAL_NOT_FOUND:630
 msgid "The requested acq.fund_allocation_total was not found"
 msgstr ""
 
-#: 1616.MONEY_OPEN_USER_CIRCULATION_SUMMARY_NOT_FOUND:497
+#: 1616.MONEY_OPEN_USER_CIRCULATION_SUMMARY_NOT_FOUND:496
 msgid "The requested money_open_user_circulation_summary was not found"
 msgstr ""
 
-#: 1624.MONEY_PAYMENT_NOT_FOUND:521
+#: 1624.MONEY_PAYMENT_NOT_FOUND:520
 msgid "The requested money_payment was not found"
 msgstr ""
 
-#: 1596.ACTOR_ORG_UNIT_TYPE_NOT_FOUND:437
+#: 1596.ACTOR_ORG_UNIT_TYPE_NOT_FOUND:436
 msgid "The requested actor_org_unit_type was not found"
 msgstr ""
 
@@ -383,51 +410,51 @@ msgstr ""
 msgid "The given user barcode already exists"
 msgstr ""
 
-#: 1713.SURVEY_RESPONSES_EXIST:747
+#: 1713.SURVEY_RESPONSES_EXIST:746
 msgid "Responses to this survey exist"
 msgstr ""
 
-#: 1544.CONFIG_METABIB_FIELD_NOT_FOUND:288
+#: 1544.CONFIG_METABIB_FIELD_NOT_FOUND:287
 msgid "The requested config_metabib_field was not found"
 msgstr ""
 
-#: 1584.ACTOR_ORG_ADDRESS_NOT_FOUND:402
+#: 1584.ACTOR_ORG_ADDRESS_NOT_FOUND:401
 msgid "The requested actor_org_address was not found"
 msgstr ""
 
-#: 11103.TRANSIT_CHECKIN_INTERVAL_BLOCK:1012
+#: 11103.TRANSIT_CHECKIN_INTERVAL_BLOCK:1013
 msgid "Checkin attempted on item during minimum transit checkin interval."
 msgstr ""
 
-#: 1501.BIBLIO_RECORD_ENTRY_NOT_FOUND:184
+#: 1501.BIBLIO_RECORD_ENTRY_NOT_FOUND:183
 msgid "The requested biblio_record_entry was not found"
 msgstr ""
 
-#: 1852.ACQ_FUND_SPENT_TOTAL_NOT_FOUND:637
+#: 1852.ACQ_FUND_SPENT_TOTAL_NOT_FOUND:636
 msgid "The requested acq.fund_spent_total was not found"
 msgstr ""
 
-#: 1613.PERMISSION_GRP_TREE_NOT_FOUND:488
+#: 1613.PERMISSION_GRP_TREE_NOT_FOUND:487
 msgid "The requested permission_grp_tree was not found"
 msgstr ""
 
-#: 10001.ACQ_LINEITEM_NO_COPIES:971
+#: 10001.ACQ_LINEITEM_NO_COPIES:972
 msgid "The lineitem has no attached copies"
 msgstr ""
 
-#: 1536.ACTION_IN_HOUSE_USE_NOT_FOUND:265
+#: 1536.ACTION_IN_HOUSE_USE_NOT_FOUND:264
 msgid "The requested action_in_house_use was not found"
 msgstr ""
 
-#: 1872.ACQ_LINEITEM_PROVIDER_ATTR_DEFINITION_NOT_FOUND:679
+#: 1872.ACQ_LINEITEM_PROVIDER_ATTR_DEFINITION_NOT_FOUND:678
 msgid "The requested acq.lineitem_provider_attr_definition was not found"
 msgstr ""
 
-#: 7007.COPY_NEEDED_FOR_HOLD:860
+#: 7007.COPY_NEEDED_FOR_HOLD:859
 msgid "Copy is needed to fulfill a hold"
 msgstr ""
 
-#: 1562.METABIB_METARECORD_SOURCE_MAP_NOT_FOUND:338
+#: 1562.METABIB_METARECORD_SOURCE_MAP_NOT_FOUND:337
 msgid "The requested metabib_metarecord_source_map was not found"
 msgstr ""
 
@@ -435,35 +462,37 @@ msgstr ""
 msgid "A cached object could not be retrieved by the given reference."
 msgstr ""
 
-#: 1612.CONFIG_RULES_MAX_FINE_NOT_FOUND:485
+#: 1612.CONFIG_RULES_MAX_FINE_NOT_FOUND:484
 msgid "The requested config_rules_max_fine was not found"
 msgstr ""
 
-#: 1557.ACTOR_ORG_UNIT_SETTING_NOT_FOUND:323
+#: 1557.ACTOR_ORG_UNIT_SETTING_NOT_FOUND:322
 msgid "The requested actor_org_unit_setting was not found"
 msgstr ""
 
-#: 1629.PERMISSION_USR_GRP_MAP_NOT_FOUND:535
+#: 1629.PERMISSION_USR_GRP_MAP_NOT_FOUND:534
 msgid "The requested permission_usr_grp_map was not found"
 msgstr ""
 
 #: 1215.CIRC_EXCEEDS_COPY_RANGE:99
-msgid "The selected copy may not circulate because the recipient's home location is not within the copy's circulation range"
+msgid ""
+"The selected copy may not circulate because the recipient's home location is"
+" not within the copy's circulation range"
 msgstr ""
 
-#: 10005.ACQ_LINEITEM_NO_PROVIDER:983
+#: 10005.ACQ_LINEITEM_NO_PROVIDER:984
 msgid "The lineitem has no provider"
 msgstr ""
 
-#: 1606.MONEY_WORK_PAYMENT_NOT_FOUND:467
+#: 1606.MONEY_WORK_PAYMENT_NOT_FOUND:466
 msgid "The requested money_work_payment was not found"
 msgstr ""
 
-#: 2000.BAD_PARAMS:765
+#: 2000.BAD_PARAMS:764
 msgid "Invalid parameters were encountered in a method"
 msgstr ""
 
-#: 1564.MONEY_CASH_PAYMENT_NOT_FOUND:344
+#: 1564.MONEY_CASH_PAYMENT_NOT_FOUND:343
 msgid "The requested money_cash_payment was not found"
 msgstr ""
 
@@ -471,7 +500,7 @@ msgstr ""
 msgid "The selected location cannot have volumes attached"
 msgstr ""
 
-#: 1704.TCN_EXISTS:720
+#: 1704.TCN_EXISTS:719
 msgid "A record already exists with the requested TCN value"
 msgstr ""
 
@@ -479,15 +508,15 @@ msgstr ""
 msgid "Placeholder event.  Used for development only"
 msgstr ""
 
-#: 1622.BIBLIO_RECORD_NODE_NOT_FOUND:515
+#: 1622.BIBLIO_RECORD_NODE_NOT_FOUND:514
 msgid "The requested biblio_record_node was not found"
 msgstr ""
 
-#: 1901.URL_VERIFY_SESSION_ALREADY_SEARCHED:761
+#: 1901.URL_VERIFY_SESSION_ALREADY_SEARCHED:760
 msgid "This session has already been searched."
 msgstr ""
 
-#: 1534.ACTOR_USER_SETTING_NOT_FOUND:259
+#: 1534.ACTOR_USER_SETTING_NOT_FOUND:258
 msgid "The requested actor_user_setting was not found"
 msgstr ""
 
@@ -495,63 +524,69 @@ msgstr ""
 msgid "The selecte bill has already been voided"
 msgstr ""
 
-#: 7026.PATRON_NOT_AN_ACTIVE_PASSWORD_RESET_REQUEST:820
-msgid "The user attempted to update their password using a stale or inactive password reset request session."
+#: 7026.PATRON_NOT_AN_ACTIVE_PASSWORD_RESET_REQUEST:819
+msgid ""
+"The user attempted to update their password using a stale or inactive "
+"password reset request session."
 msgstr ""
 
 #: 1222.PATRON_NO_EMAIL_ADDRESS:124
 msgid "The user does not have a valid email address assigned"
 msgstr ""
 
-#: 2005.OBJECT_UNIQUE_IDENTIFIER_USED:780
-msgid "You are trying to create an object with a unique identifier (such as a 'name' field) that is already in use."
+#: 2005.OBJECT_UNIQUE_IDENTIFIER_USED:779
+msgid ""
+"You are trying to create an object with a unique identifier (such as a "
+"'name' field) that is already in use."
 msgstr ""
 
-#: 1854.ACQ_FUND_SPENT_BALANCE_NOT_FOUND:643
+#: 1854.ACQ_FUND_SPENT_BALANCE_NOT_FOUND:642
 msgid "The requested acq.fund_spent_balance was not found"
 msgstr ""
 
-#: 11000.SERIAL_SUBSCRIPTION_NOT_EMPTY:996
+#: 11000.SERIAL_SUBSCRIPTION_NOT_EMPTY:997
 msgid "The subscription still has dependent objects"
 msgstr ""
 
-#: 1523.TITLE_NOTE_NOT_FOUND:229
+#: 1523.TITLE_NOTE_NOT_FOUND:228
 msgid "Requested title note does not exist"
 msgstr ""
 
-#: 1605.CONFIG_LIT_FORM_MAP_NOT_FOUND:464
+#: 1605.CONFIG_LIT_FORM_MAP_NOT_FOUND:463
 msgid "The requested config_lit_form_map was not found"
 msgstr ""
 
-#: 1567.METABIB_RECORD_DESCRIPTOR_NOT_FOUND:353
+#: 1567.METABIB_RECORD_DESCRIPTOR_NOT_FOUND:352
 msgid "The requested metabib_record_descriptor was not found"
 msgstr ""
 
-#: 10102.ACQ_NOT_CANCELABLE:990
+#: 10102.ACQ_NOT_CANCELABLE:991
 msgid "The object is not in a cancelable state."
 msgstr ""
 
-#: 7012.COPY_STATUS_MISSING:875
+#: 7012.COPY_STATUS_MISSING:874
 msgid "Copy is marked as missing"
 msgstr ""
 
-#: 1500.ACTION_CIRCULATION_NOT_FOUND:181
-msgid "Someone attempted to retrieve a circulation object from the system and the object was not found."
+#: 1500.ACTION_CIRCULATION_NOT_FOUND:180
+msgid ""
+"Someone attempted to retrieve a circulation object from the system and the "
+"object was not found."
 msgstr ""
 
-#: 4001.CREDIT_PROCESSOR_NOT_ENABLED:785
+#: 4001.CREDIT_PROCESSOR_NOT_ENABLED:784
 msgid "Credit card processor not enabled"
 msgstr ""
 
-#: 1630.ACTOR_USER_NOTE_NOT_FOUND:538
+#: 1630.ACTOR_USER_NOTE_NOT_FOUND:537
 msgid "The requested actor_user_note was not found"
 msgstr ""
 
-#: 7005.LOCATION_CIRC_NOT_ALLOWED:854
+#: 7005.LOCATION_CIRC_NOT_ALLOWED:853
 msgid "Location does not allow materials to circulate"
 msgstr ""
 
-#: 1508.ASSET_CALL_NUMBER_NOT_FOUND:216
+#: 1508.ASSET_CALL_NUMBER_NOT_FOUND:215
 msgid "Requested asset_call_number was not found"
 msgstr ""
 
@@ -559,51 +594,54 @@ msgstr ""
 msgid "The login failed"
 msgstr ""
 
-#: 1543.MONEY_CREDIT_CARD_PAYMENT_NOT_FOUND:285
+#: 1543.MONEY_CREDIT_CARD_PAYMENT_NOT_FOUND:284
 msgid "The requested money_credit_card_payment was not found"
 msgstr ""
 
-#: 7023.RESERVATION_BAD_PARAMS:911
+#: 7023.RESERVATION_BAD_PARAMS:910
 msgid "Provided parameters describe unacceptable reservation."
 msgstr ""
 
-#: 1857.ACQ_FUNDING_SOURCE_BALANCE_NOT_FOUND:652
+#: 1857.ACQ_FUNDING_SOURCE_BALANCE_NOT_FOUND:651
 msgid "The requested acq.funding_source_balance was not found"
 msgstr ""
 
-#: 10000.ACQ_LINEITEM_APPROVED:968
+#: 10000.ACQ_LINEITEM_APPROVED:969
 msgid "The lineitem cannot be altered because it has already been approved"
 msgstr ""
 
-#: 1714.HIGH_LEVEL_HOLD_HAS_NO_COPIES:750
-msgid "A hold request at a higher level than copy has been attempted, but there are no copies that belonging to the higher-level unit."
+#: 1714.HIGH_LEVEL_HOLD_HAS_NO_COPIES:749
+msgid ""
+"A hold request at a higher level than copy has been attempted, but there are"
+" no copies that belonging to the higher-level unit."
 msgstr ""
 
-#: 1611.ACTOR_STAT_CAT_ENTRY_DEFAULT_NOT_FOUND:482
+#: 1611.ACTOR_STAT_CAT_ENTRY_DEFAULT_NOT_FOUND:481
 msgid "The requested actor_stat_cat_entry_default was not found"
 msgstr ""
 
-#: 1535.METABIB_AUTHOR_FIELD_ENTRY_NOT_FOUND:262
+#: 1535.METABIB_AUTHOR_FIELD_ENTRY_NOT_FOUND:261
 msgid "The requested metabib_author_field_entry was not found"
 msgstr ""
 
-#: 1626.ASSET_STAT_CAT_ENTRY_NOT_FOUND:527
+#: 1626.ASSET_STAT_CAT_ENTRY_NOT_FOUND:526
 msgid "The requested asset_stat_cat_entry was not found"
 msgstr ""
 
-#: 1595.CONFIG_NON_CATALOGED_TYPE_NOT_FOUND:434
+#: 1595.CONFIG_NON_CATALOGED_TYPE_NOT_FOUND:433
 msgid "The requested config_non_cataloged_type was not found"
 msgstr ""
 
 #: 1225.TRANSIT_ABORT_NOT_ALLOWED:133
-msgid "The transit on this item may not be aborted due to the state the item is in"
+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:282
+#: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:281
 msgid "The requested config_language_map was not found"
 msgstr ""
 
-#: 1844.ACQ_FUNDING_SOURCE_NOT_FOUND:613
+#: 1844.ACQ_FUNDING_SOURCE_NOT_FOUND:612
 msgid "The requested acq.funding_source was not found"
 msgstr ""
 
@@ -611,7 +649,7 @@ msgstr ""
 msgid "The selected volume has copies attached"
 msgstr ""
 
-#: 1540.AUTHORITY_RECORD_ENTRY_NOT_FOUND:276
+#: 1540.AUTHORITY_RECORD_ENTRY_NOT_FOUND:275
 msgid "The requested authority_record_entry was not found"
 msgstr ""
 
@@ -619,19 +657,19 @@ msgstr ""
 msgid "The given copy is not in a standard circulation status"
 msgstr ""
 
-#: 1601.MONEY_BILLABLE_TRANSACTION_NOT_FOUND:452
+#: 1601.MONEY_BILLABLE_TRANSACTION_NOT_FOUND:451
 msgid "The requested money_billable_transaction was not found"
 msgstr ""
 
-#: 1871.PERMISSION_USR_OBJECT_PERM_MAP_NOT_FOUND:676
+#: 1871.PERMISSION_USR_OBJECT_PERM_MAP_NOT_FOUND:675
 msgid "The requested permission.usr_object_perm_map was not found"
 msgstr ""
 
-#: 7020.COPY_RESERVED:902
+#: 7020.COPY_RESERVED:901
 msgid "Item reserved for booking request"
 msgstr ""
 
-#: 1550.MONEY_OPEN_USER_SUMMARY_NOT_FOUND:304
+#: 1550.MONEY_OPEN_USER_SUMMARY_NOT_FOUND:303
 msgid "The requested money_open_user_summary was not found"
 msgstr ""
 
@@ -643,19 +681,21 @@ msgstr ""
 msgid "A checkout was attempted without a valid checkout permit key"
 msgstr ""
 
-#: 1593.MONEY_CREDIT_PAYMENT_NOT_FOUND:428
+#: 1593.MONEY_CREDIT_PAYMENT_NOT_FOUND:427
 msgid "The requested money_credit_payment was not found"
 msgstr ""
 
-#: 7017.ROUTE_TO_COPY_LOCATION:893
-msgid "A copy needs to be routed to a copy location.  The location should be specified within the event with a 'location' key"
+#: 7017.ROUTE_TO_COPY_LOCATION:892
+msgid ""
+"A copy needs to be routed to a copy location.  The location should be "
+"specified within the event with a 'location' key"
 msgstr ""
 
-#: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:503
+#: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:502
 msgid "The requested metabib_title_field_entry was not found"
 msgstr ""
 
-#: 7022.RESERVATION_CAPTURE_FAILED:908
+#: 7022.RESERVATION_CAPTURE_FAILED:907
 msgid "Booking reservation capture failed"
 msgstr ""
 
@@ -663,83 +703,92 @@ msgstr ""
 msgid "The requested item is not cataloged in the database"
 msgstr ""
 
-#: 1520.WORKSTATION_NOT_FOUND:226
+#: 1520.WORKSTATION_NOT_FOUND:225
 msgid "Requested workstation object does not exist"
 msgstr ""
 
-#: 1628.MONEY_BILLING_NOT_FOUND:532
+#: 1628.MONEY_BILLING_NOT_FOUND:531
 msgid "The requested money_billing was not found"
 msgstr ""
 
-#: 1507.CONTAINER_ITEM_NOT_FOUND:213
-msgid "Someone attempted to retrieve a container item object from the system and the object was not found."
+#: 1507.CONTAINER_ITEM_NOT_FOUND:212
+msgid ""
+"Someone attempted to retrieve a container item object from the system and "
+"the object was not found."
 msgstr ""
 
-#: 2002.DATABASE_QUERY_FAILED:771
+#: 2002.DATABASE_QUERY_FAILED:770
 msgid "The attempt to query to the DB failed"
 msgstr ""
 
-#: 1549.CONFIG_STANDING_NOT_FOUND:301
+#: 1549.CONFIG_STANDING_NOT_FOUND:300
 msgid "The requested config_standing was not found"
 msgstr ""
 
-#: 1861.ACQ_PURCHASE_ORDER_TOO_LATE:664
-msgid "The requested acq.purchase_order cannot be split because it has gone beyond the \"pending\" state"
+#: 1861.ACQ_PURCHASE_ORDER_TOO_LATE:663
+msgid ""
+"The requested acq.purchase_order cannot be split because it has gone beyond "
+"the \"pending\" state"
 msgstr ""
 
 #: 1210.INCORRECT_PASSWORD:78
 msgid "The provided password is not correct"
 msgstr ""
 
-#: 1582.CONFIG_ITEM_TYPE_MAP_NOT_FOUND:396
+#: 1582.CONFIG_ITEM_TYPE_MAP_NOT_FOUND:395
 msgid "The requested config_item_type_map was not found"
 msgstr ""
 
-#: 8007.OFFLINE_SESSION_EXISTS:944
+#: 8007.OFFLINE_SESSION_EXISTS:945
 msgid "A session with the given name already exists"
 msgstr ""
 
-#: 1650.CONFIG_CIRC_MATRIX_RULESET_NOT_FOUND:599
+#: 1650.CONFIG_CIRC_MATRIX_RULESET_NOT_FOUND:598
 msgid "The requested config_circ_matrix_ruleset_not_found was not found"
 msgstr ""
 
-#: 10002.ACQ_LINEITEM_DETAIL_NO_FUND:974
+#: 10002.ACQ_LINEITEM_DETAIL_NO_FUND:975
 msgid "The lineitem detail has no associated fund"
 msgstr ""
 
-#: 7003.COPY_CIRC_NOT_ALLOWED:848
+#: 7003.COPY_CIRC_NOT_ALLOWED:847
 msgid "Target copy is not allowed to circulate"
 msgstr ""
 
-#: 1530.CONFIG_IDENTIFICATION_TYPE_NOT_FOUND:247
+#: 1530.CONFIG_IDENTIFICATION_TYPE_NOT_FOUND:246
 msgid "The requested config_identification_type was not found"
 msgstr ""
 
-#: 1579.ASSET_COPY_LOCATION_NOT_FOUND:387
+#: 1579.ASSET_COPY_LOCATION_NOT_FOUND:386
 msgid "The requested asset_copy_location was not found"
 msgstr ""
 
-#: 1506.CONTAINER_NOT_FOUND:207
-msgid "Someone attempted to retrieve a container object from the system and the object was not found."
+#: 1506.CONTAINER_NOT_FOUND:206
+msgid ""
+"Someone attempted to retrieve a container object from the system and the "
+"object was not found."
 msgstr ""
 
-#: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:364
+#: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:363
 msgid "The requested asset_call_number_note was not found"
 msgstr ""
 
-#: 4004.CREDIT_PROCESSOR_NOT_SPECIFIED:794
-msgid "No credit card processor specified either in org unit settings or in call to credit service API method."
+#: 4004.CREDIT_PROCESSOR_NOT_SPECIFIED:793
+msgid ""
+"No credit card processor specified either in org unit settings or in call to"
+" credit service API method."
 msgstr ""
 
-#: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:239
+#: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:238
 msgid "Requested address was not found"
 msgstr ""
 
-#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:845
-msgid "The patron in question has the maximum number of items already checked out"
+#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:844
+msgid ""
+"The patron in question has the maximum number of items already checked out"
 msgstr ""
 
-#: 1609.CONFIG_RULES_RECURRING_FINE_NOT_FOUND:476
+#: 1609.CONFIG_RULES_RECURRING_FINE_NOT_FOUND:475
 msgid "The requested config_rules_recurring_fine was not found"
 msgstr ""
 
@@ -747,27 +796,28 @@ msgstr ""
 msgid "The Z search did not succeed"
 msgstr ""
 
-#: 1533.ACTOR_USR_NOTE_NOT_FOUND:256
+#: 1533.ACTOR_USR_NOTE_NOT_FOUND:255
 msgid "The requested actor_usr_note was not found"
 msgstr ""
 
-#: 1620.PERMISSION_GRP_PERM_MAP_NOT_FOUND:509
+#: 1620.PERMISSION_GRP_PERM_MAP_NOT_FOUND:508
 msgid "The requested permission_grp_perm_map was not found"
 msgstr ""
 
-#: 7025.PATRON_TOO_MANY_ACTIVE_PASSWORD_RESET_REQUESTS:817
-msgid "There are too many active password reset request sessions for this patron."
+#: 7025.PATRON_TOO_MANY_ACTIVE_PASSWORD_RESET_REQUESTS:816
+msgid ""
+"There are too many active password reset request sessions for this patron."
 msgstr ""
 
-#: 1709.MAX_HOLDS:735
+#: 1709.MAX_HOLDS:734
 msgid "User has reached the maximum number of holds"
 msgstr ""
 
-#: 1706.ITEM_BARCODE_EXISTS:726
+#: 1706.ITEM_BARCODE_EXISTS:725
 msgid "An item with the same barcode exists"
 msgstr ""
 
-#: 7014.COPY_IN_TRANSIT:881
+#: 7014.COPY_IN_TRANSIT:880
 msgid "Copy is in transit"
 msgstr ""
 
@@ -775,7 +825,7 @@ msgstr ""
 msgid "A copy with a remote circulating library (circ_lib) was encountered"
 msgstr ""
 
-#: 1702.OPEN_CIRCULATION_EXISTS:714
+#: 1702.OPEN_CIRCULATION_EXISTS:713
 msgid "There is an open circulation on the requested item"
 msgstr ""
 
@@ -787,11 +837,11 @@ msgstr ""
 msgid "The selected bib record has volumes attached"
 msgstr ""
 
-#: 1503.ACTION_HOLD_REQUEST_NOT_FOUND:193
+#: 1503.ACTION_HOLD_REQUEST_NOT_FOUND:192
 msgid "The requested action_hold_request was not found"
 msgstr ""
 
-#: 8011.SKIP_ASSET_CHANGED:956
+#: 8011.SKIP_ASSET_CHANGED:957
 msgid "Asset status was changed since the offline transaction was recorded"
 msgstr ""
 
@@ -799,147 +849,168 @@ msgstr ""
 msgid "The patron has too many overdue items"
 msgstr ""
 
-#: 1863.ACQ_FUND_EXCEEDS_WARN_PERCENT:670
-msgid "Activating the requested acq.purchase_order would encumber it beyond its warning level."
+#: 1863.ACQ_FUND_EXCEEDS_WARN_PERCENT:669
+msgid ""
+"Activating the requested acq.purchase_order would encumber it beyond its "
+"warning level."
 msgstr ""
 
-#: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:384
+#: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:383
 msgid "The requested action_hold_notification was not found"
 msgstr ""
 
-#: 1610.MONEY_CHECK_PAYMENT_NOT_FOUND:479
+#: 1610.MONEY_CHECK_PAYMENT_NOT_FOUND:478
 msgid "The requested money_check_payment was not found"
 msgstr ""
 
-#: 1623.PERMISSION_USR_PERM_MAP_NOT_FOUND:518
+#: 1623.PERMISSION_USR_PERM_MAP_NOT_FOUND:517
 msgid "The requested permission_usr_perm_map was not found"
 msgstr ""
 
-#: 1581.ASSET_STAT_CAT_ENTRY_COPY_MAP_NOT_FOUND:393
+#: 1581.ASSET_STAT_CAT_ENTRY_COPY_MAP_NOT_FOUND:392
 msgid "The requested asset_stat_cat_entry_copy_map was not found"
 msgstr ""
 
-#: 7010.COPY_ALERT_MESSAGE:869
+#: 7010.COPY_ALERT_MESSAGE:868
 msgid "The requested copy has an alert message attached"
 msgstr ""
 
-#: 7006.COPY_IS_REFERENCE:857
+#: 7006.COPY_IS_REFERENCE:856
 msgid "Copy is reference material"
 msgstr ""
 
-#: 1547.CONFIG_ITEM_FORM_MAP_NOT_FOUND:297
+#: 1547.CONFIG_ITEM_FORM_MAP_NOT_FOUND:296
 msgid "The requested config_item_form_map was not found"
 msgstr ""
 
-#: 1592.CONTAINER_USER_BUCKET_NOT_FOUND:425
+#: 1592.CONTAINER_USER_BUCKET_NOT_FOUND:424
 msgid "The requested container_user_bucket was not found"
 msgstr ""
 
-#: 1617.ACTION_UNFULFILLED_HOLD_LIST_NOT_FOUND:500
+#: 1617.ACTION_UNFULFILLED_HOLD_LIST_NOT_FOUND:499
 msgid "The requested action_unfulfilled_hold_list was not found"
 msgstr ""
 
-#: 1552.ACTOR_ORG_UNIT_HOURS_OF_OPERATION_NOT_FOUND:309
+#: 1552.ACTOR_ORG_UNIT_HOURS_OF_OPERATION_NOT_FOUND:308
 msgid "The requested actor_org_unit_hours_of_operation was not found"
 msgstr ""
 
-#: 1576.EX_NOT_FOUND:378
+#: 1576.EX_NOT_FOUND:377
 msgid "The requested ex was not found"
 msgstr ""
 
-#: 7019.HOLD_CAPTURE_DELAYED:899
+#: 7019.HOLD_CAPTURE_DELAYED:898
 msgid "Hold capture was delayed for this item"
 msgstr ""
 
-#: 9000.REPORT_TEMPLATE_EXISTS:960
+#: 9000.REPORT_TEMPLATE_EXISTS:961
 msgid "A report template with the given name and folder already exists"
 msgstr ""
 
-#: 1502.ASSET_COPY_NOT_FOUND:190
-msgid "Someone attempted to retrieve a copy object from the system and the object was not found."
+#: 1502.ASSET_COPY_NOT_FOUND:189
+msgid ""
+"Someone attempted to retrieve a copy object from the system and the object "
+"was not found."
 msgstr ""
 
-#: 1703.WORKSTATION_NAME_EXISTS:717
+#: 1703.WORKSTATION_NAME_EXISTS:716
 msgid "A workstation with that name already exists"
 msgstr ""
 
 #: 1235.INVALID_USER_XACT_ID:171
-msgid "While you were trying to make payments, this account's transaction history changed.  Please go back and try again."
+msgid ""
+"While you were trying to make payments, this account's transaction history "
+"changed.  Please go back and try again."
 msgstr ""
 
-#: 1568.CONFIG_COPY_STATUS_NOT_FOUND:356
+#: 1568.CONFIG_COPY_STATUS_NOT_FOUND:355
 msgid "The requested config_copy_status was not found"
 msgstr ""
 
-#: 1539.CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND:273
+#: 1539.CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND:272
 msgid "The requested container_copy_bucket_item was not found"
 msgstr ""
 
-#: 1590.ACTOR_STAT_CAT_NOT_FOUND:419
+#: 1590.ACTOR_STAT_CAT_NOT_FOUND:418
 msgid "The requested actor_stat_cat was not found"
 msgstr ""
 
-#: 7027.PATRON_PASSWORD_WAS_NOT_STRONG:823
+#: 7027.PATRON_PASSWORD_WAS_NOT_STRONG:822
 msgid "The user attempted to set their password to a weak value."
 msgstr ""
 
-#: 9001.REPORT_REPORT_EXISTS:964
+#: 9001.REPORT_REPORT_EXISTS:965
 msgid "A report with the given name and folder already exists"
 msgstr ""
 
-#: 1705.VOLUME_LABEL_EXISTS:723
+#: 11104.SERIAL_CORRUPT_PATTERN_CODE:1018
+msgid ""
+"A serial pattern code has been configured that fails to conform to MFHD "
+"standards for fields 853-855."
+msgstr ""
+
+#: 1705.VOLUME_LABEL_EXISTS:722
 msgid "A volume with the same label, title and owning library exists"
 msgstr ""
 
-#: 8008.OFFLINE_INVALID_SESSION:947
+#: 8008.OFFLINE_INVALID_SESSION:948
 msgid "The session name is invalid"
 msgstr ""
 
-#: 7009.CIRC_CLAIMS_RETURNED:866
+#: 7025.COPY_STATUS_LONG_OVERDUE:916
+msgid "Copy is marked as long-overdue"
+msgstr ""
+
+#: 7009.CIRC_CLAIMS_RETURNED:865
 msgid "Requested circulation is marked claims returned"
 msgstr ""
 
-#: 1577.ACTION_HOLD_COPY_MAP_NOT_FOUND:381
+#: 1577.ACTION_HOLD_COPY_MAP_NOT_FOUND:380
 msgid "The requested action_hold_copy_map was not found"
 msgstr ""
 
-#: 1648.PERMISSION_USR_WORK_OU_MAP_NOT_FOUND:593
+#: 1648.PERMISSION_USR_WORK_OU_MAP_NOT_FOUND:592
 msgid "The requested permission_usr_work_ou_map was not found"
 msgstr ""
 
-#: 1638.REPORTER_TEMPLATE_FOLDER_NOT_FOUND:563
+#: 1638.REPORTER_TEMPLATE_FOLDER_NOT_FOUND:562
 msgid "The requested reporter_template_folder was not found"
 msgstr ""
 
-#: 4002.CREDIT_PROCESSOR_BAD_PARAMS:788
+#: 4002.CREDIT_PROCESSOR_BAD_PARAMS:787
 msgid "Not enough parameters to use credit card processor"
 msgstr ""
 
-#: 7024.HOLD_RESERVATION_CONFLICT:914
-msgid "Both a hold and a reservation exist for this item; staff intervention is required to resolve the conflict."
+#: 7024.HOLD_RESERVATION_CONFLICT:913
+msgid ""
+"Both a hold and a reservation exist for this item; staff intervention is "
+"required to resolve the conflict."
 msgstr ""
 
-#: 1644.VANDELAY_AUTHORITY_QUEUE_NOT_FOUND:581
+#: 1644.VANDELAY_AUTHORITY_QUEUE_NOT_FOUND:580
 msgid "The requested vandelay_authority_queue was not found"
 msgstr ""
 
-#: 4040.CREDIT_PROCESSOR_SUCCESS_WO_RECORD:809
-msgid "A *TERRIBLE* problem has occurred: a credit card transaction was processed successfully, but the patron's payment could not be recorded within Evergreen.  Please seek assistance."
+#: 4040.CREDIT_PROCESSOR_SUCCESS_WO_RECORD:808
+msgid ""
+"A *TERRIBLE* problem has occurred: a credit card transaction was processed "
+"successfully, but the patron's payment could not be recorded within "
+"Evergreen.  Please seek assistance."
 msgstr ""
 
-#: 1634.REPORTER_TEMPLATE_NOT_FOUND:551
+#: 1634.REPORTER_TEMPLATE_NOT_FOUND:550
 msgid "The requested reporter_template was not found"
 msgstr ""
 
-#: 1583.ACTION_SURVEY_NOT_FOUND:399
+#: 1583.ACTION_SURVEY_NOT_FOUND:398
 msgid "The requested action_survey was not found"
 msgstr ""
 
-#: 1859.ACQ_PURCHASE_ORDER_NOT_FOUND:658
+#: 1859.ACQ_PURCHASE_ORDER_NOT_FOUND:657
 msgid "The requested acq.purchase_order was not found"
 msgstr ""
 
-#: 1625.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND:524
+#: 1625.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND:523
 msgid "The requested container_biblio_record_entry_bucket_item was not found"
 msgstr ""
 
@@ -947,51 +1018,55 @@ msgstr ""
 msgid "User login failed"
 msgstr ""
 
-#: 1873.ACQ_CURRENCY_TYPE_NOT_FOUND:682
+#: 11001.SERIAL_CAPTION_AND_PATTERN_HAS_ISSUANCES:1001
+msgid "The caption/pattern still has dependent issuances"
+msgstr ""
+
+#: 1873.ACQ_CURRENCY_TYPE_NOT_FOUND:681
 msgid "The requested acq.currency_type was not found"
 msgstr ""
 
-#: 1599.MONEY_GROCERY_NOT_FOUND:446
+#: 1599.MONEY_GROCERY_NOT_FOUND:445
 msgid "The requested money_grocery was not found"
 msgstr ""
 
-#: 8009.OFFLINE_NO_ORG:950 8010.OFFLINE_SESSION_COMPLETE:953
+#: 8009.OFFLINE_NO_ORG:951 8010.OFFLINE_SESSION_COMPLETE:954
 msgid "No org id was provided"
 msgstr ""
 
-#: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:253
-msgid "The requested money_billable_transaction_summary was not found"
+#: 1236.PATRON_EXCEEDS_LOST_COUNT:174
+msgid "The patron has too many lost items."
 msgstr ""
 
-#: 8001.OFFLINE_SESSION_FILE_EXISTS:926
+#: 8001.OFFLINE_SESSION_FILE_EXISTS:927
 msgid "An offline file for this workstation exists within this session"
 msgstr ""
 
-#: 2003.INTERNAL_SERVER_ERROR:774
+#: 2003.INTERNAL_SERVER_ERROR:773
 msgid "There was an internal server error"
 msgstr ""
 
-#: 4020.CREDIT_PROCESSOR_DECLINED_TRANSACTION:803
+#: 4020.CREDIT_PROCESSOR_DECLINED_TRANSACTION:802
 msgid "The credit card processor has declined the transaction."
 msgstr ""
 
-#: 1647.VANDELAY_QUEUED_AUTHORITY_RECORD_NOT_FOUND:590
+#: 1647.VANDELAY_QUEUED_AUTHORITY_RECORD_NOT_FOUND:589
 msgid "The requested vandelay_queued_authority_record was not found"
 msgstr ""
 
-#: 8002.OFFLINE_FILE_ERROR:929
+#: 8002.OFFLINE_FILE_ERROR:930
 msgid "An offline file or directory could not be created or accessed"
 msgstr ""
 
-#: 1597.BIBLIO_RECORD_NOTE_NOT_FOUND:440
+#: 1597.BIBLIO_RECORD_NOTE_NOT_FOUND:439
 msgid "The requested biblio_record_note was not found"
 msgstr ""
 
-#: 1846.ACQ_FUNDING_SOURCE_CREDIT_NOT_FOUND:619
+#: 1846.ACQ_FUNDING_SOURCE_CREDIT_NOT_FOUND:618
 msgid "The requested acq.funding_source_credit was not found"
 msgstr ""
 
-#: 1588.ASSET_STAT_CAT_NOT_FOUND:413
+#: 1588.ASSET_STAT_CAT_NOT_FOUND:412
 msgid "The requested asset_stat_cat was not found"
 msgstr ""
 
@@ -999,19 +1074,19 @@ msgstr ""
 msgid "The patron's account has expired"
 msgstr ""
 
-#: 1560.METABIB_METARECORD_NOT_FOUND:332
+#: 1560.METABIB_METARECORD_NOT_FOUND:331
 msgid "The requested metabib_metarecord was not found"
 msgstr ""
 
-#: 1707.HOLD_EXISTS:729
+#: 1707.HOLD_EXISTS:728
 msgid "User already has an open hold on the selected item"
 msgstr ""
 
-#: 1712.AUTH_QUEUE_EXISTS:744
+#: 1712.AUTH_QUEUE_EXISTS:743
 msgid "An authority record queue with the same name already exists"
 msgstr ""
 
-#: 1566.MONEY_FORGIVE_PAYMENT_NOT_FOUND:350
+#: 1566.MONEY_FORGIVE_PAYMENT_NOT_FOUND:349
 msgid "The requested money_forgive_payment was not found"
 msgstr ""
 
@@ -1019,39 +1094,42 @@ msgstr ""
 msgid "The saved item has been edited by another user"
 msgstr ""
 
-#: 1843.ACQ_LINEITEM_ATTR_NOT_FOUND:610
+#: 1843.ACQ_LINEITEM_ATTR_NOT_FOUND:609
 msgid "The requested acq.lineitem_attr was not found"
 msgstr ""
 
-#: 1715.HOLD_SUSPEND_AFTER_CAPTURE:753
+#: 1715.HOLD_SUSPEND_AFTER_CAPTURE:752
 msgid "Attempt to suspend a hold after it has been captured."
 msgstr ""
 
-#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:732
-msgid "A duplicate money.collections_tracker object already exists in the database"
+#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:731
+msgid ""
+"A duplicate money.collections_tracker object already exists in the database"
 msgstr ""
 
-#: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:491
+#: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:490
 msgid "The requested action_survey_answer was not found"
 msgstr ""
 
-#: 2004.ACTOR_USER_DELETE_OPEN_XACTS:777
-msgid "The user you have attempted to delete cannot be deleted because it has open circulations and/or unpaid bills."
+#: 2004.ACTOR_USER_DELETE_OPEN_XACTS:776
+msgid ""
+"The user you have attempted to delete cannot be deleted because it has open "
+"circulations and/or unpaid bills."
 msgstr ""
 
-#: 1858.ACQ_LINEITEM_NOT_FOUND:655
+#: 1858.ACQ_LINEITEM_NOT_FOUND:654
 msgid "The requested acq.lineitem was not found"
 msgstr ""
 
-#: 1845.ACQ_PROVIDER_NOT_FOUND:616
+#: 1845.ACQ_PROVIDER_NOT_FOUND:615
 msgid "The requested acq.provider was not found"
 msgstr ""
 
-#: 1600.CONFIG_BIB_SOURCE_NOT_FOUND:449
+#: 1600.CONFIG_BIB_SOURCE_NOT_FOUND:448
 msgid "The requested config_bib_source was not found"
 msgstr ""
 
-#: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:587
+#: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:586
 msgid "The requested vandelay_queued_bib_record was not found"
 msgstr ""
 
@@ -1059,27 +1137,27 @@ msgstr ""
 msgid "The requested bib record is marked as deleted"
 msgstr ""
 
-#: 1841.ACQ_PICKLIST_NOT_FOUND:607
+#: 1841.ACQ_PICKLIST_NOT_FOUND:606
 msgid "The requested acq.picklist was not found"
 msgstr ""
 
-#: 7018.COPY_MARKED_LOST:896
+#: 7018.COPY_MARKED_LOST:895
 msgid "The requested item is already marked as lost"
 msgstr ""
 
-#: 1642.CONFIG_CIRC_MODIFIER_NOT_FOUND:575
+#: 1642.CONFIG_CIRC_MODIFIER_NOT_FOUND:574
 msgid "The requested config_circ_modifier was not found"
 msgstr ""
 
-#: 1701.COPY_LOCATION_EXISTS:711
+#: 1701.COPY_LOCATION_EXISTS:710
 msgid "The copy location object already exists"
 msgstr ""
 
-#: 1589.ACTOR_CARD_NOT_FOUND:416
-msgid "The requested actor_card was not found"
+#: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:252
+msgid "The requested money_billable_transaction_summary was not found"
 msgstr ""
 
-#: 1856.ACQ_FUNDING_SOURCE_ALLOCATION_TOTAL_NOT_FOUND:649
+#: 1856.ACQ_FUNDING_SOURCE_ALLOCATION_TOTAL_NOT_FOUND:648
 msgid "The requested acq.funding_source_allocation_total was not found"
 msgstr ""
 
@@ -1087,70 +1165,64 @@ msgstr ""
 msgid "The patron's card is not active"
 msgstr ""
 
-#: 1881.PERMISSION_GRP_PENALTY_THRESHOLD_NOT_FOUND:703
+#: 1881.PERMISSION_GRP_PENALTY_THRESHOLD_NOT_FOUND:702
 msgid "The requested permission_grp_penalty_threshold was not found"
 msgstr ""
 
-#: 7013.PATRON_EXCEEDS_FINES:878
+#: 7013.PATRON_EXCEEDS_FINES:877
 msgid "The patron in question has reached the maximum fine amount"
 msgstr ""
 
-#: 1586.ACTOR_ORG_UNIT_NOT_FOUND:407
+#: 1586.ACTOR_ORG_UNIT_NOT_FOUND:406
 msgid "The requested actor_org_unit was not found"
 msgstr ""
 
-#: 1574.CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND:372
+#: 1574.CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND:371
 msgid "The requested container_call_number_bucket_item was not found"
 msgstr ""
 
-#: 10003.ACQ_LINEITEM_DETAIL_NO_ORG:977
-msgid "The lineitem detail has no owning_lib"
-msgstr ""
-
-#: 11101.SERIAL_DISTRIBUTION_HAS_NO_COPY_TEMPLATE:1004
-msgid "Units cannot be created for the given item because its associated distribution does not have a copy template."
+#: 11101.SERIAL_DISTRIBUTION_HAS_NO_COPY_TEMPLATE:1005
+msgid ""
+"Units cannot be created for the given item because its associated "
+"distribution does not have a copy template."
 msgstr ""
 
-#: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:221
+#: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:220
 msgid "The requested action_hold_transit_copy was not found"
 msgstr ""
 
-#: 1594.AUTHORITY_FULL_REC_NOT_FOUND:431
+#: 1594.AUTHORITY_FULL_REC_NOT_FOUND:430
 msgid "The requested authority_full_rec was not found"
 msgstr ""
 
-#: 1565.ACTOR_PROFILE_NOT_FOUND:347
+#: 1565.ACTOR_PROFILE_NOT_FOUND:346
 msgid "The requested actor_profile was not found"
 msgstr ""
 
-#: 1580.METABIB_VIRTUAL_RECORD_NOT_FOUND:390
+#: 1580.METABIB_VIRTUAL_RECORD_NOT_FOUND:389
 msgid "The requested metabib_virtual_record was not found"
 msgstr ""
 
-#: 1640.ACTOR_USR_ORG_UNIT_OPT_IN_NOT_FOUND:569
+#: 1640.ACTOR_USR_ORG_UNIT_OPT_IN_NOT_FOUND:568
 msgid "The requested actor_usr_org_unit_opt_in was not found"
 msgstr ""
 
-#: 1572.AUTHORITY_RECORD_NOTE_NOT_FOUND:367
+#: 1572.AUTHORITY_RECORD_NOTE_NOT_FOUND:366
 msgid "The requested authority_record_note was not found"
 msgstr ""
 
-#: 1848.ACQ_FUND_NOT_FOUND:625
+#: 1848.ACQ_FUND_NOT_FOUND:624
 msgid "The requested acq.fund was not found"
 msgstr ""
 
-#: 1603.CONTAINER_USER_BUCKET_ITEM_NOT_FOUND:458
+#: 1603.CONTAINER_USER_BUCKET_ITEM_NOT_FOUND:457
 msgid "The requested container_user_bucket_item was not found"
 msgstr ""
 
-#: 1615.ACTION_NON_CATALOGED_CIRCULATION_NOT_FOUND:494
+#: 1615.ACTION_NON_CATALOGED_CIRCULATION_NOT_FOUND:493
 msgid "The requested action_non_cataloged_circulation was not found"
 msgstr ""
 
-#: 11104.SERIAL_CORRUPT_PATTERN_CODE:1017
-msgid "A serial pattern code has been configured that fails to conform to MFHD standards for fields 853-855."
-msgstr ""
-
-#: 1604.MONEY_USER_SUMMARY_NOT_FOUND:461
+#: 1604.MONEY_USER_SUMMARY_NOT_FOUND:460
 msgid "The requested money_user_summary was not found"
 msgstr ""
index 21971e2..221a476 100644 (file)
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-15 19:37+0000\n"
+"POT-Creation-Date: 2013-09-10 14:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.7.0\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
 "X-Accelerator-Marker: &\n"
 
 #: lang.version
@@ -220,6 +220,26 @@ msgstr ""
 msgid "&Save these transactions"
 msgstr ""
 
+#: common.debug.label
+msgid "Debug:"
+msgstr ""
+
+#: common.debug.btn.execute
+msgid "Execute"
+msgstr ""
+
+#: common.debug.btn.inspect
+msgid "Inspect"
+msgstr ""
+
+#: common.debug.btn.js2JSON
+msgid "js2JSON"
+msgstr ""
+
+#: common.debug.menu.btn
+msgid "Debug"
+msgstr ""
+
 #: common.true
 msgid "True"
 msgstr ""
@@ -294,6 +314,16 @@ msgctxt "common.textbox.select_all"
 msgid "Select All"
 msgstr ""
 
+#: common.clipboard.copy_data.desc
+msgid "Choose the data to copy into the clipboard:"
+msgstr ""
+
+#: common.clipboard.close.label
+#: common.clipboard.close.accesskey
+msgctxt "common.clipboard.close.label common.clipboard.close.accesskey"
+msgid "&Close"
+msgstr ""
+
 #: common.sort.first.ascending
 msgid "Sort First (Ascending)"
 msgstr ""
@@ -900,6 +930,20 @@ msgstr ""
 msgid "&Actions for Selected Patrons"
 msgstr ""
 
+#: staff.auth.help_btn.label
+#: staff.auth.help_btn.accesskey
+msgid "He&lp"
+msgstr ""
+
+#: staff.auth.help.menu.contents.label
+#: staff.auth.help.menu.contents.accesskey
+msgid "&Contents"
+msgstr ""
+
+#: staff.auth.help.menu.check_upgrades.label
+msgid "Check for upgrades"
+msgstr ""
+
 #: staff.auth.login_header
 msgid "Log in"
 msgstr ""
@@ -946,6 +990,7 @@ msgid "Exit Evergreen"
 msgstr ""
 
 #: staff.auth.quit_prompt.accesskey
+msgctxt "staff.auth.quit_prompt.accesskey"
 msgid "x"
 msgstr ""
 
@@ -1023,6 +1068,26 @@ msgstr ""
 msgid "Permanent"
 msgstr ""
 
+#: staff.symbols.west_european
+msgid "West-European"
+msgstr ""
+
+#: staff.symbols.turkish
+msgid "Turkish"
+msgstr ""
+
+#: staff.symbols.cyrillic
+msgid "Cyrillic"
+msgstr ""
+
+#: staff.symbols.slavic
+msgid "Slavic"
+msgstr ""
+
+#: staff.symbols.hungarian
+msgid "Hungarian"
+msgstr ""
+
 #: staff.bills_current_payment_label
 msgid "Current Payment"
 msgstr ""
@@ -1241,6 +1306,18 @@ msgctxt "staff.cat.fixed.VIS.key"
 msgid "V"
 msgstr ""
 
+#: staff.bibs_abreast.view_bib
+msgid "View Bib"
+msgstr ""
+
+#: staff.bibs_abreast.edit_bib
+msgid "Edit Bib"
+msgstr ""
+
+#: staff.bibs_abreast.holdings
+msgid "Holdings"
+msgstr ""
+
 #: staff.cat.opac.add_bucket.label
 #: staff.cat.opac.add_bucket.accesskey
 msgctxt "staff.cat.opac.add_bucket.label staff.cat.opac.add_bucket.accesskey"
@@ -2872,7 +2949,8 @@ msgid "-"
 msgstr ""
 
 #: staff.main.menu.admin.change_session.label
-msgid "Operator Change: New"
+#: staff.main.menu.admin.change_session.accesskey
+msgid "&Operator Change: New"
 msgstr ""
 
 #: staff.main.menu.admin.clear_cache.accesskey
@@ -3063,6 +3141,10 @@ msgstr ""
 msgid "Org Unit Proximity Adjustments"
 msgstr ""
 
+#: staff.main.menu.admin.server_admin.conify.z3950_index_field_map.label
+msgid "Z39.50 Index Field Maps"
+msgstr ""
+
 #: staff.main.menu.admin.server_admin.conify.circulation_modifier.label
 msgid "Circulation Modifiers"
 msgstr ""
@@ -3873,7 +3955,7 @@ msgid ""
 msgstr ""
 
 #: staff.main.menu.circ.hold_clear.label
-msgid "Clear Shelf-Expired Holds"
+msgid "Clear Holds Shelf"
 msgstr ""
 
 #: staff.main.menu.circ.hold_capture.label
@@ -4154,6 +4236,7 @@ msgid ""
 msgstr ""
 
 #: staff.main.menu.entity.copy.label
+msgctxt "staff.main.menu.entity.copy.label"
 msgid "Items"
 msgstr ""
 
@@ -5730,6 +5813,7 @@ msgid "Title"
 msgstr ""
 
 #: staff.next.range
+msgctxt "staff.next.range"
 msgid "Next"
 msgstr ""
 
@@ -5896,6 +5980,10 @@ msgctxt "staff.patron_display.holds_available.label"
 msgid "Available:"
 msgstr ""
 
+#: staff.patron_display.holds_available_behind_desk.label
+msgid "Behind Desk:"
+msgstr ""
+
 #: staff.patron_display.home_ou.label
 msgctxt "staff.patron_display.home_ou.label"
 msgid "Home Library:"
@@ -6564,6 +6652,7 @@ msgid "Patron Statistical Categories"
 msgstr ""
 
 #: staff.previous.range
+msgctxt "staff.previous.range"
 msgid "Previous"
 msgstr ""
 
@@ -6641,6 +6730,15 @@ msgstr ""
 msgid "Delete MFHD Record"
 msgstr ""
 
+#: staff.serial.scap_editor.title.label
+msgid "Caption and Pattern"
+msgstr ""
+
+#: staff.serial.pattern_wizard.title
+msgctxt "staff.serial.pattern_wizard.title"
+msgid "Pattern Code Wizard"
+msgstr ""
+
 #: staff.serial.scap_editor.pattern_wizard.label
 #: staff.serial.scap_editor.pattern_wizard.accesskey
 msgid "Pattern Code Wi&zard"
@@ -6661,11 +6759,19 @@ msgstr ""
 msgid "Caption and Pattern &Notes"
 msgstr ""
 
+#: staff.serial.sbsum_editor.basicsummary.label
+msgid "Basic Summary"
+msgstr ""
+
 #: staff.serial.sbsum_editor.modify.label
 #: staff.serial.sbsum_editor.modify.accesskey
 msgid "&Modify Basic Summary"
 msgstr ""
 
+#: staff.serial.sisum_editor.title.label
+msgid "Index Summary"
+msgstr ""
+
 #: staff.serial.sisum_editor.modify.label
 #: staff.serial.sisum_editor.modify.accesskey
 msgid "&Modify Index Summary"
@@ -6676,6 +6782,10 @@ msgstr ""
 msgid "&Modify Supplement Summary"
 msgstr ""
 
+#: staff.serial.sssum_editor.summary.label
+msgid "Supplement Summary"
+msgstr ""
+
 #: staff.serial.sdist_editor.modify.label
 #: staff.serial.sdist_editor.modify.accesskey
 msgid "&Modify Distribution(s)"
@@ -6691,6 +6801,18 @@ msgstr ""
 msgid "Distribution &Notes"
 msgstr ""
 
+#: staff.serial.sdist_editor.distribution.value
+msgid "Distribution"
+msgstr ""
+
+#: staff.serial.sdist_editor.libopt.label
+msgid "Library Specific Options"
+msgstr ""
+
+#: staff.serial.sdist_editor.libopt.desc
+msgid "Note: Changing the 'Holding Lib' will unset all of these values"
+msgstr ""
+
 #: staff.serial.serctrl_view.label
 msgid "Serial Control View"
 msgstr ""
@@ -6725,6 +6847,27 @@ msgstr ""
 msgid "Item &Notes"
 msgstr ""
 
+#: staff.serial.sitem_editor.title
+msgid "Item Editor"
+msgstr ""
+
+#: staff.serial.sitem_editor.item.label
+msgid "Item"
+msgstr ""
+
+#: staff.serial.sitem_editor.item_dates.btn
+msgid "Item Dates"
+msgstr ""
+
+#: staff.serial.sitem_editor.item_dates.accesskey
+msgctxt "staff.serial.sitem_editor.item_dates.accesskey"
+msgid "1"
+msgstr ""
+
+#: staff.serial.sstr_editor.stream.label
+msgid "Stream"
+msgstr ""
+
 #: staff.serial.sstr_editor.modify.label
 #: staff.serial.sstr_editor.modify.accesskey
 msgid "&Modify Stream(s)"
@@ -6750,6 +6893,30 @@ msgstr ""
 msgid "Subscription &Notes"
 msgstr ""
 
+#: staff.serial.manage_dists.title.label
+msgctxt "staff.serial.manage_dists.title.label"
+msgid "Distributions"
+msgstr ""
+
+#: staff.serial.manage_dists.show_sdists.label
+msgid "Show Dists."
+msgstr ""
+
+#: staff.serial.manage_dists.show_sdists_groups.label
+msgctxt "staff.serial.manage_dists.show_sdists_groups.label"
+msgid "Show Groups"
+msgstr ""
+
+#: staff.serial.manage_dists.actions.cmd_menu.label
+msgctxt "staff.serial.manage_dists.actions.cmd_menu.label"
+msgid "Actions for Selected Row"
+msgstr ""
+
+#: staff.serial.manage_dists.actions.select_obj.desc
+msgctxt "staff.serial.manage_dists.actions.select_obj.desc"
+msgid "Please select an object to edit"
+msgstr ""
+
 #: staff.serial.manage_dists.actions.cmd_add_sstr.label
 msgid "Add Stream"
 msgstr ""
@@ -6864,6 +7031,452 @@ msgstr ""
 msgid "Context:"
 msgstr ""
 
+#: staff.serial.manage_subs.tab.label
+msgctxt "staff.serial.manage_subs.tab.label"
+msgid "Subscriptions"
+msgstr ""
+
+#: staff.serial.manage_subs.cmd_add_sub.label
+msgid "Add Subscription"
+msgstr ""
+
+#: staff.serial.manage_subs.cmd_add_sdist.label
+msgid "Add Distribution"
+msgstr ""
+
+#: staff.serial.manage_subs.cmd_add_siss.label
+msgid "Add Issuance"
+msgstr ""
+
+#: staff.serial.manage_subs.cmd_add_scap.label
+msgid "Add Caption/Pattern"
+msgstr ""
+
+#: staff.serial.manage_subs.cmd_make_predictions.label
+msgid "Make Predictions"
+msgstr ""
+
+#: staff.serial.manage_subs.cmd_del_ssub.label
+msgid "Delete Subscription"
+msgstr ""
+
+#: staff.serial.manage_subs.cmd_del_sdist.label
+msgid "Delete Distribution"
+msgstr ""
+
+#: staff.serial.manage_subs.cmd_del_siss.label
+msgid "Delete Issuance"
+msgstr ""
+
+#: staff.serial.manage_subs.cmd_del_scap.label
+msgid "Delete Caption/Pattern"
+msgstr ""
+
+#: staff.serial.manage_subs.show_subs.label
+msgid "Show Subs."
+msgstr ""
+
+#: staff.serial.manage_subs.show_subs_groups.label
+msgctxt "staff.serial.manage_subs.show_subs_groups.label"
+msgid "Show Groups"
+msgstr ""
+
+#: staff.serial.manage_subs.actions_menu.label
+msgctxt "staff.serial.manage_subs.actions_menu.label"
+msgid "Actions for Selected Row"
+msgstr ""
+
+#: staff.serial.manage_subs.deck.desc
+msgctxt "staff.serial.manage_subs.deck.desc"
+msgid "Please select an object to edit"
+msgstr ""
+
+#: staff.select_aou.title
+msgid "Select Org Unit"
+msgstr ""
+
+#: staff.select_aou.caption
+msgid "Select an Org Unit"
+msgstr ""
+
+#: staff.select_aou.desc
+msgid "Please select an Org Unit"
+msgstr ""
+
+#: staff.select_aou.select_btn.label
+#: staff.select_aou.select_btn.accesskey
+msgid "&Select"
+msgstr ""
+
+#: staff.serial.patternwiz.caption
+msgctxt "staff.serial.patternwiz.caption"
+msgid "Pattern Code Wizard"
+msgstr ""
+
+#: staff.serial.patternwiz.previous.btn
+msgctxt "staff.serial.patternwiz.previous.btn"
+msgid "Previous"
+msgstr ""
+
+#: staff.serial.patternwiz.next.btn
+msgctxt "staff.serial.patternwiz.next.btn"
+msgid "Next"
+msgstr ""
+
+#: staff.serial.patternwiz.use_enum.label
+msgid "Use enumerations?"
+msgstr ""
+
+#: staff.serial.patternwiz.use_enum.desc
+msgid "\"v.\" and \"no.\" are common first and second level enumeration captions."
+msgstr ""
+
+#: staff.serial.patternwiz.enum_row.enum_capt
+msgid "Enumeration Caption"
+msgstr ""
+
+#: staff.serial.patternwiz.enum_row.units_per_higher_lvl
+msgid "Units Per Higher Level"
+msgstr ""
+
+#: staff.serial.patternwiz.enum_row.number_cont
+msgid "Numbering Continuity"
+msgstr ""
+
+#: staff.serial.patternwiz.units_per.number.label
+msgid "Number"
+msgstr ""
+
+#: staff.serial.patternwiz.units_per.varies.label
+msgid "Varies"
+msgstr ""
+
+#: staff.serial.patternwiz.units_per.undetermined.label
+msgid "Undetermined"
+msgstr ""
+
+#: staff.serial.patternwiz.continuity.continuous.label
+msgid "Increments continuously"
+msgstr ""
+
+#: staff.serial.patternwiz.continuity.restarts.label
+msgid "Restarts at unit completion"
+msgstr ""
+
+#: staff.serial.patternwiz.enum_row.remove
+msgid "Remove"
+msgstr ""
+
+#: staff.serial.patternwiz.enum_row.add.label
+#: staff.serial.patternwiz.enum_row.add.accesskey
+msgid "Add &Enumeration"
+msgstr ""
+
+#: staff.serial.patternwiz.enum_row.add_alt.label
+#: staff.serial.patternwiz.enum_row.add_alt.accesskey
+msgid "&Add Alternate Enumeration"
+msgstr ""
+
+#: staff.serial.patternwiz.use_cal_change
+msgid "Use calendar changes?"
+msgstr ""
+
+#: staff.serial.patternwiz.use_cal_change.desc
+msgid ""
+"Identify any points during the year at which the highest level enumeration "
+"caption changes."
+msgstr ""
+
+#: staff.serial.patternwiz.cal_change_head.type
+msgctxt "staff.serial.patternwiz.cal_change_head.type"
+msgid "Type"
+msgstr ""
+
+#: staff.serial.patternwiz.cal_change_head.point
+msgid "Point"
+msgstr ""
+
+#: staff.serial.patternwiz.cal_row.month
+msgid "At start of a month"
+msgstr ""
+
+#: staff.serial.patternwiz.cal_row.season
+msgid "At start of a season"
+msgstr ""
+
+#: staff.serial.patternwiz.cal_row.date
+msgid "On a date"
+msgstr ""
+
+#: staff.serial.patternwiz.season.spring
+msgid "Spring"
+msgstr ""
+
+#: staff.serial.patternwiz.season.summer
+msgid "Summer"
+msgstr ""
+
+#: staff.serial.patternwiz.season.autumn
+msgid "Autumn"
+msgstr ""
+
+#: staff.serial.patternwiz.season.winter
+msgid "Winter"
+msgstr ""
+
+#: staff.serial.patternwiz.cal_change.add.btn
+msgid "Add Calendar Change"
+msgstr ""
+
+#: staff.serial.patternwiz.cal_change.add.accesskey
+msgctxt "staff.serial.patternwiz.cal_change.add.accesskey"
+msgid "C"
+msgstr ""
+
+#: staff.serial.patternwiz.use_chron.label
+msgid "Use chronology captions?"
+msgstr ""
+
+#: staff.serial.patternwiz.use_chron.desc
+msgid "Each caption must be a smaller unit of time than the preceding caption."
+msgstr ""
+
+#: staff.serial.patternwiz.chron_row_head.caption
+msgid "Caption"
+msgstr ""
+
+#: staff.serial.patternwiz.chron_row_head.include
+msgid "Include this actual word in the caption?"
+msgstr ""
+
+#: staff.serial.patternwiz.chron_row.year
+msgid "Year"
+msgstr ""
+
+#: staff.serial.patternwiz.chron_row.season
+msgctxt "staff.serial.patternwiz.chron_row.season"
+msgid "Season"
+msgstr ""
+
+#: staff.serial.patternwiz.chron_row.month
+msgctxt "staff.serial.patternwiz.chron_row.month"
+msgid "Month"
+msgstr ""
+
+#: staff.serial.patternwiz.chron_row.week
+msgid "Week"
+msgstr ""
+
+#: staff.serial.patternwiz.chron_row.day
+msgid "Day"
+msgstr ""
+
+#: staff.serial.patternwiz.chron_row.hour
+msgid "Hour"
+msgstr ""
+
+#: staff.serial.patternwiz.chron_caption.add.label
+#: staff.serial.patternwiz.chron_caption.add.accesskey
+msgid "Add &Chronology Caption"
+msgstr ""
+
+#: staff.serial.patternwiz.compress.label
+msgid "Compressibility and Expandability:"
+msgstr ""
+
+#: staff.serial.patternwiz.compress.cannot
+msgid "Cannot compress or expand"
+msgstr ""
+
+#: staff.serial.patternwiz.compress.can_compress
+msgid "Can compress but not expand"
+msgstr ""
+
+#: staff.serial.patternwiz.compress.both
+msgid "Can compress or expand"
+msgstr ""
+
+#: staff.serial.patternwiz.compress.unknown
+msgid "Unknown"
+msgstr ""
+
+#: staff.serial.patternwiz.caption_eval.label
+msgid "Caption Evaluation:"
+msgstr ""
+
+#: staff.serial.patternwiz.caption_eval.yes_all
+msgid "Captions verified; all levels present"
+msgstr ""
+
+#: staff.serial.patternwiz.caption_eval.yes_some
+msgid "Captions verified; all levels may not be present"
+msgstr ""
+
+#: staff.serial.patternwiz.caption_eval.no_all
+msgid "Captions unverified; all levels present"
+msgstr ""
+
+#: staff.serial.patternwiz.caption_eval.no_some
+msgid "Captions unverified; all levels may not be present"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.label
+#: staff.serial.patternwiz.freq.accesskey
+msgid "Select &frequency:"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.a
+msgid "Annual"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.b
+msgid "Bimonthly"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.c
+msgid "Semiweekly"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.d
+msgid "Daily"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.e
+msgid "Biweekly"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.f
+msgid "Semiannual"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.g
+msgid "Biennial"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.h
+msgid "Triennial"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.i
+msgid "Three times a week"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.j
+msgid "Three times a month"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.k
+msgid "Continuously updated"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.m
+msgid "Monthly"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.q
+msgid "Quarterly"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.s
+msgid "Semimonthly"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.t
+msgid "Three times a year"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.w
+msgid "Weekly"
+msgstr ""
+
+#: staff.serial.patternwiz.freq.item.x
+msgid "Completely irregular"
+msgstr ""
+
+#: staff.serial.patternwiz.issues_per_year.label
+#: staff.serial.patternwiz.issues_per_year.accesskey
+msgid "Use number of &issues per year:"
+msgstr ""
+
+#: staff.serial.patternwiz.use_regularity
+msgid ""
+"Use specific regularity information (published, omitted, and/or combined "
+"issues)?"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.item.p
+msgid "Published"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.item.o
+msgid "Omitted"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.item.c
+msgid "Combined"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.typecode.d1
+msgid "Day of the week"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.typecode.d2
+msgid "Day of the month"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.typecode.d3
+msgid "Date of the year"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.typecode.m
+msgctxt "staff.serial.patternwiz.regularity.typecode.m"
+msgid "Month"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.typecode.s
+msgctxt "staff.serial.patternwiz.regularity.typecode.s"
+msgid "Season"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.typecode.w1
+msgid "Weekday of the month"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.typecode.w2
+msgid "Weekday of specific month"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.typecode.w3
+msgid "Week of specific month"
+msgstr ""
+
+#: staff.serial.patternwiz.regularity.typecode.y
+msgid "Span over two years"
+msgstr ""
+
+#: staff.serial.patternwiz.subrow.add.label
+msgid "Add sub-row"
+msgstr ""
+
+#: staff.serial.patternwiz.subrow.remove.label
+msgid "Remove whole row"
+msgstr ""
+
+#: staff.serial.patternwiz.addrow.label
+#: staff.serial.patternwiz.addrow.accesskey
+msgid "Add More Regularit&y Information"
+msgstr ""
+
+#: staff.serial.patternwiz.submit.desc
+msgid ""
+"Are you ready to create a pattern code from your selections in this wizard?"
+msgstr ""
+
+#: staff.serial.patternwiz.submit.label
+#: staff.serial.patternwiz.submit.accesskey
+msgid "Create &Pattern Code"
+msgstr ""
+
 #: staff.serial.batch_receive
 msgid "Batch Receive"
 msgstr ""
@@ -7754,6 +8367,10 @@ msgstr ""
 msgid "Invalid time format"
 msgstr ""
 
+#: staff.server.admin.closed_dates.date_span.invalid
+msgid "Ending date is earlier than starting date"
+msgstr ""
+
 #: staff.server.admin.closed_dates.success
 msgid "Closed date successfully updated"
 msgstr ""
@@ -8231,6 +8848,7 @@ msgid "Transit List"
 msgstr ""
 
 #: staff.server.admin.index.conify
+msgctxt "staff.server.admin.index.conify"
 msgid "Server Settings"
 msgstr ""
 
@@ -8984,7 +9602,7 @@ msgstr ""
 
 #: staff.circ.checkin_overlay.checkin_clear_shelf_expired.label
 #: staff.circ.checkin_overlay.checkin_clear_shelf_expired.accesskey
-msgid "&Clear Shelf-Expired Holds"
+msgid "&Clear Holds Shelf"
 msgstr ""
 
 #: staff.circ.checkin_overlay.checkin_auto_retarget.label
@@ -10068,8 +10686,12 @@ msgid ""
 msgstr ""
 
 #: staff.circ.holds.view_expired_onshelf_holds.label
+msgid "View Clearable Holds"
+msgstr ""
+
 #: staff.circ.holds.view_expired_onshelf_holds.accesskey
-msgid "View Shelf-E&xpired Holds"
+msgctxt "staff.circ.holds.view_expired_onshelf_holds.accesskey"
+msgid "x"
 msgstr ""
 
 #: staff.circ.holds.clear_expired_onshelf_holds.label
@@ -10153,14 +10775,16 @@ msgstr ""
 
 #: staff.hold_list.cancel_hold_dialog.cancel_btn.label
 #: staff.hold_list.cancel_hold_dialog.cancel_btn.accesskey
-msgctxt "staff.hold_list.cancel_hold_dialog.cancel_btn.label staff.hold_list.cancel_hold_dialog.cancel_btn.accesskey"
-msgid "&Cancel"
+msgid "&No"
 msgstr ""
 
 #: staff.hold_list.cancel_hold_dialog.apply_btn.label
 #: staff.hold_list.cancel_hold_dialog.apply_btn.accesskey
-msgctxt "staff.hold_list.cancel_hold_dialog.apply_btn.label staff.hold_list.cancel_hold_dialog.apply_btn.accesskey"
-msgid "&Apply"
+msgid "&Yes"
+msgstr ""
+
+#: staff.hold_list.cancel_hold_dialog.confirmation
+msgid "Are you sure you want to cancel the hold(s)?"
 msgstr ""
 
 #: staff.cat.manage_multi_bib_items.caption
@@ -10204,6 +10828,41 @@ msgstr ""
 msgid "Link to Bib (&Submit)"
 msgstr ""
 
+#: staff.cat.serial_control.title.label
+msgid "Serial Control"
+msgstr ""
+
+#: staff.cat.serial_control.tab.items
+msgctxt "staff.cat.serial_control.tab.items"
+msgid "Items"
+msgstr ""
+
+#: staff.cat.serial_control.tab.units
+msgid "Units"
+msgstr ""
+
+#: staff.cat.serial_control.tab.distributions
+msgctxt "staff.cat.serial_control.tab.distributions"
+msgid "Distributions"
+msgstr ""
+
+#: staff.cat.serial_control.tab.subscriptions
+msgctxt "staff.cat.serial_control.tab.subscriptions"
+msgid "Subscriptions"
+msgstr ""
+
+#: staff.cat.serial_control.tab.claims
+msgid "Claims"
+msgstr ""
+
+#: staff.cat.serial_control.tab.units.desc
+msgid "This tab will contain an alternative unit view/editor."
+msgstr ""
+
+#: staff.cat.serial_control.tab.claims.desc
+msgid "This tab will contain a claims interface."
+msgstr ""
+
 #: staff.cat.copy_browser.actions.sel_clip.label
 #: staff.cat.copy_browser.actions.sel_clip.accesskey
 msgctxt "staff.cat.copy_browser.actions.sel_clip.label staff.cat.copy_browser.actions.sel_clip.accesskey"
@@ -10770,6 +11429,7 @@ msgstr ""
 
 #: staff.cat.copy_editor.cancel.label
 #: staff.cat.copy_editor.cancel.accesskey
+msgctxt "staff.cat.copy_editor.cancel.label staff.cat.copy_editor.cancel.accesskey"
 msgid "&Close"
 msgstr ""
 
@@ -11221,6 +11881,23 @@ msgstr ""
 msgid "Evergreen BRE"
 msgstr ""
 
+#: staff.cat.select_unit.title
+msgid "Select Serial Unit"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.select.label
+#: staff.cat.record_buckets_quick.select.accesskey
+msgid "&Select a Serial Unit"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.select.desc
+msgid "Please select a Serial Unit"
+msgstr ""
+
+#: staff.cat.record_buckets_quick.select.btn
+msgid "Select"
+msgstr ""
+
 #: staff.cat.record_buckets_quick.groupbox.caption
 msgctxt "staff.cat.record_buckets_quick.groupbox.caption"
 msgid "Record Buckets"
@@ -12055,6 +12732,7 @@ msgid "&Number of Copies:"
 msgstr ""
 
 #: staff.patron.bills_overlay.summary.label
+msgctxt "staff.patron.bills_overlay.summary.label"
 msgid "Summary"
 msgstr ""
 
@@ -12158,6 +12836,11 @@ msgstr ""
 msgid "Apply &Payment!"
 msgstr ""
 
+#: staff.patron.bill_summary_overlay.caption
+msgctxt "staff.patron.bill_summary_overlay.caption"
+msgid "Summary"
+msgstr ""
+
 #: staff.patron.bill_summary_overlay.bill_number.value
 msgid "Bill #"
 msgstr ""
@@ -12301,6 +12984,10 @@ msgstr ""
 msgid "(Maximum Overdues)"
 msgstr ""
 
+#: staff.patron.display_overlay.max_lost.value
+msgid "(Maximum Lost)"
+msgstr ""
+
 #: staff.patron.display_overlay.max_checked_out.value
 msgid "(Maximum Checked Out)"
 msgstr ""
@@ -12313,6 +13000,10 @@ msgstr ""
 msgid "(Has Overdues)"
 msgstr ""
 
+#: staff.patron.display_overlay.has_lost.value
+msgid "(Has Lost)"
+msgstr ""
+
 #: staff.patron.display_overlay.invalid_dob.value
 msgid "(Invalid Date of Birth)"
 msgstr ""
@@ -13370,6 +14061,10 @@ msgctxt "staff.patron.items_overlay.items_export.label"
 msgid "Export"
 msgstr ""
 
+#: staff.patron.items_overlay.print_one.label
+msgid "Print Item Receipt"
+msgstr ""
+
 #: staff.generic.list_actions.label
 #: staff.generic.list_actions.accesskey
 msgctxt "staff.generic.list_actions.label staff.generic.list_actions.accesskey"
@@ -13826,6 +14521,10 @@ msgstr ""
 msgid "Evergreen Staff Client Portal"
 msgstr ""
 
+#: staff.client.portal.tab_name
+msgid "Portal"
+msgstr ""
+
 #: staff.client.portal.welcome
 msgid "Welcome to Evergreen"
 msgstr ""
@@ -13868,6 +14567,14 @@ msgctxt "staff.client.portal.patronreg.description"
 msgid "Register Patron(s)"
 msgstr ""
 
+#: staff.client.portal.patronreg.tab_name
+msgid "Register Patron"
+msgstr ""
+
+#: staff.client.portal.patronreg_edit.tab_name
+msgid "Editing Related Patron"
+msgstr ""
+
 #: staff.client.portal.patronsearch
 msgctxt "staff.client.portal.patronsearch"
 msgid "Search For Patron By Name"
@@ -13922,6 +14629,11 @@ msgctxt "staff.client.portal.marcutil.description"
 msgid "MARC Batch Import / Export"
 msgstr ""
 
+#: staff.client.portal.marcutil.tab_name
+msgctxt "staff.client.portal.marcutil.tab_name"
+msgid "Server Settings"
+msgstr ""
+
 #: staff.client.portal.z3950
 msgctxt "staff.client.portal.z3950"
 msgid "z39.50 Import"
@@ -13952,6 +14664,11 @@ msgctxt "staff.client.portal.recordbuckets.description"
 msgid "Record Buckets"
 msgstr ""
 
+#: staff.client.portal.recordbuckets.tab_name
+msgctxt "staff.client.portal.recordbuckets.tab_name"
+msgid "Record Buckets"
+msgstr ""
+
 #: staff.client.portal.admin
 msgid "Administration"
 msgstr ""
@@ -13974,6 +14691,11 @@ msgctxt "staff.client.portal.reports.description"
 msgid "Reports"
 msgstr ""
 
+#: staff.client.portal.reports.tab_name
+msgctxt "staff.client.portal.reports.tab_name"
+msgid "Reports"
+msgstr ""
+
 #: staff.client.portal.receipts
 msgctxt "staff.client.portal.receipts"
 msgid "Edit Receipt Templates"
@@ -14001,6 +14723,27 @@ msgctxt "staff.client.portal.search.button"
 msgid "Search"
 msgstr ""
 
+#: staff.client.portal.address_map.tab_name
+msgid "Locate Address In Map"
+msgstr ""
+
+#: staff.client.portal.local_admin.tab_name
+msgid "Local Administration"
+msgstr ""
+
+#: staff.client.portal.on_shelf_pull_list.tab_name
+msgid "On Shelf Pull List"
+msgstr ""
+
+#: staff.client.portal.catalog.tab_name
+msgid "Catalog"
+msgstr ""
+
+#: staff.client.portal.copybuckets.tab_name
+msgctxt "staff.client.portal.copybuckets.tab_name"
+msgid "Copy Buckets"
+msgstr ""
+
 #: staff.item.batch.hold.groupbox_caption
 msgid "Request Details"
 msgstr ""
@@ -14111,3 +14854,51 @@ msgstr ""
 #: staff.search_prefs.cleared_message
 msgid "Preferences cleared"
 msgstr ""
+
+#: staff.bucketz39_search.dialog_label
+msgid "Locate Z39.50 Matches"
+msgstr ""
+
+#: staff.bucketz39_search.servers
+msgid "Z39.50 Servers:"
+msgstr ""
+
+#: staff.bucketz39_search.indexes
+msgid "Z39.50 Search Indexes:"
+msgstr ""
+
+#: staff.bucketz39_search.queue
+msgid "Add Results to Queue:"
+msgstr ""
+
+#: staff.bucketz39_search.match_set
+msgid "Match Set:"
+msgstr ""
+
+#: staff.bucketz39_search.match_set_select
+msgid "-- Select Match Set --"
+msgstr ""
+
+#: staff.bucketz39_search.perform_search
+msgid "Perform Search"
+msgstr ""
+
+#: staff.bucketz39_search.bib_count
+msgid "Bib Records to Search:"
+msgstr ""
+
+#: staff.bucketz39_search.progress
+msgid "Search Progress:"
+msgstr ""
+
+#: staff.bucketz39_search.found_matches
+msgid "Matches Found:"
+msgstr ""
+
+#: staff.bucketz39_search.close
+msgid "Close"
+msgstr ""
+
+#: staff.bucketz39_search.open_queue
+msgid "Open Queue"
+msgstr ""
index bcc6626..eefa14d 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-06-06 12:12:01-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:43-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 6583eb7..19cc035 100644 (file)
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-15 19:41+0000\n"
+"POT-Creation-Date: 2013-09-10 14:54-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.7.0\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
 "X-Accelerator-Marker: &\n"
 
 #: common.exception
index ac3ee35..e224ea4 100644 (file)
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-02-21 11:19-0400\n"
+"POT-Creation-Date: 2013-09-10 14:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.7.0\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
 "X-Accelerator-Marker: &\n"
 
 #. =================================================================
index fe41c27..81cc121 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-02-21 11:20:55-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:42-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,9 @@ msgstr ""
 "Content-Transfer-Encoding: 8-bit\n"
 
 #: opac.js:PWD_RESET_SUBMIT_PROMPT
-msgid "To begin the password reset process, enter either your barcode or user name in the form below and click 'Submit'"
+msgid ""
+"To begin the password reset process, enter either your barcode or user name "
+"in the form below and click 'Submit'"
 msgstr ""
 
 #: opac.js:PWD_RESET_FORM_TITLE
@@ -60,7 +62,9 @@ msgid "... more copies listed in full record"
 msgstr ""
 
 #: opac.js:PWD_RESET_SUBMIT_ERROR
-msgid "The system could not process your request for a password reset. Please try again, or contact circulation staff for assistance."
+msgid ""
+"The system could not process your request for a password reset. Please try "
+"again, or contact circulation staff for assistance."
 msgstr ""
 
 #: opac.js:EDIT_MFHD_RECORD
@@ -156,7 +160,10 @@ msgid "Are you sure you want to delete this serial record?"
 msgstr ""
 
 #: opac.js:PWD_RESET_SUBMIT_SUCCESS
-msgid "Your request to begin the password reset process has been processed. If your account has a valid email address, you should soon receive an email containing further instructions for resetting your password."
+msgid ""
+"Your request to begin the password reset process has been processed. If your"
+" account has a valid email address, you should soon receive an email "
+"containing further instructions for resetting your password."
 msgstr ""
 
 #: opac.js:CANCEL_BUTTON_LABEL
index a1dd627..8609e52 100644 (file)
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-15 19:42+0000\n"
+"POT-Creation-Date: 2013-09-10 14:54-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.7.0\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
 "X-Accelerator-Marker: &\n"
 
 #: staff.patron.barcode_entry.user_permission_editor
@@ -472,27 +472,27 @@ msgid "Retrieving..."
 msgstr ""
 
 #: staff.patron.display.init.network_request.alert_message
-msgid "Alert message: \"%1$s\"<br/><br/>"
+msgid "Alert message: \"%1$s\""
 msgstr ""
 
 #: staff.patron.display.init.network_request.inactive_card
-msgid "Patron account retrieved with an INACTIVE card.<br/><br/>"
+msgid "Patron account retrieved with an INACTIVE card."
 msgstr ""
 
 #: staff.patron.display.init.network_request.account_barred
-msgid "Patron account is BARRED.<br/><br/>"
+msgid "Patron account is BARRED."
 msgstr ""
 
 #: staff.patron.display.init.network_request.account_inactive
-msgid "Patron account is INACTIVE.<br/><br/>"
+msgid "Patron account is INACTIVE."
 msgstr ""
 
 #: staff.patron.display.init.network_request.account_expire_soon
-msgid "Patron account will expire soon.  Please renew.<br/><br/>"
+msgid "Patron account will expire soon.  Please renew."
 msgstr ""
 
 #: staff.patron.display.init.network_request.account_expired
-msgid "Patron account is EXPIRED.<br/><br/>"
+msgid "Patron account is EXPIRED."
 msgstr ""
 
 #: staff.patron.display.init.holds_ready
@@ -1899,3 +1899,12 @@ msgstr ""
 #: staff.item.batch.hold.user_not_found
 msgid "User Not Found"
 msgstr ""
+
+#. # hold count tooltip labels
+#: staff.patron.summary.hold_counts_behind_desk
+msgid "Available / Total (Behind Desk)"
+msgstr ""
+
+#: staff.patron.summary.hold_counts
+msgid "Available / Total"
+msgstr ""
index 037cc3d..019d5e1 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2011-04-18 21:45:31-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 7d4a74b..8fb818c 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2012-08-03 10:01:36-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index ef0a729..e15b2e1 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-02-21 11:20:54-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -31,12 +31,16 @@ msgstr ""
 msgid "This address is owned by another user: "
 msgstr ""
 
-#: register.js:ADDRESS_NEW
-msgid "New Address"
+#: register.js:ALL_CARDS_PRIMARY
+msgid "Primary"
 msgstr ""
 
-#: register.js:REPLACED_ADDRESS
-msgid "<div>Replaces address <b>${0}</b><br/> ${1} ${2}<br/> ${3}, ${4} ${5}</div>"
+#: register.js:ALL_CARDS_BARCODE
+msgid "Barcode"
+msgstr ""
+
+#: register.js:SAVE
+msgid "Save"
 msgstr ""
 
 #: register.js:SHOW_REQUIRED
@@ -47,10 +51,6 @@ msgstr ""
 msgid "Found ${0} patron(s) with the same address"
 msgstr ""
 
-#: register.js:SAVE
-msgid "Save"
-msgstr ""
-
 #: register.js:DUPE_PATRON_IDENT
 msgid "Found ${0} patron(s) with the same identification"
 msgstr ""
@@ -67,12 +67,12 @@ msgstr ""
 msgid "An address is required during registration."
 msgstr ""
 
-#: register.js:ALL_CARDS_PRIMARY
-msgid "Primary"
+#: register.js:REPLACED_ADDRESS
+msgid "Replaces address ${0}<br/> ${1} ${2}<br/> ${3}, ${4} ${5}"
 msgstr ""
 
-#: register.js:BARCODE_IN_USE
-msgid "Barcode is already in use"
+#: register.js:PARENT_OR_GUARDIAN
+msgid "Parent/Guardian"
 msgstr ""
 
 #: register.js:ADDRESS_HEADER
@@ -91,8 +91,12 @@ msgstr ""
 msgid "Form is invalid.  Please edit and try again."
 msgstr ""
 
-#: register.js:PARENT_OR_GUARDIAN
-msgid "Parent/Guardian"
+#: register.js:BARCODE_IN_USE
+msgid "Barcode is already in use"
+msgstr ""
+
+#: register.js:RESET_PASSWORD
+msgid "Generate Password"
 msgstr ""
 
 #: register.js:EXAMPLE
@@ -123,6 +127,10 @@ msgstr ""
 msgid "MAILING"
 msgstr ""
 
+#: register.js:REQUESTING_USER
+msgid "Account requested by ${0} ${1}"
+msgstr ""
+
 #: register.js:HOLD_NOTIFY_SMS
 msgid "SMS: "
 msgstr ""
@@ -151,12 +159,8 @@ msgstr ""
 msgid "Statistical Categories"
 msgstr ""
 
-#: register.js:ALL_CARDS_BARCODE
-msgid "Barcode"
-msgstr ""
-
-#: register.js:RESET_PASSWORD
-msgid "Reset Password"
+#: register.js:ADDRESS_NEW
+msgid "New Address"
 msgstr ""
 
 #: register.js:HOLD_NOTIFY_EMAIL
index f1d3674..b9aa335 100644 (file)
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-18 21:44-0400\n"
+"POT-Creation-Date: 2013-09-10 14:34-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.8.1\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
 "X-Accelerator-Marker: &\n"
 
 #. Common Entities
index a2df569..6414918 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2011-04-18 21:45:31-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:42-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 93e71f3..8bc944b 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-02-21 11:20:55-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:42-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -188,7 +188,10 @@ msgid "This user has no existing reservations at this time."
 msgstr ""
 
 #: reservation.js:AUTO_explain_bookable
-msgid "To reserve an item that is not yet registered as a bookable resource, find it in the catalog or under <em>Display Item</em>, and select <em>Make Item Bookable</em> or <em>Book Item Now</em> there."
+msgid ""
+"To reserve an item that is not yet registered as a bookable resource, find "
+"it in the catalog or under <em>Display Item</em>, and select <em>Make Item "
+"Bookable</em> or <em>Book Item Now</em> there."
 msgstr ""
 
 #: reservation.js:CXL_BRESV_FAILURE2
index d043fa9..a021c73 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-02-21 11:20:55-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:42-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23,26 +23,22 @@ msgstr ""
 msgid "Checkout of item ${0} succeeded"
 msgstr ""
 
-#: selfcheck.js:FAIL_PART_no_ultimate_items
-msgid "The system could not find any items to match this hold request"
+#: selfcheck.js:WELCOME_BANNER
+msgid "Welcome, ${0}"
 msgstr ""
 
-#: selfcheck.js:TOTAL_ITEMS_ACCOUNT
-msgid "Total items on account:  <b>${0}</b>."
+#: selfcheck.js:FAIL_PART_no_ultimate_items
+msgid "The system could not find any items to match this hold request"
 msgstr ""
 
-#: selfcheck.js:WELCOME_BANNER
-msgid "Welcome, ${0}"
+#: selfcheck.js:TOTAL_HOLDS
+msgid "You have ${0} total holds."
 msgstr ""
 
 #: selfcheck.js:FAIL_PART_config_hold_matrix_test_holdable
 msgid "Hold rules reject this item as unholdable"
 msgstr ""
 
-#: selfcheck.js:TOTAL_FINES_ACCOUNT
-msgid "Total fines on account: <b>$${0}</b>."
-msgstr ""
-
 #: selfcheck.js:FAIL_PART_asset_copy_status
 msgid "The item cannot circulate at this time"
 msgstr ""
@@ -74,8 +70,8 @@ msgstr ""
 msgid "The available item-to-hold ratio is too low"
 msgstr ""
 
-#: selfcheck.js:HOLD_STATUS_READY
-msgid "Ready for pickup"
+#: selfcheck.js:TOTAL_ITEMS_ACCOUNT
+msgid "Total items on account:  ${0}."
 msgstr ""
 
 #: selfcheck.js:FAIL_PART_circ_holds_target_skip_me
@@ -94,8 +90,12 @@ msgstr ""
 msgid "The patron has too many items of this type checked out"
 msgstr ""
 
-#: selfcheck.js:TOTAL_HOLDS
-msgid "You have <b>${0}</b> total holds."
+#: selfcheck.js:TOTAL_FINES_ACCOUNT
+msgid "Total fines on account: $${0}."
+msgstr ""
+
+#: selfcheck.js:MISCELLANEOUS
+msgid "Miscellaneous"
 msgstr ""
 
 #: selfcheck.js:ITEM_NOT_CATALOGED
@@ -107,13 +107,20 @@ msgid "The patron is barred"
 msgstr ""
 
 #: selfcheck.js:PAYMENT_INVALID_USER_XACT_ID
-msgid "We cannot proceed with the payment, because your account was updated from another location.  Please refresh the interface or log out and back in to retrieve the latest account information"
+msgid ""
+"We cannot proceed with the payment, because your account was updated from "
+"another location.  Please refresh the interface or log out and back in to "
+"retrieve the latest account information"
 msgstr ""
 
 #: selfcheck.js:FAIL_PART_status.holdable
 msgid "The item is not in a holdable status"
 msgstr ""
 
+#: selfcheck.js:ENTER_PASSWORD
+msgid "Please enter your password"
+msgstr ""
+
 #: selfcheck.js:CC_PAYABLE_BALANCE
 msgid "Total amount to pay: $${0}"
 msgstr ""
@@ -122,10 +129,18 @@ msgstr ""
 msgid "The system could not find this item"
 msgstr ""
 
+#: selfcheck.js:PLEASE_LOGIN
+msgid "Please log in with your username or library barcode."
+msgstr ""
+
 #: selfcheck.js:FAIL_PART_no_matchpoint
 msgid "System rules do not define how to handle this item"
 msgstr ""
 
+#: selfcheck.js:ENTER_BARCODE
+msgid "Please enter an item barcode"
+msgstr ""
+
 #: selfcheck.js:FAIL_PART_asset_copy_circulate
 msgid "The item does not circulate"
 msgstr ""
@@ -134,6 +149,10 @@ msgstr ""
 msgid "Login for ${0} failed"
 msgstr ""
 
+#: selfcheck.js:HOLD_STATUS_READY
+msgid "Ready for pickup"
+msgstr ""
+
 #: selfcheck.js:GENERIC_CIRC_FAILURE
 msgid "Unable to check out item ${0}.  Please see staff."
 msgstr ""
@@ -142,8 +161,8 @@ msgstr ""
 msgid "No more renewals allowed for item ${0}"
 msgstr ""
 
-#: selfcheck.js:HOLDS_READY_FOR_PICKUP
-msgid "You have <b>${0}</b> item(s) ready for pickup."
+#: selfcheck.js:FAIL_PART_asset_copy_location_circulate
+msgid "Items from this shelving location do not circulate"
 msgstr ""
 
 #: selfcheck.js:FAIL_PART_item.holdable
@@ -159,19 +178,17 @@ msgid "Item ${0} is already checked out to another user"
 msgstr ""
 
 #: selfcheck.js:WORKSTATION_EXISTS
-msgid "This workstation has already been registered.  Would you like to use it for this self-check station?"
+msgid ""
+"This workstation has already been registered.  Would you like to use it for "
+"this self-check station?"
 msgstr ""
 
 #: selfcheck.js:UNKNOWN_ERROR
 msgid "An unhandled exception occurred with error code ${0}"
 msgstr ""
 
-#: selfcheck.js:FAIL_PART_asset_copy_location_circulate
-msgid "Items from this shelving location do not circulate"
-msgstr ""
-
 #: selfcheck.js:TOTAL_ITEMS_SESSION
-msgid "Total items this session: <b>${0}</b>."
+msgid "Total items this session: ${0}."
 msgstr ""
 
 #: selfcheck.js:FAIL_PART_config_rule_age_hold_protect_prox
@@ -181,3 +198,7 @@ msgstr ""
 #: selfcheck.js:TOTAL_FINES_SELECTED
 msgid "Selected total: $${0}"
 msgstr ""
+
+#: selfcheck.js:HOLDS_READY_FOR_PICKUP
+msgid "You have ${0} item(s) ready for pickup."
+msgstr ""
index c7c4646..f1a3f2b 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-06-06 12:12:00-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:42-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index bfd5b22..6ff2051 100644 (file)
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-15 19:42+0000\n"
+"POT-Creation-Date: 2013-09-10 14:54-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.7.0\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
 "X-Accelerator-Marker: &\n"
 
 #: staff.serial.editor_base.handle_update.error
index b8f1436..414cc83 100644 (file)
@@ -15,38 +15,19 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#. (ctx.result_start, ctx.result_stop, ctx.hit_count)
-#: ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:5
+#: ../../Open-ILS/src/templates/opac/register.tt2:51
 msgid ""
 "\n"
-"                Results <strong>%1</strong> - <strong>%2</strong> of <strong>%3</strong>\n"
+"                Note: The selected username may be in use by another patron.  \n"
+"                You may select another username when finalizing your \n"
+"                registration or in the online catalog.\n"
 "                "
 msgstr ""
 
-#. (bad_user)
-#: ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:20
-msgid ""
-"\n"
-"        The username \"<b>%1</b>\" is taken.  Please try a different username.\n"
-"        "
-msgstr ""
-
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:101
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:132
 msgid " / "
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:14
-msgid " New password is invalid.  Please try a different password.  "
-msgstr ""
-
-#: ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:19
-msgid " Passwords do not match. "
-msgstr ""
-
-#: ../../Open-ILS/src/templates/opac/myopac/update_email.tt2:19 ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:24 ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:27
-msgid " Your current password was not correct. "
-msgstr ""
-
 #: ../../Open-ILS/src/templates/opac/parts/searchbar.tt2:12
 msgid " for "
 msgstr ""
@@ -55,9 +36,9 @@ msgstr ""
 msgid " in "
 msgstr ""
 
-#. (bad_user)
+#. ("<b>' _ bad_user _ '</b>")
 #: ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:14
-msgid "\"<b>%1</b>\" is not a valid username.  Usernames cannot have any spaces or look like a barcode, and may be restricted by policy.  Please try a different username."
+msgid "\"%1\" is not a valid username.  Usernames cannot have any spaces or look like a barcode, and may be restricted by policy.  Please try a different username."
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/header.tt2:1
@@ -65,25 +46,30 @@ msgid "$%.2f"
 msgstr ""
 
 #. (ctx.user.first_given_name, ctx.user.family_name)
-#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:19
+#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:22
 msgid "%1 %2"
 msgstr ""
 
 #. (copy.label, copy_org.name)
 #. (title, part.label)
 #. (title, hold.hold.part.label)
-#: ../../Open-ILS/src/templates/opac/myopac/holds.tt2:138 ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:25 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:291 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:65 ../../Open-ILS/src/templates/opac/parts/place_hold_result.tt2:37
+#: ../../Open-ILS/src/templates/opac/myopac/holds.tt2:138 ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:25 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:312 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:65 ../../Open-ILS/src/templates/opac/parts/place_hold_result.tt2:37
 msgid "%1 (%2)"
 msgstr ""
 
+#. (bib_lib_name)
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:58
+msgid "%1 (foreign item)"
+msgstr ""
+
 #. (hold.hold.queue_position, hold.hold.potential_copies)
 #: ../../Open-ILS/src/templates/opac/parts/hold_status.tt2:26
 msgid "%1 hold on %quant(%2,circulating copy,circulating copies)"
 msgstr ""
 
-#. (attrs.plib_copy_counts.$depth.available, attrs.plib_copy_counts.$depth.count, ou_name)
 #. (attrs.copy_counts.$depth.available, attrs.copy_counts.$depth.count, ou_name)
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:38 ../../Open-ILS/src/templates/opac/parts/result/copy_counts.tt2:14 ../../Open-ILS/src/templates/opac/parts/result/copy_counts.tt2:33
+#. (attrs.plib_copy_counts.$depth.available, attrs.plib_copy_counts.$depth.count, ou_name)
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:45 ../../Open-ILS/src/templates/opac/parts/result/copy_counts.tt2:14 ../../Open-ILS/src/templates/opac/parts/result/copy_counts.tt2:33
 msgid "%1 of %quant(%2,copy,copies) available at %3."
 msgstr ""
 
@@ -92,12 +78,12 @@ msgid "%m/%d/%Y"
 msgstr ""
 
 #. (ou_avail, ou_name)
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:21
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:24
 msgid "%quant(%1,copy,copies) at %2."
 msgstr ""
 
 #. (ctx.record_hold_count, ctx.copy_summary.$count_entry.count)
-#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:126
+#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:132
 msgid "%quant(%1,current hold,current holds) with %quant(%2,total copy,total copies)."
 msgstr ""
 
@@ -109,30 +95,28 @@ msgstr ""
 msgid "&lt;&lt; Previous Page"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:44
-msgid "(Show preferred library)"
+#. (example)
+#: ../../Open-ILS/src/templates/opac/register.tt2:154
+msgid "(Example: %1)"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:26
-msgid "(Show)"
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:51
+msgid "(Show preferred library)"
 msgstr ""
 
-#. ("<strong>", "</strong>")
-#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:36
-msgid "(example:  %1&quot;garcia marquez&quot;%2)"
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:29
+msgid "(Show)"
 msgstr ""
 
-#. ("<strong>", "</strong>")
-#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:42
-msgid "(example: %1environment* agency%2)"
+#. ("<strong>&quot;' _ i18n_searchphrase _ '&quot;</strong>")
+#. ("<strong>' _ i18n_searchtrunc _ '</strong>")
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:37 ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:44
+msgid "(example: %1)"
 msgstr ""
 
-#. ("<strong>", "</strong>", "<em>", "</em>")
-#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:49
-msgid ""
-"(examples: %1\"^harry\"%2 for phrases that begin with\n"
-"\t\t      the term %3harry%4.\n"
-"                      %1\"stone$\"%2 for phrases that end in %3stone%4.)"
+#. ("<strong>&quot;^' _ i18n_searchbegins _ '&quot;</strong>", "<em>' _ i18n_searchbegins _ '</em>", "<strong>&quot;' _ i18n_searchends _ '$&quot;</strong>", "<em>' _ i18n_searchends _ '</em>")
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:52
+msgid "(examples: %1 for phrases that begin with the term %2. %3 for phrases that end in %4.)"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/main.tt2:81
@@ -143,9 +127,9 @@ msgstr ""
 msgid "(not shown)"
 msgstr ""
 
-#. (page + 1, page_count)
-#: ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:9
-msgid "(page <strong>%1</strong> of <strong>%2</strong>)"
+#. ("<span class=\"result_count_number\">' _ (page + 1) _ '</span>", "<span class=\"result_count_number\">' _ page_count _ '</span>")
+#: ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:14
+msgid "(page %1 of %2)"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:30
@@ -156,7 +140,7 @@ msgstr ""
 msgid "- All Parts -"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:258 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:31
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:279 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:31
 msgid "-- Actions for these items --"
 msgstr ""
 
@@ -172,6 +156,10 @@ msgstr ""
 msgid "?"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/register.tt2:66
+msgid "A registration error has occurred"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:139
 msgid "Account Creation Date"
 msgstr ""
@@ -236,15 +224,11 @@ msgstr ""
 msgid "Adapter"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:25
+#: ../../Open-ILS/src/templates/opac/parts/advanced/expert.tt2:22 ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:25
 msgid "Add Search Row"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/expert.tt2:22
-msgid "Add row"
-msgstr ""
-
-#: ../../Open-ILS/src/templates/opac/parts/bookbag_actions.tt2:40 ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:39 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:312
+#: ../../Open-ILS/src/templates/opac/parts/bookbag_actions.tt2:40 ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:39 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:317
 msgid "Add to my list"
 msgstr ""
 
@@ -292,15 +276,15 @@ msgstr ""
 msgid "Addresses"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:32
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:33
 msgid "Adjacency"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/advanced.tt2:1 ../../Open-ILS/src/templates/opac/advanced.tt2:19 ../../Open-ILS/src/templates/opac/parts/searchbar.tt2:10 ../../Open-ILS/src/templates/opac/results.tt2:30
+#: ../../Open-ILS/src/templates/opac/advanced.tt2:1 ../../Open-ILS/src/templates/opac/advanced.tt2:21 ../../Open-ILS/src/templates/opac/browse.tt2:21 ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:29 ../../Open-ILS/src/templates/opac/parts/searchbar.tt2:9 ../../Open-ILS/src/templates/opac/results.tt2:28
 msgid "Advanced Search"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:68
+#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:70
 msgid "After"
 msgstr ""
 
@@ -324,11 +308,15 @@ msgstr ""
 msgid "Amount"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/browse.tt2:75
+msgid "An error occurred browsing records. Please try again in a moment or report the issue to library staff."
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
 msgid "Analyst"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:45
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:48
 msgid "Anchored Searching"
 msgstr ""
 
@@ -348,7 +336,7 @@ msgstr ""
 msgid "Annotator"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/results.tt2:27
+#: ../../Open-ILS/src/templates/opac/results.tt2:25
 msgid "Another Search"
 msgstr ""
 
@@ -397,6 +385,10 @@ msgstr ""
 msgid "Associated name"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/browse.tt2:103
+msgid "At least"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
 msgid "Attributed name"
 msgstr ""
@@ -445,7 +437,7 @@ msgstr ""
 msgid "Author of screenplay"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:239 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:27
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:260 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:27
 msgid "Author(s)"
 msgstr ""
 
@@ -457,6 +449,10 @@ msgstr ""
 msgid "Author: Z to A"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/parts/qtype_selector.tt2:1
+msgid "Authors"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/hold_status.tt2:3
 msgid "Available"
 msgstr ""
@@ -473,6 +469,10 @@ msgstr ""
 msgid "Awards, Reviews, & Suggested Reads"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/browse.tt2:51
+msgid "Back"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/myopac/main_pay.tt2:54
 msgid "Back to Account Summary"
 msgstr ""
@@ -481,7 +481,7 @@ msgstr ""
 msgid "Back to Payments History"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/record/email.tt2:15 ../../Open-ILS/src/templates/opac/record/print.tt2:24
+#: ../../Open-ILS/src/templates/opac/record/email.tt2:13 ../../Open-ILS/src/templates/opac/record/print.tt2:24
 msgid "Back to Record"
 msgstr ""
 
@@ -493,19 +493,19 @@ msgstr ""
 msgid "Barcode"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:54
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:53
 msgid "Barcode:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/advanced.tt2:13
+#: ../../Open-ILS/src/templates/opac/advanced.tt2:12
 msgid "Basic Search"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:68
+#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:70
 msgid "Before"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:68
+#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:70
 msgid "Between"
 msgstr ""
 
@@ -577,26 +577,35 @@ msgstr ""
 msgid "Bookseller"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:4
+#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:9
 msgid "Bottom Link 2"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:5
+#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:11
 msgid "Bottom Link 3"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:6
+#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:12
 msgid "Bottom Link 4"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:7
+#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:13
 msgid "Bottom Link 5"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:287
+#. (control_qtype, control_bterm, control_locg)
+#: ../../Open-ILS/src/templates/opac/browse.tt2:41
+msgid "Browse for %1 starting with %2 in %3"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:292
 msgid "Browse in Google Books Search"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/advanced.tt2:14 ../../Open-ILS/src/templates/opac/browse.tt2:1 ../../Open-ILS/src/templates/opac/browse.tt2:22 ../../Open-ILS/src/templates/opac/parts/searchbar.tt2:10
+msgid "Browse the Catalog"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/myopac/circ_history.tt2:56
 msgid "Call Number"
 msgstr ""
@@ -613,11 +622,11 @@ msgstr ""
 msgid "Call Number Browse"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:67 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:229
+#: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:67 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:227
 msgid "Call number"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:107
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:105
 msgid "Call number:"
 msgstr ""
 
@@ -682,11 +691,11 @@ msgstr ""
 msgid "Check Out History"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:32
+#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:35
 msgid "Checked Out"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:259
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:264
 msgid "Checked Out Before"
 msgstr ""
 
@@ -710,11 +719,11 @@ msgstr ""
 msgid "Citation/References Note: "
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:106 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:182 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:222
+#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:106 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:182 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:222 ../../Open-ILS/src/templates/opac/register.tt2:1
 msgid "City"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:114
+#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:123
 msgid "Clear Form"
 msgstr ""
 
@@ -815,7 +824,7 @@ msgstr ""
 msgid "Contains phrase"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:97
+#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:86
 msgid "Content"
 msgstr ""
 
@@ -828,11 +837,11 @@ msgid "Contestant"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
-msgid "Contestant -appellant"
+msgid "Contestant-appellant"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
-msgid "Contestant -appellee"
+msgid "Contestant-appellee"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
@@ -863,12 +872,12 @@ msgstr ""
 msgid "Copy and Version Identification Note: "
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:101
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:132
 msgid "Copy hold"
 msgstr ""
 
 #. (date.format(date.now, "%Y"))
-#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:17
+#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:23
 msgid "Copyright &copy; 2006-%1 Georgia Public Library Service, and others"
 msgstr ""
 
@@ -896,7 +905,7 @@ msgstr ""
 msgid "Country"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:183 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:226
+#: ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:183 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:226 ../../Open-ILS/src/templates/opac/register.tt2:1
 msgid "County"
 msgstr ""
 
@@ -948,15 +957,15 @@ msgstr ""
 msgid "Current Items on Hold"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/update_email.tt2:30 ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:30 ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:35
+#: ../../Open-ILS/src/templates/opac/myopac/update_email.tt2:30 ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:32 ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:32
 msgid "Current Password"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:34
+#: ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:31
 msgid "Current Username"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:124
+#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:130
 msgid "Current holds"
 msgstr ""
 
@@ -984,6 +993,10 @@ msgstr ""
 msgid "Date Returned"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/register.tt2:1
+msgid "Date of Birth"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/record/contents.tt2:1
 msgid "Date/Time and Place of an Event Note: "
 msgstr ""
@@ -1012,7 +1025,7 @@ msgstr ""
 msgid "Dedicator"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:92
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:102
 msgid "Default Font Size"
 msgstr ""
 
@@ -1064,7 +1077,7 @@ msgstr ""
 msgid "Depositor"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:210
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:231
 msgid "Description:"
 msgstr ""
 
@@ -1072,6 +1085,11 @@ msgstr ""
 msgid "Designer"
 msgstr ""
 
+#. (alternative_link)
+#: ../../Open-ILS/src/templates/opac/browse.tt2:87
+msgid "Did you mean %1?"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
 msgid "Director"
 msgstr ""
@@ -1081,7 +1099,7 @@ msgid "Discard Pending Address"
 msgstr ""
 
 #. (attrs.title)
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:54
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:53
 msgid "Display record details for \"%1\""
 msgstr ""
 
@@ -1101,7 +1119,7 @@ msgstr ""
 msgid "Distributor"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:21
+#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:19
 msgid "Do not show this warning again."
 msgstr ""
 
@@ -1141,7 +1159,7 @@ msgstr ""
 msgid "Earlier issues"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:253
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:274
 msgid "Edit"
 msgstr ""
 
@@ -1153,7 +1171,7 @@ msgstr ""
 msgid "Editing Hold"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:170 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:176
+#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:176 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:174
 msgid "Edition:"
 msgstr ""
 
@@ -1165,7 +1183,7 @@ msgstr ""
 msgid "Electrician"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:210
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:208
 msgid "Electronic resource"
 msgstr ""
 
@@ -1181,7 +1199,7 @@ msgstr ""
 msgid "Email"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:95 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:103
+#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:95 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:103 ../../Open-ILS/src/templates/opac/register.tt2:1
 msgid "Email Address"
 msgstr ""
 
@@ -1189,11 +1207,11 @@ msgstr ""
 msgid "Email Address:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:63
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:62
 msgid "Email address associated with the account:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:85
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:89
 msgid "Enabled"
 msgstr ""
 
@@ -1206,10 +1224,7 @@ msgid "Engraver"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/myopac/prefs_hints.tt2:2
-msgid ""
-"Ensure your account has a valid email address so that we can notify\n"
-"          you about available holds, items that are about to be overdue, and\n"
-"          overdue items!"
+msgid "Ensure your account has a valid email address so that we can notify you about available holds, items that are about to be overdue, and overdue items!"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:66 ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:97
@@ -1264,7 +1279,7 @@ msgstr ""
 msgid "Event place"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:24
+#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:30
 msgid "Evergreen"
 msgstr ""
 
@@ -1292,7 +1307,7 @@ msgstr ""
 msgid "Expert"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/advanced.tt2:25 ../../Open-ILS/src/templates/opac/parts/advanced/expert.tt2:2
+#: ../../Open-ILS/src/templates/opac/advanced.tt2:27 ../../Open-ILS/src/templates/opac/parts/advanced/expert.tt2:2
 msgid "Expert Search"
 msgstr ""
 
@@ -1355,7 +1370,7 @@ msgstr ""
 msgid "Find a copy in the shelving location, \"%1.\""
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/main.tt2:18 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:109 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:112 ../../Open-ILS/src/templates/opac/parts/topnav.tt2:50
+#: ../../Open-ILS/src/templates/opac/myopac/main.tt2:18 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:101 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:98 ../../Open-ILS/src/templates/opac/parts/topnav.tt2:53
 msgid "Fines"
 msgstr ""
 
@@ -1363,7 +1378,7 @@ msgstr ""
 msgid "Fines:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:87
+#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:87 ../../Open-ILS/src/templates/opac/register.tt2:1
 msgid "First Name"
 msgstr ""
 
@@ -1379,7 +1394,7 @@ msgstr ""
 msgid "Forgot your password?"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:59 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:118 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:248
+#: ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:59 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:118 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:269
 msgid "Format"
 msgstr ""
 
@@ -1427,11 +1442,11 @@ msgstr ""
 msgid "Geographic information specialist"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:45 ../../Open-ILS/src/templates/opac/myopac/circs.tt2:46 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:72 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:73 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:263 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:43
+#: ../../Open-ILS/src/templates/opac/browse.tt2:43 ../../Open-ILS/src/templates/opac/myopac/circs.tt2:45 ../../Open-ILS/src/templates/opac/myopac/circs.tt2:46 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:72 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:73 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:284 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:43
 msgid "Go"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:104
+#: ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:104 ../../Open-ILS/src/templates/opac/register.tt2:165
 msgid "Go Back"
 msgstr ""
 
@@ -1447,7 +1462,7 @@ msgstr ""
 msgid "Graphic technician"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:169
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:190
 msgid "HTML View"
 msgstr ""
 
@@ -1504,7 +1519,7 @@ msgstr ""
 msgid "Home"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:134
+#: ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:134 ../../Open-ILS/src/templates/opac/register.tt2:91
 msgid "Home Library"
 msgstr ""
 
@@ -1516,7 +1531,7 @@ msgstr ""
 msgid "Host"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:260
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:265
 msgid "I have checked this item out before"
 msgstr ""
 
@@ -1524,7 +1539,7 @@ msgstr ""
 msgid "ISBN"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:150 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:143
+#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:156 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:141
 msgid "ISBN:"
 msgstr ""
 
@@ -1532,7 +1547,7 @@ msgstr ""
 msgid "ISSN"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:157 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:151
+#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:163 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:149
 msgid "ISSN:"
 msgstr ""
 
@@ -1569,10 +1584,7 @@ msgid "Immediate Source of Acquisition Note: "
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/myopac/main_refund_policy.tt2:4
-msgid ""
-"Important! You must have a printed receipt\n"
-"              to be eligible for a refund on lost items\n"
-"              (regulations allow for no exceptions)."
+msgid "Important! You must have a printed receipt to be eligible for a refund on lost items (regulations allow for no exceptions)."
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/hold_status.tt2:3
@@ -1619,7 +1631,7 @@ msgstr ""
 msgid "Inventor"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:68
+#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:70
 msgid "Is"
 msgstr ""
 
@@ -1627,7 +1639,7 @@ msgstr ""
 msgid "Issue Label"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:101
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:132
 msgid "Issue hold"
 msgstr ""
 
@@ -1656,12 +1668,12 @@ msgid "Items Checked Out"
 msgstr ""
 
 #. (ctx.user_stats.checkouts.total_out)
-#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:63
+#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:62
 msgid "Items Currently Checked out (%1)"
 msgstr ""
 
 #. (ctx.user_stats.holds.total)
-#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:73
+#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:68
 msgid "Items Currently on Hold (%1)"
 msgstr ""
 
@@ -1678,7 +1690,7 @@ msgid "Items on Hold"
 msgstr ""
 
 #. (ctx.user_stats.holds.ready)
-#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:83
+#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:74
 msgid "Items ready for pickup (%1)"
 msgstr ""
 
@@ -1742,11 +1754,11 @@ msgstr ""
 msgid "Language:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:96
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:106
 msgid "Large Font"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:91
+#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:91 ../../Open-ILS/src/templates/opac/register.tt2:1
 msgid "Last Name"
 msgstr ""
 
@@ -1794,7 +1806,7 @@ msgstr ""
 msgid "Libelee-appellee"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:227
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:225
 msgid "Library"
 msgstr ""
 
@@ -1822,11 +1834,11 @@ msgstr ""
 msgid "Lighting designer"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:59
+#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:61
 msgid "Limit to Available"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/results.tt2:59
+#: ../../Open-ILS/src/templates/opac/results.tt2:57
 msgid "Limit to available items"
 msgstr ""
 
@@ -1878,10 +1890,14 @@ msgstr ""
 msgid "Loading..."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:242 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:28
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:263 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:28
 msgid "Local Call Number"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:171
+msgid "Locate Z39.50 Matches"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:35
 msgid "Location"
 msgstr ""
@@ -1898,7 +1914,7 @@ msgstr ""
 msgid "Log in"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:28
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:26
 msgid "Log in to My Account"
 msgstr ""
 
@@ -1907,12 +1923,10 @@ msgid "Log in to Your Account"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/login/form.tt2:3
-msgid ""
-"Login failed. The username or password provided was not valid.  \n"
-"            Passwords are case-sensitive.  Check your Caps-Lock key and try again or contact your local library."
+msgid "Login failed. The username or password provided was not valid. Passwords are case-sensitive.  Check your Caps-Lock key and try again or contact your local library."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:26
+#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:29
 msgid "Logout"
 msgstr ""
 
@@ -1972,6 +1986,10 @@ msgstr ""
 msgid "Methodology Note: "
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/register.tt2:1
+msgid "Middle Name"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/record/issues-mfhd.tt2:4
 msgid "Missing"
 msgstr ""
@@ -2000,11 +2018,8 @@ msgstr ""
 msgid "Move selected items to bookbag:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:33
-msgid ""
-"Multiple words are not searched together as a phrase. They will\n"
-"\t\t      be found in various parts of the record. To search for a phrase, enclose your\n"
-"\t\t      search terms in quotation marks."
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:34
+msgid "Multiple words are not searched together as a phrase. They will be found in various parts of the record. To search for a phrase, enclose your search terms in quotation marks."
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
@@ -2019,12 +2034,12 @@ msgstr ""
 msgid "Musician"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:12 ../../Open-ILS/src/templates/opac/parts/topnav.tt2:23
+#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:15 ../../Open-ILS/src/templates/opac/parts/topnav.tt2:26
 msgid "My Account"
 msgstr ""
 
 #. (page.name)
-#: ../../Open-ILS/src/templates/opac/parts/myopac/base.tt2:19
+#: ../../Open-ILS/src/templates/opac/parts/myopac/base.tt2:17
 msgid "My Account - %1"
 msgstr ""
 
@@ -2040,7 +2055,7 @@ msgstr ""
 msgid "Name"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:197
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:218
 msgid "Name:"
 msgstr ""
 
@@ -2052,28 +2067,37 @@ msgstr ""
 msgid "New Email"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:31
+#: ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:33
 msgid "New Password"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:32
+#: ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:34
 msgid "New Password Again"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:36
+#: ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:33
 msgid "New Username"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:34
+#. (ctx.user.prefix, ctx.user.first_given_name, ctx.user.second_given_name, ctx.user.family_name, ctx.user.suffix)
+#: ../../Open-ILS/src/templates/opac/register.tt2:80
+msgid "New account requested by %1 %2 %3 %4 %5"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:16
+msgid "New password is invalid.  Please try a different password."
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:32
 msgid "New password:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/circ_history.tt2:27 ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:40 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:46 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:76 ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:175 ../../Open-ILS/src/templates/opac/myopac/main_payments.tt2:18 ../../Open-ILS/src/templates/opac/parts/record/issues-db.tt2:197 ../../Open-ILS/src/templates/opac/parts/record/navigation.tt2:33 ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:51
+#: ../../Open-ILS/src/templates/opac/browse.tt2:63 ../../Open-ILS/src/templates/opac/myopac/circ_history.tt2:27 ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:40 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:46 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:76 ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:175 ../../Open-ILS/src/templates/opac/myopac/main_payments.tt2:18 ../../Open-ILS/src/templates/opac/parts/record/issues-db.tt2:197 ../../Open-ILS/src/templates/opac/parts/record/navigation.tt2:33 ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:56
 msgid "Next"
 msgstr ""
 
 #. (ctx.copy_limit)
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:179
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:234
 msgid "Next %1"
 msgstr ""
 
@@ -2085,7 +2109,7 @@ msgstr ""
 msgid "Next Record"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:51
+#: ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:56
 msgid "Next page"
 msgstr ""
 
@@ -2101,7 +2125,7 @@ msgstr ""
 msgid "No holds found."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:89
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:84
 msgid "No notification preferences are configured"
 msgstr ""
 
@@ -2117,23 +2141,35 @@ msgstr ""
 msgid "No, this hold is suspended"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:92
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:123
 msgid "None"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:101
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:132
 msgid "Not holdable"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:97
+#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:86
 msgid "Note title"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/sms_carrier_selector.tt2:28 ../../Open-ILS/src/templates/opac/sms_cn.tt2:36
+#: ../../Open-ILS/src/templates/opac/browse.tt2:160
+msgid "Note:"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/myopac/update_password_msg.tt2:2
+msgid "Note: The password must be at least 7 characters in length, contain at least one letter (a-z/A-Z), and contain at least one number."
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/password_reset_msg.tt2:2
+msgid "Note: You must have a valid email address associated with your library account. If not, please contact your local library for further assistance."
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/parts/sms_carrier_selector.tt2:28 ../../Open-ILS/src/templates/opac/sms_cn.tt2:34
 msgid "Note: carrier charges may apply"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:251
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:272
 msgid "Notes"
 msgstr ""
 
@@ -2141,7 +2177,7 @@ msgstr ""
 msgid "Notification Preferences"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:84
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:88
 msgid "Notification Type"
 msgstr ""
 
@@ -2169,11 +2205,11 @@ msgstr ""
 msgid "Numbering Peculiarities Note: "
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/advanced.tt2:22 ../../Open-ILS/src/templates/opac/parts/advanced/numeric.tt2:2
+#: ../../Open-ILS/src/templates/opac/advanced.tt2:24 ../../Open-ILS/src/templates/opac/parts/advanced/numeric.tt2:2
 msgid "Numeric Search"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:23
+#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:21
 msgid "OK"
 msgstr ""
 
@@ -2181,7 +2217,7 @@ msgstr ""
 msgid "October"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:38
+#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:41
 msgid "On Hold"
 msgstr ""
 
@@ -2241,7 +2277,7 @@ msgstr ""
 msgid "Papermaker"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:39 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:231
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:39 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:229
 msgid "Part"
 msgstr ""
 
@@ -2253,14 +2289,18 @@ msgstr ""
 msgid "Password"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:10
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:8
 msgid "Password has been reset"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:10
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:8
 msgid "Passwords did not match. Please try again"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:21
+msgid "Passwords do not match."
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
 msgid "Patent applicant"
 msgstr ""
@@ -2305,7 +2345,7 @@ msgstr ""
 msgid "Payment For"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:110 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:113
+#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:102 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:99
 msgid "Payments"
 msgstr ""
 
@@ -2317,7 +2357,7 @@ msgstr ""
 msgid "Pending Addresses"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:74
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:72
 msgid "Perform an Author Search"
 msgstr ""
 
@@ -2338,6 +2378,10 @@ msgstr ""
 msgid "Personal Information"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/register.tt2:1
+msgid "Phone Number"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/place_hold.tt2:91
 msgid "Phone Number:"
 msgstr ""
@@ -2346,11 +2390,11 @@ msgstr ""
 msgid "Photographer"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:200
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:198
 msgid "Phys. Desc.:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:164
+#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:170
 msgid "Physical Description:"
 msgstr ""
 
@@ -2358,6 +2402,10 @@ msgstr ""
 msgid "Pickup Location"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:92
+msgid "Pickup holds from behind the desk when possible?"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:47
 msgid "Pickup library"
 msgstr ""
@@ -2366,11 +2414,11 @@ msgstr ""
 msgid "Pickup location:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/place_hold.tt2:6 ../../Open-ILS/src/templates/opac/parts/place_hold_result.tt2:10 ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:32 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:305 ../../Open-ILS/src/templates/opac/place_hold.tt2:1
+#: ../../Open-ILS/src/templates/opac/parts/place_hold.tt2:6 ../../Open-ILS/src/templates/opac/parts/place_hold_result.tt2:10 ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:32 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:310 ../../Open-ILS/src/templates/opac/place_hold.tt2:1
 msgid "Place Hold"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:259 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:32
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:280 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:32
 msgid "Place hold"
 msgstr ""
 
@@ -2388,11 +2436,11 @@ msgid "Plaintiff"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
-msgid "Plaintiff -appellee"
+msgid "Plaintiff-appellant"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
-msgid "Plaintiff-appellant"
+msgid "Plaintiff-appellee"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
@@ -2403,7 +2451,7 @@ msgstr ""
 msgid "Please do not Refresh or use your browser's Back button or your credit card may be charged more than once."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:10
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:8
 msgid "Please enter and repeat your new password."
 msgstr ""
 
@@ -2411,7 +2459,7 @@ msgstr ""
 msgid "Please enter the following information:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:50
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:48
 msgid "Please enter your user name or barcode to identify your library account and request a password reset"
 msgstr ""
 
@@ -2423,7 +2471,15 @@ msgstr ""
 msgid "Please see a librarian to renew your account."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:20
+#: ../../Open-ILS/src/templates/opac/register.tt2:47 ../../Open-ILS/src/templates/opac/register.tt2:67
+msgid "Please see library staff to complete your registration."
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/register.tt2:103
+msgid "Please select a valid library"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:26
 msgid "Powered by"
 msgstr ""
 
@@ -2431,9 +2487,9 @@ msgstr ""
 msgid "Preferred Citation of Described Materials Note: "
 msgstr ""
 
-#. ("<b>", ctx.get_aou(ctx.pref_ou).name, "</b>")
+#. ("<b>' _ ctx.get_aou(ctx.pref_ou).name _ '</b>")
 #: ../../Open-ILS/src/templates/opac/parts/pref_lib_display.tt2:2
-msgid "Preferred library: %1%2%3"
+msgid "Preferred library: %1"
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:55
@@ -2448,12 +2504,12 @@ msgstr ""
 msgid "Preview"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/circ_history.tt2:24 ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:26 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:32 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:71 ../../Open-ILS/src/templates/opac/myopac/main_payments.tt2:15 ../../Open-ILS/src/templates/opac/parts/record/issues-db.tt2:194 ../../Open-ILS/src/templates/opac/parts/record/navigation.tt2:21 ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:23
+#: ../../Open-ILS/src/templates/opac/myopac/circ_history.tt2:24 ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:26 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:32 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:71 ../../Open-ILS/src/templates/opac/myopac/main_payments.tt2:15 ../../Open-ILS/src/templates/opac/parts/record/issues-db.tt2:194 ../../Open-ILS/src/templates/opac/parts/record/navigation.tt2:21 ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:28
 msgid "Previous"
 msgstr ""
 
 #. (ctx.copy_offset - new_offset)
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:173
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:228
 msgid "Previous %1"
 msgstr ""
 
@@ -2461,7 +2517,7 @@ msgstr ""
 msgid "Previous Record"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:23
+#: ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:28
 msgid "Previous page"
 msgstr ""
 
@@ -2545,7 +2601,7 @@ msgstr ""
 msgid "Proofreader"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:245
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:266
 msgid "Publication Date"
 msgstr ""
 
@@ -2565,7 +2621,7 @@ msgstr ""
 msgid "Publisher"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:191 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:119
+#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:197 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:117
 msgid "Publisher:"
 msgstr ""
 
@@ -2581,15 +2637,15 @@ msgstr ""
 msgid "Questions?"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:157
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:178
 msgid "RSS Feed"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:38
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:36
 msgid "Re-enter new password:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:44
+#: ../../Open-ILS/src/templates/opac/parts/topnav.tt2:47
 msgid "Ready for Pickup"
 msgstr ""
 
@@ -2609,7 +2665,7 @@ msgstr ""
 msgid "Record Detail"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:146
+#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:152
 msgid "Record details"
 msgstr ""
 
@@ -2625,7 +2681,11 @@ msgstr ""
 msgid "Refine My Original Search"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:95
+#: ../../Open-ILS/src/templates/opac/register.tt2:46
+msgid "Registration successful!"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:105
 msgid "Regular Font"
 msgstr ""
 
@@ -2633,11 +2693,11 @@ msgstr ""
 msgid "Remove Default List"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:260 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:33
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:281 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:33
 msgid "Remove from list"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:39 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:312
+#: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:39 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:317
 msgid "Remove from my list"
 msgstr ""
 
@@ -2673,6 +2733,18 @@ msgstr ""
 msgid "Reproduction Note: "
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/parts/footer.tt2:6 ../../Open-ILS/src/templates/opac/register.tt2:1
+msgid "Request Library Card"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/register.tt2:42
+msgid "Request a Library Card"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/register.tt2:1
+msgid "Requested Username"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
 msgid "Research team head"
 msgstr ""
@@ -2709,10 +2781,19 @@ msgstr ""
 msgid "Restrictions on Access Note: "
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/sms_cn.tt2:17 ../../Open-ILS/src/templates/opac/sms_cn.tt2:21
+#. ("<span class=\"result_count_number\">' _ ctx.result_start _ '</span>", "<span class=\"result_count_number\">' _ ctx.result_stop _ '</span>", "<span class=\"result_count_number\">' _ ctx.hit_count _ '</span>")
+#: ../../Open-ILS/src/templates/opac/parts/result/paginate.tt2:9
+msgid "Results %1 - %2 of about %3"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/sms_cn.tt2:15 ../../Open-ILS/src/templates/opac/sms_cn.tt2:19
 msgid "Return to record"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/register.tt2:62 ../../Open-ILS/src/templates/opac/register.tt2:72
+msgid "Return to the Catalog"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
 msgid "Reviewer"
 msgstr ""
@@ -2721,11 +2802,11 @@ msgstr ""
 msgid "Reviews"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:331
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:336
 msgid "Reviews &amp; More"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:326
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:331
 msgid "Reviews and More"
 msgstr ""
 
@@ -2733,11 +2814,11 @@ msgstr ""
 msgid "Rubricator"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/sms_cn.tt2:42
+#: ../../Open-ILS/src/templates/opac/sms_cn.tt2:40
 msgid "SMS not enabled for this site."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:206 ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:103 ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:104
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:227 ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:106 ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:114
 msgid "Save"
 msgstr ""
 
@@ -2745,11 +2826,11 @@ msgstr ""
 msgid "Save Changes"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:335
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:356
 msgid "Save Notes"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:205
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:226
 msgid "Save changes to name or description?"
 msgstr ""
 
@@ -2777,7 +2858,7 @@ msgstr ""
 msgid "Sculptor"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/expert.tt2:36 ../../Open-ILS/src/templates/opac/parts/advanced/expert.tt2:37 ../../Open-ILS/src/templates/opac/parts/advanced/numeric.tt2:35 ../../Open-ILS/src/templates/opac/parts/advanced/numeric.tt2:36 ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:108 ../../Open-ILS/src/templates/opac/parts/searchbar.tt2:45
+#: ../../Open-ILS/src/templates/opac/parts/advanced/expert.tt2:36 ../../Open-ILS/src/templates/opac/parts/advanced/expert.tt2:37 ../../Open-ILS/src/templates/opac/parts/advanced/numeric.tt2:35 ../../Open-ILS/src/templates/opac/parts/advanced/numeric.tt2:36 ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:117 ../../Open-ILS/src/templates/opac/parts/searchbar.tt2:45
 msgid "Search"
 msgstr ""
 
@@ -2825,11 +2906,15 @@ msgstr ""
 msgid "Search for related items by subject"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:23
+msgid "Search hits per page"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/searchbar.tt2:55
 msgid "Search only within the chosen list"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/advanced.tt2:10 ../../Open-ILS/src/templates/opac/parts/searchbar.tt2:7
+#: ../../Open-ILS/src/templates/opac/advanced.tt2:10 ../../Open-ILS/src/templates/opac/browse.tt2:19 ../../Open-ILS/src/templates/opac/parts/searchbar.tt2:7
 msgid "Search the Catalog"
 msgstr ""
 
@@ -2849,6 +2934,10 @@ msgstr ""
 msgid "See All"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:91
+msgid "Select Shelving Location"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/place_hold.tt2:50
 msgid "Select a Part (optional):"
 msgstr ""
@@ -2857,6 +2946,10 @@ msgstr ""
 msgid "Select a Part:"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/browse.tt2:38
+msgid "Select holding library"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/coded_value_selector.tt2:21
 msgid "Select item type:"
 msgstr ""
@@ -2913,31 +3006,27 @@ msgstr ""
 msgid "Sharing Help"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:348
-msgid ""
-"Sharing a Bookbag means that the contents \n"
-"of the Bookbag will be visible to others.  \n"
-"To see the public view of a shared Bookbag, \n"
-"click on the Bookbag's name in the Bookbag list."
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:369
+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 on the Bookbag's name in the Bookbag list."
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/record/cnbrowse.tt2:18 ../../Open-ILS/src/templates/opac/parts/record/extras.tt2:23
 msgid "Shelf Browser"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:42
+#: ../../Open-ILS/src/templates/opac/parts/config.tt2:1 ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:42
 msgid "Shelving Location"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:228
+#: ../../Open-ILS/src/templates/opac/parts/result/table.tt2:226
 msgid "Shelving location"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/results.tt2:49
+#: ../../Open-ILS/src/templates/opac/results.tt2:47
 msgid "Show Fewer Details"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/results.tt2:50
+#: ../../Open-ILS/src/templates/opac/results.tt2:48
 msgid "Show More Details"
 msgstr ""
 
@@ -2946,11 +3035,11 @@ msgid "Show all holds"
 msgstr ""
 
 #. (ou_name)
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:25 ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:44
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:28 ../../Open-ILS/src/templates/opac/parts/record/copy_counts.tt2:51
 msgid "Show copies at %1"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:196
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:251
 msgid "Show fewer copies"
 msgstr ""
 
@@ -2958,7 +3047,7 @@ msgstr ""
 msgid "Show items in list"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:191
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:246
 msgid "Show more copies"
 msgstr ""
 
@@ -2983,14 +3072,14 @@ msgstr ""
 msgid "Skip warning when adding to temporary book list?"
 msgstr ""
 
-#. ("<q>", qhtml, "</q>", fmt_bookbag)
+#. ("<q>' _ qhtml _ '</q>", fmt_bookbag)
 #: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:7
-msgid "Sorry, no entries were found for %1%2%3 within %4."
+msgid "Sorry, no entries were found for %1 within %2."
 msgstr ""
 
-#. ("<q>", qhtml, "</q>")
+#. ("<q>' _ qhtml _ '</q>")
 #: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:7
-msgid "Sorry, no entries were found for %1%2%3."
+msgid "Sorry, no entries were found for %1."
 msgstr ""
 
 #. (fmt_bookbag)
@@ -3002,7 +3091,7 @@ msgstr ""
 msgid "Sorry, no entries were found for your search."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:184 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:10
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:205 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:10
 msgid "Sort"
 msgstr ""
 
@@ -3010,7 +3099,7 @@ msgstr ""
 msgid "Sort Results"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/results.tt2:42
+#: ../../Open-ILS/src/templates/opac/results.tt2:40
 msgid "Sort by"
 msgstr ""
 
@@ -3030,7 +3119,7 @@ msgstr ""
 msgid "Sort by Title"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:178 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:4
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:199 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:4
 msgid "Sort list items by: "
 msgstr ""
 
@@ -3062,7 +3151,7 @@ msgstr ""
 msgid "Starts with"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:184 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:230
+#: ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:184 ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:230 ../../Open-ILS/src/templates/opac/register.tt2:1
 msgid "State"
 msgstr ""
 
@@ -3070,7 +3159,7 @@ msgstr ""
 msgid "State or Province"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:64 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:123 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:99 ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:38 ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:50 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:233
+#: ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:64 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:123 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:99 ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:38 ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:50 ../../Open-ILS/src/templates/opac/parts/result/table.tt2:231
 msgid "Status"
 msgstr ""
 
@@ -3090,10 +3179,14 @@ msgstr ""
 msgid "Street"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:102
+#: ../../Open-ILS/src/templates/opac/myopac/main_payment_form.tt2:102 ../../Open-ILS/src/templates/opac/register.tt2:1
 msgid "Street Address"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/register.tt2:1
+msgid "Street Address (2)"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/record/contents.tt2:1
 msgid "Study Program Information Note: "
 msgstr ""
@@ -3110,7 +3203,11 @@ msgstr ""
 msgid "Subject: "
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:105 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:40 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:41 ../../Open-ILS/src/templates/opac/myopac/update_email.tt2:32 ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:33 ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:37 ../../Open-ILS/src/templates/opac/parts/place_hold.tt2:107 ../../Open-ILS/src/templates/opac/parts/place_hold.tt2:108 ../../Open-ILS/src/templates/opac/parts/place_hold_result.tt2:122 ../../Open-ILS/src/templates/opac/parts/place_hold_result.tt2:123 ../../Open-ILS/src/templates/opac/password_reset.tt2:43 ../../Open-ILS/src/templates/opac/password_reset.tt2:65 ../../Open-ILS/src/templates/opac/sms_cn.tt2:32 ../../Open-ILS/src/templates/opac/sms_cn.tt2:33 ../../Open-ILS/src/templates/opac/sms_cn.tt2:34
+#: ../../Open-ILS/src/templates/opac/parts/qtype_selector.tt2:1
+msgid "Subjects"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/myopac/holds/edit.tt2:105 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:40 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:41 ../../Open-ILS/src/templates/opac/myopac/update_email.tt2:32 ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:35 ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:34 ../../Open-ILS/src/templates/opac/parts/place_hold.tt2:107 ../../Open-ILS/src/templates/opac/parts/place_hold.tt2:108 ../../Open-ILS/src/templates/opac/parts/place_hold_result.tt2:122 ../../Open-ILS/src/templates/opac/parts/place_hold_result.tt2:123 ../../Open-ILS/src/templates/opac/password_reset.tt2:41 ../../Open-ILS/src/templates/opac/password_reset.tt2:64 ../../Open-ILS/src/templates/opac/sms_cn.tt2:30 ../../Open-ILS/src/templates/opac/sms_cn.tt2:31 ../../Open-ILS/src/templates/opac/sms_cn.tt2:32
 msgid "Submit"
 msgstr ""
 
@@ -3118,6 +3215,10 @@ msgstr ""
 msgid "Submit Payment"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/register.tt2:167
+msgid "Submit Registration"
+msgstr ""
+
 #. (ctx.success_renewals)
 #: ../../Open-ILS/src/templates/opac/myopac/circs.tt2:25
 msgid "Successfully renewed %1 item(s)"
@@ -3203,7 +3304,7 @@ msgstr ""
 msgid "Terms Governing Use and Reproduction Note: "
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/sms_cn.tt2:20
+#: ../../Open-ILS/src/templates/opac/sms_cn.tt2:18
 msgid "Text call number"
 msgstr ""
 
@@ -3215,9 +3316,9 @@ msgstr ""
 msgid "The barcode used to login is marked as inactive.  Please contact your local library."
 msgstr ""
 
-#. (bad_email)
+#. ("<b>' _ bad_email _ '</b>")
 #: ../../Open-ILS/src/templates/opac/myopac/update_email.tt2:14
-msgid "The email address \"<b>%1</b>\" is invalid.  Please try a different email address."
+msgid "The email address \"%1\" is invalid.  Please try a different email address."
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/hold_error_messages.tt2:1
@@ -3252,7 +3353,7 @@ msgstr ""
 msgid "The item's location is not holdable"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:10
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:8
 msgid "The password you chose was not considered complex enough to protect your account. Your password has not been reset."
 msgstr ""
 
@@ -3284,6 +3385,15 @@ msgstr ""
 msgid "The total item-to-hold ratio is too low"
 msgstr ""
 
+#. ("<b>' _ bad_user _ '</b>")
+#: ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:19
+msgid "The username \"%1\" is taken.  Please try a different username."
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/register.tt2:149
+msgid "The value entered does not have the correct format"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/myopac/circ_history.tt2:44
 msgid "There are no items in your circulation history."
 msgstr ""
@@ -3300,15 +3410,19 @@ msgstr ""
 msgid "This account has been deactivated.  Please contact your local library."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:12
+#: ../../Open-ILS/src/templates/opac/register.tt2:145
+msgid "This field is required"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:10
 msgid "This information will disappear when you end your session, unless you login and save it to a permanent list."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:12
+#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:10
 msgid "This information will disappear when you logout, unless you save it to a permanent list."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:270
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:291
 msgid "This list contains no items."
 msgstr ""
 
@@ -3316,7 +3430,7 @@ msgstr ""
 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 ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:10
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:8
 msgid "This was not an active password reset request. Your password has not been reset."
 msgstr ""
 
@@ -3328,7 +3442,7 @@ msgstr ""
 msgid "Tip:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:57 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:116 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:97 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:236 ../../Open-ILS/src/templates/opac/myopac/main.tt2:22 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:26 ../../Open-ILS/src/templates/opac/parts/qtype_selector.tt2:1
+#: ../../Open-ILS/src/templates/opac/myopac/hold_history.tt2:57 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:116 ../../Open-ILS/src/templates/opac/myopac/holds.tt2:97 ../../Open-ILS/src/templates/opac/myopac/lists.tt2:257 ../../Open-ILS/src/templates/opac/myopac/main.tt2:22 ../../Open-ILS/src/templates/opac/parts/anon_list.tt2:26 ../../Open-ILS/src/templates/opac/parts/qtype_selector.tt2:1
 msgid "Title"
 msgstr ""
 
@@ -3344,13 +3458,12 @@ msgstr ""
 msgid "Title: Z to A"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/parts/qtype_selector.tt2:1
+msgid "Titles"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/myopac/main_refund_policy.tt2:10
-msgid ""
-"To ensure your necessary receipt information\n"
-"             is not lost, enter your email address above \n"
-"             and a receipt will be emailed to you. Otherwise,\n"
-"             make certain you have a printed receipt in hand\n"
-"             before closing the payment receipt screen."
+msgid "To ensure your necessary receipt information is not lost, enter your email address above and a receipt will be emailed to you. Otherwise, make certain you have a printed receipt in hand before closing the payment receipt screen."
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/record/subjects.tt2:1
@@ -3377,13 +3490,13 @@ msgstr ""
 msgid "Translator"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:39
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:41
 msgid "Truncation"
 msgstr ""
 
-#. ("<strong>", "</strong>")
+#. ("<strong>' _ i18n_advsearch _ '</strong>")
 #: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:29
-msgid "Try changing to %1Advanced Search%2."
+msgid "Try changing to %1."
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
@@ -3430,7 +3543,7 @@ msgstr ""
 msgid "Update Username"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:58
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:57
 msgid "User name:"
 msgstr ""
 
@@ -3458,11 +3571,11 @@ msgstr ""
 msgid "Videographer"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:65 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:75 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:85
+#: ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:64 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:70 ../../Open-ILS/src/templates/opac/parts/myopac/main_base.tt2:76
 msgid "View All"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/results.tt2:35 ../../Open-ILS/src/templates/opac/results.tt2:37
+#: ../../Open-ILS/src/templates/opac/results.tt2:33 ../../Open-ILS/src/templates/opac/results.tt2:35
 msgid "View My List"
 msgstr ""
 
@@ -3474,7 +3587,7 @@ msgstr ""
 msgid "Vocalist"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:101
+#: ../../Open-ILS/src/templates/opac/parts/record/copy_table.tt2:132
 msgid "Volume hold"
 msgstr ""
 
@@ -3502,10 +3615,8 @@ msgstr ""
 msgid "Woodcutter"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:40
-msgid ""
-"Words may be right-hand truncated using an asterisk. Use a single asterisk *\n"
-"\t\t      to truncate any number of characters."
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:42
+msgid "Words may be right-hand truncated using an asterisk. Use a single asterisk * to truncate any number of characters."
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/parts/relators.tt2:1
@@ -3532,7 +3643,7 @@ msgstr ""
 msgid "Yes, this hold is active now"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:11
+#: ../../Open-ILS/src/templates/opac/temp_warn.tt2:9
 msgid "You are adding to a temporary list."
 msgstr ""
 
@@ -3557,7 +3668,7 @@ msgstr ""
 msgid "You have no items checked out."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/mylist.tt2:14
+#: ../../Open-ILS/src/templates/opac/mylist.tt2:12
 msgid "You have not created a list yet."
 msgstr ""
 
@@ -3565,18 +3676,23 @@ msgstr ""
 msgid "You have permission to override some of the failed holds. Click Submit to override and place your hold on the selected items."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:46
-msgid ""
-"You may use ^ and $ to indicate \"phrase begins with\" and\n"
-"\t\t      \"phrase ends with,\" respectively, within a search phrase\n"
-"\t\t      enclosed in quotation marks."
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:49
+msgid "You may use ^ and $ to indicate \"phrase begins with\" and \"phrase ends with,\" respectively, within a search phrase enclosed in quotation marks."
 msgstr ""
 
 #: ../../Open-ILS/src/templates/opac/myopac/prefs.tt2:15
 msgid "Your account expired on"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/record/email.tt2:13
+#: ../../Open-ILS/src/templates/opac/browse.tt2:82
+msgid "Your browse term seems to begin with an article (a, an, the). You might get better results by omitting the article."
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/myopac/update_email.tt2:19 ../../Open-ILS/src/templates/opac/myopac/update_password.tt2:26 ../../Open-ILS/src/templates/opac/myopac/update_username.tt2:24
+msgid "Your current password was not correct."
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/record/email.tt2:11
 msgid "Your email has been queued for Delivery."
 msgstr ""
 
@@ -3585,7 +3701,7 @@ msgstr ""
 msgid "Your library card expired on %1. Please contact a librarian to resolve this issue."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/sms_cn.tt2:16
+#: ../../Open-ILS/src/templates/opac/sms_cn.tt2:14
 msgid "Your message has been sent!"
 msgstr ""
 
@@ -3598,7 +3714,7 @@ msgstr ""
 msgid "Your receipt will be emailed to %1"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/password_reset.tt2:10
+#: ../../Open-ILS/src/templates/opac/password_reset.tt2:8
 msgid "Your user name or barcode has been submitted for a password reset. If a matching account with an email address is found, you will soon receive an email at that address with further instructions for resetting your password."
 msgstr ""
 
@@ -3610,7 +3726,11 @@ msgstr ""
 msgid "Zip"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:79
+#: ../../Open-ILS/src/templates/opac/register.tt2:1
+msgid "Zip Code"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/parts/advanced/search.tt2:81
 msgid "and"
 msgstr ""
 
@@ -3618,6 +3738,22 @@ msgstr ""
 msgid "circ_history.csv"
 msgstr ""
 
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:44
+msgid "environment* agency"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:37
+msgid "garcia marquez"
+msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:52
+msgid "harry"
+msgstr ""
+
 #: ../../Open-ILS/src/templates/opac/parts/record/summary.tt2:31
 msgid "place hold"
 msgstr ""
+
+#: ../../Open-ILS/src/templates/opac/parts/result/lowhits.tt2:52
+msgid "stone"
+msgstr ""
index 1976fc9..39fc6bf 100644 (file)
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev@list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-06-06 12:12:01-0400\n"
+"POT-Creation-Date: 2013-09-10 14:54:43-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"