From 534477c5d3bb0f8644facacf48cd8fa39d518f02 Mon Sep 17 00:00:00 2001 From: erickson Date: Wed, 15 Oct 2008 12:54:09 +0000 Subject: [PATCH] Merged revisions 10827-10832 via svnmerge from svn://svn.open-ils.org/ILS/trunk ........ r10827 | dbs | 2008-10-13 22:39:13 -0400 (Mon, 13 Oct 2008) | 3 lines Start making it possible to localize Conify. Using a combination of mod_xmlent and dojo string substitution for the nonce. ........ r10828 | erickson | 2008-10-13 23:08:14 -0400 (Mon, 13 Oct 2008) | 1 line disconnect to free up the cstore backend ........ r10829 | dbs | 2008-10-13 23:38:48 -0400 (Mon, 13 Oct 2008) | 2 lines Complete i18n support for the aout admin interface ........ r10830 | dbs | 2008-10-14 00:37:42 -0400 (Tue, 14 Oct 2008) | 2 lines Add conify and vandelay DTDs to localization effort ........ r10831 | dbs | 2008-10-14 16:35:48 -0400 (Tue, 14 Oct 2008) | 1 line Remove ugly separate language picker ........ r10832 | dbs | 2008-10-14 16:36:48 -0400 (Tue, 14 Oct 2008) | 2 lines Bring i18n to org unit administration interface ........ git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@10833 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../src/perlmods/OpenILS/Application/Ingest.pm | 1 + Open-ILS/web/conify/global/actor/org_unit.html | 218 +-- Open-ILS/web/conify/global/actor/org_unit.js | 29 +- .../web/conify/global/actor/org_unit_type.html | 54 +- Open-ILS/web/conify/global/actor/org_unit_type.js | 9 +- Open-ILS/web/conify/global/admin.html | 29 +- Open-ILS/web/js/dojo/openils/conify/nls/aou.js | 31 + Open-ILS/web/js/dojo/openils/conify/nls/aout.js | 17 + Open-ILS/web/opac/extras/slimpac/language.html | 140 -- Open-ILS/web/opac/locale/en-US/conify.dtd | 64 + build/i18n/Makefile.in | 2 + build/i18n/po/en-US/admin.properties.pot | 2 +- build/i18n/po/en-US/auth.properties.pot | 2 +- build/i18n/po/en-US/cat.properties.pot | 222 ++- build/i18n/po/en-US/circ.properties.pot | 22 +- build/i18n/po/en-US/common.properties.pot | 6 +- build/i18n/po/en-US/conify.dtd.pot | 104 ++ build/i18n/po/en-US/db.seed.pot | 842 +++++++--- build/i18n/po/en-US/fm_IDL.pot | 1627 ++++++++++---------- build/i18n/po/en-US/ils_events.xml.pot | 381 ++--- build/i18n/po/en-US/lang.dtd.pot | 162 +- .../i18n/po/en-US/multiclass_search_help.html.pot | 2 +- build/i18n/po/en-US/offline.properties.pot | 10 +- build/i18n/po/en-US/opac.dtd.pot | 34 +- build/i18n/po/en-US/patron.properties.pot | 2 +- build/i18n/po/en-US/vandelay.dtd.pot | 426 +++++ 26 files changed, 2904 insertions(+), 1534 deletions(-) create mode 100644 Open-ILS/web/js/dojo/openils/conify/nls/aou.js create mode 100644 Open-ILS/web/js/dojo/openils/conify/nls/aout.js delete mode 100644 Open-ILS/web/opac/extras/slimpac/language.html create mode 100644 Open-ILS/web/opac/locale/en-US/conify.dtd create mode 100644 build/i18n/po/en-US/conify.dtd.pot create mode 100644 build/i18n/po/en-US/vandelay.dtd.pot diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Ingest.pm b/Open-ILS/src/perlmods/OpenILS/Application/Ingest.pm index e5e21f737c..0a3cbd4372 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Ingest.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Ingest.pm @@ -274,6 +274,7 @@ sub rw_biblio_ingest_single_object { $cstore->request( 'open-ils.cstore.direct.biblio.record_entry.update' => $bib )->gather(1); $cstore->request( 'open-ils.cstore.transaction.commit' )->gather(1) || return undef;; + $cstore->disconnect; return $bib->id; } diff --git a/Open-ILS/web/conify/global/actor/org_unit.html b/Open-ILS/web/conify/global/actor/org_unit.html index 6bae4709b6..f2c4a37df4 100644 --- a/Open-ILS/web/conify/global/actor/org_unit.html +++ b/Open-ILS/web/conify/global/actor/org_unit.html @@ -12,9 +12,14 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. --> + +]> - Conify :: Global :: Actor :: Org Units + &conify.org_unit.title; - - - -

&slimpac.language.select;

-
- -
- - - - - diff --git a/Open-ILS/web/opac/locale/en-US/conify.dtd b/Open-ILS/web/opac/locale/en-US/conify.dtd new file mode 100644 index 0000000000..d9f8ea16e2 --- /dev/null +++ b/Open-ILS/web/opac/locale/en-US/conify.dtd @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/build/i18n/Makefile.in b/build/i18n/Makefile.in index 14da0891f5..946335e70d 100644 --- a/build/i18n/Makefile.in +++ b/build/i18n/Makefile.in @@ -126,9 +126,11 @@ install: updatepo project fmidl2fmidlent cp $(PROJECT)/$(LOCALE)/multiclass_search_help.html $(SERVER_PROPSDIR)/$(LOCALE)/. cp $(PROJECT)/$(LOCALE)/patron.properties $(SERVER_PROPSDIR)/$(LOCALE)/. mkdir -p $(DTDDIR)/$(LOCALE) + cp $(PROJECT)/$(LOCALE)/conify.dtd $(DTDDIR)/$(LOCALE)/ cp $(PROJECT)/$(LOCALE)/lang.dtd $(CHROME_PROPSDIR)/$(LOCALE)/ cp $(PROJECT)/$(LOCALE)/lang.dtd $(DTDDIR)/$(LOCALE)/ cp $(PROJECT)/$(LOCALE)/opac.dtd $(DTDDIR)/$(LOCALE)/ + cp $(PROJECT)/$(LOCALE)/vandelay.dtd $(DTDDIR)/$(LOCALE)/ cp $(PROJECT)/$(LOCALE)/$(FMIDLENTITY) $(DTDDIR)/$(LOCALE)/ @scripts/merge_ils_events.py --master $(EVTSRC) --localization $(PROJECT)/$(LOCALE)/$(EVTXML) --output $(EVTSRC) cp $(PROJECT)/$(LOCALE)/$(SQLOUT).sql $(SQLSRCDIR)/$(SQLOUT)-$(LOCALE).sql diff --git a/build/i18n/po/en-US/admin.properties.pot b/build/i18n/po/en-US/admin.properties.pot index 639a388b8a..a9ac064243 100644 --- a/build/i18n/po/en-US/admin.properties.pot +++ b/build/i18n/po/en-US/admin.properties.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:13-0400\n" +"POT-Creation-Date: 2008-10-14 00:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/build/i18n/po/en-US/auth.properties.pot b/build/i18n/po/en-US/auth.properties.pot index 472eb61906..971bd305ff 100644 --- a/build/i18n/po/en-US/auth.properties.pot +++ b/build/i18n/po/en-US/auth.properties.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:13-0400\n" +"POT-Creation-Date: 2008-10-14 00:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/build/i18n/po/en-US/cat.properties.pot b/build/i18n/po/en-US/cat.properties.pot index acefb6d076..e46c4cf802 100644 --- a/build/i18n/po/en-US/cat.properties.pot +++ b/build/i18n/po/en-US/cat.properties.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:13-0400\n" +"POT-Creation-Date: 2008-10-14 00:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -476,6 +476,10 @@ msgstr "" msgid "Create Copies" msgstr "" +#: staff.cat.copy_editor.copy_notes +msgid "Copy Notes" +msgstr "" + #: staff.cat.copy_editor.status msgid "Status" msgstr "" @@ -644,6 +648,183 @@ msgstr "" msgid "Error populating statistical categories for display" msgstr "" +#: staff.cat.copy_editor.remove_stat_cat_entry +msgid "" +msgstr "" + +#: staff.cat.copy_editor.remove_age_based_hold_protection +msgid "" +msgstr "" + +#: staff.cat.copy_editor.field.unset_or_null +msgctxt "staff.cat.copy_editor.field.unset_or_null" +msgid "" +msgstr "" + +#: staff.cat.copy_editor.field.owning_library.label +msgid "Owning Lib : Call Number" +msgstr "" + +#: staff.cat.copy_editor.field.creator.label +msgid "Creator" +msgstr "" + +#: staff.cat.copy_editor.field.last_editor.label +msgid "Last Editor" +msgstr "" + +#: staff.cat.copy_editor.field.barcode.label +msgid "Barcode" +msgstr "" + +#: staff.cat.copy_editor.field.creation_date.label +msgid "Creation Date" +msgstr "" + +#: staff.cat.copy_editor.field.last_edit_date.label +msgid "Last Edit Date" +msgstr "" + +#: staff.cat.copy_editor.field.location.label +msgid "Location/Collection" +msgstr "" + +#: staff.cat.copy_editor.field.circulation_library.label +msgid "Circulation Library" +msgstr "" + +#: staff.cat.copy_editor.field.copy_number.label +msgid "Copy Number" +msgstr "" + +#: staff.cat.copy_editor.field.circulate.label +msgid "Circulate?" +msgstr "" + +#: staff.cat.copy_editor.field.circulate.yes_or_true +msgctxt "staff.cat.copy_editor.field.circulate.yes_or_true" +msgid "Yes" +msgstr "" + +#: staff.cat.copy_editor.field.circulate.no_or_false +msgctxt "staff.cat.copy_editor.field.circulate.no_or_false" +msgid "No" +msgstr "" + +#: staff.cat.copy_editor.field.holdable.label +msgid "Holdable?" +msgstr "" + +#: staff.cat.copy_editor.field.holdable.yes_or_true +msgctxt "staff.cat.copy_editor.field.holdable.yes_or_true" +msgid "Yes" +msgstr "" + +#: staff.cat.copy_editor.field.holdable.no_or_false +msgctxt "staff.cat.copy_editor.field.holdable.no_or_false" +msgid "No" +msgstr "" + +#: staff.cat.copy_editor.field.age_based_hold_protection.label +msgid "Age-based Hold Protection" +msgstr "" + +#: staff.cat.copy_editor.field.loan_duration.label +msgid "Loan Duration" +msgstr "" + +#: staff.cat.copy_editor.field.loan_duration.short +msgid "Short" +msgstr "" + +#: staff.cat.copy_editor.field.loan_duration.normal +msgctxt "staff.cat.copy_editor.field.loan_duration.normal" +msgid "Normal" +msgstr "" + +#: staff.cat.copy_editor.field.loan_duration.extended +msgid "Long" +msgstr "" + +#: staff.cat.copy_editor.field.fine_level.label +msgid "Fine Level" +msgstr "" + +#: staff.cat.copy_editor.field.fine_level.low +msgid "Low" +msgstr "" + +#: staff.cat.copy_editor.field.fine_level.normal +msgctxt "staff.cat.copy_editor.field.fine_level.normal" +msgid "Normal" +msgstr "" + +#: staff.cat.copy_editor.field.fine_level.high +msgid "High" +msgstr "" + +#: staff.cat.copy_editor.field.circulate_as_type.label +msgid "Circulate as Type" +msgstr "" + +#: staff.cat.copy_editor.field.circulation_modifier.label +msgid "Circulation Modifier" +msgstr "" + +#: staff.cat.copy_editor.field.alert_message.label +msgid "Alert Message" +msgstr "" + +#: staff.cat.copy_editor.field.deposit.label +msgid "Deposit?" +msgstr "" + +#: staff.cat.copy_editor.field.deposit.yes_or_true +msgctxt "staff.cat.copy_editor.field.deposit.yes_or_true" +msgid "Yes" +msgstr "" + +#: staff.cat.copy_editor.field.deposit.no_or_false +msgctxt "staff.cat.copy_editor.field.deposit.no_or_false" +msgid "No" +msgstr "" + +#: staff.cat.copy_editor.field.deposit_amount.label +msgid "Deposit Amount" +msgstr "" + +#: staff.cat.copy_editor.field.price.label +msgid "Price" +msgstr "" + +#: staff.cat.copy_editor.field.opac_visible.label +msgid "OPAC Visible?" +msgstr "" + +#: staff.cat.copy_editor.field.opac_visible.yes_or_true +msgctxt "staff.cat.copy_editor.field.opac_visible.yes_or_true" +msgid "Yes" +msgstr "" + +#: staff.cat.copy_editor.field.opac_visible.no_or_false +msgctxt "staff.cat.copy_editor.field.opac_visible.no_or_false" +msgid "No" +msgstr "" + +#: staff.cat.copy_editor.field.reference.label +msgid "Reference?" +msgstr "" + +#: staff.cat.copy_editor.field.reference.yes_or_true +msgctxt "staff.cat.copy_editor.field.reference.yes_or_true" +msgid "Yes" +msgstr "" + +#: staff.cat.copy_editor.field.reference.no_or_false +msgctxt "staff.cat.copy_editor.field.reference.no_or_false" +msgid "No" +msgstr "" + #: staff.cat.copy_notes.render_notes.label msgid "Add New Note" msgstr "" @@ -761,6 +942,7 @@ msgid "No" msgstr "" #: staff.cat.copy_summary.unset +msgctxt "staff.cat.copy_summary.unset" msgid "" msgstr "" @@ -1446,14 +1628,50 @@ msgstr "" msgid "Error storing preferences" msgstr "" +#: staff.cat.z3950.native_catalog +msgid "Native Catalog" +msgstr "" + #: staff.cat.z3950.obj_list_init.list_construction_error msgid "Failure during list construction." msgstr "" -#: staff.cat.z3950.obj_controller_init.deck_label +#: staff.cat.z3950.results_view.label msgid "Results View" msgstr "" +#: staff.cat.z3950.results_view.accesskey +msgctxt "staff.cat.z3950.results_view.accesskey" +msgid "V" +msgstr "" + +#: staff.cat.z3950.marc_view.label +msgid "MARC View" +msgstr "" + +#: staff.cat.z3950.marc_view.accesskey +msgctxt "staff.cat.z3950.marc_view.accesskey" +msgid "V" +msgstr "" + +#: staff.cat.z3950.hide_top_pane.label +msgid "Hide Top Pane" +msgstr "" + +#: staff.cat.z3950.hide_top_pane.accesskey +msgctxt "staff.cat.z3950.hide_top_pane.accesskey" +msgid "T" +msgstr "" + +#: staff.cat.z3950.unhide_top_pane.label +msgid "Show Top Pane" +msgstr "" + +#: staff.cat.z3950.unhide_top_pane.accesskey +msgctxt "staff.cat.z3950.unhide_top_pane.accesskey" +msgid "T" +msgstr "" + #: staff.cat.z3950.obj_controller_init.marc_view_error msgid "Failure during MARC view." msgstr "" diff --git a/build/i18n/po/en-US/circ.properties.pot b/build/i18n/po/en-US/circ.properties.pot index 979c6ca3d7..a4649693a7 100644 --- a/build/i18n/po/en-US/circ.properties.pot +++ b/build/i18n/po/en-US/circ.properties.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:13-0400\n" +"POT-Creation-Date: 2008-10-14 00:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1322,6 +1322,26 @@ msgctxt "staff.circ.holds.activation_date.invalid_date" msgid "Invalid Date" msgstr "" +#: staff.circ.holds.expire_time.prompt +msgid "" +"Please enter an Expiration Date (or leave blank to unset) for hold %1$s." +msgstr "" + +#: staff.circ.holds.expire_time.prompt.plural +msgid "" +"Please enter an Expiration Date (or leave blank to unset) for holds %1$s." +msgstr "" + +#: staff.circ.holds.expire_time.too_early.error +msgid "" +"Expiration Date needs to be either unset or set to fall on a future date." +msgstr "" + +#: staff.circ.holds.expire_time.invalid_date +msgctxt "staff.circ.holds.expire_time.invalid_date" +msgid "Invalid Date" +msgstr "" + #: staff.circ.holds.modifying_holds msgid "Modifying Holds" msgstr "" diff --git a/build/i18n/po/en-US/common.properties.pot b/build/i18n/po/en-US/common.properties.pot index 338e392200..cfeb40518c 100644 --- a/build/i18n/po/en-US/common.properties.pot +++ b/build/i18n/po/en-US/common.properties.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:13-0400\n" +"POT-Creation-Date: 2008-10-14 00:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -198,6 +198,10 @@ msgstr "" msgid "Expire Time" msgstr "" +#: staff.ahr_expire_date_label +msgid "Expire Date" +msgstr "" + #: staff.ahr_fulfillment_time_label msgid "Fulfillment Time" msgstr "" diff --git a/build/i18n/po/en-US/conify.dtd.pot b/build/i18n/po/en-US/conify.dtd.pot new file mode 100644 index 0000000000..36b509532d --- /dev/null +++ b/build/i18n/po/en-US/conify.dtd.pot @@ -0,0 +1,104 @@ +#. extracted from ../../Open-ILS/web/opac/locale/en-US/conify.dtd +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-10-14 00:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" +"X-Accelerator-Marker: &\n" + +#. Main configuration interface menu +#: conify.admin.title +msgid "Global :: Administration" +msgstr "" + +#: conify.admin.top_pane.title +msgctxt "conify.admin.top_pane.title" +msgid "Controls" +msgstr "" + +#: conify.admin.configure +msgid "Configure your ILS" +msgstr "" + +#: conify.admin.left_pane.controls +msgctxt "conify.admin.left_pane.controls" +msgid "Controls" +msgstr "" + +#: conify.admin.org_unit_type.link +msgid "Organization Types" +msgstr "" + +#: conify.admin.org_unit.link +msgid "Organizational Units" +msgstr "" + +#: conify.admin.grp_tree.link +msgid "Permission Groups" +msgstr "" + +#: conify.admin.perm_list.link +msgid "Permissions" +msgstr "" + +#: conify.admin.copy_status.link +msgid "Copy Statuses" +msgstr "" + +#: conify.admin.marc_code_maps.link +msgid "MARC Codes" +msgstr "" + +#: conify.admin.bottom_pane.title +msgctxt "conify.admin.bottom_pane.title" +msgid "Controls" +msgstr "" + +#. Organization unit type configuration interface +#: conify.org_unit_type.title +msgid "Global :: Actor :: Organization Unit Types" +msgstr "" + +#: conify.org_unit_type.type_tree.label +msgid "Organization Unit Types" +msgstr "" + +#: conify.org_unit_type.type_name +msgid "Type Name" +msgstr "" + +#: conify.org_unit_type.opac_label +msgid "OPAC Label" +msgstr "" + +#: conify.org_unit_type.parent_type +msgid "Parent Type" +msgstr "" + +#: conify.org_unit_type.can_have_volumes +msgid "Can Have Volumes and Copies" +msgstr "" + +#: conify.org_unit_type.can_have_users +msgid "Can Have Users" +msgstr "" + +#: conify.org_unit_type.save_out_button.label +msgid "Save" +msgstr "" + +#: conify.org_unit_type.delete_out_button.label +msgid "Delete" +msgstr "" + +#: conify.org_unit_type.new_kid_button.label +msgid "New Child" +msgstr "" diff --git a/build/i18n/po/en-US/db.seed.pot b/build/i18n/po/en-US/db.seed.pot index 9b1ed0a5ae..13aa9aad6b 100644 --- a/build/i18n/po/en-US/db.seed.pot +++ b/build/i18n/po/en-US/db.seed.pot @@ -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: 2008-09-08 11:13:02-0400\n" +"POT-Creation-Date: 2008-10-14 00:34:05-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3033,7 +3033,7 @@ msgstr "" # id::en-US #: i18n_l.name:724 -msgid "American English" +msgid "English (US)" msgstr "" # id::en-US @@ -3043,7 +3043,7 @@ msgstr "" # id::en-CA #: i18n_l.name:727 -msgid "Canadian English" +msgid "English (Canada)" msgstr "" # id::en-CA @@ -3053,7 +3053,7 @@ msgstr "" # id::fr-CA #: i18n_l.name:730 -msgid "Canadian French" +msgid "French (Canada)" msgstr "" # id::fr-CA @@ -3063,7 +3063,7 @@ msgstr "" # id::es-US #: i18n_l.name:733 -msgid "American Spanish" +msgid "Spanish (US)" msgstr "" # id::es-US @@ -3073,7 +3073,7 @@ msgstr "" # id::es-MX #: i18n_l.name:736 -msgid "Mexican Spanish" +msgid "Spanish (Mexico)" msgstr "" # id::es-MX @@ -3091,717 +3091,1047 @@ msgstr "" msgid "Armenian" msgstr "" +# id::loc +#: czs.label:745 +msgid "Library of Congress" +msgstr "" + +# id::loc +#: czs.label:747 +msgid "OCLC" +msgstr "" + +# id::1 +#: cza.label:750 +msgid "Title Control Number" +msgstr "" + +# id::2 +#: cza.label:752 +msgid "ISBN" +msgstr "" + +# id::3 +#: cza.label:754 +msgid "LCCN" +msgstr "" + +# id::4 +#: cza.label:756 +msgid "Author" +msgstr "" + +# id::5 +#: cza.label:758 +msgid "Title" +msgstr "" + +# id::6 +#: cza.label:760 +msgid "ISSN" +msgstr "" + +# id::7 +#: cza.label:762 +msgid "Publisher" +msgstr "" + +# id::8 +#: cza.label:764 +msgid "Publication Date" +msgstr "" + +# id::9 +#: cza.label:766 +msgid "Item Type" +msgstr "" + +# id::10 +#: cza.label:769 +msgid "Title Control Number" +msgstr "" + +# id::11 +#: cza.label:771 +msgid "ISBN" +msgstr "" + +# id::12 +#: cza.label:773 +msgid "LCCN" +msgstr "" + +# id::13 +#: cza.label:775 +msgid "Author" +msgstr "" + +# id::14 +#: cza.label:777 +msgid "Title" +msgstr "" + +# id::15 +#: cza.label:779 +msgid "ISSN" +msgstr "" + +# id::16 +#: cza.label:781 +msgid "Publisher" +msgstr "" + +# id::17 +#: cza.label:783 +msgid "Publication Date" +msgstr "" + +# id::18 +#: cza.label:785 +msgid "Item Type" +msgstr "" + # id::1 -#: aout.name:746 +#: aout.name:792 msgid "Consortium" msgstr "" # id::1 -#: aout.opac_label:747 +#: aout.opac_label:793 msgid "Everywhere" msgstr "" # id::2 -#: aout.name:749 +#: aout.name:795 msgid "System" msgstr "" # id::2 -#: aout.opac_label:750 +#: aout.opac_label:796 msgid "Local Library System" msgstr "" # id::3 -#: aout.name:752 +#: aout.name:798 msgid "Branch" msgstr "" # id::3 -#: aout.opac_label:753 +#: aout.opac_label:799 msgid "This Branch" msgstr "" # id::4 -#: aout.name:755 +#: aout.name:801 msgid "Sub-library" msgstr "" # id::4 -#: aout.opac_label:756 +#: aout.opac_label:802 msgid "This Specialized Library" msgstr "" # id::5 -#: aout.name:758 +#: aout.name:804 msgid "Bookmobile" msgstr "" # id::5 -#: aout.opac_label:759 +#: aout.opac_label:805 msgid "Your Bookmobile" msgstr "" # id::1 -#: aou.name:763 +#: aou.name:809 msgid "Example Consortium" msgstr "" # id::2 -#: aou.name:765 +#: aou.name:811 msgid "Example System 1" msgstr "" # id::3 -#: aou.name:767 +#: aou.name:813 msgid "Example System 2" msgstr "" # id::4 -#: aou.name:769 +#: aou.name:815 msgid "Example Branch 1" msgstr "" # id::5 -#: aou.name:771 +#: aou.name:817 msgid "Example Branch 2" msgstr "" # id::6 -#: aou.name:773 +#: aou.name:819 msgid "Example Branch 3" msgstr "" # id::7 -#: aou.name:775 +#: aou.name:821 msgid "Example Branch 4" msgstr "" # id::8 -#: aou.name:777 +#: aou.name:823 msgid "Example Sub-library 1" msgstr "" # id::9 -#: aou.name:779 +#: aou.name:825 msgid "Example Bookmobile 1" msgstr "" +# id::2 +#: ppl.description:836 +msgid "Allow a user to log in to the OPAC" +msgstr "" + +# id::4 +#: ppl.description:838 +msgid "Allow a user to log in to the staff client" +msgstr "" + +# id::5 +#: ppl.description:840 +msgid "Allow a user to create a metarecord holds" +msgstr "" + +# id::6 +#: ppl.description:842 +msgid "Allow a user to place a hold at the title level" +msgstr "" + +# id::7 +#: ppl.description:844 +msgid "Allow a user to place a volume level hold" +msgstr "" + # id::8 -#: ppl.description:800 -msgid "User is allowed to place a hold on a specific copy" +#: ppl.description:846 +msgid "Allow a user to place a hold on a specific copy" +msgstr "" + +# id::9 +#: ppl.description:848 +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::10 +#: ppl.description:850 +msgid "* no longer applicable" msgstr "" # id::11 -#: ppl.description:806 -msgid "Allows a user to view another user's holds" +#: ppl.description:852 +msgid "Allow a user to view another user's holds" +msgstr "" + +# id::13 +#: ppl.description:854 +msgid "* no longer applicable" msgstr "" # id::14 -#: ppl.description:810 -msgid "Allows a user to update another user's hold" +#: ppl.description:856 +msgid "Allow a user to update another user's hold" +msgstr "" + +# id::15 +#: ppl.description:858 +msgid "Allow a user to renew items" +msgstr "" + +# id::16 +#: ppl.description:860 +msgid "Allow a user to view bill details" +msgstr "" + +# id::17 +#: ppl.description:862 +msgid "Allow a user to see another user's grocery or circulation transactions in the Bills Interface; duplicate of VIEW_TRANSACTION" +msgstr "" + +# id::18 +#: ppl.description:864 +msgid "Allow a user to edit a MARC record" msgstr "" # id::19 -#: ppl.description:820 -msgid "User is allowed to create new MARC records" +#: ppl.description:866 +msgid "Allow a user to create new MARC records" +msgstr "" + +# id::20 +#: ppl.description:868 +msgid "Allow a user to import a MARC record via the Z39.50 interface" +msgstr "" + +# id::21 +#: ppl.description:870 +msgid "Allow a user to create a volume" +msgstr "" + +# id::22 +#: ppl.description:872 +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::23 +#: ppl.description:874 +msgid "Allow a user to delete a volume" +msgstr "" + +# id::25 +#: ppl.description:876 +msgid "Allow a user to edit a copy" +msgstr "" + +# id::26 +#: ppl.description:878 +msgid "Allow a user to delete a copy" +msgstr "" + +# id::27 +#: ppl.description:880 +msgid "Allow a user to continue to renew an item even if it is required for a hold" +msgstr "" + +# id::28 +#: ppl.description:882 +msgid "Allow a user to create another user" +msgstr "" + +# id::29 +#: ppl.description:884 +msgid "Allow a user to edit a user's record" +msgstr "" + +# id::30 +#: ppl.description:886 +msgid "Allow a user to mark a user as deleted" +msgstr "" + +# id::31 +#: ppl.description:888 +msgid "Allow a user to view another user's Patron Record" +msgstr "" + +# id::32 +#: ppl.description:890 +msgid "Allow a user to check in a copy" +msgstr "" + +# id::33 +#: ppl.description:892 +msgid "Allow a user to place an item in transit" +msgstr "" + +# id::34 +#: ppl.description:894 +msgid "Allow a user to view user permissions within the user permissions editor" +msgstr "" + +# id::35 +#: ppl.description:896 +msgid "* no longer applicable" +msgstr "" + +# id::36 +#: ppl.description:898 +msgid "Allow a user to record payments in the Billing Interface" +msgstr "" + +# id::37 +#: ppl.description:900 +msgid "Allow a user to mark an item as 'lost'" +msgstr "" + +# id::38 +#: ppl.description:902 +msgid "Allow a user to mark an item as 'missing'" +msgstr "" + +# id::39 +#: ppl.description:904 +msgid "Allow a user to mark an item as 'claims returned'" msgstr "" # id::41 -#: ppl.description:860 -msgid "User may create new billable transactions" +#: ppl.description:906 +msgid "Allow a user to create a new billable transaction" msgstr "" # id::43 -#: ppl.description:862 -msgid "Allows a user to create a new bill on a transaction" +#: ppl.description:908 +msgid "Allow a user to create a new bill on a transaction" msgstr "" # id::44 -#: ppl.description:864 -msgid "Allows a user to view another user's containers (buckets)" +#: ppl.description:910 +msgid "Allow a user to view another user's containers (buckets)" msgstr "" # id::45 -#: ppl.description:866 -msgid "Allows a user to create a new container for another user" +#: ppl.description:912 +msgid "Allow a user to create a new container for another user" msgstr "" # id::24 -#: ppl.description:868 -msgid "User is allowed to create a new copy object" +#: ppl.description:914 +msgid "Allow a user to create a new copy object" msgstr "" # id::47 -#: ppl.description:870 -msgid "Allows a user to change org unit settings" +#: ppl.description:916 +msgid "Allow a user to change the settings for an organization unit" msgstr "" # id::48 -#: ppl.description:872 -msgid "Allows a user to see what another use has checked out" +#: ppl.description:918 +msgid "Allow a user to see what another use has checked out" msgstr "" # id::42 -#: ppl.description:874 -msgid "User may view another user's transactions" +#: ppl.description:920 +msgid "Allow a user may view another user's transactions" msgstr "" # id::49 -#: ppl.description:876 -msgid "Allows a user to delete another user container" +#: ppl.description:922 +msgid "Allow a user to delete another user container" msgstr "" # id::50 -#: ppl.description:878 -msgid "Create a container item for another user" +#: ppl.description:924 +msgid "Allow a user to create a container item for another user" msgstr "" # id::51 -#: ppl.description:880 -msgid "User can add other users to permission groups" +#: ppl.description:926 +msgid "Allow a user to add other users to permission groups" msgstr "" # id::52 -#: ppl.description:882 -msgid "User can remove other users from permission groups" +#: ppl.description:928 +msgid "Allow a user to remove other users from permission groups" msgstr "" # id::53 -#: ppl.description:884 -msgid "Allow user to view others' permission groups" +#: ppl.description:930 +msgid "Allow a user to view other users' permission groups" msgstr "" # id::54 -#: ppl.description:886 -msgid "Allows a user to determine of another user can checkout an item" +#: ppl.description:932 +msgid "Allow a user to determine whether another user can check out an item" msgstr "" # id::55 -#: ppl.description:888 -msgid "Allows a user to edit copies in batch" +#: ppl.description:934 +msgid "Allow a user to edit copies in batch" msgstr "" # id::56 -#: ppl.description:890 +#: ppl.description:936 msgid "User may create a new patron statistical category" msgstr "" # id::57 -#: ppl.description:892 -msgid "User may create a copy stat cat" +#: ppl.description:938 +msgid "User may create a copy statistical category" msgstr "" # id::58 -#: ppl.description:894 -msgid "User may create a new patron stat cat entry" +#: ppl.description:940 +msgid "User may create an entry in a patron statistical category" msgstr "" # id::59 -#: ppl.description:896 -msgid "User may create a new copy stat cat entry" +#: ppl.description:942 +msgid "User may create an entry in a copy statistical category" msgstr "" # id::60 -#: ppl.description:898 -msgid "User may update a patron stat cat" +#: ppl.description:944 +msgid "User may update a patron statistical category" msgstr "" # id::61 -#: ppl.description:900 -msgid "User may update a copy stat cat" +#: ppl.description:946 +msgid "User may update a copy statistical category" msgstr "" # id::62 -#: ppl.description:902 -msgid "User may update a patron stat cat entry" +#: ppl.description:948 +msgid "User may update an entry in a patron statistical category" msgstr "" # id::63 -#: ppl.description:904 -msgid "User may update a copy stat cat entry" +#: ppl.description:950 +msgid "User may update an entry in a copy statistical category" msgstr "" # id::65 -#: ppl.description:906 -msgid "User may link a copy to a stat cat entry" +#: ppl.description:952 +msgid "User may link a copy to an entry in a statistical category" msgstr "" # id::64 -#: ppl.description:908 -msgid "User may link another user to a stat cat entry" +#: ppl.description:954 +msgid "User may link another user to an entry in a statistical category" msgstr "" # id::66 -#: ppl.description:910 -msgid "User may delete a patron stat cat" +#: ppl.description:956 +msgid "User may delete a patron statistical category" msgstr "" # id::67 -#: ppl.description:912 -msgid "User may delete a copy stat cat" +#: ppl.description:958 +msgid "User may delete a copy statistical category" msgstr "" # id::68 -#: ppl.description:914 -msgid "User may delete a patron stat cat entry" +#: ppl.description:960 +msgid "User may delete an entry from a patron statistical category" msgstr "" # id::69 -#: ppl.description:916 -msgid "User may delete a copy stat cat entry" +#: ppl.description:962 +msgid "User may delete an entry from a copy statistical category" msgstr "" # id::70 -#: ppl.description:918 -msgid "User may delete a patron stat cat entry map" +#: ppl.description:964 +msgid "User may delete a patron statistical category entry map" msgstr "" # id::71 -#: ppl.description:920 -msgid "User may delete a copy stat cat entry map" +#: ppl.description:966 +msgid "User may delete a copy statistical category entry map" msgstr "" # id::72 -#: ppl.description:922 -msgid "Allows a user to create a new non-cataloged item type" +#: ppl.description:968 +msgid "Allow a user to create a new non-cataloged item type" msgstr "" # id::73 -#: ppl.description:924 -msgid "Allows a user to update a non cataloged type" +#: ppl.description:970 +msgid "Allow a user to update a non-cataloged item type" msgstr "" # id::74 -#: ppl.description:926 -msgid "Allows a user to create a new in-house-use " +#: ppl.description:972 +msgid "Allow a user to create a new in-house-use " msgstr "" # id::75 -#: ppl.description:928 -msgid "Allows a user to check out a copy" +#: ppl.description:974 +msgid "Allow a user to check out a copy" msgstr "" # id::76 -#: ppl.description:930 -msgid "Allows a user to create a new copy location" +#: ppl.description:976 +msgid "Allow a user to create a new copy location" msgstr "" # id::77 -#: ppl.description:932 -msgid "Allows a user to update a copy location" +#: ppl.description:978 +msgid "Allow a user to update a copy location" msgstr "" # id::78 -#: ppl.description:934 -msgid "Allows a user to delete a copy location" +#: ppl.description:980 +msgid "Allow a user to delete a copy location" msgstr "" # id::79 -#: ppl.description:936 -msgid "Allows a user to create a transit_copy object for transiting a copy" +#: ppl.description:982 +msgid "Allow a user to create a transit_copy object for transiting a copy" msgstr "" # id::80 -#: ppl.description:938 -msgid "Allows a user to close out a transit on a copy" +#: ppl.description:984 +msgid "Allow a user to close out a transit on a copy" msgstr "" # id::81 -#: ppl.description:940 -msgid "Allows a user to see if another user has permission to place a hold on a given copy" +#: ppl.description:986 +msgid "Allow a user to see if another user has permission to place a hold on a given copy" msgstr "" # id::82 -#: ppl.description:942 -msgid "Allows a user to view which users have checked out a given copy" +#: ppl.description:988 +msgid "Allow a user to view which users have checked out a given copy" msgstr "" # id::83 -#: ppl.description:944 -msgid "Allows a user to perform z3950 queries against remote servers" +#: ppl.description:990 +msgid "Allow a user to perform Z39.50 queries against remote servers" msgstr "" # id::84 -#: ppl.description:946 -msgid "Allows a user to register a new workstation" +#: ppl.description:992 +msgid "Allow a user to register a new workstation" msgstr "" # id::85 -#: ppl.description:948 -msgid "Allows a user to view all notes attached to a copy" +#: ppl.description:994 +msgid "Allow a user to view all notes attached to a copy" msgstr "" # id::86 -#: ppl.description:950 -msgid "Allows a user to view all notes attached to a volume" +#: ppl.description:996 +msgid "Allow a user to view all notes attached to a volume" msgstr "" # id::87 -#: ppl.description:952 -msgid "Allows a user to view all notes attached to a title" +#: ppl.description:998 +msgid "Allow a user to view all notes attached to a title" msgstr "" # id::89 -#: ppl.description:954 -msgid "Allows a user to create a new volume note" +#: ppl.description:1000 +msgid "Allow a user to create a new volume note" msgstr "" # id::88 -#: ppl.description:956 -msgid "Allows a user to create a new copy note" +#: ppl.description:1002 +msgid "Allow a user to create a new copy note" msgstr "" # id::90 -#: ppl.description:958 -msgid "Allows a user to create a new title note" +#: ppl.description:1004 +msgid "Allow a user to create a new title note" msgstr "" # id::91 -#: ppl.description:960 -msgid "Allows a user to delete someone elses copy notes" +#: ppl.description:1006 +msgid "Allow a user to delete another user's copy notes" msgstr "" # id::92 -#: ppl.description:962 -msgid "Allows a user to delete someone elses volume note" +#: ppl.description:1008 +msgid "Allow a user to delete another user's volume note" msgstr "" # id::93 -#: ppl.description:964 -msgid "Allows a user to delete someone elses title note" +#: ppl.description:1010 +msgid "Allow a user to delete another user's title note" msgstr "" # id::94 -#: ppl.description:966 -msgid "Allows a user to update another users container" +#: ppl.description:1012 +msgid "Allow a user to update another user's container" msgstr "" # id::95 -#: ppl.description:968 -msgid "Allows a user to create a container for themselves" +#: ppl.description:1014 +msgid "Allow a user to create a container for themselves" msgstr "" # id::96 -#: ppl.description:970 -msgid "Allows a user to view notifications attached to a hold" +#: ppl.description:1016 +msgid "Allow a user to view notifications attached to a hold" msgstr "" # id::97 -#: ppl.description:972 -msgid "Allows a user to create new hold notifications" +#: ppl.description:1018 +msgid "Allow a user to create new hold notifications" msgstr "" # id::98 -#: ppl.description:974 -msgid "Allows a user to update an org unit setting" +#: ppl.description:1020 +msgid "Allow a user to update an organization unit setting" msgstr "" # id::99 -#: ppl.description:976 -msgid "Allows a user to upload an offline script" +#: ppl.description:1022 +msgid "Allow a user to upload an offline script" msgstr "" # id::100 -#: ppl.description:978 -msgid "Allows a user to view uploaded offline script information" +#: ppl.description:1024 +msgid "Allow a user to view uploaded offline script information" msgstr "" # id::101 -#: ppl.description:980 -msgid "Allows a user to execute an offline script batch" +#: ppl.description:1026 +msgid "Allow a user to execute an offline script batch" msgstr "" # id::102 -#: ppl.description:982 -msgid "Allows a user to change set the due date on an item to any date" +#: ppl.description:1028 +msgid "Allow a user to change the due date on an item to any date" msgstr "" # id::103 -#: ppl.description:984 -msgid "Allows a user to bypass the circ permit call for checkout" +#: ppl.description:1030 +msgid "Allow a user to bypass the circulation permit call for check out" msgstr "" # id::104 -#: ppl.description:986 -msgid "Allows a user to override the copy_is_reference event" +#: ppl.description:1032 +msgid "Allow a user to override the copy_is_reference event" msgstr "" # id::105 -#: ppl.description:988 -msgid "Allows a user to void a bill" +#: ppl.description:1034 +msgid "Allow a user to void a bill" msgstr "" # id::106 -#: ppl.description:990 -msgid "Allows a person to check in/out an item that is claims returned" +#: ppl.description:1036 +msgid "Allow a user to check in or check out an item that has a status of 'claims returned'" msgstr "" # id::107 -#: ppl.description:992 -msgid "Allows a user to check out an item in a non-circulatable status" +#: ppl.description:1038 +msgid "Allow a user to check out an item in a non-circulatable status" msgstr "" # id::108 -#: ppl.description:994 -msgid "Allows a user to check in/out an item that has an alert message" +#: ppl.description:1040 +msgid "Allow a user to check in/out an item that has an alert message" msgstr "" # id::109 -#: ppl.description:996 -msgid "Allows a user to remove the lost status from a copy" +#: ppl.description:1042 +msgid "Allow a user to remove the lost status from a copy" msgstr "" # id::110 -#: ppl.description:998 -msgid "Allows a user to change the missing status on a copy" +#: ppl.description:1044 +msgid "Allow a user to change the missing status on a copy" msgstr "" # id::111 -#: ppl.description:1000 -msgid "Allows a user to abort a copy transit if the user is at the transit destination or source" +#: ppl.description:1046 +msgid "Allow a user to abort a copy transit if the user is at the transit destination or source" msgstr "" # id::112 -#: ppl.description:1002 -msgid "Allows a user to abort a copy transit if the user is not at the transit source or dest" +#: ppl.description:1048 +msgid "Allow a user to abort a copy transit if the user is not at the transit source or dest" msgstr "" # id::113 -#: ppl.description:1004 -msgid "Allows a user to query the ZIP code data method" +#: ppl.description:1050 +msgid "Allow a user to query the ZIP code data method" msgstr "" # id::114 -#: ppl.description:1006 -msgid "Allows a user to cancel holds" +#: ppl.description:1052 +msgid "Allow a user to cancel holds" msgstr "" # id::115 -#: ppl.description:1008 -msgid "Allows a user to create duplicate holds (two or more holds on the same title)" +#: ppl.description:1054 +msgid "Allow a user to create duplicate holds (two or more holds on the same title)" msgstr "" # id::117 -#: ppl.description:1010 -msgid "Allows a user to update a closed date interval for a given location" +#: ppl.description:1056 +msgid "Allow a user to update a closed date interval for a given location" msgstr "" # id::116 -#: ppl.description:1012 -msgid "Allows a user to remove a closed date interval for a given location" +#: ppl.description:1058 +msgid "Allow a user to remove a closed date interval for a given location" msgstr "" # id::118 -#: ppl.description:1014 -msgid "Allows a user to create a new closed date for a location" +#: ppl.description:1060 +msgid "Allow a user to create a new closed date for a location" msgstr "" # id::119 -#: ppl.description:1016 -msgid "Allows a user to delete a non cataloged type" +#: ppl.description:1062 +msgid "Allow a user to delete a non cataloged type" msgstr "" # id::120 -#: ppl.description:1018 -msgid "Allows a user to put someone into collections" +#: ppl.description:1064 +msgid "Allow a user to put someone into collections" msgstr "" # id::121 -#: ppl.description:1020 -msgid "Allows a user to remove someone from collections" +#: ppl.description:1066 +msgid "Allow a user to remove someone from collections" msgstr "" # id::122 -#: ppl.description:1022 -msgid "Allows a user to bar a patron" +#: ppl.description:1068 +msgid "Allow a user to bar a patron" msgstr "" # id::123 -#: ppl.description:1024 -msgid "Allows a user to un-bar a patron" +#: ppl.description:1070 +msgid "Allow a user to un-bar a patron" msgstr "" # id::124 -#: ppl.description:1026 -msgid "Allows a user to remove an existing workstation so a new one can replace it" +#: ppl.description:1072 +msgid "Allow a user to remove an existing workstation so a new one can replace it" msgstr "" # id::125 -#: ppl.description:1028 -msgid "Allows a user to add/remove users to/from the \"User\" group" +#: ppl.description:1074 +msgid "Allow a user to add/remove users to/from the \"User\" group" msgstr "" # id::126 -#: ppl.description:1030 -msgid "Allows a user to add/remove users to/from the \"Patron\" group" +#: ppl.description:1076 +msgid "Allow a user to add/remove users to/from the \"Patron\" group" msgstr "" # id::127 -#: ppl.description:1032 -msgid "Allows a user to add/remove users to/from the \"Staff\" group" +#: ppl.description:1078 +msgid "Allow a user to add/remove users to/from the \"Staff\" group" msgstr "" # id::128 -#: ppl.description:1034 -msgid "Allows a user to add/remove users to/from the \"Circulator\" group" +#: ppl.description:1080 +msgid "Allow a user to add/remove users to/from the \"Circulator\" group" msgstr "" # id::129 -#: ppl.description:1036 -msgid "Allows a user to add/remove users to/from the \"Cataloger\" group" +#: ppl.description:1082 +msgid "Allow a user to add/remove users to/from the \"Cataloger\" group" msgstr "" # id::130 -#: ppl.description:1038 -msgid "Allows a user to add/remove users to/from the \"GlobalAdmin\" group" +#: ppl.description:1084 +msgid "Allow a user to add/remove users to/from the \"GlobalAdmin\" group" msgstr "" # id::131 -#: ppl.description:1040 -msgid "Allows a user to add/remove users to/from the \"LocalAdmin\" group" +#: ppl.description:1086 +msgid "Allow a user to add/remove users to/from the \"LocalAdmin\" group" msgstr "" # id::132 -#: ppl.description:1042 -msgid "Allows a user to add/remove users to/from the \"LibraryManager\" group" +#: ppl.description:1088 +msgid "Allow a user to add/remove users to/from the \"LibraryManager\" group" msgstr "" # id::133 -#: ppl.description:1044 -msgid "Allows a user to add/remove users to/from the \"Cat1\" group" +#: ppl.description:1090 +msgid "Allow a user to add/remove users to/from the \"Cat1\" group" msgstr "" # id::134 -#: ppl.description:1046 -msgid "Allows a user to add/remove users to/from the \"Supercat\" group" +#: ppl.description:1092 +msgid "Allow a user to add/remove users to/from the \"Supercat\" group" msgstr "" # id::135 -#: ppl.description:1048 -msgid "Allows a user to add/remove users to/from the \"SIP-Client\" group" +#: ppl.description:1094 +msgid "Allow a user to add/remove users to/from the \"SIP-Client\" group" msgstr "" # id::136 -#: ppl.description:1050 -msgid "Allows a user to add/remove users to/from the \"Vendor\" group" +#: ppl.description:1096 +msgid "Allow a user to add/remove users to/from the \"Vendor\" group" msgstr "" # id::137 -#: ppl.description:1052 -msgid "Allows a user to place a hold on an age-protected item" +#: ppl.description:1098 +msgid "Allow a user to place a hold on an age-protected item" msgstr "" # id::138 -#: ppl.description:1054 -msgid "Allows a user to renew an item past the maximun renewal count" +#: ppl.description:1100 +msgid "Allow a user to renew an item past the maximun renewal count" msgstr "" # id::139 -#: ppl.description:1056 +#: ppl.description:1102 msgid "Allow staff to override checkout count failure" msgstr "" # id::140 -#: ppl.description:1058 +#: ppl.description:1104 msgid "Allow staff to override overdue count failure" msgstr "" # id::141 -#: ppl.description:1060 +#: ppl.description:1106 msgid "Allow staff to override fine amount checkout failure" msgstr "" # id::142 -#: ppl.description:1062 +#: ppl.description:1108 msgid "Allow staff to override circulation copy range failure" msgstr "" # id::143 -#: ppl.description:1064 +#: ppl.description:1110 msgid "Allow staff to override item on holds shelf failure" msgstr "" # id::144 -#: ppl.description:1066 +#: ppl.description:1112 msgid "Allow staff to force checkout of Missing/Lost type items" msgstr "" # id::146 -#: ppl.description:1068 -msgid "allows users to place multiple holds on a single title" +#: ppl.description:1114 +msgid "Allow a user to place multiple holds on a single title" msgstr "" # id::147 -#: ppl.description:1070 -msgid "Allows a users to run reports" +#: ppl.description:1116 +msgid "Allow a user to run reports" msgstr "" # id::148 -#: ppl.description:1072 -msgid "Allows a user to share report his own folders" +#: ppl.description:1118 +msgid "Allow a user to share report his own folders" msgstr "" # id::149 -#: ppl.description:1074 -msgid "Allow user to view report output" +#: ppl.description:1120 +msgid "Allow a user to view report output" msgstr "" # id::150 -#: ppl.description:1076 -msgid "Allows a user to checkout an item that is marked as non-circ" +#: ppl.description:1122 +msgid "Allow a user to checkout an item that is marked as non-circ" msgstr "" # id::151 -#: ppl.description:1078 -msgid "Allows a user to delete an item out of another user's container" +#: ppl.description:1124 +msgid "Allow a user to delete an item out of another user's container" msgstr "" # id::152 -#: ppl.description:1080 +#: ppl.description:1126 msgid "Allow a staff member to define where another staff member has their permissions" msgstr "" # id::153 -#: ppl.description:1082 +#: ppl.description:1128 msgid "Allow a staff member to directly remove a bibliographic record" msgstr "" # id::1 -#: pgt.name:1167 +#: pgt.name:1213 msgid "Users" msgstr "" # id::2 -#: pgt.name:1169 +#: pgt.name:1215 msgid "Patrons" msgstr "" # id::3 -#: pgt.name:1171 +#: pgt.name:1217 msgid "Staff" msgstr "" # id::4 -#: pgt.name:1173 +#: pgt.name:1219 msgid "Catalogers" msgstr "" # id::5 -#: pgt.name:1175 +#: pgt.name:1221 msgid "Circulators" msgstr "" # id::10 -#: pgt.name:1177 +#: pgt.name:1223 msgid "Local System Administrator" msgstr "" # id::10 -#: pgt.description:1178 +#: pgt.description:1224 msgid "System maintenance, configuration, etc." msgstr "" # id::1 -#: acpl.name:1309 +#: acpl.name:1355 msgid "Stacks" msgstr "" + +# id::1 +#: vqbrad.description:1409 +msgid "Title of work" +msgstr "" + +# id::1 +#: vqbrad.description:1410 +msgid "Author of work" +msgstr "" + +# id::3 +#: vqbrad.description:1411 +msgid "Language of work" +msgstr "" + +# id::4 +#: vqbrad.description:1412 +msgid "Pagination" +msgstr "" + +# id::5 +#: vqbrad.description:1413 +msgid "ISBN" +msgstr "" + +# id::6 +#: vqbrad.description:1414 +msgid "ISSN" +msgstr "" + +# id::7 +#: vqbrad.description:1415 +msgid "Price" +msgstr "" + +# id::8 +#: vqbrad.description:1416 +msgid "Accession Number" +msgstr "" + +# id::9 +#: vqbrad.description:1417 +msgid "TCN Value" +msgstr "" + +# id::10 +#: vqbrad.description:1418 +msgid "TCN Source" +msgstr "" + +# id::11 +#: vqbrad.description:1419 +msgid "Internal ID" +msgstr "" + +# id::12 +#: vqbrad.description:1420 +msgid "Publisher" +msgstr "" + +# id::13 +#: vqbrad.description:1421 +msgid "Publication Date" +msgstr "" + +# id::14 +#: vqbrad.description:1422 +msgid "Edition" +msgstr "" + +# id::1 +#: vqarad.description:1472 +msgid "Identifier" +msgstr "" diff --git a/build/i18n/po/en-US/fm_IDL.pot b/build/i18n/po/en-US/fm_IDL.pot index e27cab8a80..045d8453c2 100644 --- a/build/i18n/po/en-US/fm_IDL.pot +++ b/build/i18n/po/en-US/fm_IDL.pot @@ -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: 2008-09-08 11:12:42-0400\n" +"POT-Creation-Date: 2008-10-14 00:33:46-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -11,31 +11,31 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8-bit\n" -#: field.aihu.org_unit.label:719 field.ancihu.org_unit.label:736 +#: field.aihu.org_unit.label:757 field.ancihu.org_unit.label:774 msgid "Using Library" msgstr "" -#: field.rxbt.voided.label:3536 +#: field.rxbt.voided.label:3584 msgid "Voided Billing Amount" msgstr "" -#: field.bre.source.label:1081 +#: field.bre.source.label:1119 msgid "Record Source" msgstr "" -#: field.bre.marc.label:1079 +#: field.bre.marc.label:1117 msgid "MARC21Slim" msgstr "" -#: field.rocit.title.label:3796 +#: field.rocit.title.label:3844 msgid "Title" msgstr "" -#: field.mbts.xact_start.label:658 +#: field.mbts.xact_start.label:696 msgid "Transaction Start Time" msgstr "" -#: field.mrd.vr_format.label:1529 +#: field.mrd.vr_format.label:1567 msgid "Video Recording Format" msgstr "" @@ -43,131 +43,135 @@ msgstr "" msgid "Bib Source" msgstr "" -#: field.aua.within_city_limits.label:1592 +#: field.aua.within_city_limits.label:1630 msgid "Within City Limits?" msgstr "" -#: field.rhrr.hold_type.label:3521 +#: field.rhrr.hold_type.label:3569 msgid "Hold Request Type" msgstr "" -#: field.au.demographic.label:1286 +#: field.au.demographic.label:1324 msgid "Demographic Info" msgstr "" -#: class.mwp.label:2578 +#: class.mwp.label:2626 msgid "Work Payment" msgstr "" -#: field.au.ident_value2.label:1267 +#: field.au.ident_value2.label:1305 msgid "Secondary Identification" msgstr "" -#: class.acirc.label:1770 +#: class.acirc.label:1816 msgid "Aged (patronless) Circulation" msgstr "" -#: field.mbts.last_payment_note.label:651 -#: field.rccbs.last_payment_note.label:3678 +#: field.mbts.last_payment_note.label:689 +#: field.rccbs.last_payment_note.label:3726 msgid "Last Payment Note" msgstr "" -#: field.au.expire_date.label:1259 +#: field.au.expire_date.label:1297 msgid "Privilege Expiration Date" msgstr "" -#: field.ac.id.label:2278 +#: field.ac.id.label:2325 msgid "Card ID" msgstr "" -#: field.mp.credit_card_payment.label:3028 -#: field.mbp.credit_card_payment.label:3059 +#: field.mp.credit_card_payment.label:3076 +#: field.mbp.credit_card_payment.label:3107 msgid "Credit Card Payment Detail" msgstr "" -#: class.rssr.label:3433 +#: class.rssr.label:3481 msgid "Simple Record Extracts" msgstr "" -#: field.au.id.label:1263 field.rud.id.label:3494 +#: field.czs.host.label:430 +msgid "Host" +msgstr "" + +#: field.au.id.label:1301 field.rud.id.label:3542 msgid "User ID" msgstr "" -#: field.asc.entries.label:2260 field.actsc.entries.label:2290 +#: field.asc.entries.label:2307 field.actsc.entries.label:2337 msgid "Entries" msgstr "" -#: field.acp.dummy_title.label:2732 +#: field.acp.dummy_title.label:2780 msgid "Precat Dummy Title" msgstr "" -#: field.acpn.create_date.label:1338 +#: field.acpn.create_date.label:1376 msgid "Note Creation Date/Time" msgstr "" -#: field.aua.street2.label:1589 +#: field.aua.street2.label:1627 msgid "Street (2)" msgstr "" -#: field.au.barred.label:1249 +#: field.au.barred.label:1287 msgid "Barred" msgstr "" -#: field.mcrp.id.label:2342 +#: field.mcrp.id.label:2389 msgid "Pyament ID" msgstr "" -#: field.au.claims_returned_count.label:1252 +#: field.au.claims_returned_count.label:1290 msgid "Claims-returned Count" msgstr "" -#: field.bre.series_field_entries.label:1091 +#: field.bre.series_field_entries.label:1129 msgid "Indexed Series Field Entries" msgstr "" -#: field.rccbs.demographic_general_division.label:3685 +#: field.rccbs.demographic_general_division.label:3733 msgid "User Age Demographic" msgstr "" -#: field.rccc.dewey.label:3596 +#: field.rccc.dewey.label:3644 msgid "Call Number Dewey/Prefix" msgstr "" -#: field.crahp.name.label:2787 field.crmf.name.label:2799 +#: field.crahp.name.label:2835 field.crmf.name.label:2847 msgid "Rule Name" msgstr "" -#: field.clfm.code.label:2564 +#: field.clfm.code.label:2612 msgid "LitF Code" msgstr "" -#: field.mrd.type_mat.label:1528 +#: field.mrd.type_mat.label:1566 msgid "TMat" msgstr "" -#: field.mb.billing_type.label:3200 field.rmocbbol.billing_type.label:3847 -#: field.rmocbbcol.billing_type.label:3878 -#: field.rmocbbhol.billing_type.label:3912 +#: field.mb.billing_type.label:3248 field.rmocbbol.billing_type.label:3895 +#: field.rmocbbcol.billing_type.label:3926 +#: field.rmocbbhol.billing_type.label:3960 msgid "Billing Type" msgstr "" -#: class.mckp.label:2687 field.mdp.check_payment.label:3116 +#: class.mckp.label:2735 field.mdp.check_payment.label:3164 msgid "Check Payment" msgstr "" -#: field.rccc.stat_cat_1.label:3603 +#: field.rccc.stat_cat_1.label:3651 msgid "Legacy CAT1 Link" msgstr "" -#: field.mfr.tag.label:1377 +#: field.mfr.tag.label:1415 msgid "Tag" msgstr "" -#: field.aout.org_units.label:2400 +#: field.aout.org_units.label:2447 msgid "Org Units" msgstr "" -#: field.rccbs.profile_group.label:3691 +#: field.rccbs.profile_group.label:3739 msgid "User Profile Group" msgstr "" @@ -175,7 +179,7 @@ msgstr "" msgid "Matched Attribute" msgstr "" -#: field.ahn.method.label:1891 +#: field.ahn.method.label:1937 msgid "Notification Method" msgstr "" @@ -183,148 +187,148 @@ msgstr "" msgid "XPath" msgstr "" -#: field.mrd.date2.label:1531 +#: field.mrd.date2.label:1569 msgid "Date2" msgstr "" -#: field.au.groups.label:1283 +#: field.au.groups.label:1321 msgid "Additional Permission Groups" msgstr "" -#: field.ccm.magnetic_media.label:446 +#: field.ccm.magnetic_media.label:484 msgid "Magnetic Media" msgstr "" -#: field.ahr.request_lib.label:2152 +#: field.ahr.request_lib.label:2199 msgid "Requesting Library" msgstr "" -#: field.ahtc.source.label:3169 +#: field.ahtc.source.label:3217 msgid "Sending Library" msgstr "" -#: field.rccc.call_number.label:3594 +#: field.rccc.call_number.label:3642 msgid "Call Number Link" msgstr "" -#: field.ahr.target.label:2157 -msgid "Target Object ID" +#: field.czs.label.label:429 field.cza.label.label:451 +msgid "Label" msgstr "" -#: field.circ.checkin_lib.label:1653 field.combcirc.checkin_lib.label:1708 -#: field.acirc.checkin_lib.label:1775 field.rodcirc.checkin_lib.label:3741 +#: field.circ.checkin_lib.label:1699 field.combcirc.checkin_lib.label:1754 +#: field.acirc.checkin_lib.label:1821 field.rodcirc.checkin_lib.label:3789 msgid "Check In Library" msgstr "" -#: field.aua.state.label:1587 +#: field.aua.state.label:1625 msgid "State" msgstr "" -#: field.mp.voided.label:3026 field.mbp.voided.label:3057 -#: field.mndp.voided.label:3088 field.mdp.voided.label:3113 -#: field.mb.voided.label:3204 +#: field.mp.voided.label:3074 field.mbp.voided.label:3105 +#: field.mndp.voided.label:3136 field.mdp.voided.label:3161 +#: field.mb.voided.label:3252 msgid "Voided?" msgstr "" -#: class.citm.label:1941 +#: class.citm.label:1988 msgid "Item Type Map" msgstr "" -#: field.rccbs.billing_location_shortname.label:3659 +#: field.rccbs.billing_location_shortname.label:3707 msgid "Billing Location Short (Policy) Name" msgstr "" -#: field.rud.general_division.label:3496 +#: field.rud.general_division.label:3544 msgid "General Demographic Division" msgstr "" -#: field.asvq.responses.label:630 field.asv.responses.label:2077 +#: field.asvq.responses.label:668 field.asv.responses.label:2124 msgid "Responses" msgstr "" -#: field.mrd.item_form.label:1522 +#: field.mrd.item_form.label:1560 msgid "Form" msgstr "" -#: field.ssr.deleted.label:2066 field.rocit.deleted.label:3823 +#: field.ssr.deleted.label:2113 field.rocit.deleted.label:3871 msgid "Deleted" msgstr "" -#: field.aou.ou_type.label:2195 class.aout.label:2387 +#: field.aou.ou_type.label:2242 class.aout.label:2434 msgid "Organizational Unit Type" msgstr "" -#: field.mcrp.payment_ts.label:2344 field.mwp.payment_ts.label:2588 -#: field.mgp.payment_ts.label:2609 field.mckp.payment_ts.label:2699 +#: field.mcrp.payment_ts.label:2391 field.mwp.payment_ts.label:2636 +#: field.mgp.payment_ts.label:2657 field.mckp.payment_ts.label:2747 msgid "Payment Timestamp" msgstr "" -#: field.mfr.ind1.label:1373 +#: field.mfr.ind1.label:1411 msgid "Indicator 1" msgstr "" -#: field.mfr.ind2.label:1374 +#: field.mfr.ind2.label:1412 msgid "Indicator 2" msgstr "" -#: field.au.checkins.label:1288 field.aou.checkins.label:2206 +#: field.au.checkins.label:1326 field.aou.checkins.label:2253 msgid "Checkins" msgstr "" -#: field.cblvl.code.label:1964 +#: field.cblvl.code.label:2011 msgid "Bib Level Code" msgstr "" -#: field.bre.call_numbers.label:1068 +#: field.bre.call_numbers.label:1106 msgid "Call Numbers" msgstr "" -#: field.mp.payment_ts.label:3023 field.mbp.payment_ts.label:3054 -#: field.mndp.payment_ts.label:3085 field.mdp.payment_ts.label:3108 +#: field.mp.payment_ts.label:3071 field.mbp.payment_ts.label:3102 +#: field.mndp.payment_ts.label:3133 field.mdp.payment_ts.label:3156 msgid "Payment Date/Time" msgstr "" -#: field.clm.value.label:861 +#: field.clm.value.label:899 msgid "Language" msgstr "" -#: None:1314 +#: None:1352 msgid "Check-ins Performed as Staff" msgstr "" -#: field.au.other_phone.label:1272 +#: field.au.other_phone.label:1310 msgid "Other Phone" msgstr "" -#: field.bre.simple_record.label:1093 +#: field.bre.simple_record.label:1131 msgid "Simple Record Extracts " msgstr "" -#: class.actsce.label:2515 +#: class.actsce.label:2563 msgid "User Stat Cat Entry" msgstr "" -#: field.rccc.stat_cat_2_value.label:3610 +#: field.rccc.stat_cat_2_value.label:3658 msgid "Legacy CAT2 Value" msgstr "" -#: class.acn.label:983 field.acp.call_number.label:2720 +#: class.acn.label:1021 field.acp.call_number.label:2768 msgid "Call Number/Volume" msgstr "" -#: field.mrd.control_type.label:1519 +#: field.mrd.control_type.label:1557 msgid "Ctrl" msgstr "" -#: field.au.family_name.label:1260 +#: field.au.family_name.label:1298 msgid "Last Name" msgstr "" -#: field.rccc.stat_cat_2.label:3604 +#: field.rccc.stat_cat_2.label:3652 msgid "Legacy CAT2 Link" msgstr "" -#: field.au.stat_cat_entries.label:1243 +#: field.au.stat_cat_entries.label:1281 msgid "Statistical Category Entries" msgstr "" @@ -332,15 +336,15 @@ msgstr "" msgid "Owner" msgstr "" -#: class.ancihu.label:729 +#: class.ancihu.label:767 msgid "Non-cataloged In House Use" msgstr "" -#: field.ahr.holdable_formats.label:2147 +#: field.ahr.holdable_formats.label:2194 msgid "Holdable Formats (for M-type hold)" msgstr "" -#: field.acp.notes.label:2744 +#: field.acp.notes.label:2792 msgid "Copy Notes" msgstr "" @@ -352,129 +356,129 @@ msgstr "" msgid "Match ID" msgstr "" -#: field.mbts.total_owed.label:654 +#: field.mbts.total_owed.label:692 msgid "Total Owed" msgstr "" -#: field.pgt.application_perm.label:2815 +#: field.pgt.application_perm.label:2863 msgid "Required Permission" msgstr "" -#: field.au.ident_type2.label:1265 +#: field.au.ident_type2.label:1303 msgid "Secondary Identification Type" msgstr "" -#: field.actscecm.stat_cat.label:2917 +#: field.actscecm.stat_cat.label:2965 msgid "Statistical Category" msgstr "" -#: field.mbts.last_payment_ts.label:652 +#: field.mbts.last_payment_ts.label:690 msgid "Last Payment Timestamp" msgstr "" -#: class.rmobbcol.label:3888 +#: class.rmobbcol.label:3936 msgid "Open Circulation Balance by Circulating Library and Owning Library" msgstr "" -#: field.ahr.usr.label:2158 +#: field.ahr.usr.label:2205 msgid "Hold User" msgstr "" -#: class.mdp.label:3100 +#: class.mdp.label:3148 msgid "Payments: Desk" msgstr "" -#: field.asvr.answer.label:783 +#: field.asvr.answer.label:821 msgid "Answer" msgstr "" -#: field.rocit.status.label:3825 +#: field.rocit.status.label:3873 msgid "Status" msgstr "" -#: field.aun.pub.label:673 field.acpn.pub.label:1342 -#: field.acpl.opac_visible.label:1910 +#: field.aun.pub.label:711 field.acpn.pub.label:1380 +#: field.acpl.opac_visible.label:1957 msgid "Is OPAC Visible?" msgstr "" -#: field.ahr.notifications.label:2162 +#: field.ahr.notifications.label:2209 msgid "Notifications" msgstr "" -#: field.aou.shortname.label:2197 +#: field.aou.shortname.label:2244 msgid "Short (Policy) Name" msgstr "" -#: field.asvr.answer_date.label:784 +#: field.asvr.answer_date.label:822 msgid "Answer Date/Time" msgstr "" -#: field.rccc.dewey_block_hundreds.label:3608 +#: field.rccc.dewey_block_hundreds.label:3656 msgid "Dewey Block -- Hundreds" msgstr "" -#: field.acn.deleted.label:991 field.au.deleted.label:1284 -#: field.acp.deleted.label:2728 +#: field.acn.deleted.label:1029 field.au.deleted.label:1322 +#: field.acp.deleted.label:2776 msgid "Is Deleted" msgstr "" -#: field.acn.edit_date.label:992 field.acp.edit_date.label:2733 +#: field.acn.edit_date.label:1030 field.acp.edit_date.label:2781 msgid "Last Edit Date/Time" msgstr "" -#: field.mbts.xact_type.label:659 field.rccbs.xact_type.label:3672 +#: field.mbts.xact_type.label:697 field.rccbs.xact_type.label:3720 msgid "Transaction Type" msgstr "" -#: field.mbt.xact_start.label:2497 field.rccbs.xact_start.label:3670 +#: field.mbt.xact_start.label:2544 field.rccbs.xact_start.label:3718 msgid "Transaction Start Date/Time" msgstr "" -#: class.mbts.label:641 +#: class.mbts.label:679 msgid "Billable Transaction Summary" msgstr "" -#: field.mb.billing_ts.label:3199 +#: field.mb.billing_ts.label:3247 msgid "Billing Timestamp" msgstr "" -#: field.au.billing_address.label:1250 +#: field.au.billing_address.label:1288 msgid "Physical Address" msgstr "" -#: field.mrd.item_lang.label:1523 +#: field.mrd.item_lang.label:1561 msgid "Lang" msgstr "" -#: field.cblvl.value.label:1965 +#: field.cblvl.value.label:2012 msgid "Bib Level" msgstr "" -#: field.actsce.stat_cat.label:2522 field.asce.stat_cat.label:3149 +#: field.actsce.stat_cat.label:2570 field.asce.stat_cat.label:3197 msgid "Stat Cat" msgstr "" -#: field.mrd.id.label:1521 +#: field.mrd.id.label:1559 msgid "Descriptor ID" msgstr "" -#: field.cit.name.label:619 +#: field.cit.name.label:657 msgid "Identification Name" msgstr "" -#: field.rccc.dewey_range_tens.label:3605 +#: field.rccc.dewey_range_tens.label:3653 msgid "Dewey Range -- Tens" msgstr "" -#: field.rocit.dewey_block_hundreds.label:3804 +#: field.rocit.dewey_block_hundreds.label:3852 msgid "Dewy Hundreds" msgstr "" -#: class.rocit.label:3791 +#: class.rocit.label:3839 msgid "Classic Item List" msgstr "" -#: field.mdp.accepting_usr.label:3111 +#: field.mdp.accepting_usr.label:3159 msgid "Accepting User" msgstr "" @@ -482,8 +486,8 @@ msgstr "" msgid "Queued Bib Record Attribute Definition" msgstr "" -#: field.rmsr.biblio_record.label:3427 field.rssr.biblio_record.label:3449 -#: field.rsr.biblio_record.label:3482 +#: field.rmsr.biblio_record.label:3475 field.rssr.biblio_record.label:3497 +#: field.rsr.biblio_record.label:3530 msgid "Full Bibliographic record" msgstr "" @@ -491,233 +495,233 @@ msgstr "" msgid "MARC" msgstr "" -#: class.iatc.label:3702 +#: class.iatc.label:3750 msgid "Inter-system Copy Transit" msgstr "" -#: class.aihu.label:712 +#: class.aihu.label:750 msgid "In House Use" msgstr "" -#: field.circ.circ_type.label:1681 field.combcirc.circ_type.label:1736 -#: field.acirc.circ_type.label:1803 class.rcirct.label:3502 -#: field.rcirct.type.label:3508 field.rccc.circ_type.label:3583 -#: field.rodcirc.circ_type.label:3768 +#: field.circ.circ_type.label:1727 field.combcirc.circ_type.label:1782 +#: field.acirc.circ_type.label:1849 class.rcirct.label:3550 +#: field.rcirct.type.label:3556 field.rccc.circ_type.label:3631 +#: field.rodcirc.circ_type.label:3816 msgid "Circulation Type" msgstr "" -#: field.ahtc.hold.label:3165 +#: field.ahtc.hold.label:3213 msgid "Hold requiring Transit" msgstr "" -#: field.bre.notes.label:1086 +#: field.bre.notes.label:1124 msgid "Non-MARC Record Notes" msgstr "" -#: field.aou.ill_address.label:2192 +#: field.aou.ill_address.label:2239 msgid "ILL Receiving Address" msgstr "" -#: field.ahr.fulfillment_staff.label:2144 +#: field.ahr.fulfillment_staff.label:2191 msgid "Fulfilling Staff" msgstr "" -#: field.aout.name.label:2397 +#: field.aout.name.label:2444 msgid "Type Name" msgstr "" -#: field.rmsr.author.label:3422 field.rssr.author.label:3444 -#: field.rsr.author.label:3468 +#: field.rmsr.author.label:3470 field.rssr.author.label:3492 +#: field.rsr.author.label:3516 msgid "Author (normalized)" msgstr "" -#: field.ssr.excluded.label:2067 +#: field.ssr.excluded.label:2114 msgid "Excluded" msgstr "" -#: field.circ.stop_fines_time.label:1672 -#: field.combcirc.stop_fines_time.label:1727 -#: field.acirc.stop_fines_time.label:1794 -#: field.rodcirc.stop_fines_time.label:3760 +#: field.circ.stop_fines_time.label:1718 +#: field.combcirc.stop_fines_time.label:1773 +#: field.acirc.stop_fines_time.label:1840 +#: field.rodcirc.stop_fines_time.label:3808 msgid "Fine Stop Date/Time" msgstr "" -#: field.au.settings.label:1241 +#: field.au.settings.label:1279 msgid "All User Settings" msgstr "" -#: field.acn.copies.label:988 +#: field.acn.copies.label:1026 msgid "Copies" msgstr "" -#: field.ahr.cancel_time.label:2159 +#: field.ahr.cancel_time.label:2206 msgid "Hold Cancel Date/Time" msgstr "" -#: field.pgt.perm_interval.label:2814 +#: field.pgt.perm_interval.label:2862 msgid "User Expiration Interval" msgstr "" -#: field.circ.fine_interval.label:1662 field.combcirc.fine_interval.label:1717 -#: field.acirc.fine_interval.label:1784 field.rodcirc.fine_interval.label:3750 +#: field.circ.fine_interval.label:1708 field.combcirc.fine_interval.label:1763 +#: field.acirc.fine_interval.label:1830 field.rodcirc.fine_interval.label:3798 msgid "Fine Interval" msgstr "" -#: class.mrd.label:1510 +#: class.mrd.label:1548 msgid "Basic Record Descriptor" msgstr "" -#: field.circ.billing_total.label:1682 field.combcirc.billing_total.label:1737 -#: field.acirc.billing_total.label:1804 field.mg.billing_total.label:2464 -#: field.mbt.billing_total.label:2502 field.rodcirc.billing_total.label:3769 +#: field.circ.billing_total.label:1728 field.combcirc.billing_total.label:1783 +#: field.acirc.billing_total.label:1850 field.mg.billing_total.label:2511 +#: field.mbt.billing_total.label:2550 field.rodcirc.billing_total.label:3817 msgid "Billing Totals" msgstr "" -#: field.chmt.transit_range.label:550 +#: field.chmt.transit_range.label:588 msgid "Transit Range" msgstr "" -#: class.aua.label:1576 +#: class.aua.label:1614 msgid "User Address" msgstr "" -#: class.aou.label:2183 +#: class.aou.label:2230 msgid "Organizational Unit" msgstr "" -#: field.ancc.circ_time.label:2852 field.rccc.xact_start.label:3582 +#: field.ancc.circ_time.label:2900 field.rccc.xact_start.label:3630 msgid "Circulation Date/Time" msgstr "" -#: field.cvrfm.value.label:465 +#: field.cza.format.label:453 field.cvrfm.value.label:503 msgid "Format" msgstr "" -#: field.rmsr.issn.label:3426 field.rssr.issn.label:3448 -#: field.rsr.issn.label:3475 +#: field.rmsr.issn.label:3474 field.rssr.issn.label:3496 +#: field.rsr.issn.label:3523 msgid "ISSN" msgstr "" -#: class.cifm.label:965 +#: class.cifm.label:1003 msgid "Item Form Map" msgstr "" -#: field.rmsr.title.label:3421 field.rssr.title.label:3443 -#: field.rsr.title.label:3466 +#: field.rmsr.title.label:3469 field.rssr.title.label:3491 +#: field.rsr.title.label:3514 msgid "Title Proper (normalized)" msgstr "" -#: field.ahr.selection_depth.label:2155 +#: field.ahr.selection_depth.label:2202 msgid "Item Selection Depth" msgstr "" -#: field.circ.circ_lib.label:1656 field.combcirc.circ_lib.label:1711 -#: field.acirc.circ_lib.label:1778 field.acp.circ_lib.label:2722 -#: field.ancc.circ_lib.label:2851 field.rodcirc.circ_lib.label:3744 -#: field.rmocbbcol.circ_lib.label:3876 field.rmobbcol.circ_lib.label:3893 +#: field.circ.circ_lib.label:1702 field.combcirc.circ_lib.label:1757 +#: field.acirc.circ_lib.label:1824 field.acp.circ_lib.label:2770 +#: field.ancc.circ_lib.label:2899 field.rodcirc.circ_lib.label:3792 +#: field.rmocbbcol.circ_lib.label:3924 field.rmobbcol.circ_lib.label:3941 msgid "Circulating Library" msgstr "" -#: field.rxpt.unvoided.label:3549 +#: field.rxpt.unvoided.label:3597 msgid "Unvoided Paid Amount" msgstr "" -#: field.aou.opac_visible.label:2200 field.asc.opac_visible.label:2263 -#: field.actsc.opac_visible.label:2293 field.acp.opac_visible.label:2740 -#: field.rocit.opac_visible.label:3820 +#: field.aou.opac_visible.label:2247 field.asc.opac_visible.label:2310 +#: field.actsc.opac_visible.label:2340 field.acp.opac_visible.label:2788 +#: field.rocit.opac_visible.label:3868 msgid "OPAC Visible" msgstr "" -#: field.asc.id.label:2261 field.actsc.id.label:2291 +#: field.asc.id.label:2308 field.actsc.id.label:2338 msgid "Stat Cat ID" msgstr "" -#: field.cam.code.label:951 +#: field.cam.code.label:989 msgid "Audience Code" msgstr "" -#: field.rsr.genre.label:3478 +#: field.rsr.genre.label:3526 msgid "Genres (normalized)" msgstr "" -#: field.rmsr.publisher.label:3423 field.rssr.publisher.label:3445 -#: field.rsr.publisher.label:3469 +#: field.rmsr.publisher.label:3471 field.rssr.publisher.label:3493 +#: field.rsr.publisher.label:3517 msgid "Publisher (normalized)" msgstr "" -#: field.mbts.usr.label:656 +#: field.mbts.usr.label:694 msgid "Billed User" msgstr "" -#: field.ccmrs.max_fine_rule.label:603 field.circ.max_fine_rule.label:1665 -#: field.combcirc.max_fine_rule.label:1720 -#: field.acirc.max_fine_rule.label:1787 class.crmf.label:2792 -#: field.rodcirc.max_fine_rule.label:3753 +#: field.ccmrs.max_fine_rule.label:641 field.circ.max_fine_rule.label:1711 +#: field.combcirc.max_fine_rule.label:1766 +#: field.acirc.max_fine_rule.label:1833 class.crmf.label:2840 +#: field.rodcirc.max_fine_rule.label:3801 msgid "Max Fine Rule" msgstr "" -#: field.ssr.total.label:2063 +#: field.ssr.total.label:2110 msgid "Total Results" msgstr "" -#: field.rccc.circ_lib_id.label:3581 +#: field.rccc.circ_lib_id.label:3629 msgid "Library Circulation Location Link" msgstr "" -#: field.au.alert_message.label:1248 field.acp.alert_message.label:2718 +#: field.au.alert_message.label:1286 field.acp.alert_message.label:2766 msgid "Alert Message" msgstr "" -#: field.rccbs.last_payment_ts.label:3677 +#: field.rccbs.last_payment_ts.label:3725 msgid "Last Payment Date/Time" msgstr "" -#: field.mbts.id.label:647 field.mg.id.label:2456 field.mbt.id.label:2494 -#: field.mwp.xact.label:2589 field.mgp.xact.label:2610 -#: field.rxbt.xact.label:3534 field.rxpt.xact.label:3548 -#: field.rccbs.id.label:3657 +#: field.mbts.id.label:685 field.mg.id.label:2503 field.mbt.id.label:2541 +#: field.mwp.xact.label:2637 field.mgp.xact.label:2658 +#: field.rxbt.xact.label:3582 field.rxpt.xact.label:3596 +#: field.rccbs.id.label:3705 msgid "Transaction ID" msgstr "" -#: field.mwp.id.label:2586 field.mgp.id.label:2607 field.mckp.id.label:2697 -#: field.mp.id.label:3021 field.mbp.id.label:3052 field.mndp.id.label:3083 -#: field.mdp.id.label:3106 +#: field.mwp.id.label:2634 field.mgp.id.label:2655 field.mckp.id.label:2745 +#: field.mp.id.label:3069 field.mbp.id.label:3100 field.mndp.id.label:3131 +#: field.mdp.id.label:3154 msgid "Payment ID" msgstr "" -#: field.mcrp.amount.label:2340 field.mwp.amount.label:2584 -#: field.mgp.amount.label:2605 field.mckp.amount.label:2693 -#: field.mp.amount.label:3020 field.mbp.amount.label:3051 -#: field.mndp.amount.label:3082 field.mdp.amount.label:3105 -#: field.mb.amount.label:3198 +#: field.mcrp.amount.label:2387 field.mwp.amount.label:2632 +#: field.mgp.amount.label:2653 field.mckp.amount.label:2741 +#: field.mp.amount.label:3068 field.mbp.amount.label:3099 +#: field.mndp.amount.label:3130 field.mdp.amount.label:3153 +#: field.mb.amount.label:3246 msgid "Amount" msgstr "" -#: field.ahn.notify_time.label:1894 +#: field.ahn.notify_time.label:1940 msgid "Notification Date/Time" msgstr "" -#: class.chmt.label:542 +#: class.chmt.label:580 msgid "Hold Matrix Test Set" msgstr "" -#: class.chmm.label:478 +#: class.chmm.label:516 msgid "Hold Matrix Matchpoint" msgstr "" -#: field.mrd.date1.label:1530 +#: field.mrd.date1.label:1568 msgid "Date1" msgstr "" -#: field.bre.subject_field_entries.label:1088 +#: field.bre.subject_field_entries.label:1126 msgid "Indexed Subject Field Entries" msgstr "" -#: field.ccmrs.duration_rule.label:601 +#: field.ccmrs.duration_rule.label:639 msgid "Duration Rule" msgstr "" -#: class.acpl.label:1901 +#: class.acpl.label:1947 msgid "Copy/Shelving Location" msgstr "" @@ -725,49 +729,49 @@ msgstr "" msgid "Allowed Org Unit" msgstr "" -#: class.clfm.label:2559 field.rccc.lit_form.label:3588 +#: class.clfm.label:2607 field.rccc.lit_form.label:3636 msgid "Literary Form" msgstr "" -#: field.ahr.prev_check_time.label:2151 +#: field.ahr.prev_check_time.label:2198 msgid "Last Targeting Date/Time" msgstr "" -#: field.asvr.response_group_id.label:788 +#: field.asvr.response_group_id.label:826 msgid "Response Group ID" msgstr "" -#: field.chmm.active.label:484 field.ccmm.active.label:520 +#: field.chmm.active.label:522 field.ccmm.active.label:558 msgid "Active?" msgstr "" -#: field.au.usrname.label:1282 +#: field.au.usrname.label:1320 msgid "OPAC/Staff Client User Name" msgstr "" -#: field.ssr.rel.label:2061 +#: field.ssr.rel.label:2108 msgid "Relevance" msgstr "" -#: class.aus.label:683 +#: class.aus.label:721 msgid "User Setting" msgstr "" -#: field.circ.duration.label:1660 field.combcirc.duration.label:1715 -#: field.acirc.duration.label:1782 field.cnct.circ_duration.label:2377 -#: field.rodcirc.duration.label:3748 +#: field.circ.duration.label:1706 field.combcirc.duration.label:1761 +#: field.acirc.duration.label:1828 field.cnct.circ_duration.label:2424 +#: field.rodcirc.duration.label:3796 msgid "Circulation Duration" msgstr "" -#: field.rccc.language.label:3587 +#: field.rccc.language.label:3635 msgid "Item Language" msgstr "" -#: class.mbp.label:3046 +#: class.mbp.label:3094 msgid "Payments: Brick-and-mortar" msgstr "" -#: class.actscecm.label:2911 +#: class.actscecm.label:2959 msgid "User Statistical Category Entry" msgstr "" @@ -775,56 +779,56 @@ msgstr "" msgid "Queued Authority Record Attribute Definition" msgstr "" -#: field.ahn.note.label:1892 +#: field.ahn.note.label:1938 msgid "Notification Note" msgstr "" -#: field.ccmrs.recurring_fine_rule.label:602 -#: field.circ.recuring_fine_rule.label:1669 -#: field.combcirc.recuring_fine_rule.label:1724 -#: field.acirc.recuring_fine_rule.label:1791 -#: field.rodcirc.recuring_fine_rule.label:3757 +#: field.ccmrs.recurring_fine_rule.label:640 +#: field.circ.recuring_fine_rule.label:1715 +#: field.combcirc.recuring_fine_rule.label:1770 +#: field.acirc.recuring_fine_rule.label:1837 +#: field.rodcirc.recuring_fine_rule.label:3805 msgid "Recurring Fine Rule" msgstr "" -#: field.circ.duration_rule.label:1661 field.combcirc.duration_rule.label:1716 -#: field.acirc.duration_rule.label:1783 field.rodcirc.duration_rule.label:3749 +#: field.circ.duration_rule.label:1707 field.combcirc.duration_rule.label:1762 +#: field.acirc.duration_rule.label:1829 field.rodcirc.duration_rule.label:3797 msgid "Circ Duration Rule" msgstr "" -#: field.ccmt.max_overdue.label:569 +#: field.ccmt.max_overdue.label:607 msgid "Max Overdue" msgstr "" -#: field.ccmt.max_items_out.label:568 +#: field.ccmt.max_items_out.label:606 msgid "Max Items Out" msgstr "" -#: class.asc.label:2255 +#: class.asc.label:2302 msgid "Asset Statistical Category" msgstr "" -#: field.asv.required.label:2085 +#: field.asv.required.label:2132 msgid "Is Required?" msgstr "" -#: field.au.survey_responses.label:1244 +#: field.au.survey_responses.label:1282 msgid "Survey Responses" msgstr "" -#: field.atc.id.label:754 field.ahtc.id.label:3166 field.iatc.id.label:3719 +#: field.atc.id.label:792 field.ahtc.id.label:3214 field.iatc.id.label:3767 msgid "Transit ID" msgstr "" -#: field.acp.total_circ_count.label:2747 +#: field.acp.total_circ_count.label:2795 msgid "Total Circulations" msgstr "" -#: field.rccbs.usr_home_ou_name.label:3664 +#: field.rccbs.usr_home_ou_name.label:3712 msgid "User Home Library Name" msgstr "" -#: field.au.credit_forward_balance.label:1254 +#: field.au.credit_forward_balance.label:1292 msgid "User Credit Balance" msgstr "" @@ -832,49 +836,49 @@ msgstr "" msgid "Queued Bib Record Attribute" msgstr "" -#: field.aun.create_date.label:670 field.acp.create_date.label:2726 +#: field.aun.create_date.label:708 field.acp.create_date.label:2774 msgid "Creation Date/Time" msgstr "" -#: field.rocit.due_date.label:3827 +#: field.rocit.due_date.label:3875 msgid "Due Date" msgstr "" -#: field.aout.id.label:2396 +#: field.aout.id.label:2443 msgid "Type ID" msgstr "" -#: field.circ.payments.label:1679 field.combcirc.payments.label:1734 -#: field.acirc.payments.label:1801 field.rodcirc.payments.label:3766 +#: field.circ.payments.label:1725 field.combcirc.payments.label:1780 +#: field.acirc.payments.label:1847 field.rodcirc.payments.label:3814 msgid "Transaction Payments" msgstr "" -#: class.bre.label:1063 +#: class.bre.label:1101 msgid "Bibliographic Record" msgstr "" -#: field.ahr.eligible_copies.label:2164 +#: field.ahr.eligible_copies.label:2211 msgid "Eligible Copies" msgstr "" -#: field.mp.cash_payment.label:3027 field.mbp.cash_payment.label:3058 +#: field.mp.cash_payment.label:3075 field.mbp.cash_payment.label:3106 msgid "Cash Payment Detail" msgstr "" -#: field.mfr.id.label:1372 +#: field.mfr.id.label:1410 msgid "Field ID" msgstr "" -#: field.rocit.ref.label:3821 +#: field.rocit.ref.label:3869 msgid "Reference" msgstr "" -#: field.ancc.item_type.label:2854 +#: field.ancc.item_type.label:2902 msgid "Non-cat Item Type" msgstr "" -#: field.chmm.user_home_ou.label:485 field.rmocbbhol.home_ou.label:3910 -#: field.rmobbhol.home_ou.label:3927 +#: field.chmm.user_home_ou.label:523 field.rmocbbhol.home_ou.label:3958 +#: field.rmobbhol.home_ou.label:3975 msgid "User Home Library" msgstr "" @@ -882,227 +886,231 @@ msgstr "" msgid "Queued Authority Record Match" msgstr "" -#: field.rccbs.total_owed.label:3675 field.rmocbbol.billed.label:3848 -#: field.rmocbbcol.billed.label:3879 field.rmocbbhol.billed.label:3913 +#: field.rccbs.total_owed.label:3723 field.rmocbbol.billed.label:3896 +#: field.rmocbbcol.billed.label:3927 field.rmocbbhol.billed.label:3961 msgid "Total Billed" msgstr "" -#: class.aun.label:665 +#: class.aun.label:703 msgid "User Note" msgstr "" -#: class.actsc.label:2285 +#: class.actsc.label:2332 msgid "User Statistical Category" msgstr "" -#: field.ccmm.grp.label:522 class.pgt.label:2804 +#: field.ccmm.grp.label:560 class.pgt.label:2852 msgid "Permission Group" msgstr "" -#: field.mp.forgive_payment.label:3032 field.mbp.forgive_payment.label:3063 -#: field.mndp.forgive_payment.label:3090 +#: field.mp.forgive_payment.label:3080 field.mbp.forgive_payment.label:3111 +#: field.mndp.forgive_payment.label:3138 msgid "Forgive Payment Detail" msgstr "" -#: field.rhrr.target.label:3520 +#: field.rhrr.target.label:3568 msgid "Hold Target" msgstr "" -#: field.au.suffix.label:1279 +#: field.au.suffix.label:1317 msgid "Suffix/Title" msgstr "" -#: field.asvr.effective_date.label:785 +#: field.asvr.effective_date.label:823 msgid "Effective Answer Date/Time" msgstr "" -#: field.acp.deposit.label:2729 +#: field.acp.deposit.label:2777 msgid "Is Deposit Required" msgstr "" -#: field.ahr.capture_time.label:2139 +#: field.ahr.capture_time.label:2186 msgid "Capture Date/Time" msgstr "" -#: field.mbts.balance_owed.label:646 field.rccbs.balance_owed.label:3690 +#: field.mbts.balance_owed.label:684 field.rccbs.balance_owed.label:3738 msgid "Balance Owed" msgstr "" -#: field.chmt.max_holds.label:551 +#: field.chmt.max_holds.label:589 msgid "Max Holds" msgstr "" -#: field.rhrr.bib_record.label:3522 +#: field.rhrr.bib_record.label:3570 msgid "Target Bib Record" msgstr "" -#: class.ac.label:2271 +#: class.ac.label:2318 msgid "Library Card" msgstr "" -#: field.au.second_given_name.label:1277 +#: field.au.second_given_name.label:1315 msgid "Middle Name" msgstr "" -#: field.aihu.staff.label:720 field.ancihu.staff.label:737 +#: field.aihu.staff.label:758 field.ancihu.staff.label:775 msgid "Recording Staff" msgstr "" -#: field.aou.billing_address.label:2189 +#: field.aou.billing_address.label:2236 msgid "Billing Address" msgstr "" -#: field.acp.stat_cat_entries.label:2716 +#: field.acp.stat_cat_entries.label:2764 msgid "Statistical Catagory Entries" msgstr "" -#: field.crahp.id.label:2786 field.crmf.id.label:2798 +#: field.crahp.id.label:2834 field.crmf.id.label:2846 msgid "Rule ID" msgstr "" -#: field.acp.loan_duration.label:2738 +#: field.acp.loan_duration.label:2786 msgid "Loan Duration" msgstr "" #: field.vbq.queue_type.label:148 field.vaq.queue_type.label:281 -#: field.mrd.item_type.label:1524 field.aua.address_type.label:1581 +#: field.mrd.item_type.label:1562 field.aua.address_type.label:1619 msgid "Type" msgstr "" -#: field.ahr.expire_time.label:2142 +#: field.ahr.expire_time.label:2189 msgid "Hold Expire Date/Time" msgstr "" -#: field.bre.full_record_entries.label:1092 +#: field.bre.full_record_entries.label:1130 msgid "Flattened MARC Fields " msgstr "" -#: field.rmsr.quality.label:3418 field.rssr.quality.label:3440 -#: field.rsr.quality.label:3463 +#: field.rmsr.quality.label:3466 field.rssr.quality.label:3488 +#: field.rsr.quality.label:3511 msgid "Overall Record Quality" msgstr "" -#: class.mg.label:2450 +#: class.mg.label:2497 msgid "Grocery Transaction" msgstr "" -#: field.rocit.age_protect.label:3819 +#: field.rocit.age_protect.label:3867 msgid "Age Protection" msgstr "" -#: field.acn.record.label:997 field.combcirc.copy_bib_record.label:1746 -#: field.acirc.copy_bib_record.label:1813 +#: class.czs.label:423 field.czs.name.label:428 field.cza.source.label:449 +msgid "Z39.50 Source" +msgstr "" + +#: field.acn.record.label:1035 field.combcirc.copy_bib_record.label:1792 +#: field.acirc.copy_bib_record.label:1859 msgid "Bib Record" msgstr "" -#: field.rccbs.patron_city.label:3687 +#: field.rccbs.patron_city.label:3735 msgid "User City" msgstr "" -#: field.ahn.hold.label:1889 field.aufh.hold.label:2887 +#: field.ahn.hold.label:1935 field.aufh.hold.label:2935 msgid "Hold" msgstr "" -#: field.cifm.value.label:971 +#: field.cifm.value.label:1009 msgid "Item Form" msgstr "" -#: class.cit.label:613 +#: class.cit.label:651 msgid "Identification Type" msgstr "" -#: field.ahr.requestor.label:2154 +#: field.ahr.requestor.label:2201 msgid "Requesting User" msgstr "" -#: field.auoi.opt_in_ws.label:409 class.aws.label:423 +#: field.auoi.opt_in_ws.label:409 class.aws.label:461 msgid "Workstation" msgstr "" -#: field.mcrp.xact.label:2345 field.mb.xact.label:3206 +#: field.mcrp.xact.label:2392 field.mb.xact.label:3254 msgid "Transaction" msgstr "" -#: field.rocit.owning_lib_name.label:3814 +#: field.rocit.owning_lib_name.label:3862 msgid "Owning Lib Name" msgstr "" -#: field.rccc.circ_lib.label:3580 +#: field.rccc.circ_lib.label:3628 msgid "Library Circulation Location Short (Policy) Name" msgstr "" -#: field.acp.fine_level.label:2735 +#: field.acp.fine_level.label:2783 msgid "Fine Level" msgstr "" #: field.vqbra.record.label:228 field.vqara.record.label:359 -#: field.ssr.record.label:2062 +#: field.ssr.record.label:2109 msgid "Record" msgstr "" -#: field.aun.id.label:672 field.acpn.id.label:1340 +#: field.aun.id.label:710 field.acpn.id.label:1378 msgid "Note ID" msgstr "" -#: field.ahr.bib_rec.label:2163 +#: field.ahr.bib_rec.label:2210 msgid "Bib Record link" msgstr "" -#: field.rsr.uniform_title.label:3467 +#: field.rsr.uniform_title.label:3515 msgid "Uniform Title (normalized)" msgstr "" -#: field.mg.xact_finish.label:2459 +#: field.mg.xact_finish.label:2506 msgid "Transaction Finish Timestamp" msgstr "" -#: class.ahr.label:2132 +#: class.ahr.label:2179 msgid "Hold Request" msgstr "" -#: field.aihu.item.label:718 class.acp.label:2711 +#: field.aihu.item.label:756 class.acp.label:2759 msgid "Item" msgstr "" -#: field.chmm.marc_form.label:494 field.ccmm.marc_form.label:525 -#: field.rccc.item_form.label:3589 +#: field.chmm.marc_form.label:532 field.ccmm.marc_form.label:563 +#: field.rccc.item_form.label:3637 msgid "MARC Form" msgstr "" -#: class.ccmt.label:561 +#: class.ccmt.label:599 msgid "Circulation Matrix Test Set" msgstr "" -#: field.chmm.usr_grp.label:490 +#: field.chmm.usr_grp.label:528 msgid "User Permission Group" msgstr "" -#: field.ancihu.item_type.label:735 field.citm.value.label:1947 +#: field.ancihu.item_type.label:773 field.citm.value.label:1994 msgid "Item Type" msgstr "" -#: field.ssr.visible.label:2065 +#: field.ssr.visible.label:2112 msgid "Visible" msgstr "" -#: class.rmocbbol.label:3840 +#: class.rmocbbol.label:3888 msgid "Open Circulation Billing by Owning Library" msgstr "" -#: field.ahr.phone_notify.label:2149 +#: field.ahr.phone_notify.label:2196 msgid "Notifications Phone Number" msgstr "" -#: field.mg.billable_transaction.label:2463 +#: field.mg.billable_transaction.label:2510 msgid "Billable Transaction link" msgstr "" -#: field.circ.id.label:1663 field.combcirc.id.label:1718 -#: field.acirc.id.label:1785 field.rodcirc.id.label:3751 +#: field.circ.id.label:1709 field.combcirc.id.label:1764 +#: field.acirc.id.label:1831 field.rodcirc.id.label:3799 msgid "Circ ID" msgstr "" -#: field.bre.deleted.label:1073 +#: field.bre.deleted.label:1111 msgid "Is Deleted?" msgstr "" @@ -1110,102 +1118,102 @@ msgstr "" msgid "Import/Overlay Authority Queue" msgstr "" -#: field.mbt.billings.label:2500 +#: field.mbt.billings.label:2548 msgid "Billing Line Items" msgstr "" -#: field.acp.circulate.label:2724 +#: field.acp.circulate.label:2772 msgid "Can Circulate" msgstr "" -#: field.rocit.call_number_label.label:3802 +#: field.rocit.call_number_label.label:3850 msgid "Callnumber Label" msgstr "" -#: field.aou.parent_ou.label:2196 +#: field.aou.parent_ou.label:2243 msgid "Parent Organizational Unit" msgstr "" -#: class.erfcc.label:3558 +#: class.erfcc.label:3606 msgid "Total Circulation Count, Including Legacy" msgstr "" -#: field.bre.last_xact_id.label:1078 +#: field.bre.last_xact_id.label:1116 msgid "Last Transaction ID" msgstr "" -#: field.mp.check_payment.label:3030 field.mbp.check_payment.label:3061 +#: field.mp.check_payment.label:3078 field.mbp.check_payment.label:3109 msgid "Check Payment Detail" msgstr "" -#: field.ahr.id.label:2148 field.rhrr.id.label:3519 +#: field.ahr.id.label:2195 field.rhrr.id.label:3567 msgid "Hold ID" msgstr "" -#: field.mbts.last_billing_ts.label:649 +#: field.mbts.last_billing_ts.label:687 msgid "Last Billing Timestamp" msgstr "" -#: field.rocit.dewey_block_tens.label:3803 +#: field.rocit.dewey_block_tens.label:3851 msgid "Dewy Tens" msgstr "" -#: field.rocit.stat_cat_1_value.label:3810 +#: field.rocit.stat_cat_1_value.label:3858 msgid "Legacy Stat Cat 1 Value" msgstr "" -#: field.pgt.usergroup.label:2816 +#: field.pgt.usergroup.label:2864 msgid "Is User Group" msgstr "" -#: field.rccbs.usr.label:3668 +#: field.rccbs.usr.label:3716 msgid "User Link" msgstr "" -#: field.acpl.circulate.label:1906 +#: field.acpl.circulate.label:1952 msgid "Can Circulate?" msgstr "" -#: field.acp.stat_cat_entry_copy_maps.label:2745 +#: field.acp.stat_cat_entry_copy_maps.label:2793 msgid "Stat-Cat entry maps" msgstr "" -#: field.aout.children.label:2392 +#: field.aout.children.label:2439 msgid "Subordinate Types" msgstr "" -#: field.bre.fixed_fields.label:1069 +#: field.bre.fixed_fields.label:1107 msgid "Fixed Field Entry" msgstr "" -#: field.bre.fingerprint.label:1076 field.rmsr.fingerprint.label:3417 -#: field.rssr.fingerprint.label:3439 field.rsr.fingerprint.label:3462 +#: field.bre.fingerprint.label:1114 field.rmsr.fingerprint.label:3465 +#: field.rssr.fingerprint.label:3487 field.rsr.fingerprint.label:3510 msgid "Fingerprint" msgstr "" -#: field.chmm.ref_flag.label:496 field.ccmm.ref_flag.label:527 +#: field.chmm.ref_flag.label:534 field.ccmm.ref_flag.label:565 msgid "Reference?" msgstr "" -#: field.pgt.children.label:2809 +#: field.pgt.children.label:2857 msgid "Child Groups" msgstr "" -#: field.rccc.dewey_block_tens.label:3607 +#: field.rccc.dewey_block_tens.label:3655 msgid "Dewey Block -- Tens" msgstr "" -#: field.aws.owning_lib.label:430 field.chmm.item_owning_ou.label:488 -#: field.acn.owning_lib.label:996 field.asv.owner.label:2083 -#: field.asc.owner.label:2264 field.actsc.owner.label:2294 -#: field.cnct.owning_lib.label:2381 field.rmocbbol.owning_lib.label:3846 -#: field.rmobbol.owning_lib.label:3861 field.rmocbbcol.owning_lib.label:3877 -#: field.rmobbcol.owning_lib.label:3894 field.rmocbbhol.owning_lib.label:3911 -#: field.rmobbhol.owning_lib.label:3928 +#: field.aws.owning_lib.label:468 field.chmm.item_owning_ou.label:526 +#: field.acn.owning_lib.label:1034 field.asv.owner.label:2130 +#: field.asc.owner.label:2311 field.actsc.owner.label:2341 +#: field.cnct.owning_lib.label:2428 field.rmocbbol.owning_lib.label:3894 +#: field.rmobbol.owning_lib.label:3909 field.rmocbbcol.owning_lib.label:3925 +#: field.rmobbcol.owning_lib.label:3942 field.rmocbbhol.owning_lib.label:3959 +#: field.rmobbhol.owning_lib.label:3976 msgid "Owning Library" msgstr "" -#: field.rocit.circ_lib_name.label:3815 +#: field.rocit.circ_lib_name.label:3863 msgid "Circ Lib Name" msgstr "" @@ -1217,27 +1225,27 @@ msgstr "" msgid "Success" msgstr "" -#: field.circ.circ_staff.label:1657 field.combcirc.circ_staff.label:1712 -#: field.acirc.circ_staff.label:1779 field.ancc.staff.label:2856 -#: field.rodcirc.circ_staff.label:3745 +#: field.circ.circ_staff.label:1703 field.combcirc.circ_staff.label:1758 +#: field.acirc.circ_staff.label:1825 field.ancc.staff.label:2904 +#: field.rodcirc.circ_staff.label:3793 msgid "Circulating Staff" msgstr "" -#: class.asce.label:3142 +#: class.asce.label:3190 msgid "Item Stat Cat Entry" msgstr "" -#: field.combcirc.usr_birth_year.label:1741 -#: field.acirc.usr_birth_year.label:1808 +#: field.combcirc.usr_birth_year.label:1787 +#: field.acirc.usr_birth_year.label:1854 msgid "Patron Birth Year" msgstr "" -#: field.atc.hold_transit_copy.label:760 class.ahtc.label:3157 -#: field.iatc.hold_transit_copy.label:3725 +#: field.atc.hold_transit_copy.label:798 class.ahtc.label:3205 +#: field.iatc.hold_transit_copy.label:3773 msgid "Hold Transit" msgstr "" -#: field.asv.opac.label:2082 +#: field.asv.opac.label:2129 msgid "OPAC Surevey?" msgstr "" @@ -1245,56 +1253,69 @@ msgstr "" msgid "Attribute ID" msgstr "" -#: field.aun.creator.label:671 +#: field.aun.creator.label:709 msgid "Creating Staff" msgstr "" -#: class.ccmrs.label:595 +#: class.ccmrs.label:633 msgid "Circulation Matrix Rule Set" msgstr "" -#: field.ccm.sip2_media_type.label:445 +#: field.ahr.target.label:2204 +msgid "Target Object ID" +msgstr "" + +#: field.ccm.sip2_media_type.label:483 msgid "SIP2 Media Type" msgstr "" +#: field.acpl.hold_verify.label:1954 +msgid "Hold Capture Requires Verification" +msgstr "" + #: field.vqbrad.code.label:202 field.vqarad.code.label:333 -#: field.ccm.code.label:442 field.cvrfm.code.label:464 +#: field.cza.code.label:452 field.ccm.code.label:480 +#: field.cvrfm.code.label:502 msgid "Code" msgstr "" -#: field.rocit.patron_name.label:3829 +#: field.rocit.patron_name.label:3877 msgid "Patron Name" msgstr "" -#: class.cvrfm.label:459 field.chmm.marc_vr_format.label:495 -#: field.ccmm.marc_vr_format.label:526 +#: class.cvrfm.label:497 field.chmm.marc_vr_format.label:533 +#: field.ccmm.marc_vr_format.label:564 msgid "Videorecording Format" msgstr "" -#: field.circ.due_date.label:1659 field.combcirc.due_date.label:1714 -#: field.acirc.due_date.label:1781 field.rodcirc.due_date.label:3747 +#: field.circ.due_date.label:1705 field.combcirc.due_date.label:1760 +#: field.acirc.due_date.label:1827 field.rodcirc.due_date.label:3795 msgid "Due Date/Time" msgstr "" -#: field.asvq.id.label:631 +#: field.asvq.id.label:669 msgid "Question ID" msgstr "" -#: class.mb.label:3193 +#: class.mb.label:3241 msgid "Billing Line Item" msgstr "" -#: field.rsr.external_uri.label:3481 +#: field.czs.transmission_format.label:434 +msgid "Transmission Format" +msgstr "" + +#: field.rsr.external_uri.label:3529 msgid "External URI List (normalized)" msgstr "" -#: field.actsce.id.label:2520 field.actscecm.id.label:2916 -#: field.asce.id.label:3147 field.rsce1.id.label:3629 -#: field.rsce2.id.label:3643 +#: field.actsce.id.label:2568 field.actscecm.id.label:2964 +#: field.asce.id.label:3195 field.rsce1.id.label:3677 +#: field.rsce2.id.label:3691 msgid "Entry ID" msgstr "" -#: field.acp.age_protect.label:2717 +#: field.acp.age_protect.label:2765 msgid "Age Hold Protection" msgstr "" @@ -1302,212 +1323,216 @@ msgstr "" msgid "Failure Part" msgstr "" -#: field.acp.copy_number.label:2725 +#: field.acp.copy_number.label:2773 msgid "Copy Number on Volume" msgstr "" -#: field.mbts.last_payment_type.label:653 -#: field.rccbs.last_payment_type.label:3679 +#: field.mbts.last_payment_type.label:691 +#: field.rccbs.last_payment_type.label:3727 msgid "Last Payment Type" msgstr "" -#: class.mgp.label:2599 +#: class.mgp.label:2647 msgid "Goods Payment" msgstr "" -#: field.rmsr.isbn.label:3425 field.rssr.isbn.label:3447 -#: field.rsr.isbn.label:3474 +#: field.rmsr.isbn.label:3473 field.rssr.isbn.label:3495 +#: field.rsr.isbn.label:3522 msgid "ISBN" msgstr "" -#: field.circ.checkin_staff.label:1654 field.combcirc.checkin_staff.label:1709 -#: field.acirc.checkin_staff.label:1776 field.rodcirc.checkin_staff.label:3742 +#: field.circ.checkin_staff.label:1700 field.combcirc.checkin_staff.label:1755 +#: field.acirc.checkin_staff.label:1822 field.rodcirc.checkin_staff.label:3790 msgid "Check In Staff" msgstr "" -#: field.ccmt.script_test.label:571 +#: field.ccmt.script_test.label:609 msgid "Test Script" msgstr "" -#: field.mdp.cash_drawer.label:3112 +#: field.mdp.cash_drawer.label:3160 msgid "Cash Drawer" msgstr "" -#: class.asvr.label:778 +#: class.asvr.label:816 msgid "Survey Response" msgstr "" -#: class.crahp.label:2780 +#: class.crahp.label:2828 msgid "Age Hold Protection Rule" msgstr "" -#: field.au.first_given_name.label:1261 +#: field.czs.db.label:432 +msgid "DB" +msgstr "" + +#: field.au.first_given_name.label:1299 msgid "First Name" msgstr "" -#: field.acpl.owning_lib.label:1911 -msgid "Owning Org Unit" +#: class.cza.label:443 +msgid "Z39.50 Attribute" msgstr "" -#: field.au.permissions.label:1240 +#: field.au.permissions.label:1278 msgid "All Permissions" msgstr "" -#: field.mbts.xact_finish.label:657 +#: field.mbts.xact_finish.label:695 msgid "Transaction Finish Time" msgstr "" -#: field.cit.id.label:618 +#: field.cit.id.label:656 msgid "Identification ID" msgstr "" -#: field.ccmt.org_unit.label:572 +#: field.ccmt.org_unit.label:610 msgid "Test Context Location" msgstr "" -#: field.atc.source_send_time.label:758 field.ahtc.source_send_time.label:3170 -#: field.iatc.source_send_time.label:3723 +#: field.atc.source_send_time.label:796 field.ahtc.source_send_time.label:3218 +#: field.iatc.source_send_time.label:3771 msgid "Send Date/Time" msgstr "" -#: class.circ.label:1648 field.rccc.id.label:3579 +#: class.circ.label:1694 field.rccc.id.label:3627 msgid "Circulation" msgstr "" -#: field.acp.price.label:2741 field.rocit.price.label:3800 +#: field.acp.price.label:2789 field.rocit.price.label:3848 msgid "Price" msgstr "" -#: field.ac.barcode.label:2277 field.acp.barcode.label:2719 -#: field.rocit.barcode.label:3801 +#: field.ac.barcode.label:2324 field.acp.barcode.label:2767 +#: field.rocit.barcode.label:3849 msgid "Barcode" msgstr "" -#: field.pgt.id.label:2811 +#: field.pgt.id.label:2859 msgid "Group ID" msgstr "" -#: field.mrd.pub_status.label:1526 +#: field.mrd.pub_status.label:1564 msgid "Pub Status" msgstr "" -#: field.rocit.create_date.label:3813 +#: field.rocit.create_date.label:3861 msgid "Create Date" msgstr "" -#: field.acp.deposit_amount.label:2730 field.rocit.deposit_amount.label:3822 +#: field.acp.deposit_amount.label:2778 field.rocit.deposit_amount.label:3870 msgid "Deposit Amount" msgstr "" -#: field.rxbt.total.label:3537 +#: field.rxbt.total.label:3585 msgid "Total Billing Amount" msgstr "" -#: field.circ.xact_finish.label:1675 field.combcirc.xact_finish.label:1730 -#: field.acirc.xact_finish.label:1797 field.mbt.xact_finish.label:2496 -#: field.rodcirc.xact_finish.label:3763 +#: field.circ.xact_finish.label:1721 field.combcirc.xact_finish.label:1776 +#: field.acirc.xact_finish.label:1843 field.mbt.xact_finish.label:2543 +#: field.rodcirc.xact_finish.label:3811 msgid "Transaction Finish Date/Time" msgstr "" -#: field.acp.ref.label:2742 +#: field.acp.ref.label:2790 msgid "Is Reference" msgstr "" -#: field.vbq.name.label:146 field.vaq.name.label:279 field.ccm.name.label:443 -#: field.aus.name.label:689 field.cxt.name.label:907 -#: field.acpl.name.label:1909 field.asv.name.label:2081 -#: field.aou.name.label:2194 field.asc.name.label:2262 -#: field.actsc.name.label:2292 field.cnct.name.label:2380 +#: field.vbq.name.label:146 field.vaq.name.label:279 field.cza.name.label:450 +#: field.ccm.name.label:481 field.aus.name.label:727 field.cxt.name.label:945 +#: field.acpl.name.label:1956 field.asv.name.label:2128 +#: field.aou.name.label:2241 field.asc.name.label:2309 +#: field.actsc.name.label:2339 field.cnct.name.label:2427 msgid "Name" msgstr "" -#: field.mckp.cash_drawer.label:2695 +#: field.mckp.cash_drawer.label:2743 msgid "Workstation link" msgstr "" -#: field.chmm.marc_type.label:493 field.ccmm.marc_type.label:524 -#: field.rccc.item_type.label:3590 +#: field.chmm.marc_type.label:531 field.ccmm.marc_type.label:562 +#: field.rccc.item_type.label:3638 msgid "MARC Type" msgstr "" -#: field.bre.edit_date.label:1074 +#: field.bre.edit_date.label:1112 msgid "Last Edit Data/Time" msgstr "" -#: field.clm.code.label:860 field.bre.language.label:1085 +#: field.clm.code.label:898 field.bre.language.label:1123 msgid "Language Code" msgstr "" -#: field.pgt.parent.label:2813 -msgid "Parent Group" +#: field.cza.id.label:448 +msgid "Z39.50 Attr ID" msgstr "" -#: field.combcirc.usr_post_code.label:1729 -#: field.acirc.usr_post_code.label:1796 +#: field.combcirc.usr_post_code.label:1775 +#: field.acirc.usr_post_code.label:1842 msgid "Patron ZIP" msgstr "" -#: field.circ.xact_start.label:1676 field.combcirc.xact_start.label:1731 -#: field.acirc.xact_start.label:1798 field.rodcirc.xact_start.label:3764 +#: field.circ.xact_start.label:1722 field.combcirc.xact_start.label:1777 +#: field.acirc.xact_start.label:1844 field.rodcirc.xact_start.label:3812 msgid "Check Out Date/Time" msgstr "" -#: field.rxbt.unvoided.label:3535 +#: field.rxbt.unvoided.label:3583 msgid "Unvoided Billing Amount" msgstr "" -#: field.rxpt.total.label:3551 +#: field.rxpt.total.label:3599 msgid "Total Paid Amount" msgstr "" -#: field.circ.billable_transaction.label:1680 -#: field.combcirc.billable_transaction.label:1735 -#: field.acirc.billable_transaction.label:1802 -#: field.rodcirc.billable_transaction.label:3767 +#: field.circ.billable_transaction.label:1726 +#: field.combcirc.billable_transaction.label:1781 +#: field.acirc.billable_transaction.label:1848 +#: field.rodcirc.billable_transaction.label:3815 msgid "Base Transaction" msgstr "" -#: field.rccc.patron_home_lib_shortname.label:3599 +#: field.rccc.patron_home_lib_shortname.label:3647 msgid "Patron Home Library Short (Policy) Name" msgstr "" -#: field.ac.active.label:2276 +#: field.ac.active.label:2323 msgid "IsActive?" msgstr "" -#: field.cnct.in_house.label:2379 +#: field.cnct.in_house.label:2426 msgid "In House?" msgstr "" -#: field.rsr.geographic_subject.label:3477 +#: field.rsr.geographic_subject.label:3525 msgid "Geographic Subjects (normalized)" msgstr "" -#: field.combcirc.copy_call_number.label:1742 -#: field.acirc.copy_call_number.label:1809 +#: field.combcirc.copy_call_number.label:1788 +#: field.acirc.copy_call_number.label:1855 msgid "Call Number" msgstr "" -#: field.au.card.label:1251 +#: field.au.card.label:1289 msgid "Current Library Card" msgstr "" -#: field.atc.target_copy.label:759 field.ahtc.target_copy.label:3171 -#: field.iatc.target_copy.label:3724 +#: field.atc.target_copy.label:797 field.ahtc.target_copy.label:3219 +#: field.iatc.target_copy.label:3772 msgid "Transited Copy" msgstr "" -#: field.actsce.value.label:2523 field.rsce1.value.label:3631 -#: field.rsce2.value.label:3645 +#: field.actsce.value.label:2571 field.rsce1.value.label:3679 +#: field.rsce2.value.label:3693 msgid "Entry Value" msgstr "" -#: field.acpn.creator.label:1339 +#: field.acpn.creator.label:1377 msgid "Note Creator" msgstr "" -#: field.combcirc.copy_circ_lib.label:1745 -#: field.acirc.copy_circ_lib.label:1812 +#: field.combcirc.copy_circ_lib.label:1791 +#: field.acirc.copy_circ_lib.label:1858 msgid "Copy Circulating Library" msgstr "" @@ -1515,204 +1540,212 @@ msgstr "" msgid "Queued Bib Record Match" msgstr "" -#: field.ssr.checked.label:2064 +#: field.ssr.checked.label:2111 msgid "Checked" msgstr "" -#: field.mfr.record.label:1375 field.mrd.record.label:1527 +#: field.mfr.record.label:1413 field.mrd.record.label:1565 msgid "Bib Record Entry" msgstr "" -#: field.rccbs.usr_home_ou.label:3665 +#: field.rccbs.usr_home_ou.label:3713 msgid "User Home Library Link" msgstr "" -#: field.ccmm.usr_age_lower_bound.label:528 +#: field.ccmm.usr_age_lower_bound.label:566 msgid "User Age: Lower Bound" msgstr "" -#: field.acp.id.label:2737 field.erfcc.id.label:3563 field.rocit.id.label:3799 +#: field.acp.id.label:2785 field.erfcc.id.label:3611 field.rocit.id.label:3847 msgid "Copy ID" msgstr "" -#: field.au.day_phone.label:1255 +#: field.au.day_phone.label:1293 msgid "Daytime Phone" msgstr "" -#: field.circ.target_copy.label:1673 field.combcirc.target_copy.label:1728 -#: field.acirc.target_copy.label:1795 field.rodcirc.target_copy.label:3761 +#: field.czs.record_format.label:433 +msgid "Record Format" +msgstr "" + +#: field.circ.target_copy.label:1719 field.combcirc.target_copy.label:1774 +#: field.acirc.target_copy.label:1841 field.rodcirc.target_copy.label:3809 msgid "Circulating Item" msgstr "" -#: field.rocit.author.label:3797 +#: field.rocit.author.label:3845 msgid "Author" msgstr "" -#: field.ahr.email_notify.label:2141 +#: field.ahr.email_notify.label:2188 msgid "Notify by Email?" msgstr "" -#: field.circ.payment_total.label:1683 field.combcirc.payment_total.label:1738 -#: field.acirc.payment_total.label:1805 field.mg.payment_total.label:2465 -#: field.mbt.payment_total.label:2503 field.rodcirc.payment_total.label:3770 +#: field.circ.payment_total.label:1729 field.combcirc.payment_total.label:1784 +#: field.acirc.payment_total.label:1851 field.mg.payment_total.label:2512 +#: field.mbt.payment_total.label:2551 field.rodcirc.payment_total.label:3818 msgid "Payment Totals" msgstr "" -#: field.rccc.patron_id.label:3597 +#: field.rccc.patron_id.label:3645 msgid "Patron Link" msgstr "" -#: field.ccmcmt.id.label:584 +#: field.ccmcmt.id.label:622 msgid "Test ID" msgstr "" -#: field.mp.goods_payment.label:3033 field.mbp.goods_payment.label:3064 -#: field.mndp.goods_payment.label:3091 +#: field.mp.goods_payment.label:3081 field.mbp.goods_payment.label:3112 +#: field.mndp.goods_payment.label:3139 msgid "Goods Payment Detail" msgstr "" -#: field.au.notes.label:1285 +#: field.au.notes.label:1323 msgid "User Notes" msgstr "" -#: field.acn.notes.label:998 +#: field.acn.notes.label:1036 msgid "Notes" msgstr "" -#: class.rmsr.label:3411 +#: class.rmsr.label:3459 msgid "Fast Simple Record Extracts" msgstr "" #: field.vqbra.attr_value.label:230 field.vqara.attr_value.label:361 -#: field.aus.value.label:691 field.asce.value.label:3150 +#: field.aus.value.label:729 field.asce.value.label:3198 msgid "Value" msgstr "" -#: field.bre.tcn_source.label:1082 field.rmsr.tcn_source.label:3419 -#: field.rssr.tcn_source.label:3441 field.rsr.tcn_source.label:3464 +#: field.bre.tcn_source.label:1120 field.rmsr.tcn_source.label:3467 +#: field.rssr.tcn_source.label:3489 field.rsr.tcn_source.label:3512 msgid "TCN Source" msgstr "" -#: class.rsce1.label:3624 +#: class.rsce1.label:3672 msgid "CAT1 Entry" msgstr "" -#: field.mrd.enc_level.label:1520 +#: field.mrd.enc_level.label:1558 msgid "ELvl" msgstr "" -#: field.ahtc.dest.label:3163 +#: field.ahtc.dest.label:3211 msgid "Destination Library" msgstr "" -#: class.aufh.label:2879 +#: class.aufh.label:2927 msgid "Unfulfilled Hold Targets" msgstr "" -#: field.rocit.creator.label:3818 +#: field.rocit.creator.label:3866 msgid "Creator" msgstr "" -#: field.rccc.dewey_range_hundreds.label:3606 +#: field.rccc.dewey_range_hundreds.label:3654 msgid "Dewey Range -- Hundreds" msgstr "" -#: field.rccc.copy_id.label:3584 +#: field.rccc.copy_id.label:3632 msgid "Copy Link" msgstr "" -#: field.ahr.selection_ou.label:2156 +#: field.ahr.selection_ou.label:2203 msgid "Selection Locus" msgstr "" -#: field.rsr.series_statement.label:3472 +#: field.rsr.series_statement.label:3520 msgid "Series Statement (normalized)" msgstr "" -#: class.rccbs.label:3652 +#: class.rccbs.label:3700 msgid "Classic Open Transaction Summary" msgstr "" -#: class.cnct.label:2372 +#: class.cnct.label:2419 msgid "Non-cataloged Type" msgstr "" -#: field.asvq.question.label:632 field.asvr.question.label:787 -#: field.asva.question.label:2839 +#: field.asvq.question.label:670 field.asvr.question.label:825 +#: field.asva.question.label:2887 msgid "Question" msgstr "" -#: field.ahtc.prev_hop.label:3168 +#: field.ahtc.prev_hop.label:3216 msgid "Previous Stop" msgstr "" -#: field.bre.tcn_value.label:1083 field.rmsr.tcn_value.label:3420 -#: field.rssr.tcn_value.label:3442 field.rsr.tcn_value.label:3465 +#: field.bre.tcn_value.label:1121 field.rmsr.tcn_value.label:3468 +#: field.rssr.tcn_value.label:3490 field.rsr.tcn_value.label:3513 msgid "TCN Value" msgstr "" -#: class.ahn.label:1884 +#: class.ahn.label:1930 msgid "Hold Notification" msgstr "" -#: field.rcirct.id.label:3507 field.rmocbbol.id.label:3845 -#: field.rmocbbcol.id.label:3875 field.rmocbbhol.id.label:3909 +#: field.rcirct.id.label:3555 field.rmocbbol.id.label:3893 +#: field.rmocbbcol.id.label:3923 field.rmocbbhol.id.label:3957 msgid "Circulation ID" msgstr "" -#: field.circ.opac_renewal.label:1666 field.combcirc.opac_renewal.label:1721 -#: field.acirc.opac_renewal.label:1788 field.rodcirc.opac_renewal.label:3754 +#: field.circ.opac_renewal.label:1712 field.combcirc.opac_renewal.label:1767 +#: field.acirc.opac_renewal.label:1834 field.rodcirc.opac_renewal.label:3802 msgid "OPAC Renewal" msgstr "" -#: field.rsr.topic_subject.label:3476 +#: field.rsr.topic_subject.label:3524 msgid "Topic Subjects (normalized)" msgstr "" -#: field.rccbs.barcode.label:3667 +#: field.rccbs.barcode.label:3715 msgid "User Barcode" msgstr "" -#: field.au.profile.label:1276 +#: field.au.profile.label:1314 msgid "Main (Profile) Permission Group" msgstr "" -#: field.mfr.subfield.label:1376 +#: field.mfr.subfield.label:1414 msgid "Subfield" msgstr "" -#: field.acn.creator.label:990 field.acp.creator.label:2727 +#: field.acn.creator.label:1028 field.acp.creator.label:2775 msgid "Creating User" msgstr "" -#: field.acp.holdable.label:2736 +#: field.acp.holdable.label:2784 msgid "Is Holdable" msgstr "" -#: field.rocit.tcn_value.label:3824 +#: field.czs.auth.label:435 +msgid "Auth" +msgstr "" + +#: field.rocit.tcn_value.label:3872 msgid "TCN" msgstr "" -#: field.acn.editor.label:993 field.bre.editor.label:1075 -#: field.acp.editor.label:2734 +#: field.acn.editor.label:1031 field.bre.editor.label:1113 +#: field.acp.editor.label:2782 msgid "Last Editing User" msgstr "" -#: field.circ.max_fine.label:1664 field.combcirc.max_fine.label:1719 -#: field.acirc.max_fine.label:1786 field.crmf.amount.label:2797 -#: field.rodcirc.max_fine.label:3752 +#: field.circ.max_fine.label:1710 field.combcirc.max_fine.label:1765 +#: field.acirc.max_fine.label:1832 field.crmf.amount.label:2845 +#: field.rodcirc.max_fine.label:3800 msgid "Max Fine Amount" msgstr "" -#: field.ahtc.copy_status.label:3162 +#: field.ahtc.copy_status.label:3210 msgid "Copy Status at Transit" msgstr "" -#: field.aou.settings.label:2204 +#: field.aou.settings.label:2251 msgid "Settings" msgstr "" -#: field.ahr.hold_type.label:2146 +#: field.ahr.hold_type.label:2193 msgid "Hold Type" msgstr "" @@ -1720,11 +1753,11 @@ msgstr "" msgid "Queue" msgstr "" -#: field.mp.credit_payment.label:3029 field.mbp.credit_payment.label:3060 +#: field.mp.credit_payment.label:3077 field.mbp.credit_payment.label:3108 msgid "Credit Payment Detail" msgstr "" -#: field.ahr.request_time.label:2153 +#: field.ahr.request_time.label:2200 msgid "Request Date/Time" msgstr "" @@ -1732,92 +1765,92 @@ msgstr "" msgid "Queued Record" msgstr "" -#: field.rccbs.xact_finish.label:3671 +#: field.rccbs.xact_finish.label:3719 msgid "Transaction End Date/Time" msgstr "" -#: field.mrd.bib_level.label:1516 +#: field.mrd.bib_level.label:1554 msgid "BLvl" msgstr "" -#: field.aou.workstations.label:2207 +#: field.aou.workstations.label:2254 msgid "Workstations" msgstr "" -#: field.au.hold_requests.label:1239 +#: field.au.hold_requests.label:1277 msgid "All Hold Requests" msgstr "" -#: field.au.master_account.label:1270 +#: field.au.master_account.label:1308 msgid "Is Group Lead Account" msgstr "" -#: class.ccmm.label:514 +#: class.ccmm.label:552 msgid "Circulation Matrix Matchpoint" msgstr "" -#: field.aihu.use_time.label:721 field.ancihu.use_time.label:738 +#: field.aihu.use_time.label:759 field.ancihu.use_time.label:776 msgid "Use Date/Time" msgstr "" -#: field.mfr.value.label:1378 +#: field.mfr.value.label:1416 msgid "Normalized Value" msgstr "" -#: field.ccmt.circulate.label:567 +#: field.ccmt.circulate.label:605 msgid "Circulate?" msgstr "" -#: class.cxt.label:901 +#: class.cxt.label:939 msgid "XML/XSLT Transform Definition" msgstr "" -#: field.mcrp.accepting_usr.label:2339 field.mwp.accepting_usr.label:2583 -#: field.mgp.accepting_usr.label:2604 field.mckp.accepting_usr.label:2692 +#: field.mcrp.accepting_usr.label:2386 field.mwp.accepting_usr.label:2631 +#: field.mgp.accepting_usr.label:2652 field.mckp.accepting_usr.label:2740 msgid "Accepting Staff Member" msgstr "" -#: field.rccc.demographic_general_division.label:3593 +#: field.rccc.demographic_general_division.label:3641 msgid "Patron Age Demographic" msgstr "" -#: class.ccmcmt.label:579 +#: class.ccmcmt.label:617 msgid "Circulation Matrix Circulation Modifier Subtest" msgstr "" -#: field.rsr.corporate_subject.label:3480 +#: field.rsr.corporate_subject.label:3528 msgid "Corporate Name Subjects (normalized)" msgstr "" -#: field.acp.dummy_author.label:2731 +#: field.acp.dummy_author.label:2779 msgid "Precat Dummy Author" msgstr "" -#: class.rodcirc.label:3736 +#: class.rodcirc.label:3784 msgid "Overdue Circulation" msgstr "" -#: field.bre.active.label:1070 +#: field.bre.active.label:1108 msgid "Is Active?" msgstr "" -#: field.ccmm.org_unit.label:521 +#: field.ccmm.org_unit.label:559 msgid "Org Unit" msgstr "" -#: field.crahp.prox.label:2788 +#: field.crahp.prox.label:2836 msgid "Allowed Proximity" msgstr "" -#: field.ahr.fulfillment_time.label:2145 +#: field.ahr.fulfillment_time.label:2192 msgid "Fulfillment Date/Time" msgstr "" -#: field.mg.note.label:2457 field.mwp.note.label:2587 -#: field.mgp.note.label:2608 field.mckp.note.label:2698 -#: field.mp.note.label:3022 field.mbp.note.label:3053 -#: field.mndp.note.label:3084 field.mdp.note.label:3107 -#: field.mb.note.label:3202 +#: field.mg.note.label:2504 field.mwp.note.label:2635 +#: field.mgp.note.label:2656 field.mckp.note.label:2746 +#: field.mp.note.label:3070 field.mbp.note.label:3101 +#: field.mndp.note.label:3132 field.mdp.note.label:3155 +#: field.mb.note.label:3250 msgid "Note" msgstr "" @@ -1825,35 +1858,35 @@ msgstr "" msgid "Queued Bib Record" msgstr "" -#: field.rocit.stat_cat_1.label:3808 +#: field.rocit.stat_cat_1.label:3856 msgid "Legacy Stat Cat 1" msgstr "" -#: field.rocit.stat_cat_2.label:3809 +#: field.rocit.stat_cat_2.label:3857 msgid "Legacy Stat Cat 2" msgstr "" -#: field.aua.id.label:1585 +#: field.aua.id.label:1623 msgid "Address ID" msgstr "" -#: field.rccbs.patron_county.label:3686 +#: field.rccbs.patron_county.label:3734 msgid "User County" msgstr "" -#: field.rocit.circ_lib.label:3817 +#: field.rocit.circ_lib.label:3865 msgid "Circ Lib" msgstr "" -#: field.chmt.include_frozen_holds.label:552 +#: field.chmt.include_frozen_holds.label:590 msgid "Max includes Frozen" msgstr "" -#: field.acn.id.label:994 +#: field.acn.id.label:1032 msgid "Call Number/Volume ID" msgstr "" -#: field.aout.opac_label.label:2398 +#: field.aout.opac_label.label:2445 msgid "OPAC Label" msgstr "" @@ -1861,87 +1894,87 @@ msgstr "" msgid "Queued Authority Record" msgstr "" -#: class.au.label:1231 +#: class.au.label:1269 msgid "ILS User" msgstr "" -#: class.asvq.label:624 +#: class.asvq.label:662 msgid "User Survey Question" msgstr "" -#: field.circ.phone_renewal.label:1667 field.combcirc.phone_renewal.label:1722 -#: field.acirc.phone_renewal.label:1789 field.rodcirc.phone_renewal.label:3755 +#: field.circ.phone_renewal.label:1713 field.combcirc.phone_renewal.label:1768 +#: field.acirc.phone_renewal.label:1835 field.rodcirc.phone_renewal.label:3803 msgid "Phone Renewal" msgstr "" -#: field.combcirc.usr_home_ou.label:1739 field.acirc.usr_home_ou.label:1806 +#: field.combcirc.usr_home_ou.label:1785 field.acirc.usr_home_ou.label:1852 msgid "Patron Home Library" msgstr "" -#: field.chmm.requestor_grp.label:491 +#: field.chmm.requestor_grp.label:529 msgid "Requestor Permission Group" msgstr "" -#: field.bre.quality.label:1080 +#: field.bre.quality.label:1118 msgid "Overall Quality" msgstr "" -#: field.au.active.label:1247 field.sra.active.label:1983 +#: field.au.active.label:1285 field.sra.active.label:2030 msgid "Active" msgstr "" -#: field.mdp.cash_payment.label:3114 +#: field.mdp.cash_payment.label:3162 msgid "Cash Payment" msgstr "" -#: class.cblvl.label:1959 +#: class.cblvl.label:2006 msgid "Bib Level Map" msgstr "" -#: field.cxt.xslt.label:910 +#: field.cxt.xslt.label:948 msgid "XSLT" msgstr "" -#: field.au.addresses.label:1236 +#: field.au.addresses.label:1274 msgid "All Addresses" msgstr "" -#: class.sra.label:1977 +#: class.sra.label:2024 msgid "Relevance Adjustment" msgstr "" -#: field.ccmm.usr_age_upper_bound.label:529 +#: field.ccmm.usr_age_upper_bound.label:567 msgid "User Age: Upper Bound" msgstr "" -#: field.ahr.fulfillment_lib.label:2143 +#: field.ahr.fulfillment_lib.label:2190 msgid "Fulfilling Library" msgstr "" -#: field.aua.post_code.label:1586 +#: field.aua.post_code.label:1624 msgid "Postal Code" msgstr "" -#: field.rocit.shelving_location.label:3807 +#: field.rocit.shelving_location.label:3855 msgid "Shelving Location Name" msgstr "" -#: field.mb.voider.label:3205 +#: field.mb.voider.label:3253 msgid "Voiding Staff Member" msgstr "" -#: field.mcrp.note.label:2343 +#: field.mcrp.note.label:2390 msgid "Payment Note" msgstr "" -#: field.amtr.matchpoint.label:128 field.chmm.id.label:483 -#: field.ccmm.id.label:519 field.chmt.matchpoint.label:547 -#: field.ccmt.matchpoint.label:566 field.ccmcmt.matchpoint.label:585 -#: field.ccmrs.matchpoint.label:600 +#: field.amtr.matchpoint.label:128 field.chmm.id.label:521 +#: field.ccmm.id.label:557 field.chmt.matchpoint.label:585 +#: field.ccmt.matchpoint.label:604 field.ccmcmt.matchpoint.label:623 +#: field.ccmrs.matchpoint.label:638 msgid "Matchpoint ID" msgstr "" -#: field.mbts.total_paid.label:655 field.rccbs.total_paid.label:3674 +#: field.mbts.total_paid.label:693 field.rccbs.total_paid.label:3722 msgid "Total Paid" msgstr "" @@ -1949,88 +1982,92 @@ msgstr "" msgid "Field" msgstr "" -#: field.ahtc.transit_copy.label:3172 +#: field.ahtc.transit_copy.label:3220 msgid "Base Transit" msgstr "" -#: field.ccmt.max_fines.label:570 +#: field.ccmt.max_fines.label:608 msgid "Max Fines" msgstr "" -#: field.aufh.fail_time.label:2886 +#: field.aufh.fail_time.label:2934 msgid "Retargeting Date/Time" msgstr "" -#: field.au.performed_circulations.label:1289 None:1316 +#: field.acpl.owning_lib.label:1958 +msgid "Owning Org Unit" +msgstr "" + +#: field.au.performed_circulations.label:1327 None:1354 msgid "Circulations Performed as Staff" msgstr "" -#: field.asvr.id.label:786 field.asva.id.label:2838 +#: field.asvr.id.label:824 field.asva.id.label:2886 msgid "Answer ID" msgstr "" -#: field.mcrp.payment.label:2347 field.mwp.payment.label:2590 -#: field.mgp.payment.label:2611 field.mckp.payment.label:2701 +#: field.mcrp.payment.label:2394 field.mwp.payment.label:2638 +#: field.mgp.payment.label:2659 field.mckp.payment.label:2749 msgid "Payment link" msgstr "" -#: field.rmobbol.billing_types.label:3862 -#: field.rmobbcol.billing_types.label:3895 -#: field.rmobbhol.billing_types.label:3929 +#: field.rmobbol.billing_types.label:3910 +#: field.rmobbcol.billing_types.label:3943 +#: field.rmobbhol.billing_types.label:3977 msgid "Billing Types" msgstr "" -#: field.aua.city.label:1582 +#: field.aua.city.label:1620 msgid "City" msgstr "" -#: field.acpl.holdable.label:1907 +#: field.acpl.holdable.label:1953 msgid "Is Holdable?" msgstr "" -#: field.bre.create_date.label:1071 field.au.create_date.label:1253 -#: field.circ.create_time.label:1677 field.combcirc.create_time.label:1732 -#: field.acirc.create_time.label:1799 +#: field.bre.create_date.label:1109 field.au.create_date.label:1291 +#: field.circ.create_time.label:1723 field.combcirc.create_time.label:1778 +#: field.acirc.create_time.label:1845 msgid "Record Creation Date/Time" msgstr "" -#: field.acp.holds.label:2748 +#: field.acp.holds.label:2796 msgid "Holds" msgstr "" -#: field.chmm.request_ou.label:486 +#: field.chmm.request_ou.label:524 msgid "Request Library" msgstr "" -#: field.rccc.patron_city.label:3601 +#: field.rccc.patron_city.label:3649 msgid "Patron City" msgstr "" -#: field.aou.children.label:2188 +#: field.aou.children.label:2235 msgid "Subordinate Organizational Units" msgstr "" -#: field.asva.responses.label:2836 +#: field.asva.responses.label:2884 msgid "Responses using this Answer" msgstr "" -#: field.ahr.thaw_date.label:2166 +#: field.ahr.thaw_date.label:2213 msgid "Thaw Date (if frozen)" msgstr "" -#: field.asvr.usr.label:790 +#: field.asvr.usr.label:828 msgid "Responding User" msgstr "" -#: class.rccc.label:3574 +#: class.rccc.label:3622 msgid "Classic Circulation View" msgstr "" -#: field.ahr.frozen.label:2165 +#: field.ahr.frozen.label:2212 msgid "Currently Frozen" msgstr "" -#: field.aihu.id.label:717 field.ancihu.id.label:734 +#: field.aihu.id.label:755 field.ancihu.id.label:772 msgid "Use ID" msgstr "" @@ -2038,162 +2075,166 @@ msgstr "" msgid "Complete" msgstr "" -#: field.atc.dest_recv_time.label:753 field.ahtc.dest_recv_time.label:3164 -#: field.iatc.dest_recv_time.label:3718 +#: field.atc.dest_recv_time.label:791 field.ahtc.dest_recv_time.label:3212 +#: field.iatc.dest_recv_time.label:3766 msgid "Receive Date/Time" msgstr "" -#: field.asv.poll.label:2084 +#: field.asv.poll.label:2131 msgid "Poll Style?" msgstr "" -#: field.rmsr.pubdate.label:3424 field.rssr.pubdate.label:3446 -#: field.rsr.pubdate.label:3470 +#: field.rmsr.pubdate.label:3472 field.rssr.pubdate.label:3494 +#: field.rsr.pubdate.label:3518 msgid "Publication Year (normalized)" msgstr "" -#: field.cnct.id.label:2378 +#: field.cnct.id.label:2425 msgid "Non-cat Type ID" msgstr "" -#: field.asva.answer.label:2837 +#: field.asva.answer.label:2885 msgid "Answer Text" msgstr "" -#: field.aou.holds_address.label:2190 +#: field.aou.holds_address.label:2237 msgid "Holds Receiving Address" msgstr "" -#: field.acpn.owning_copy.label:1341 +#: field.acpn.owning_copy.label:1379 msgid "Copy" msgstr "" -#: field.aout.can_have_vols.label:2394 +#: field.aout.can_have_vols.label:2441 msgid "Can Have Volumes?" msgstr "" -#: field.vqbr.id.label:168 field.vqar.id.label:301 field.bre.id.label:1077 -#: field.aufh.id.label:2888 field.rmsr.id.label:3416 field.rssr.id.label:3438 -#: field.rsr.id.label:3460 +#: field.vqbr.id.label:168 field.vqar.id.label:301 field.bre.id.label:1115 +#: field.aufh.id.label:2936 field.rmsr.id.label:3464 field.rssr.id.label:3486 +#: field.rsr.id.label:3508 msgid "Record ID" msgstr "" -#: class.cam.label:946 +#: class.cam.label:984 msgid "Audience Map" msgstr "" -#: field.rocit.stop_fines.label:3826 +#: field.rocit.stop_fines.label:3874 msgid "Stop Fines Reason" msgstr "" -#: field.au.email.label:1257 field.aou.email.label:2198 +#: field.au.email.label:1295 field.aou.email.label:2245 msgid "Email Address" msgstr "" -#: field.clfm.description.label:2565 +#: field.clfm.description.label:2613 msgid "LitF Description" msgstr "" -#: field.au.passwd.label:1273 +#: field.au.passwd.label:1311 msgid "Password (obfuscated)" msgstr "" -#: field.mrd.audience.label:1515 +#: field.mrd.audience.label:1553 msgid "Audn" msgstr "" -#: field.cam.value.label:953 +#: field.cam.value.label:991 msgid "Audience" msgstr "" -#: field.aout.parent.label:2399 +#: field.aout.parent.label:2446 msgid "Parent Type" msgstr "" -#: class.rud.label:3489 +#: class.rud.label:3537 msgid "User Demographics" msgstr "" -#: field.atc.prev_hop.label:756 field.iatc.prev_hop.label:3721 +#: field.atc.prev_hop.label:794 field.iatc.prev_hop.label:3769 msgid "Previous Hop (unused)" msgstr "" -#: field.vqbrad.id.label:201 field.vqarad.id.label:332 field.sra.id.label:1982 -#: field.ssr.id.label:2060 +#: field.vqbrad.id.label:201 field.vqarad.id.label:332 field.sra.id.label:2029 +#: field.ssr.id.label:2107 msgid "ID" msgstr "" -#: field.aou.users.label:2201 +#: field.aou.users.label:2248 msgid "Users" msgstr "" -#: field.circ.usr.label:1674 field.ancc.patron.label:2855 -#: field.rodcirc.usr.label:3762 +#: field.circ.usr.label:1720 field.ancc.patron.label:2903 +#: field.rodcirc.usr.label:3810 msgid "Patron" msgstr "" -#: class.mcrp.label:2334 +#: class.mcrp.label:2381 msgid "House Credit Payment" msgstr "" -#: field.atc.source.label:757 field.iatc.source.label:3722 +#: field.atc.source.label:795 field.iatc.source.label:3770 msgid "Source" msgstr "" -#: field.chmt.age_hold_protect_rule.label:553 +#: field.chmt.age_hold_protect_rule.label:591 msgid "Copy Age Hold Protection Rule" msgstr "" -#: field.cxt.prefix.label:909 +#: field.cxt.prefix.label:947 msgid "Namespace Prefix" msgstr "" -#: field.au.cards.label:1237 +#: field.au.cards.label:1275 msgid "All Library Cards" msgstr "" -#: field.rxpt.voided.label:3550 +#: field.rxpt.voided.label:3598 msgid "Voided (Returned) Paid Amount" msgstr "" -#: class.rmocbbhol.label:3904 +#: class.rmocbbhol.label:3952 msgid "Open Circulation Billing by User Home Library and Owning Library" msgstr "" -#: field.mbts.last_billing_note.label:648 -#: field.rccbs.last_billing_note.label:3682 +#: field.mbts.last_billing_note.label:686 +#: field.rccbs.last_billing_note.label:3730 msgid "Last Billing Note" msgstr "" -#: field.rccbs.billing_location.label:3661 +#: field.czs.port.label:431 +msgid "Port" +msgstr "" + +#: field.rccbs.billing_location.label:3709 msgid "Billing Location Link" msgstr "" -#: field.mrd.cat_form.label:1517 +#: field.mrd.cat_form.label:1555 msgid "Cat Form" msgstr "" -#: class.combcirc.label:1703 +#: class.combcirc.label:1749 msgid "Combined Aged and Active Circulations" msgstr "" -#: field.atc.dest.label:752 field.iatc.dest.label:3717 +#: field.atc.dest.label:790 field.iatc.dest.label:3765 msgid "Destination" msgstr "" -#: field.au.evening_phone.label:1258 +#: field.au.evening_phone.label:1296 msgid "Evening Phone" msgstr "" -#: field.au.ident_type.label:1264 +#: field.au.ident_type.label:1302 msgid "Primary Identification Type" msgstr "" -#: class.rmobbol.label:3856 +#: class.rmobbol.label:3904 msgid "Open Circulation Balance by Owning Library" msgstr "" -#: field.mg.billing_location.label:2455 +#: field.mg.billing_location.label:2502 msgid "Billing Location" msgstr "" @@ -2201,39 +2242,39 @@ msgstr "" msgid "Final Target Record" msgstr "" -#: class.mndp.label:3077 +#: class.mndp.label:3125 msgid "Payments: Non-drawer Staff" msgstr "" -#: field.pgt.name.label:2812 +#: field.pgt.name.label:2860 msgid "Group Name" msgstr "" -#: field.aout.can_have_users.label:2393 +#: field.aout.can_have_users.label:2440 msgid "Can Have Users?" msgstr "" -#: field.rocit.stat_cat_2_value.label:3811 +#: field.rocit.stat_cat_2_value.label:3859 msgid "Legacy Stat Cat 2 Value" msgstr "" -#: field.chmt.distance_is_from_owner.label:549 +#: field.chmt.distance_is_from_owner.label:587 msgid "Range is from Owning Lib?" msgstr "" -#: field.rocit.use_count.label:3805 +#: field.rocit.use_count.label:3853 msgid "Use Count" msgstr "" -#: field.chmm.item_circ_ou.label:489 +#: field.chmm.item_circ_ou.label:527 msgid "Item Circ Library" msgstr "" -#: field.mckp.xact.label:2700 +#: field.mckp.xact.label:2748 msgid "Transaction link" msgstr "" -#: field.mbt.circulation.label:2499 +#: field.mbt.circulation.label:2547 msgid "Circulation Billing link" msgstr "" @@ -2245,7 +2286,7 @@ msgstr "" msgid "Purpose" msgstr "" -#: field.bre.author_field_entries.label:1090 +#: field.bre.author_field_entries.label:1128 msgid "Indexed Author Field Entries" msgstr "" @@ -2253,23 +2294,23 @@ msgstr "" msgid "Remove RegExp" msgstr "" -#: field.aou.phone.label:2199 +#: field.aou.phone.label:2246 msgid "Phone Number" msgstr "" -#: field.acn.create_date.label:989 +#: field.acn.create_date.label:1027 msgid "Create Date/Time" msgstr "" -#: class.atc.label:746 +#: class.atc.label:784 msgid "Copy Transit" msgstr "" -#: field.au.super_user.label:1280 +#: field.au.super_user.label:1318 msgid "Is Super User" msgstr "" -#: class.mfr.label:1367 +#: class.mfr.label:1405 msgid "Flattened MARC Fields" msgstr "" @@ -2277,11 +2318,11 @@ msgstr "" msgid "Attributes" msgstr "" -#: field.chmt.holdable.label:548 +#: field.chmt.holdable.label:586 msgid "Holdable?" msgstr "" -#: field.acp.circ_as_type.label:2721 +#: field.acp.circ_as_type.label:2769 msgid "Circulation Type (MARC)" msgstr "" @@ -2289,7 +2330,7 @@ msgstr "" msgid "Staff Member" msgstr "" -#: field.aws.id.label:428 +#: field.aws.id.label:466 msgid "Workstation ID" msgstr "" @@ -2297,69 +2338,77 @@ msgstr "" msgid "Import/Overlay Bib Queue" msgstr "" -#: field.atc.persistant_transfer.label:755 -#: field.iatc.persistant_transfer.label:3720 +#: field.atc.persistant_transfer.label:793 +#: field.iatc.persistant_transfer.label:3768 msgid "Is Persistent? (unused)" msgstr "" -#: field.rccc.patron_zip.label:3602 +#: field.rccc.patron_zip.label:3650 msgid "Patron ZIP Code" msgstr "" -#: field.ahtc.persistant_transfer.label:3167 +#: field.ahtc.persistant_transfer.label:3215 msgid "Is Persistent?" msgstr "" -#: field.au.net_access_level.label:1271 +#: field.au.net_access_level.label:1309 msgid "Internet Access Level" msgstr "" -#: class.rmocbbcol.label:3870 +#: field.rsr.name_subject.label:3527 +msgid "Personal Name Subjects (normalized)" +msgstr "" + +#: class.rmocbbcol.label:3918 msgid "Open Circulation Billing by Circulating Library and Owning Library" msgstr "" -#: field.rccbs.patron_zip.label:3688 +#: field.rccbs.patron_zip.label:3736 msgid "User ZIP Code" msgstr "" -#: field.mcrp.payment_type.label:2346 field.mwp.payment_type.label:2591 -#: field.mgp.payment_type.label:2612 field.mckp.payment_type.label:2702 -#: field.mp.payment_type.label:3024 field.mbp.payment_type.label:3055 -#: field.mndp.payment_type.label:3086 field.mdp.payment_type.label:3109 +#: field.mcrp.payment_type.label:2393 field.mwp.payment_type.label:2639 +#: field.mgp.payment_type.label:2660 field.mckp.payment_type.label:2750 +#: field.mp.payment_type.label:3072 field.mbp.payment_type.label:3103 +#: field.mndp.payment_type.label:3134 field.mdp.payment_type.label:3157 msgid "Payment Type" msgstr "" -#: field.mdp.credit_card_payment.label:3115 +#: field.mdp.credit_card_payment.label:3163 msgid "Credit Card Payment" msgstr "" -#: field.au.usrgroup.label:1281 +#: field.au.usrgroup.label:1319 msgid "Family Linkage or other Group" msgstr "" -#: field.ahn.id.label:1890 +#: field.ahn.id.label:1936 msgid "Notification ID" msgstr "" -#: field.rccbs.last_billing_ts.label:3681 +#: field.rccbs.last_billing_ts.label:3729 msgid "Last Billing Date/Time" msgstr "" -#: field.mcrp.amount_collected.label:2341 -#: field.mwp.amount_collected.label:2585 field.mgp.amount_collected.label:2606 -#: field.mckp.amount_collected.label:2694 +#: field.mcrp.amount_collected.label:2388 +#: field.mwp.amount_collected.label:2633 field.mgp.amount_collected.label:2654 +#: field.mckp.amount_collected.label:2742 msgid "Amount Collected" msgstr "" -#: field.ahr.current_copy.label:2140 +#: field.ahr.current_copy.label:2187 msgid "Currently Targeted Copy" msgstr "" -#: field.aout.depth.label:2395 +#: field.aout.depth.label:2442 msgid "Type Depth" msgstr "" -#: field.rccc.stat_cat_1_value.label:3609 +#: field.mbt.unrecovered.label:2545 +msgid "Unrecovered Debt" +msgstr "" + +#: field.rccc.stat_cat_1_value.label:3657 msgid "Legacy CAT1 Value" msgstr "" @@ -2367,20 +2416,20 @@ msgstr "" msgid "User Sharing Opt-in" msgstr "" -#: field.combcirc.usr_profile.label:1740 field.acirc.usr_profile.label:1807 -#: field.rccc.profile_group.label:3592 +#: field.combcirc.usr_profile.label:1786 field.acirc.usr_profile.label:1853 +#: field.rccc.profile_group.label:3640 msgid "Patron Profile Group" msgstr "" -#: field.rccbs.usr_home_ou_shortname.label:3663 +#: field.rccbs.usr_home_ou_shortname.label:3711 msgid "User Home Library Short (Policy) Name" msgstr "" -#: field.au.dob.label:1256 field.rud.dob.label:3495 +#: field.au.dob.label:1294 field.rud.dob.label:3543 msgid "Date of Birth" msgstr "" -#: field.aun.title.label:674 field.acpn.title.label:1343 +#: field.aun.title.label:712 field.acpn.title.label:1381 msgid "Note Title" msgstr "" @@ -2388,20 +2437,20 @@ msgstr "" msgid "Opt-in ID" msgstr "" -#: field.asvq.answers.label:629 +#: field.asvq.answers.label:667 msgid "Answers" msgstr "" -#: field.combcirc.copy_owning_lib.label:1744 -#: field.acirc.copy_owning_lib.label:1811 +#: field.combcirc.copy_owning_lib.label:1790 +#: field.acirc.copy_owning_lib.label:1857 msgid "Copy Owning Library" msgstr "" -#: field.ccmcmt.items_out.label:586 +#: field.ccmcmt.items_out.label:624 msgid "Items Out" msgstr "" -#: field.bre.creator.label:1072 +#: field.bre.creator.label:1110 msgid "Record Creator" msgstr "" @@ -2409,89 +2458,97 @@ msgstr "" msgid "Field Type" msgstr "" -#: field.acpl.id.label:1908 +#: field.cza.truncation.label:454 +msgid "Truncation" +msgstr "" + +#: field.acpl.id.label:1955 msgid "Location ID" msgstr "" -#: field.rocit.patron_barcode.label:3828 +#: field.rocit.patron_barcode.label:3876 msgid "Patron Barcode" msgstr "" -#: field.rccc.owning_lib_name.label:3586 +#: field.pgt.parent.label:2861 +msgid "Parent Group" +msgstr "" + +#: field.rccc.owning_lib_name.label:3634 msgid "Owning Library Short (Policy) Name" msgstr "" -#: class.ancc.label:2846 +#: class.ancc.label:2894 msgid "Non-cataloged Circulation" msgstr "" -#: class.asva.label:2831 +#: class.asva.label:2879 msgid "Survey Answer" msgstr "" -#: class.mbt.label:2489 field.mp.xact.label:3025 field.mbp.xact.label:3056 -#: field.mndp.xact.label:3087 field.mdp.xact.label:3110 +#: class.mbt.label:2536 field.mp.xact.label:3073 field.mbp.xact.label:3104 +#: field.mndp.xact.label:3135 field.mdp.xact.label:3158 msgid "Billable Transaction" msgstr "" -#: field.rccc.patron_home_lib.label:3598 +#: field.rccc.patron_home_lib.label:3646 msgid "Patron Home Library Link" msgstr "" -#: field.ahr.transit.label:2138 +#: field.ahr.transit.label:2185 msgid "Transit" msgstr "" -#: field.circ.billings.label:1678 field.combcirc.billings.label:1733 -#: field.acirc.billings.label:1800 field.rodcirc.billings.label:3765 +#: field.circ.billings.label:1724 field.combcirc.billings.label:1779 +#: field.acirc.billings.label:1846 field.rodcirc.billings.label:3813 msgid "Transaction Billings" msgstr "" -#: field.au.photo_url.label:1274 +#: field.au.photo_url.label:1312 msgid "Photo URL" msgstr "" -#: class.mp.label:3015 +#: class.mp.label:3063 msgid "Payments: All" msgstr "" -#: field.asv.questions.label:2076 +#: field.asv.questions.label:2123 msgid "Questions" msgstr "" -#: field.crmf.is_percent.label:2800 +#: field.crmf.is_percent.label:2848 msgid "Is Percent" msgstr "" -#: field.cifm.code.label:970 +#: field.cifm.code.label:1008 msgid "Item Form Code" msgstr "" -#: field.clfm.value.label:2566 +#: field.clfm.value.label:2614 msgid "LitF Name" msgstr "" -#: field.aun.value.label:676 field.acpn.value.label:1344 +#: field.aun.value.label:714 field.acpn.value.label:1382 msgid "Note Content" msgstr "" -#: field.asv.start_date.label:2086 +#: field.asv.start_date.label:2133 msgid "Survey Start Date/Time" msgstr "" -#: field.au.checkouts.label:1238 +#: field.au.checkouts.label:1276 msgid "All Circulations" msgstr "" -#: field.aws.name.label:429 +#: field.aws.name.label:467 msgid "Workstation Name" msgstr "" -#: field.mckp.check_number.label:2696 +#: field.mckp.check_number.label:2744 msgid "Check Number" msgstr "" -#: field.rsr.summary.label:3473 +#: field.rsr.summary.label:3521 msgid "Summary (normalized)" msgstr "" @@ -2499,11 +2556,11 @@ msgstr "" msgid "Queue ID" msgstr "" -#: field.au.ident_value.label:1266 +#: field.au.ident_value.label:1304 msgid "Primary Identification" msgstr "" -#: field.sra.bump.label:1985 +#: field.sra.bump.label:2032 msgid "Bump Type" msgstr "" @@ -2511,182 +2568,182 @@ msgstr "" msgid "Matches" msgstr "" -#: field.mrd.char_encoding.label:1518 +#: field.mrd.char_encoding.label:1556 msgid "Character Encoding" msgstr "" -#: field.mp.work_payment.label:3031 field.mbp.work_payment.label:3062 -#: field.mndp.work_payment.label:3089 +#: field.mp.work_payment.label:3079 field.mbp.work_payment.label:3110 +#: field.mndp.work_payment.label:3137 msgid "Work Payment Detail" msgstr "" -#: field.erfcc.circ_count.label:3564 +#: field.erfcc.circ_count.label:3612 msgid "Total Circulation Count" msgstr "" -#: field.ancc.id.label:2853 +#: field.ancc.id.label:2901 msgid "Non-cat Circulation ID" msgstr "" -#: field.auoi.usr.label:411 field.aun.usr.label:675 field.aus.usr.label:690 -#: field.aua.usr.label:1590 field.ac.usr.label:2279 field.mg.usr.label:2458 -#: field.mbt.usr.label:2495 field.actscecm.target_usr.label:2919 +#: field.auoi.usr.label:411 field.aun.usr.label:713 field.aus.usr.label:728 +#: field.aua.usr.label:1628 field.ac.usr.label:2326 field.mg.usr.label:2505 +#: field.mbt.usr.label:2542 field.actscecm.target_usr.label:2967 msgid "User" msgstr "" -#: field.aua.street1.label:1588 +#: field.aua.street1.label:1626 msgid "Street (1)" msgstr "" -#: field.mg.billings.label:2461 +#: field.mg.billings.label:2508 msgid "Billings" msgstr "" -#: field.mrd.lit_form.label:1525 +#: field.mrd.lit_form.label:1563 msgid "LitF" msgstr "" -#: field.rccbs.billing_location_name.label:3660 +#: field.rccbs.billing_location_name.label:3708 msgid "Billing Location Name" msgstr "" -#: field.circ.stop_fines.label:1671 field.combcirc.stop_fines.label:1726 -#: field.acirc.stop_fines.label:1793 field.rodcirc.stop_fines.label:3759 +#: field.circ.stop_fines.label:1717 field.combcirc.stop_fines.label:1772 +#: field.acirc.stop_fines.label:1839 field.rodcirc.stop_fines.label:3807 msgid "Fine Stop Reason" msgstr "" -#: field.mbt.payments.label:2501 +#: field.mbt.payments.label:2549 msgid "Payment Line Items" msgstr "" -#: field.cxt.namespace_uri.label:908 +#: field.cxt.namespace_uri.label:946 msgid "Namespace URI" msgstr "" -#: field.sra.multiplier.label:1986 +#: field.sra.multiplier.label:2033 msgid "Multiplier" msgstr "" -#: class.rmobbhol.label:3922 +#: class.rmobbhol.label:3970 msgid "Open Circulation Balance by User Home Library and Owning Library" msgstr "" -#: field.aua.valid.label:1591 +#: field.aua.valid.label:1629 msgid "Valid Address?" msgstr "" -#: field.acp.status.label:2743 +#: field.acp.status.label:2791 msgid "Copy Status" msgstr "" -#: field.sra.field.label:1984 +#: field.sra.field.label:2031 msgid "Index Field" msgstr "" -#: field.asvq.survey.label:633 field.asvr.survey.label:789 -#: class.asv.label:2071 +#: field.asvq.survey.label:671 field.asvr.survey.label:827 +#: class.asv.label:2118 msgid "Survey" msgstr "" -#: field.mb.id.label:3201 +#: field.mb.id.label:3249 msgid "Billing ID" msgstr "" -#: field.aou.circulations.label:2203 field.acp.circulations.label:2746 +#: field.aou.circulations.label:2250 field.acp.circulations.label:2794 msgid "Circulations" msgstr "" -#: field.aus.id.label:688 +#: field.aus.id.label:726 msgid "Setting ID" msgstr "" -#: field.rmobbol.balance.label:3863 field.rmobbcol.balance.label:3896 -#: field.rmobbhol.balance.label:3930 +#: field.rmobbol.balance.label:3911 field.rmobbcol.balance.label:3944 +#: field.rmobbhol.balance.label:3978 msgid "Balance" msgstr "" -#: field.au.mailing_address.label:1269 field.aou.mailing_address.label:2193 +#: field.au.mailing_address.label:1307 field.aou.mailing_address.label:2240 msgid "Mailing Address" msgstr "" -#: field.rocit.pubdate.label:3798 +#: field.rocit.pubdate.label:3846 msgid "Pubdate" msgstr "" -#: field.acn.label.label:995 field.rccc.call_number_label.label:3595 +#: field.acn.label.label:1033 field.rccc.call_number_label.label:3643 msgid "Call Number Label" msgstr "" -#: field.au.standing_penalties.label:1242 +#: field.au.standing_penalties.label:1280 msgid "Standing Penalties" msgstr "" -#: field.asv.id.label:2080 +#: field.asv.id.label:2127 msgid "Survey ID" msgstr "" -#: field.bre.metarecord.label:1084 field.rsr.metarecord.label:3461 +#: field.bre.metarecord.label:1122 field.rsr.metarecord.label:3509 msgid "Metarecord" msgstr "" -#: field.aua.county.label:1584 +#: field.aua.county.label:1622 msgid "County" msgstr "" -#: field.au.prefix.label:1275 +#: field.au.prefix.label:1313 msgid "Prefix" msgstr "" -#: field.rccc.patron_county.label:3600 +#: field.rccc.patron_county.label:3648 msgid "Patron County" msgstr "" -#: field.actsce.owner.label:2521 field.asce.owner.label:3148 -#: field.rsce1.owner.label:3630 field.rsce2.owner.label:3644 +#: field.actsce.owner.label:2569 field.asce.owner.label:3196 +#: field.rsce1.owner.label:3678 field.rsce2.owner.label:3692 msgid "Entry Owner" msgstr "" -#: field.rccc.circ_modifier.label:3585 field.rocit.circ_modifier.label:3806 +#: field.rccc.circ_modifier.label:3633 field.rocit.circ_modifier.label:3854 msgid "Circ Modifier" msgstr "" -#: field.rsr.series_title.label:3471 +#: field.rsr.series_title.label:3519 msgid "Series Title (normalized)" msgstr "" -#: field.mbt.grocery.label:2498 +#: field.mbt.grocery.label:2546 msgid "Grocery Billing link" msgstr "" -#: field.actscecm.stat_cat_entry.label:2918 +#: field.actscecm.stat_cat_entry.label:2966 msgid "Entry Text" msgstr "" -#: field.aufh.current_copy.label:2885 +#: field.aufh.current_copy.label:2933 msgid "Non-fulfilling Copy" msgstr "" -#: field.combcirc.copy_location.label:1743 -#: field.acirc.copy_location.label:1810 field.acp.location.label:2739 -#: field.rccc.shelving_location.label:3591 +#: field.combcirc.copy_location.label:1789 +#: field.acirc.copy_location.label:1856 field.acp.location.label:2787 +#: field.rccc.shelving_location.label:3639 msgid "Shelving Location" msgstr "" -#: field.aou.id.label:2191 +#: field.aou.id.label:2238 msgid "Organizational Unit ID" msgstr "" -#: field.chmm.pickup_ou.label:487 field.ahr.pickup_lib.label:2150 +#: field.chmm.pickup_ou.label:525 field.ahr.pickup_lib.label:2197 msgid "Pickup Library" msgstr "" #: field.vqbrad.description.label:203 field.vqarad.description.label:334 -#: field.ccm.description.label:444 field.cam.description.label:952 -#: field.asv.description.label:2078 field.pgt.description.label:2810 +#: field.ccm.description.label:482 field.cam.description.label:990 +#: field.asv.description.label:2125 field.pgt.description.label:2858 msgid "Description" msgstr "" -#: field.bre.keyword_field_entries.label:1087 +#: field.bre.keyword_field_entries.label:1125 msgid "Indexed Keyword Field Entries" msgstr "" @@ -2694,100 +2751,100 @@ msgstr "" msgid "Import Time" msgstr "" -#: field.aufh.circ_lib.label:2884 +#: field.aufh.circ_lib.label:2932 msgid "Non-fulfilling Library" msgstr "" -#: field.au.home_ou.label:1262 +#: field.au.home_ou.label:1300 msgid "Home Library" msgstr "" -#: field.rocit.edit_date.label:3812 +#: field.rocit.edit_date.label:3860 msgid "Edit Date" msgstr "" -#: class.clm.label:855 +#: class.clm.label:893 msgid "Language Map" msgstr "" -#: field.atc.copy_status.label:751 field.iatc.copy_status.label:3716 +#: field.atc.copy_status.label:789 field.iatc.copy_status.label:3764 msgid "Pretransit Copy Status" msgstr "" -#: field.crahp.age.label:2785 +#: field.crahp.age.label:2833 msgid "Item Age" msgstr "" -#: field.au.standing.label:1278 +#: field.au.standing.label:1316 msgid "Standing (unused)" msgstr "" -#: field.rsr.name_subject.label:3479 -msgid "Personal Name Subjects (normalized)" +#: field.czs.attrs.label:436 +msgid "Attrs" msgstr "" -#: field.asv.usr_summary.label:2087 +#: field.asv.usr_summary.label:2134 msgid "Display in User Summary" msgstr "" -#: field.ahn.notify_staff.label:1893 +#: field.ahn.notify_staff.label:1939 msgid "Notifying Staff" msgstr "" -#: field.aua.country.label:1583 +#: field.aua.country.label:1621 msgid "Country" msgstr "" -#: field.circ.checkin_time.label:1655 field.combcirc.checkin_time.label:1710 -#: field.acirc.checkin_time.label:1777 field.rodcirc.checkin_time.label:3743 +#: field.circ.checkin_time.label:1701 field.combcirc.checkin_time.label:1756 +#: field.acirc.checkin_time.label:1823 field.rodcirc.checkin_time.label:3791 msgid "Check In Date/Time" msgstr "" -#: field.mg.payments.label:2462 +#: field.mg.payments.label:2509 msgid "Payments" msgstr "" -#: field.rocit.owning_lib.label:3816 +#: field.rocit.owning_lib.label:3864 msgid "Owning Lib" msgstr "" -#: class.rsce2.label:3638 +#: class.rsce2.label:3686 msgid "CAT2 Entry" msgstr "" -#: field.mbts.last_billing_type.label:650 -#: field.rccbs.last_billing_type.label:3683 +#: field.mbts.last_billing_type.label:688 +#: field.rccbs.last_billing_type.label:3731 msgid "Last Billing Type" msgstr "" -#: field.circ.recuring_fine.label:1668 field.combcirc.recuring_fine.label:1723 -#: field.acirc.recuring_fine.label:1790 field.rodcirc.recuring_fine.label:3756 +#: field.circ.recuring_fine.label:1714 field.combcirc.recuring_fine.label:1769 +#: field.acirc.recuring_fine.label:1836 field.rodcirc.recuring_fine.label:3804 msgid "Recurring Fine Amount" msgstr "" -#: field.asv.end_date.label:2079 +#: field.asv.end_date.label:2126 msgid "Survey End Date/Time" msgstr "" -#: field.mg.xact_start.label:2460 +#: field.mg.xact_start.label:2507 msgid "Transaction Start Timestamp" msgstr "" -#: field.bre.title_field_entries.label:1089 +#: field.bre.title_field_entries.label:1127 msgid "Indexed Title Field Entries" msgstr "" -#: field.aou.closed_dates.label:2202 +#: field.aou.closed_dates.label:2249 msgid "Closed Dates" msgstr "" -#: class.ccm.label:437 field.chmm.circ_modifier.label:492 -#: field.ccmm.circ_modifier.label:523 field.ccmcmt.circ_mod.label:587 -#: field.acp.circ_modifier.label:2723 +#: class.ccm.label:475 field.chmm.circ_modifier.label:530 +#: field.ccmm.circ_modifier.label:561 field.ccmcmt.circ_mod.label:625 +#: field.acp.circ_modifier.label:2771 msgid "Circulation Modifier" msgstr "" -#: field.aou.addresses.label:2205 +#: field.aou.addresses.label:2252 msgid "Addresses" msgstr "" @@ -2799,30 +2856,30 @@ msgstr "" msgid "Opt-in Date/Time" msgstr "" -#: field.circ.desk_renewal.label:1658 field.combcirc.desk_renewal.label:1713 -#: field.acirc.desk_renewal.label:1780 field.rodcirc.desk_renewal.label:3746 +#: field.circ.desk_renewal.label:1704 field.combcirc.desk_renewal.label:1759 +#: field.acirc.desk_renewal.label:1826 field.rodcirc.desk_renewal.label:3794 msgid "Desk Renewal" msgstr "" -#: class.acpn.label:1333 +#: class.acpn.label:1371 msgid "Copy Note" msgstr "" -#: field.citm.code.label:1946 +#: field.citm.code.label:1993 msgid "Item Type Code" msgstr "" -#: field.circ.renewal_remaining.label:1670 -#: field.combcirc.renewal_remaining.label:1725 -#: field.acirc.renewal_remaining.label:1792 -#: field.rodcirc.renewal_remaining.label:3758 +#: field.circ.renewal_remaining.label:1716 +#: field.combcirc.renewal_remaining.label:1771 +#: field.acirc.renewal_remaining.label:1838 +#: field.rodcirc.renewal_remaining.label:3806 msgid "Remaining Renewals" msgstr "" -#: field.mb.void_time.label:3203 +#: field.mb.void_time.label:3251 msgid "Void Timestamp" msgstr "" -#: field.au.billable_transactions.label:1287 None:1309 +#: field.au.billable_transactions.label:1325 None:1347 msgid "Billable Transactions" msgstr "" diff --git a/build/i18n/po/en-US/ils_events.xml.pot b/build/i18n/po/en-US/ils_events.xml.pot index 904984321a..2a280fc8c2 100644 --- a/build/i18n/po/en-US/ils_events.xml.pot +++ b/build/i18n/po/en-US/ils_events.xml.pot @@ -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: 2008-09-08 11:13:01-0400\n" +"POT-Creation-Date: 2008-10-14 00:34:04-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -15,15 +15,16 @@ msgstr "" msgid "The last copy attached to a title is being removed or deleted" msgstr "" -#: 1603.CONTAINER_USER_BUCKET_ITEM_NOT_FOUND:441 -msgid "The requested container_user_bucket_item was not found" +#: 1232.ITEM_DEPOSIT_REQUIRED:157 1233.ITEM_RENTAL_FEE_REQUIRED:160 +#: 1234.ITEM_DEPOSIT_PAID:163 +msgid "" msgstr "" -#: 1598.MONEY_USER_CIRCULATION_SUMMARY_NOT_FOUND:426 +#: 1598.MONEY_USER_CIRCULATION_SUMMARY_NOT_FOUND:435 msgid "The requested money_user_circulation_summary was not found" msgstr "" -#: 1621.CONTAINER_COPY_BUCKET_NOT_FOUND:494 +#: 1621.CONTAINER_COPY_BUCKET_NOT_FOUND:503 msgid "The requested container_copy_bucket was not found" msgstr "" @@ -35,7 +36,7 @@ msgstr "" msgid "The selected primary identification type and value are in use by another patron" msgstr "" -#: 1561.PERMISSION_PERM_LIST_NOT_FOUND:318 +#: 1561.PERMISSION_PERM_LIST_NOT_FOUND:327 msgid "The requested permission_perm_list was not found" msgstr "" @@ -43,19 +44,19 @@ msgstr "" msgid "The patron is barred" msgstr "" -#: 1645.CONFIG_CIRC_MATRIX_TEST_NOT_FOUND:566 +#: 1645.CONFIG_CIRC_MATRIX_TEST_NOT_FOUND:575 msgid "The requested config_circ_matrix_test was not found" msgstr "" -#: 1591.METABIB_SERIES_FIELD_ENTRY_NOT_FOUND:405 +#: 1591.METABIB_SERIES_FIELD_ENTRY_NOT_FOUND:414 msgid "The requested metabib_series_field_entry was not found" msgstr "" -#: 8002.OFFLINE_FILE_ERROR:716 +#: 8002.OFFLINE_FILE_ERROR:735 msgid " An offline file or directory could not be created or accessed " msgstr "" -#: 1502.ASSET_COPY_NOT_FOUND:173 +#: 1502.ASSET_COPY_NOT_FOUND:182 msgid "" "\n" "\t\t\tSomeone attempted to retrieve a copy object from the \n" @@ -63,11 +64,11 @@ msgid "" "\t\t" msgstr "" -#: 1639.REPORTER_SCHEDULE_NOT_FOUND:548 +#: 1639.REPORTER_SCHEDULE_NOT_FOUND:557 msgid "The requested reporter_schedule was not found" msgstr "" -#: 1641.ACTION_OPEN_CIRC_COUNT_BY_CIRC_MOD_NOT_FOUND:554 +#: 1641.ACTION_OPEN_CIRC_COUNT_BY_CIRC_MOD_NOT_FOUND:563 msgid "The requested action_open_circ_count_by_circ_mod was not found" msgstr "" @@ -75,23 +76,23 @@ msgstr "" msgid " " msgstr "" -#: 7006.COPY_IS_REFERENCE:660 +#: 7006.COPY_IS_REFERENCE:678 msgid " Copy is reference material " msgstr "" -#: 1609.CONFIG_RULES_RECURING_FINE_NOT_FOUND:459 +#: 1609.CONFIG_RULES_RECURING_FINE_NOT_FOUND:468 msgid "The requested config_rules_recuring_fine was not found" msgstr "" -#: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:456 +#: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:465 msgid "The requested metabib_subject_field_entry was not found" msgstr "" -#: 2001.DATABASE_UPDATE_FAILED:618 -msgid "The attempt to write to the DB failed" +#: 1711.BIB_QUEUE_EXISTS:625 +msgid "A bib record queue with the same name already exists" msgstr "" -#: 1507.CONTAINER_ITEM_NOT_FOUND:196 +#: 1507.CONTAINER_ITEM_NOT_FOUND:205 msgid "" "\n" "\t\t\tSomeone attempted to retrieve a container item object from the \n" @@ -99,39 +100,43 @@ msgid "" "\t\t" msgstr "" -#: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:253 +#: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:262 msgid "The requested action_survey_response was not found" msgstr "" -#: 1555.MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:301 +#: 1555.MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:310 msgid "The requested money_open_billable_transaction_summary was not found" msgstr "" -#: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:298 +#: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:307 msgid "The requested config_rules_circ_duration was not found" msgstr "" -#: 1607.ACTION_OPEN_CIRCULATION_NOT_FOUND:453 +#: 1607.ACTION_OPEN_CIRCULATION_NOT_FOUND:462 msgid "The requested action_open_circulation was not found" msgstr "" -#: 1559.METABIB_FULL_REC_NOT_FOUND:312 +#: 1559.METABIB_FULL_REC_NOT_FOUND:321 msgid "The requested metabib_full_rec was not found" msgstr "" -#: 1527.OPEN_TCN_NOT_FOUND:219 +#: 1527.OPEN_TCN_NOT_FOUND:228 msgid "No TCN could be found that does not collide with existing records" msgstr "" -#: 8000.OFFLINE_SESSION_ACTIVE:710 +#: 2001.DATABASE_UPDATE_FAILED:636 +msgid "The attempt to write to the DB failed" +msgstr "" + +#: 8000.OFFLINE_SESSION_ACTIVE:729 msgid " An offline session for this location is currently processing " msgstr "" -#: 1563.METABIB_KEYWORD_FIELD_ENTRY_NOT_FOUND:324 +#: 1563.METABIB_KEYWORD_FIELD_ENTRY_NOT_FOUND:333 msgid "The requested metabib_keyword_field_entry was not found" msgstr "" -#: 1546.CONFIG_AUDIENCE_MAP_NOT_FOUND:277 +#: 1546.CONFIG_AUDIENCE_MAP_NOT_FOUND:286 msgid "The requested config_audience_map was not found" msgstr "" @@ -139,15 +144,15 @@ msgstr "" msgid "User login session has either timed out or does not exist" msgstr "" -#: 1525.BILLING_NOT_FOUND:215 +#: 1525.BILLING_NOT_FOUND:224 msgid " Requested billing note does not exist " msgstr "" -#: 8001.OFFLINE_SESSION_FILE_EXISTS:713 +#: 8001.OFFLINE_SESSION_FILE_EXISTS:732 msgid " An offline file for this workstation exists within this session " msgstr "" -#: 1529.ACTOR_WORKSTATION_NOT_FOUND:227 +#: 1529.ACTOR_WORKSTATION_NOT_FOUND:236 msgid "The requested actor_workstation was not found" msgstr "" @@ -163,11 +168,11 @@ msgstr "" msgid "Someone attempted to retrieve a user from the system and the user was not found" msgstr "" -#: 1643.VANDELAY_BIB_QUEUE_NOT_FOUND:560 +#: 1643.VANDELAY_BIB_QUEUE_NOT_FOUND:569 msgid "The requested vandelay_bib_queue was not found" msgstr "" -#: 1636.REPORTER_OUTPUT_FOLDER_NOT_FOUND:539 +#: 1636.REPORTER_OUTPUT_FOLDER_NOT_FOUND:548 msgid "The requested reporter_output_folder was not found" msgstr "" @@ -175,27 +180,27 @@ msgstr "" msgid "This account is marked as inactive" msgstr "" -#: 1637.REPORTER_REPORT_FOLDER_NOT_FOUND:542 +#: 1637.REPORTER_REPORT_FOLDER_NOT_FOUND:551 msgid "The requested reporter_report_folder was not found" msgstr "" -#: 1545.PERM_EX_NOT_FOUND:274 +#: 1545.PERM_EX_NOT_FOUND:283 msgid "The requested perm_ex was not found" msgstr "" -#: 1553.ACTOR_ORG_UNIT_CLOSED_DATE_NOT_FOUND:295 +#: 1553.ACTOR_ORG_UNIT_CLOSED_DATE_NOT_FOUND:304 msgid "The requested actor_org_unit_closed_date was not found" msgstr "" -#: 1541.AUTHORITY_RECORD_DESCRIPTOR_NOT_FOUND:262 +#: 1541.AUTHORITY_RECORD_DESCRIPTOR_NOT_FOUND:271 msgid "The requested authority_record_descriptor was not found" msgstr "" -#: 7011.COPY_STATUS_LOST:675 +#: 7011.COPY_STATUS_LOST:693 msgid "Copy has is marked as lost" msgstr "" -#: 1587.CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND:393 +#: 1587.CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND:402 msgid "The requested container_call_number_bucket was not found" msgstr "" @@ -203,25 +208,25 @@ msgstr "" msgid "The requested volume is marked as deleted" msgstr "" -#: 1635.REPORTER_REPORT_NOT_FOUND:536 +#: 1635.REPORTER_REPORT_NOT_FOUND:545 msgid "The requested reporter_report was not found" msgstr "" -#: 1631.MONEY_COLLECTIONS_TRACKER_NOT_FOUND:524 -#: 1632.CONFIG_RULES_AGE_HOLD_PROTECT_NOT_FOUND:527 -#: 1633.MONEY_DESK_PAYMENT_NOT_FOUND:530 +#: 1631.MONEY_COLLECTIONS_TRACKER_NOT_FOUND:533 +#: 1632.CONFIG_RULES_AGE_HOLD_PROTECT_NOT_FOUND:536 +#: 1633.MONEY_DESK_PAYMENT_NOT_FOUND:539 msgid "The requested money_collections_tracker was not found" msgstr "" -#: 5000.PERM_FAILURE:627 +#: 5000.PERM_FAILURE:645 msgid "Permission Denied" msgstr "" -#: 7015.NEGATIVE_PATRON_BALANCE:687 +#: 7015.NEGATIVE_PATRON_BALANCE:705 msgid "This requested action would result in a negative patron balance" msgstr "" -#: 1569.ACTOR_USER_STANDING_PENALTY_NOT_FOUND:342 +#: 1569.ACTOR_USER_STANDING_PENALTY_NOT_FOUND:351 msgid "The requested actor_user_standing_penalty was not found" msgstr "" @@ -229,43 +234,43 @@ msgstr "" msgid "The given username already exists in the database" msgstr "" -#: 9000.REPORT_TEMPLATE_EXISTS:744 +#: 9000.REPORT_TEMPLATE_EXISTS:763 msgid " A report template with the given name and folder already exists" msgstr "" -#: 1602.ACTOR_STAT_CAT_ENTRY_NOT_FOUND:438 +#: 1602.ACTOR_STAT_CAT_ENTRY_NOT_FOUND:447 msgid "The requested actor_stat_cat_entry was not found" msgstr "" -#: 1710.CONTAINER_EXISTS:610 +#: 1710.CONTAINER_EXISTS:622 msgid "User has already created a bucket with the requested name" msgstr "" -#: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:358 +#: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:367 msgid "The requested container_biblio_record_entry_bucket was not found" msgstr "" -#: 1701.COPY_LOCATION_EXISTS:583 +#: 1701.COPY_LOCATION_EXISTS:595 msgid " The copy location object already exists " msgstr "" -#: 1703.WORKSTATION_NAME_EXISTS:589 +#: 1703.WORKSTATION_NAME_EXISTS:601 msgid " A workstation with that name already exists " msgstr "" -#: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:488 +#: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:497 msgid "The requested actor_stat_cat_entry_user_map was not found" msgstr "" -#: 8007.OFFLINE_SESSION_EXISTS:731 +#: 8007.OFFLINE_SESSION_EXISTS:750 msgid " A session with the given name already exists " msgstr "" -#: 1558.ASSET_COPY_NOTE_NOT_FOUND:309 +#: 1558.ASSET_COPY_NOTE_NOT_FOUND:318 msgid "The requested asset_copy_note was not found" msgstr "" -#: 7017.ROUTE_TO_COPY_LOCATION:696 +#: 7017.ROUTE_TO_COPY_LOCATION:714 msgid "" " \n" "\t\tA copy needs to be routed to a copy location. The location\n" @@ -273,7 +278,7 @@ msgid "" "\t\t" msgstr "" -#: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:182 +#: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:191 msgid "" "\n" "\t\t\tSomeone attempted to retrieve a transit object from the \n" @@ -281,11 +286,11 @@ msgid "" "\t\t" msgstr "" -#: 1624.MONEY_PAYMENT_NOT_FOUND:503 +#: 1624.MONEY_PAYMENT_NOT_FOUND:512 msgid "The requested money_payment was not found" msgstr "" -#: 1596.ACTOR_ORG_UNIT_TYPE_NOT_FOUND:420 +#: 1596.ACTOR_ORG_UNIT_TYPE_NOT_FOUND:429 msgid "The requested actor_org_unit_type was not found" msgstr "" @@ -297,75 +302,75 @@ msgstr "" msgid "The given user barcode already exists" msgstr "" -#: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:569 +#: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:578 msgid "The requested vandelay_queued_bib_record was not found" msgstr "" -#: 1584.ACTOR_ORG_ADDRESS_NOT_FOUND:385 +#: 1584.ACTOR_ORG_ADDRESS_NOT_FOUND:394 msgid "The requested actor_org_address was not found" msgstr "" -#: 1501.BIBLIO_RECORD_ENTRY_NOT_FOUND:167 +#: 1501.BIBLIO_RECORD_ENTRY_NOT_FOUND:176 msgid "The requested biblio_record_entry was not found" msgstr "" -#: 1613.PERMISSION_GRP_TREE_NOT_FOUND:470 +#: 1613.PERMISSION_GRP_TREE_NOT_FOUND:479 msgid "The requested permission_grp_tree was not found" msgstr "" -#: 1523.TITLE_NOTE_NOT_FOUND:212 +#: 1523.TITLE_NOTE_NOT_FOUND:221 msgid " Requested title note does not exist " msgstr "" -#: 9001.REPORT_REPORT_EXISTS:748 +#: 9001.REPORT_REPORT_EXISTS:767 msgid " A report with the given name and folder already exists" msgstr "" -#: 1536.ACTION_IN_HOUSE_USE_NOT_FOUND:248 +#: 1536.ACTION_IN_HOUSE_USE_NOT_FOUND:257 msgid "The requested action_in_house_use was not found" msgstr "" -#: 7016.ITEM_ON_HOLDS_SHELF:690 +#: 7016.ITEM_ON_HOLDS_SHELF:708 msgid "This requested item is currently on the holds shelf" msgstr "" -#: 7005.LOCATION_CIRC_NOT_ALLOWED:657 +#: 7005.LOCATION_CIRC_NOT_ALLOWED:675 msgid " Location does not allow materials to circulate " msgstr "" -#: 1562.METABIB_METARECORD_SOURCE_MAP_NOT_FOUND:321 +#: 1562.METABIB_METARECORD_SOURCE_MAP_NOT_FOUND:330 msgid "The requested metabib_metarecord_source_map was not found" msgstr "" -#: 1531.ACTION_SURVEY_QUESTION_NOT_FOUND:233 +#: 1531.ACTION_SURVEY_QUESTION_NOT_FOUND:242 msgid "The requested action_survey_question was not found" msgstr "" -#: 1612.CONFIG_RULES_MAX_FINE_NOT_FOUND:467 +#: 1612.CONFIG_RULES_MAX_FINE_NOT_FOUND:476 msgid "The requested config_rules_max_fine was not found" msgstr "" -#: 1557.ACTOR_ORG_UNIT_SETTING_NOT_FOUND:306 +#: 1557.ACTOR_ORG_UNIT_SETTING_NOT_FOUND:315 msgid "The requested actor_org_unit_setting was not found" msgstr "" -#: 7009.CIRC_CLAIMS_RETURNED:669 +#: 7009.CIRC_CLAIMS_RETURNED:687 msgid " Requested circulation is marked claims returned " msgstr "" -#: 1629.PERMISSION_USR_GRP_MAP_NOT_FOUND:517 +#: 1629.PERMISSION_USR_GRP_MAP_NOT_FOUND:526 msgid "The requested permission_usr_grp_map was not found" msgstr "" -#: 1606.MONEY_WORK_PAYMENT_NOT_FOUND:450 +#: 1606.MONEY_WORK_PAYMENT_NOT_FOUND:459 msgid "The requested money_work_payment was not found" msgstr "" -#: 2000.BAD_PARAMS:615 +#: 2000.BAD_PARAMS:633 msgid "Invalid parameters were encountered in a method" msgstr "" -#: 1564.MONEY_CASH_PAYMENT_NOT_FOUND:327 +#: 1564.MONEY_CASH_PAYMENT_NOT_FOUND:336 msgid "The requested money_cash_payment was not found" msgstr "" @@ -373,7 +378,7 @@ msgstr "" msgid "The selected location cannot have volumes attached" msgstr "" -#: 1704.TCN_EXISTS:592 +#: 1704.TCN_EXISTS:604 msgid "A record already exists with the requested TCN value" msgstr "" @@ -381,15 +386,15 @@ msgstr "" msgid "Placeholder event. Used for development only" msgstr "" -#: 1622.BIBLIO_RECORD_NODE_NOT_FOUND:497 +#: 1622.BIBLIO_RECORD_NODE_NOT_FOUND:506 msgid "The requested biblio_record_node was not found" msgstr "" -#: 8003.OFFLINE_PARAM_ERROR:719 +#: 8003.OFFLINE_PARAM_ERROR:738 msgid " Missing params in offline upload " msgstr "" -#: 1534.ACTOR_USER_SETTING_NOT_FOUND:242 +#: 1534.ACTOR_USER_SETTING_NOT_FOUND:251 msgid "The requested actor_user_setting was not found" msgstr "" @@ -401,7 +406,7 @@ msgstr "" msgid "The user does not have a valid email address assigned" msgstr "" -#: 7001.PATRON_BAD_STANDING:644 +#: 7001.PATRON_BAD_STANDING:662 msgid "" "\n" "\t\t\tThe patron in question is not able to check out materials because\n" @@ -417,27 +422,27 @@ msgid "" "\t\t" msgstr "" -#: 1605.CONFIG_LIT_FORM_MAP_NOT_FOUND:447 +#: 1605.CONFIG_LIT_FORM_MAP_NOT_FOUND:456 msgid "The requested config_lit_form_map was not found" msgstr "" -#: 1567.METABIB_RECORD_DESCRIPTOR_NOT_FOUND:336 +#: 1567.METABIB_RECORD_DESCRIPTOR_NOT_FOUND:345 msgid "The requested metabib_record_descriptor was not found" msgstr "" -#: 1702.OPEN_CIRCULATION_EXISTS:586 +#: 1702.OPEN_CIRCULATION_EXISTS:598 msgid " There is an open circulation on the requested item " msgstr "" -#: 8009.OFFLINE_NO_ORG:737 8010.OFFLINE_SESSION_COMPLETE:740 +#: 8009.OFFLINE_NO_ORG:756 8010.OFFLINE_SESSION_COMPLETE:759 msgid " No org id was provided " msgstr "" -#: 1630.ACTOR_USER_NOTE_NOT_FOUND:520 +#: 1630.ACTOR_USER_NOTE_NOT_FOUND:529 msgid "The requested actor_user_note was not found" msgstr "" -#: 1508.ASSET_CALL_NUMBER_NOT_FOUND:199 +#: 1508.ASSET_CALL_NUMBER_NOT_FOUND:208 msgid "Requested asset_call_number was not found" msgstr "" @@ -445,23 +450,23 @@ msgstr "" msgid "The login failed" msgstr "" -#: 1543.MONEY_CREDIT_CARD_PAYMENT_NOT_FOUND:268 +#: 1543.MONEY_CREDIT_CARD_PAYMENT_NOT_FOUND:277 msgid "The requested money_credit_card_payment was not found" msgstr "" -#: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:473 +#: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:482 msgid "The requested action_survey_answer was not found" msgstr "" -#: 1535.METABIB_AUTHOR_FIELD_ENTRY_NOT_FOUND:245 +#: 1535.METABIB_AUTHOR_FIELD_ENTRY_NOT_FOUND:254 msgid "The requested metabib_author_field_entry was not found" msgstr "" -#: 1626.ASSET_STAT_CAT_ENTRY_NOT_FOUND:509 +#: 1626.ASSET_STAT_CAT_ENTRY_NOT_FOUND:518 msgid "The requested asset_stat_cat_entry was not found" msgstr "" -#: 1595.CONFIG_NON_CATALOGED_TYPE_NOT_FOUND:417 +#: 1595.CONFIG_NON_CATALOGED_TYPE_NOT_FOUND:426 msgid "The requested config_non_cataloged_type was not found" msgstr "" @@ -469,7 +474,7 @@ msgstr "" msgid "The transit on this item may not be aborted due to the state the item is in" msgstr "" -#: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:265 +#: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:274 msgid "The requested config_language_map was not found" msgstr "" @@ -477,7 +482,7 @@ msgstr "" msgid "The selected volume has copies attached" msgstr "" -#: 1540.AUTHORITY_RECORD_ENTRY_NOT_FOUND:259 +#: 1540.AUTHORITY_RECORD_ENTRY_NOT_FOUND:268 msgid "The requested authority_record_entry was not found" msgstr "" @@ -485,15 +490,15 @@ msgstr "" msgid "The given copy is not in a standard circulation status" msgstr "" -#: 1601.MONEY_BILLABLE_TRANSACTION_NOT_FOUND:435 +#: 1601.MONEY_BILLABLE_TRANSACTION_NOT_FOUND:444 msgid "The requested money_billable_transaction was not found" msgstr "" -#: 7004.COPY_NOT_AVAILABLE:654 +#: 7004.COPY_NOT_AVAILABLE:672 msgid " Copy is not available " msgstr "" -#: 1550.MONEY_OPEN_USER_SUMMARY_NOT_FOUND:287 +#: 1550.MONEY_OPEN_USER_SUMMARY_NOT_FOUND:296 msgid "The requested money_open_user_summary was not found" msgstr "" @@ -509,11 +514,11 @@ msgstr "" msgid "A checkout was attempted without a valid checkout permit key" msgstr "" -#: 1593.MONEY_CREDIT_PAYMENT_NOT_FOUND:411 +#: 1593.MONEY_CREDIT_PAYMENT_NOT_FOUND:420 msgid "The requested money_credit_payment was not found" msgstr "" -#: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:485 +#: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:494 msgid "The requested metabib_title_field_entry was not found" msgstr "" @@ -521,19 +526,19 @@ msgstr "" msgid "The requested item is not cataloged in the database" msgstr "" -#: 1628.MONEY_BILLING_NOT_FOUND:514 +#: 1628.MONEY_BILLING_NOT_FOUND:523 msgid "The requested money_billing was not found" msgstr "" -#: 1544.CONFIG_METABIB_FIELD_NOT_FOUND:271 +#: 1544.CONFIG_METABIB_FIELD_NOT_FOUND:280 msgid "The requested config_metabib_field was not found" msgstr "" -#: 2002.DATABASE_QUERY_FAILED:621 +#: 2002.DATABASE_QUERY_FAILED:639 msgid "The attempt to query to the DB failed" msgstr "" -#: 1549.CONFIG_STANDING_NOT_FOUND:284 +#: 1549.CONFIG_STANDING_NOT_FOUND:293 msgid "The requested config_standing was not found" msgstr "" @@ -541,27 +546,27 @@ msgstr "" msgid "The provided password is not correct" msgstr "" -#: 1582.CONFIG_ITEM_TYPE_MAP_NOT_FOUND:379 +#: 1582.CONFIG_ITEM_TYPE_MAP_NOT_FOUND:388 msgid "The requested config_item_type_map was not found" msgstr "" -#: 1530.CONFIG_IDENTIFICATION_TYPE_NOT_FOUND:230 +#: 1530.CONFIG_IDENTIFICATION_TYPE_NOT_FOUND:239 msgid "The requested config_identification_type was not found" msgstr "" -#: 1579.ASSET_COPY_LOCATION_NOT_FOUND:370 +#: 1579.ASSET_COPY_LOCATION_NOT_FOUND:379 msgid "The requested asset_copy_location was not found" msgstr "" -#: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:347 +#: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:356 msgid "The requested asset_call_number_note was not found" msgstr "" -#: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:222 +#: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:231 msgid "Requested address was not found" msgstr "" -#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:648 +#: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:666 msgid "The patron in question has the maximum number of items already checked out" msgstr "" @@ -569,11 +574,11 @@ msgstr "" msgid "The Z search did not succeed" msgstr "" -#: 1533.ACTOR_USR_NOTE_NOT_FOUND:239 +#: 1533.ACTOR_USR_NOTE_NOT_FOUND:248 msgid "The requested actor_usr_note was not found" msgstr "" -#: 1620.PERMISSION_GRP_PERM_MAP_NOT_FOUND:491 +#: 1620.PERMISSION_GRP_PERM_MAP_NOT_FOUND:500 msgid "The requested permission_grp_perm_map was not found" msgstr "" @@ -585,15 +590,15 @@ msgid "" "\t\t" msgstr "" -#: 1709.MAX_HOLDS:607 +#: 1709.MAX_HOLDS:619 msgid "User has reached the maximum number of holds" msgstr "" -#: 1706.ITEM_BARCODE_EXISTS:598 +#: 1706.ITEM_BARCODE_EXISTS:610 msgid "An item with the same barcode exists" msgstr "" -#: 7014.COPY_IN_TRANSIT:684 +#: 7014.COPY_IN_TRANSIT:702 msgid "Copy is in transit" msgstr "" @@ -601,7 +606,7 @@ msgstr "" msgid "A copy with a remote circulating library (circ_lib) was encountered" msgstr "" -#: 7000.ROUTE_ITEM:637 +#: 7000.ROUTE_ITEM:655 msgid "" " \n" "\t\t\tA copy needs to be routed to a different location\t\n" @@ -610,11 +615,11 @@ msgid "" "\t\t" msgstr "" -#: 7007.COPY_NEEDED_FOR_HOLD:663 +#: 7007.COPY_NEEDED_FOR_HOLD:681 msgid " Copy is needed to fulfil a hold " msgstr "" -#: 7010.COPY_ALERT_MESSAGE:672 +#: 7010.COPY_ALERT_MESSAGE:690 msgid " The requested copy has an alert message attached " msgstr "" @@ -622,7 +627,7 @@ msgstr "" msgid "The selected bib record has volumes attached" msgstr "" -#: 1503.ACTION_HOLD_REQUEST_NOT_FOUND:176 +#: 1503.ACTION_HOLD_REQUEST_NOT_FOUND:185 msgid "The requested action_hold_request was not found" msgstr "" @@ -630,76 +635,84 @@ msgstr "" msgid "The patron has too many overdue items" msgstr "" -#: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:367 +#: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:376 msgid "The requested action_hold_notification was not found" msgstr "" -#: 1610.MONEY_CHECK_PAYMENT_NOT_FOUND:462 +#: 1610.MONEY_CHECK_PAYMENT_NOT_FOUND:471 msgid "The requested money_check_payment was not found" msgstr "" -#: 1623.PERMISSION_USR_PERM_MAP_NOT_FOUND:500 +#: 1623.PERMISSION_USR_PERM_MAP_NOT_FOUND:509 msgid "The requested permission_usr_perm_map was not found" msgstr "" -#: 1581.ASSET_STAT_CAT_ENTRY_COPY_MAP_NOT_FOUND:376 +#: 1581.ASSET_STAT_CAT_ENTRY_COPY_MAP_NOT_FOUND:385 msgid "The requested asset_stat_cat_entry_copy_map was not found" msgstr "" -#: 1547.CONFIG_ITEM_FORM_MAP_NOT_FOUND:280 +#: 1547.CONFIG_ITEM_FORM_MAP_NOT_FOUND:289 msgid "The requested config_item_form_map was not found" msgstr "" -#: 1592.CONTAINER_USER_BUCKET_NOT_FOUND:408 +#: 1592.CONTAINER_USER_BUCKET_NOT_FOUND:417 msgid "The requested container_user_bucket was not found" msgstr "" -#: 1617.ACTION_UNFULFILLED_HOLD_LIST_NOT_FOUND:482 +#: 1617.ACTION_UNFULFILLED_HOLD_LIST_NOT_FOUND:491 msgid "The requested action_unfulfilled_hold_list was not found" msgstr "" -#: 1552.ACTOR_ORG_UNIT_HOURS_OF_OPERATION_NOT_FOUND:292 +#: 1552.ACTOR_ORG_UNIT_HOURS_OF_OPERATION_NOT_FOUND:301 msgid "The requested actor_org_unit_hours_of_operation was not found" msgstr "" -#: 1576.EX_NOT_FOUND:361 +#: 1576.EX_NOT_FOUND:370 msgid "The requested ex was not found" msgstr "" -#: 8004.OFFLINE_CONFIG_ERROR:722 8005.OFFLINE_CHECKSUM_FAILED:725 -#: 8006.OFFLINE_SESSION_NOT_FOUND:728 +#: 7019.HOLD_CAPTURE_DELAYED:720 +msgid "Hold capture was delayed for this item" +msgstr "" + +#: 8004.OFFLINE_CONFIG_ERROR:741 8005.OFFLINE_CHECKSUM_FAILED:744 +#: 8006.OFFLINE_SESSION_NOT_FOUND:747 msgid " Offline server is not configured properly " msgstr "" -#: 1568.CONFIG_COPY_STATUS_NOT_FOUND:339 +#: 1568.CONFIG_COPY_STATUS_NOT_FOUND:348 msgid "The requested config_copy_status was not found" msgstr "" -#: 1539.CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND:256 +#: 1539.CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND:265 msgid "The requested container_copy_bucket_item was not found" msgstr "" -#: 1590.ACTOR_STAT_CAT_NOT_FOUND:402 +#: 1590.ACTOR_STAT_CAT_NOT_FOUND:411 msgid "The requested actor_stat_cat was not found" msgstr "" -#: 7003.COPY_CIRC_NOT_ALLOWED:651 +#: 7003.COPY_CIRC_NOT_ALLOWED:669 msgid " Target copy is not allowed to circulate " msgstr "" -#: 7008.MAX_RENEWALS_REACHED:666 +#: 7008.MAX_RENEWALS_REACHED:684 msgid " Circulation has no more renewals remaining " msgstr "" -#: 1577.ACTION_HOLD_COPY_MAP_NOT_FOUND:364 +#: 1577.ACTION_HOLD_COPY_MAP_NOT_FOUND:373 msgid "The requested action_hold_copy_map was not found" msgstr "" -#: 1638.REPORTER_TEMPLATE_FOLDER_NOT_FOUND:545 +#: 1648.PERMISSION_USR_WORK_OU_MAP_NOT_FOUND:584 +msgid "The requested permission_usr_work_ou_map was not found" +msgstr "" + +#: 1638.REPORTER_TEMPLATE_FOLDER_NOT_FOUND:554 msgid "The requested reporter_template_folder was not found" msgstr "" -#: 1500.ACTION_CIRCULATION_NOT_FOUND:164 +#: 1500.ACTION_CIRCULATION_NOT_FOUND:173 msgid "" "\n" "\t\t\tSomeone attempted to retrieve a circulation object from the system and \n" @@ -707,27 +720,23 @@ msgid "" "\t\t" msgstr "" -#: 1644.VANDELAY_AUTHORITY_QUEUE_NOT_FOUND:563 +#: 1644.VANDELAY_AUTHORITY_QUEUE_NOT_FOUND:572 msgid "The requested vandelay_authority_queue was not found" msgstr "" -#: 1226.REFUND_EXCEEDS_DESK_PAYMENTS:135 -msgid "" -"\n" -"\t\t\tThis refund amount is not allowed because it exceeds \n" -"\t\t\tthe total amount of desk payments for this transaction.\n" -"\t\t" +#: 1565.ACTOR_PROFILE_NOT_FOUND:339 +msgid "The requested actor_profile was not found" msgstr "" -#: 1616.MONEY_OPEN_USER_CIRCULATION_SUMMARY_NOT_FOUND:479 +#: 1616.MONEY_OPEN_USER_CIRCULATION_SUMMARY_NOT_FOUND:488 msgid "The requested money_open_user_circulation_summary was not found" msgstr "" -#: 1583.ACTION_SURVEY_NOT_FOUND:382 +#: 1583.ACTION_SURVEY_NOT_FOUND:391 msgid "The requested action_survey was not found" msgstr "" -#: 1625.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND:506 +#: 1625.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND:515 msgid "The requested container_biblio_record_entry_bucket_item was not found" msgstr "" @@ -735,35 +744,43 @@ msgstr "" msgid "User login failed" msgstr "" -#: 1599.MONEY_GROCERY_NOT_FOUND:429 +#: 1599.MONEY_GROCERY_NOT_FOUND:438 msgid "The requested money_grocery was not found" msgstr "" -#: 7012.COPY_STATUS_MISSING:678 +#: 7012.COPY_STATUS_MISSING:696 msgid "Copy has is marked as missing" msgstr "" -#: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:236 +#: 1603.CONTAINER_USER_BUCKET_ITEM_NOT_FOUND:450 +msgid "The requested container_user_bucket_item was not found" +msgstr "" + +#: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:245 msgid "The requested money_billable_transaction_summary was not found" msgstr "" -#: 2003.INTERNAL_SERVER_ERROR:624 +#: 1712.AUTH_QUEUE_EXISTS:628 +msgid "An authority record queue with the same name already exists" +msgstr "" + +#: 2003.INTERNAL_SERVER_ERROR:642 msgid "There was an internal server error" msgstr "" -#: 8008.OFFLINE_INVALID_SESSION:734 +#: 8008.OFFLINE_INVALID_SESSION:753 msgid " The session name is invalid " msgstr "" -#: 1647.VANDELAY_QUEUED_AUTHORITY_RECORD_NOT_FOUND:572 +#: 1647.VANDELAY_QUEUED_AUTHORITY_RECORD_NOT_FOUND:581 msgid "The requested vandelay_queued_authority_record was not found" msgstr "" -#: 1597.BIBLIO_RECORD_NOTE_NOT_FOUND:423 +#: 1597.BIBLIO_RECORD_NOTE_NOT_FOUND:432 msgid "The requested biblio_record_note was not found" msgstr "" -#: 1588.ASSET_STAT_CAT_NOT_FOUND:396 +#: 1588.ASSET_STAT_CAT_NOT_FOUND:405 msgid "The requested asset_stat_cat was not found" msgstr "" @@ -771,15 +788,15 @@ msgstr "" msgid "The patron's account has expired" msgstr "" -#: 1560.METABIB_METARECORD_NOT_FOUND:315 +#: 1560.METABIB_METARECORD_NOT_FOUND:324 msgid "The requested metabib_metarecord was not found" msgstr "" -#: 1707.HOLD_EXISTS:601 +#: 1707.HOLD_EXISTS:613 msgid "User already has an open hold on the selected item" msgstr "" -#: 1506.CONTAINER_NOT_FOUND:190 +#: 1506.CONTAINER_NOT_FOUND:199 msgid "" "\n" "\t\t\tSomeone attempted to retrieve a container object from the \n" @@ -787,7 +804,7 @@ msgid "" "\t\t" msgstr "" -#: 1566.MONEY_FORGIVE_PAYMENT_NOT_FOUND:333 +#: 1566.MONEY_FORGIVE_PAYMENT_NOT_FOUND:342 msgid "The requested money_forgive_payment was not found" msgstr "" @@ -795,19 +812,19 @@ msgstr "" msgid "The saved item has been edited by another user" msgstr "" -#: 1700.NON_CAT_TYPE_EXISTS:580 +#: 1700.NON_CAT_TYPE_EXISTS:592 msgid " The non-cataloged type object already exists " msgstr "" -#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:604 +#: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:616 msgid "A duplicate money.collections_tracker object already exists in the database" msgstr "" -#: 1634.REPORTER_TEMPLATE_NOT_FOUND:533 +#: 1634.REPORTER_TEMPLATE_NOT_FOUND:542 msgid "The requested reporter_template was not found" msgstr "" -#: 1600.CONFIG_BIB_SOURCE_NOT_FOUND:432 +#: 1600.CONFIG_BIB_SOURCE_NOT_FOUND:441 msgid "The requested config_bib_source was not found" msgstr "" @@ -815,19 +832,19 @@ msgstr "" msgid "The requested bib record is marked as deleted" msgstr "" -#: 7018.COPY_MARKED_LOST:701 +#: 7018.COPY_MARKED_LOST:717 msgid "The requested item is already marked as lost" msgstr "" -#: 1642.CONFIG_CIRC_MODIFIER_NOT_FOUND:557 +#: 1642.CONFIG_CIRC_MODIFIER_NOT_FOUND:566 msgid "The requested config_circ_modifier was not found" msgstr "" -#: 1705.VOLUME_LABEL_EXISTS:595 +#: 1705.VOLUME_LABEL_EXISTS:607 msgid "A volume with the same label, title and owning library exists" msgstr "" -#: 1589.ACTOR_CARD_NOT_FOUND:399 +#: 1589.ACTOR_CARD_NOT_FOUND:408 msgid "The requested actor_card was not found" msgstr "" @@ -835,50 +852,54 @@ msgstr "" msgid "The patron's card is not active" msgstr "" -#: 7013.PATRON_EXCEEDS_FINES:681 +#: 7013.PATRON_EXCEEDS_FINES:699 msgid "The patron in question has reached the maximum fine amount" msgstr "" -#: 1586.ACTOR_ORG_UNIT_NOT_FOUND:390 +#: 1586.ACTOR_ORG_UNIT_NOT_FOUND:399 msgid "The requested actor_org_unit was not found" msgstr "" -#: 1574.CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND:355 +#: 1574.CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND:364 msgid "The requested container_call_number_bucket_item was not found" msgstr "" -#: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:204 +#: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:213 msgid "The requested action_hold_transit_copy was not found" msgstr "" -#: 1594.AUTHORITY_FULL_REC_NOT_FOUND:414 +#: 1594.AUTHORITY_FULL_REC_NOT_FOUND:423 msgid "The requested authority_full_rec was not found" msgstr "" -#: 1565.ACTOR_PROFILE_NOT_FOUND:330 -msgid "The requested actor_profile was not found" +#: 1226.REFUND_EXCEEDS_DESK_PAYMENTS:135 +msgid "" +"\n" +"\t\t\tThis refund amount is not allowed because it exceeds \n" +"\t\t\tthe total amount of desk payments for this transaction.\n" +"\t\t" msgstr "" -#: 1580.METABIB_VIRTUAL_RECORD_NOT_FOUND:373 +#: 1580.METABIB_VIRTUAL_RECORD_NOT_FOUND:382 msgid "The requested metabib_virtual_record was not found" msgstr "" -#: 1640.ACTOR_USR_ORG_UNIT_OPT_IN_NOT_FOUND:551 +#: 1640.ACTOR_USR_ORG_UNIT_OPT_IN_NOT_FOUND:560 msgid "The requested actor_usr_org_unit_opt_in was not found" msgstr "" -#: 1572.AUTHORITY_RECORD_NOTE_NOT_FOUND:350 +#: 1572.AUTHORITY_RECORD_NOTE_NOT_FOUND:359 msgid "The requested authority_record_note was not found" msgstr "" -#: 1520.WORKSTATION_NOT_FOUND:209 +#: 1520.WORKSTATION_NOT_FOUND:218 msgid " Requested workstation object does not exist " msgstr "" -#: 1615.ACTION_NON_CATALOGED_CIRCULATION_NOT_FOUND:476 +#: 1615.ACTION_NON_CATALOGED_CIRCULATION_NOT_FOUND:485 msgid "The requested action_non_cataloged_circulation was not found" msgstr "" -#: 1604.MONEY_USER_SUMMARY_NOT_FOUND:444 +#: 1604.MONEY_USER_SUMMARY_NOT_FOUND:453 msgid "The requested money_user_summary was not found" msgstr "" diff --git a/build/i18n/po/en-US/lang.dtd.pot b/build/i18n/po/en-US/lang.dtd.pot index d1b80048f4..56dcfbfb7e 100644 --- a/build/i18n/po/en-US/lang.dtd.pot +++ b/build/i18n/po/en-US/lang.dtd.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:12-0400\n" +"POT-Creation-Date: 2008-10-14 00:33-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -208,6 +208,14 @@ msgstr "" msgid "&Save these transactions" msgstr "" +#: common.true +msgid "True" +msgstr "" + +#: common.false +msgid "False" +msgstr "" + #: ilsevent.1000 msgid "Login failed. The username or password entered was incorrect." msgstr "" @@ -2317,6 +2325,10 @@ msgctxt "staff.main.auth.retest.accesskey" msgid "R" msgstr "" +#: staff.main.auth.add_ssl_exception +msgid "Add SSL Exception" +msgstr "" + #: staff.main.auth.server msgid "Server" msgstr "" @@ -6012,6 +6024,10 @@ msgstr "" msgid "Transit List" msgstr "" +#: staff.server.admin.index.conify +msgid "Server Settings" +msgstr "" + #: staff.server.admin.org_settings.title msgid "Evergreen: Library Settings Editor" msgstr "" @@ -6061,11 +6077,11 @@ msgid "Default Item Price" msgstr "" #: staff.server.admin.org_settings.from_address -msgid "\"FROM\" email address for patron notices" +msgid "Sending email address for patron notices" msgstr "" #: staff.server.admin.org_settings.bounce_note -msgid "(note: delivery failures will be returned this address)" +msgid "Email delivery failures will be returned this address" msgstr "" #: staff.server.admin.org_settings.apply_all.note @@ -6084,6 +6100,90 @@ msgid "" "menu. Are you sure you wish to continue?" msgstr "" +#: staff.server.admin.org_settings.circ.hold_expire_alert_interval +msgid "Hold Expiration Alert Interval" +msgstr "" + +#: staff.server.admin.org_settings.circ.hold_expire_alert_interval.desc +msgid "" +"Amount of time before a hold expires at which point the patron should be " +"alerted" +msgstr "" + +#: staff.server.admin.org_settings.circ.hold_expire_interval +msgid "Default Hold Expirate Interval" +msgstr "" + +#: staff.server.admin.org_settings.circ.hold_expire_interval.desc +msgid "" +"Amount of time after a hold is placed before the hold expires. Example \"100 " +"days\"" +msgstr "" + +#: staff.server.admin.org_settings.global.credit.allow +msgid "Allow Credit Card Payments" +msgstr "" + +#: staff.server.admin.org_settings.global.credit.allow.desc +msgid "" +"If enabled, patrons will be able to pay fines accrued at this location via " +"credit card" +msgstr "" + +#: staff.server.admin.org_settings.global.default_locale +msgid "Default Locale" +msgstr "" + +#: staff.server.admin.org_settings.circ.void_overdue_on_lost +msgid "Void overdue fines when items are marked lost" +msgstr "" + +#: staff.server.admin.org_settings.circ.hold_stalling.soft +msgid "Soft hold stalling interval" +msgstr "" + +#: staff.server.admin.org_settings.circ.hold_stalling.soft.desc +msgid "" +"How long to wait before allowing remote items to be opportunisticaly " +"captured for a hold. Example \"5 days\"" +msgstr "" + +#: staff.server.admin.org_settings.circ.hold_boundary.hard +msgid "Hard hold boundary" +msgstr "" + +#: staff.server.admin.org_settings.circ.hold_boundary.soft +msgid "Soft hold boundary" +msgstr "" + +#: staff.server.admin.org_settings.opac.barcode_regex +msgid "Patron barcode format" +msgstr "" + +#: staff.server.admin.org_settings.opac.barcode_regex.desc +msgid "Regular expression defining the patron barcode format" +msgstr "" + +#: staff.server.admin.org_settings.circ.item_checkout_history.max +msgid "Maximum previous checkouts displayed" +msgstr "" + +#: staff.server.admin.org_settings.circ.item_checkout_history.max.desc +msgid "" +"This is maximum number of previous circulations the staff client will " +"display when investigating item details" +msgstr "" + +#: staff.server.admin.org_settings.circ.reshelving_complete.interval +msgid "Change reshelving status interval" +msgstr "" + +#: staff.server.admin.org_settings.circ.reshelving_complete.interval.desc +msgid "" +"Amount of time to wait before changing an item from \"reshelving\" status to " +"\"available\". Examples \"1 day\", \"6 hours\"" +msgstr "" + #: staff.server.admin.stat_cat.title msgid "Evergreen: Statistical Category Editor" msgstr "" @@ -7062,6 +7162,15 @@ msgctxt "staff.circ.holds.edit_activation_date.accesskey" msgid "D" msgstr "" +#: staff.circ.holds.edit_expire_time +msgid "Edit Expiration Date" +msgstr "" + +#: staff.circ.holds.edit_expire_time.accesskey +msgctxt "staff.circ.holds.edit_expire_time.accesskey" +msgid "E" +msgstr "" + #: staff.circ.holds.activate_hold msgid "Activate Hold" msgstr "" @@ -7882,8 +7991,9 @@ msgid "&Help" msgstr "" #: staff.cat.record_buckets_overlay.query_list_actions.label -msgctxt "staff.cat.record_buckets_overlay.query_list_actions.label" -msgid "List Actions" +#: staff.cat.record_buckets_overlay.query_list_actions.accesskey +msgctxt "staff.cat.record_buckets_overlay.query_list_actions.label staff.cat.record_buckets_overlay.query_list_actions.accesskey" +msgid "&List Actions" msgstr "" #: staff.cat.record_buckets_overlay.menuitem.sel_clip0.label @@ -7921,8 +8031,9 @@ msgid "Add Selected to Pending Records" msgstr "" #: staff.cat.record_buckets_overlay.pending_buckets_list_actions.label -msgctxt "staff.cat.record_buckets_overlay.pending_buckets_list_actions.label" -msgid "List Actions" +#: staff.cat.record_buckets_overlay.pending_buckets_list_actions.accesskey +msgctxt "staff.cat.record_buckets_overlay.pending_buckets_list_actions.label staff.cat.record_buckets_overlay.pending_buckets_list_actions.accesskey" +msgid "&List Actions" msgstr "" #: staff.cat.record_buckets_overlay.menuitem.sel_clip1.label @@ -7979,8 +8090,9 @@ msgid "Owner:" msgstr "" #: staff.cat.record_buckets_overlay.record_buckets_list_actions.label -msgctxt "staff.cat.record_buckets_overlay.record_buckets_list_actions.label" -msgid "List Actions" +#: staff.cat.record_buckets_overlay.record_buckets_list_actions.accesskey +msgctxt "staff.cat.record_buckets_overlay.record_buckets_list_actions.label staff.cat.record_buckets_overlay.record_buckets_list_actions.accesskey" +msgid "&List Actions" msgstr "" #: staff.cat.record_buckets_overlay.menuitem.sel_clip2.label @@ -9735,6 +9847,38 @@ msgctxt "staff.patron.items_overlay.items_export.label" msgid "Export" msgstr "" +#: staff.generic.list_actions.label +#: staff.generic.list_actions.accesskey +msgctxt "staff.generic.list_actions.label staff.generic.list_actions.accesskey" +msgid "&List Actions" +msgstr "" + +#: staff.generic.list_actions.sel_clip.label +#: staff.generic.list_actions.sel_clip.accesskey +msgctxt "staff.generic.list_actions.sel_clip.label staff.generic.list_actions.sel_clip.accesskey" +msgid "&Copy to Clipboard" +msgstr "" + +#: staff.generic.list_actions.csv_to_printer.label +#: staff.generic.list_actions.csv_to_printer.accesskey +msgid "&Print List CSV" +msgstr "" + +#: staff.generic.list_actions.csv_to_clipboard.label +#: staff.generic.list_actions.csv_to_clipboard.accesskey +msgid "&Copy List CSV to Clipboard" +msgstr "" + +#: staff.generic.list_actions.csv_to_file.label +#: staff.generic.list_actions.csv_to_file.accesskey +msgid "Save List CSV to &File" +msgstr "" + +#: staff.generic.list_actions.save_columns.label +#: staff.generic.list_actions.save_columns.accesskey +msgid "&Save List Configuration" +msgstr "" + #: ev.staff.patron.ue_xhtml.ev_user_editor.label msgctxt "ev.staff.patron.ue_xhtml.ev_user_editor.label" msgid "Evergreen User Editor" diff --git a/build/i18n/po/en-US/multiclass_search_help.html.pot b/build/i18n/po/en-US/multiclass_search_help.html.pot index 75f3fb7014..81402192df 100644 --- a/build/i18n/po/en-US/multiclass_search_help.html.pot +++ b/build/i18n/po/en-US/multiclass_search_help.html.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:13-0400\n" +"POT-Creation-Date: 2008-10-14 00:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/build/i18n/po/en-US/offline.properties.pot b/build/i18n/po/en-US/offline.properties.pot index 59587d8a24..badf76fb4f 100644 --- a/build/i18n/po/en-US/offline.properties.pot +++ b/build/i18n/po/en-US/offline.properties.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:13-0400\n" +"POT-Creation-Date: 2008-10-14 00:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -457,6 +457,14 @@ msgstr "" msgid "Local Administration" msgstr "" +#: menu.cmd_open_vandelay.tab +msgid "MARC Import/Export" +msgstr "" + +#: menu.cmd_open_conify.tab +msgid "Server Settings" +msgstr "" + #: menu.cmd_retrieve_last_patron.session.error msgid "No patron visited yet this session." msgstr "" diff --git a/build/i18n/po/en-US/opac.dtd.pot b/build/i18n/po/en-US/opac.dtd.pot index f7c4c82906..608e918fe3 100644 --- a/build/i18n/po/en-US/opac.dtd.pot +++ b/build/i18n/po/en-US/opac.dtd.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:12-0400\n" +"POT-Creation-Date: 2008-10-14 00:33-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1557,6 +1557,30 @@ msgstr "" msgid "Go" msgstr "" +#: advanced.biblevel +msgid "Bib Level" +msgstr "" + +#: advanced.filter.pubyear +msgid "Publication Year" +msgstr "" + +#: advanced.filter.pubyear.equals +msgid "Is" +msgstr "" + +#: advanced.filter.pubyear.before +msgid "Before" +msgstr "" + +#: advanced.filter.pubyear.after +msgid "After" +msgstr "" + +#: advanced.filter.pubyear.between +msgid "Between" +msgstr "" + #. ================================================================= #. Rdetail #. ================================================================= @@ -2141,6 +2165,10 @@ msgstr "" #. ================================================================= #. Slimpac Simple Search #. ================================================================= +#: slimpac.language.select +msgid "Select language" +msgstr "" + #: slimpac.start.title msgid "Simple Search" msgstr "" @@ -2258,6 +2286,10 @@ msgstr "" msgid "Welcome" msgstr "" +#: selfck.printing +msgid "Printing Receipt..." +msgstr "" + #. event messages #: selfck.event.co_success msgid "Check out succeeded" diff --git a/build/i18n/po/en-US/patron.properties.pot b/build/i18n/po/en-US/patron.properties.pot index 3b3a3d372a..75eada0fbf 100644 --- a/build/i18n/po/en-US/patron.properties.pot +++ b/build/i18n/po/en-US/patron.properties.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-09-08 11:13-0400\n" +"POT-Creation-Date: 2008-10-14 00:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/build/i18n/po/en-US/vandelay.dtd.pot b/build/i18n/po/en-US/vandelay.dtd.pot new file mode 100644 index 0000000000..f89e707e67 --- /dev/null +++ b/build/i18n/po/en-US/vandelay.dtd.pot @@ -0,0 +1,426 @@ +#. extracted from ../../Open-ILS/web/opac/locale/en-US/vandelay.dtd +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-10-14 00:33-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" +"X-Accelerator-Marker: &\n" + +#: vandelay.add.existing.queue +msgid "or Add to an Existing Queue" +msgstr "" + +#: vandelay.auth.attrs +msgid "Authority attributes" +msgstr "" + +#: vandelay.auth.records +msgid "Authority Records" +msgstr "" + +#: vandelay.auto.import.noncolliding +msgid "Auto-Import Non-Colliding Records" +msgstr "" + +#. Do not translate this. Only change the numeric values if you need this dialogue box to appear bigger +#: vandelay.auto.width +msgid "Auto Width" +msgstr "" + +#: vandelay.back.to.import.queue +msgid "Back To Import Queue" +msgstr "" + +#: vandelay.bib.attrs +msgid "Bibliographic attributes" +msgstr "" + +#: vandelay.bib.records +msgid "Bibliographic Records" +msgstr "" + +#: vandelay.cancel +msgid "Cancel" +msgstr "" + +#: vandelay.edit +msgid "Edit" +msgstr "" + +#: vandelay.code +msgid "Code" +msgstr "" + +#: vandelay.column +msgid "Column" +msgstr "" + +#: vandelay.create.attr.def +msgid "Create Attribute Definition" +msgstr "" + +#: vandelay.create +msgid "Create" +msgstr "" + +#: vandelay.create.date +msgid "Create Date" +msgstr "" + +#: vandelay.create.upload.queue +msgid "Create a New Upload Queue" +msgstr "" + +#: vandelay.creator +msgid "Creator" +msgstr "" + +#: vandelay.delete.queue +msgid "Delete Queue" +msgstr "" + +#: vandelay.delete.record +msgid "Delete record" +msgstr "" + +#: vandelay.descrip +msgid "Description" +msgstr "" + +#: vandelay.dest.match.point +msgid "Destination Match Point" +msgstr "" + +#: vandelay.display +msgid "Display" +msgstr "" + +#: vandelay.done +msgid "Done" +msgstr "" + +#: vandelay.edit.attributes +msgctxt "vandelay.edit.attributes" +msgid "Edit Attributes" +msgstr "" + +#: vandelay.edit.attrs +msgctxt "vandelay.edit.attrs" +msgid "Edit Attributes" +msgstr "" + +#: vandelay.false +msgid "False" +msgstr "" + +#: vandelay.file.to.upload +msgid "File to Upload:" +msgstr "" + +#: vandelay.for.example +msgid "Example" +msgstr "" + +#: vandelay.identifier +msgid "Identifier" +msgstr "" + +#: vandelay.id.field +msgid "Identifer Field?" +msgstr "" + +#: vandelay.id +msgid "ID" +msgstr "" + +#: vandelay.import.matches +msgid "Import Matches" +msgstr "" + +#: vandelay.import.records +msgid "Import Records" +msgstr "" + +#: vandelay.import.selected +msgid "Import Selected" +msgstr "" + +#: vandelay.import.all +msgid "Import All" +msgstr "" + +#: vandelay.import.time +msgid "Import Time" +msgstr "" + +#: vandelay.inspect.queue +msgid "Inspect Queue" +msgstr "" + +#: vandelay.last.edit.date +msgid "Last Edit Date" +msgstr "" + +#: vandelay.limit.to.collision.matches +msgid "Limit to Collision Matches" +msgstr "" + +#: vandelay.limit.to.non.imported +msgid "Limit to Non-Imported Records" +msgstr "" + +#: vandelay.marc.file.upload +msgid "Evergreen MARC File Upload" +msgstr "" + +#: vandelay.marc.record +msgid "MARC Record" +msgstr "" + +#: vandelay.matches +msgid "Matches" +msgstr "" + +#: vandelay.next.page +msgid "Next Page" +msgstr "" + +#: vandelay.overlay.selected.record +msgid "Overlay selected record with imported record" +msgstr "" + +#: vandelay.overlay.target +msgid "Overlay Target" +msgstr "" + +#: vandelay.page +msgid "Page" +msgstr "" + +#: vandelay.powered.by.evergreen +msgid "Powered by Evergreen!" +msgstr "" + +#: vandelay.prev.page +msgid "Previous Page" +msgstr "" + +#: vandelay.processing +msgid "Processing... " +msgstr "" + +#: vandelay.queue +msgid "Queue" +msgstr "" + +#: vandelay.queue.type +msgid "Queue Type" +msgstr "" + +#: vandelay.record.queue +msgid "Record Queue" +msgstr "" + +#: vandelay.record.type +msgid "Record Type" +msgstr "" + +#: vandelay.refresh +msgid "Refresh" +msgstr "" + +#: vandelay.remove.advanced +msgid "Remove (advanced)" +msgstr "" + +#: vandelay.remove +msgid "Remove" +msgstr "" + +#: vandelay.results.per.page +msgid "Results Per Page" +msgstr "" + +#: vandelay.retrieve.queue +msgid "Retrieve Queue" +msgstr "" + +#: vandelay.return +msgid "Return" +msgstr "" + +#: vandelay.select.cols +msgid "Select Columns" +msgstr "" + +#: vandelay.select.queue +msgid "Select a Queue to Inspect" +msgstr "" + +#: vandelay.source.match.point +msgid "Source Match Point" +msgstr "" + +#: vandelay.source +msgid "Source" +msgstr "" + +#: vandelay.subfields +msgid "Subfield(s)" +msgstr "" + +#: vandelay.subfield +msgid "Subfield" +msgstr "" + +#: vandelay.sure.to.delete +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: vandelay.sure.to.delete.queue +msgid "Are you sure you want to delete this queue?" +msgstr "" + +#: vandelay.tags +msgid "Tag(s)" +msgstr "" + +#: vandelay.tag +msgid "Tag" +msgstr "" + +#: vandelay.tcn.source +msgid "TCN Source" +msgstr "" + +#: vandelay.tcn.value +msgid "TCN Value" +msgstr "" + +#: vandelay.tooltip.subfields +msgid "You can enter multiple subfields, separated by spaces and/or commas." +msgstr "" + +#: vandelay.tooltip.tags +msgid "You can enter multiple tags, separated by spaces and/or commas." +msgstr "" + +#: vandelay.true +msgid "True" +msgstr "" + +#: vandelay.update +msgid "Update" +msgstr "" + +#: vandelay.uploading +msgid "Uploading..." +msgstr "" + +#: vandelay.upload.status +msgid "Upload Status" +msgstr "" + +#: vandelay.upload +msgid "Upload" +msgstr "" + +#: vandelay.vandelay +msgid "Vandelay" +msgstr "" + +#: vandelay.view.marc +msgid "View MARC" +msgstr "" + +#: vandelay.xpath.advanced +msgid "XPath (advanced)" +msgstr "" + +#: vandelay.xpath +msgid "XPath" +msgstr "" + +#: vandelay.save +msgid "Save Changes" +msgstr "" + +#: vandelay.record_saved +msgid "Record Saved" +msgstr "" + +#: vandelay.export.records +msgid "Export Records" +msgstr "" + +#: vandelay.export.use_field_no +msgid "Use Field Number" +msgstr "" + +#: vandelay.export.from_csv +msgid "From CSV File" +msgstr "" + +#: vandelay.export.record_id +msgid "Record ID" +msgstr "" + +#: vandelay.export.or +msgid "Or" +msgstr "" + +#: vandelay.export.format +msgid "Record Format" +msgstr "" + +#: vandelay.export.format.marc21 +msgid "MARC21" +msgstr "" + +#: vandelay.export.format.unimarc +msgid "UNIMARC" +msgstr "" + +#: vandelay.export.format.xml +msgid "MARC XML" +msgstr "" + +#: vandelay.export.format.bre +msgid "Evergreen Record Entry" +msgstr "" + +#: vandelay.export.encoding +msgid "Record Encoding" +msgstr "" + +#: vandelay.export.utf8 +msgid "UTF-8" +msgstr "" + +#: vandelay.export.marc8 +msgid "MARC8" +msgstr "" + +#: vandelay.export.holdings +msgid "Include holdings in Bibliographic Records" +msgstr "" + +#: vandelay.export.retrieve +msgid "Retrieve Records" +msgstr "" + +#: vandelay.export.field_no_hint +msgid "(starting from 0)" +msgstr "" + +#: vandelay.export.bucket +msgid "Record Bucket ID" +msgstr "" -- 2.11.0