[open-ils-commits] [GIT] Evergreen ILS branch tags/rel_2_3_10 created. 5e855b59b52ef38e3385256516aed39d2a5b7eaf

Evergreen Git git at git.evergreen-ils.org
Thu Aug 22 10:26:57 EDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, tags/rel_2_3_10 has been created
        at  5e855b59b52ef38e3385256516aed39d2a5b7eaf (commit)

- Log -----------------------------------------------------------------
commit 5e855b59b52ef38e3385256516aed39d2a5b7eaf
Author: Bill Erickson <berick at esilibrary.com>
Date:   Wed Aug 21 09:51:10 2013 -0400

    Copying 2.3.8-2.3.9 SQL upgrade script
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.3.8-2.3.9-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.3.8-2.3.9-upgrade-db.sql
new file mode 100644
index 0000000..b936ca8
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/version-upgrade/2.3.8-2.3.9-upgrade-db.sql
@@ -0,0 +1,94 @@
+--Upgrade Script for 2.3.8 to 2.3.9
+\set eg_version '''2.3.9'''
+BEGIN;
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('2.3.9', :eg_version);
+
+SELECT evergreen.upgrade_deps_block_check('0803', :eg_version);
+
+UPDATE config.org_unit_setting_type 
+SET description = oils_i18n_gettext('circ.holds.default_shelf_expire_interval',
+        'The amount of time an item will be held on the shelf before the hold expires. For example: "2 weeks" or "5 days"',
+        'coust', 'description')
+WHERE name = 'circ.holds.default_shelf_expire_interval';
+
+
+SELECT evergreen.upgrade_deps_block_check('0804', :eg_version);
+
+UPDATE config.coded_value_map
+SET value = oils_i18n_gettext('169', 'Gwich''in', 'ccvm', 'value')
+WHERE ctype = 'item_lang' AND code = 'gwi';
+
+-- Evergreen DB patch XXXX.schema.usrname_index.sql
+--
+-- Create search index on actor.usr.usrname
+--
+
+SELECT evergreen.upgrade_deps_block_check('0808', :eg_version);
+
+CREATE INDEX actor_usr_usrname_idx ON actor.usr (evergreen.lowercase(usrname));
+
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('0810', :eg_version);
+
+UPDATE authority.control_set_authority_field
+    SET name = REGEXP_REPLACE(name, '^See Also', 'See From')
+    WHERE tag LIKE '4__' AND control_set = 1;
+
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('0811', :eg_version);
+
+DROP FUNCTION action.copy_related_hold_stats(integer);
+
+CREATE OR REPLACE FUNCTION action.copy_related_hold_stats(copy_id bigint)
+  RETURNS action.hold_stats AS
+$BODY$
+DECLARE
+    output          action.hold_stats%ROWTYPE;
+    hold_count      INT := 0;
+    copy_count      INT := 0;
+    available_count INT := 0;
+    hold_map_data   RECORD;
+BEGIN
+
+    output.hold_count := 0;
+    output.copy_count := 0;
+    output.available_count := 0;
+
+    SELECT  COUNT( DISTINCT m.hold ) INTO hold_count
+      FROM  action.hold_copy_map m
+            JOIN action.hold_request h ON (m.hold = h.id)
+      WHERE m.target_copy = copy_id
+            AND NOT h.frozen;
+
+    output.hold_count := hold_count;
+
+    IF output.hold_count > 0 THEN
+        FOR hold_map_data IN
+            SELECT  DISTINCT m.target_copy,
+                    acp.status
+              FROM  action.hold_copy_map m
+                    JOIN asset.copy acp ON (m.target_copy = acp.id)
+                    JOIN action.hold_request h ON (m.hold = h.id)
+              WHERE m.hold IN ( SELECT DISTINCT hold FROM action.hold_copy_map WHERE target_copy = copy_id ) AND NOT h.frozen
+        LOOP
+            output.copy_count := output.copy_count + 1;
+            IF hold_map_data.status IN (0,7,12) THEN
+                output.available_count := output.available_count + 1;
+            END IF;
+        END LOOP;
+        output.total_copy_ratio = output.copy_count::FLOAT / output.hold_count::FLOAT;
+        output.available_copy_ratio = output.available_count::FLOAT / output.hold_count::FLOAT;
+
+    END IF;
+
+    RETURN output;
+
+END;
+$BODY$
+  LANGUAGE plpgsql VOLATILE
+  COST 100;
+
+
+COMMIT;

commit 319911d71f39973f6998a407d2ec7e34a172ca7d
Author: Bill Erickson <berick at esilibrary.com>
Date:   Wed Aug 21 09:23:59 2013 -0400

    Bumping version numbers, adding Upgrade Script and Changelog
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/ChangeLog b/ChangeLog
index 1f72b2c..2934fa7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,465 @@
-Evergreen doesn't keep a GNU-style ChangeLog except in release tarballs.
-Those seeking a change log are encouraged to run 'git log -v', or read
-it online at: http://git.evergreen-ils.org/?p=Evergreen.git;a=log
+commit 9d563a8d4626cd4e4b6b0f394606e74ef51e0456
+Author: Bill Erickson <berick at esilibrary.com>
+Date:   Wed Aug 21 09:20:42 2013 -0400
+
+    Bumping OpenILS VERSION to 2.0310
+    
+    Signed-off-by: Bill Erickson <berick at esilibrary.com>
+
+1	1	Open-ILS/src/perlmods/lib/OpenILS.pm
+
+commit 189a620e91fe07bb372a27524544c4e5690a8a82
+Author: Bill Erickson <berick at esilibrary.com>
+Date:   Wed Aug 21 09:15:46 2013 -0400
+
+    2.3.10 translations import
+    
+    Signed-off-by: Bill Erickson <berick at esilibrary.com>
+
+5	5	build/i18n/po/Searcher.js/es-ES.po
+4	2	build/i18n/po/XULTermLoader.js/XULTermLoader.js.pot
+30	10	build/i18n/po/acq.js/acq.js.pot
+4	2	build/i18n/po/capture.js/capture.js.pot
+4	4	build/i18n/po/cat.properties/cs-CZ.po
+4	4	build/i18n/po/common.properties/cs-CZ.po
+19	7	build/i18n/po/conify.js/conify.js.pot
+820	765	build/i18n/po/db.seed/db.seed.pot
+13	13	build/i18n/po/fm_IDL.dtd/fm_IDL.dtd.pot
+104	44	build/i18n/po/ils_events.xml/ils_events.xml.pot
+28	27	build/i18n/po/lang.dtd/cs-CZ.po
+22	21	build/i18n/po/lang.dtd/es-ES.po
+5	1	build/i18n/po/lang.dtd/lang.dtd.pot
+11	4	build/i18n/po/opac.js/opac.js.pot
+4	4	build/i18n/po/patron.properties/cs-CZ.po
+11	10	build/i18n/po/register.js/register.js.pot
+5	2	build/i18n/po/reservation.js/reservation.js.pot
+8	3	build/i18n/po/selfcheck.js/selfcheck.js.pot
+4	4	build/i18n/po/tpac/tpac.pot
+
+commit 0aa91b755650846ca7c4d425b324ded0bc30b3a9
+Author: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+Date:   Wed Sep 19 15:27:03 2012 -0400
+
+    Acq general search: improve searching for negative comparisons
+    
+    This aims to address Launchpad bug #1031535.  I think the bug only
+    really shows up when searches involve invoices either as the core type
+    or with filter fields.  If a search doesn't involve invoices, the
+    problematic joins aren't present.
+    
+    Could use more testing though.  Seems to make the problem go away, and
+    other basic searches seem to work, but I certainly haven't tested
+    everything.
+    
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
+
+24	4	Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/Search.pm
+
+commit fa7b8347e9122cd785683599c6d4900763ddc88c
+Author: Ben Shum <bshum at biblio.org>
+Date:   Tue Aug 20 10:50:43 2013 -0400
+
+    Stamping upgrade script for dewey sort fix
+    
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+1	1	Open-ILS/src/sql/Pg/002.schema.config.sql
+52	0	Open-ILS/src/sql/Pg/upgrade/0819.schema.acn_dewey_normalizer.sql
+0	52	Open-ILS/src/sql/Pg/upgrade/XXXX.schema.acn_dewey_normalizer.sql
+ create mode 100644 Open-ILS/src/sql/Pg/upgrade/0819.schema.acn_dewey_normalizer.sql
+ delete mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.schema.acn_dewey_normalizer.sql
+
+commit c024726cb5ac5f686b0253e09f010649b4696280
+Author: Jason Etheridge <jason at esilibrary.com>
+Date:   Thu Mar 7 11:59:09 2013 -0500
+
+    LP#1150939 fix dewey sort
+    
+    There's a bit in the code where it tries to pad the first digit group,
+    if it's the only digit group, but it assumed the digit group was the
+    first token.
+    
+    Signed-off-by: Jason Etheridge <jason at esilibrary.com>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+6	1	Open-ILS/src/sql/Pg/040.schema.asset.sql
+52	0	Open-ILS/src/sql/Pg/upgrade/XXXX.schema.acn_dewey_normalizer.sql
+ create mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.schema.acn_dewey_normalizer.sql
+
+commit 85ca009c2bd0ba9e4580660ab3a6ec37d9a2e42d
+Author: Chris Sharp <csharp at georgialibraries.org>
+Date:   Mon Aug 5 14:10:56 2013 -0400
+
+    LP1208572 - Fixes for reporter.classic_item_list
+    
+    This view was created before the extend_reporter schema and the reporter.
+    materialized_simple_record existed.  Rewriting the view definition to include
+    those.
+    
+    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+7	9	Open-ILS/src/sql/Pg/example.reporter-extension.sql
+
+commit f844bfc0ebd14569cf48b48c6b9076efe0ad549b
+Author: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+Date:   Fri Aug 16 10:32:42 2013 -0400
+
+    DB numbering for patron duplication check depth setting
+    
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+    
+    Conflicts:
+    	Open-ILS/src/sql/Pg/002.schema.config.sql
+
+1	1	Open-ILS/src/sql/Pg/002.schema.config.sql
+22	0	Open-ILS/src/sql/Pg/upgrade/0818.data.duplicate_patron_check_depth_ou_setting.sql
+0	22	Open-ILS/src/sql/Pg/upgrade/XXXX.add_setting_for_selecting_consortium_as_search_ou_for_duplicate_patron_check.sql
+ create mode 100644 Open-ILS/src/sql/Pg/upgrade/0818.data.duplicate_patron_check_depth_ou_setting.sql
+ delete mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.add_setting_for_selecting_consortium_as_search_ou_for_duplicate_patron_check.sql
+
+commit a7017eb786935223d2a2013d6347d9c31a9bd945
+Author: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+Date:   Fri Aug 16 09:31:16 2013 -0400
+
+    Adjust Kyle Tomita's patron dupe check fix to use the depth concept
+    
+    Addressing these comments:
+    https://bugs.launchpad.net/evergreen/+bug/1185524/comments/3
+    
+    And also renaming the OU setting to better peer with similar settings
+    affecting staff client (not OPAC) patron registration.
+    
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>
+
+11	2	Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm
+6	6	Open-ILS/src/sql/Pg/950.data.seed-values.sql
+16	18	Open-ILS/src/sql/Pg/upgrade/XXXX.add_setting_for_selecting_consortium_as_search_ou_for_duplicate_patron_check.sql
+
+commit 1eb958dede143e3227b52196dda1f0d05fd0cfcf
+Author: Kyle Tomita <ktomita at catalystitservices.com>
+Date:   Fri May 31 11:33:59 2013 -0700
+
+    LP1185524 - Duplicate patron checking in the user editor is limited to workstation OU
+    
+    Added a new library setting opac.duplicate_patron_check_use_consortium.
+    When true, the duplicate check will use the consortium (1) as the OU.
+    When false or not set, the duplicate check will use the workstation OU.
+    
+    The setting is checked in subroutine that creates the search request and
+    sets the OU accordingly.
+    
+    [LFW: Signing off but following with material changes next commit.]
+    
+    Signed-off-by: Kyle Tomita <ktomita at catalystitservices.com>
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>
+    
+    Conflicts:
+    	Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm
+
+5	2	Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm
+12	0	Open-ILS/src/sql/Pg/950.data.seed-values.sql
+24	0	Open-ILS/src/sql/Pg/upgrade/XXXX.add_setting_for_selecting_consortium_as_search_ou_for_duplicate_patron_check.sql
+ create mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.add_setting_for_selecting_consortium_as_search_ou_for_duplicate_patron_check.sql
+
+commit fd9fb9ee7811f6b7fa9dcb4f6301c2dfc4fcf89d
+Author: Steven Chan <schan at sitka.bclibraries.ca>
+Date:   Mon Aug 5 12:13:54 2013 -0400
+
+    Fix LP985075, cannot save Patron Acquisition Request form
+    
+    The form is shown using a dojo EditPane attached to an EditDialog,
+    however, attaching the pane was done manually, resulting in the dialog
+    acting improperly and the pane positioned improperly.
+    
+    Instead, we use dojo's attr method to define the content attribute of
+    the dialog to be the pane.
+    
+    Signed-off-by: Steven Chan <schan at sitka.bclibraries.ca>
+    Signed-off-by: Remington Steed <rjs7 at calvin.edu>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+1	2	Open-ILS/web/js/dojo/openils/widget/EditDialog.js
+
+commit 6e5bee24ee72f1c2fd5345d1b5d306507f3fd5ae
+Author: Chris Sharp <csharp at georgialibraries.org>
+Date:   Wed Jul 31 11:03:25 2013 -0400
+
+    Fixing LP 1072892 - repeated rows in reporter.classic_item_list view
+    
+    The view joined the actor.card table in such a way that all library
+    cards (active or not) were being returned.  This commit changes that
+    behavior so that only the current card (from actor.usr.card) is returned.
+    
+    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+1	1	Open-ILS/src/sql/Pg/example.reporter-extension.sql
+
+commit 52a63bf1066109a6b151dda399416d31285cff64
+Author: Bill Erickson <berick at esilibrary.com>
+Date:   Tue Aug 13 10:03:10 2013 -0400
+
+    LP1211506 fix numeric sorting in staff client grids
+    
+    To recover numeric (vs. ascii-betical) sorting of number and money
+    values in grids, cast the cached sort values back into numbers.
+    
+    This was tested in the billing interface, but should repair numeric
+    sorting for most grids.
+    
+    Signed-off-by: Bill Erickson <berick at esilibrary.com>
+    Signed-off-by: Jason Etheridge <jason at esilibrary.com>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+8	0	Open-ILS/xul/staff_client/chrome/content/util/list.js
+
+commit 9e55c1e4619daa5d53fd0a0f8f74d0757210b3cd
+Author: Pasi Kallinen <pasi.kallinen at pttk.fi>
+Date:   Mon Jul 22 10:16:36 2013 +0300
+
+    Always show grid buttons on My Selection List
+    
+    Fix LP#1028601 by showing the selection list creation buttons in the acq
+    search UI even when there are no search results.
+    
+    Signed-off-by: Pasi Kallinen <pasi.kallinen at pttk.fi>
+    Signed-off-by: Remington Steed <rjs7 at calvin.edu>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+5	1	Open-ILS/web/js/ui/default/acq/search/unified.js
+
+commit c0a79af1509d3b770c3a919020a515dbc1e2caa0
+Author: Dan Wells <dbw2 at calvin.edu>
+Date:   Tue Jul 2 11:55:21 2013 -0400
+
+    Solidify caption/holding relationship, improve MFHD::Holding comparisons
+    
+    [This commit has been squashed for merging. LFW]
+    
+      * This commit:
+        - Makes sure that holding data is valid for the given caption
+          for new holding objects
+        - Teaches field_values() to fall back to '*' (unknown marker)
+          when a holding is missing data
+        - Allows the caption() method to be a setter
+    
+      * This commit:
+        - Makes the comparison operator consider chron data, not just
+          enumeration data
+        - Teaches the comparison operator a way to handle 'unsure' data
+          (that is, data presented in brackets [])
+    
+      * The code was assuming the $end_holding param would be uncompressed,
+        but this was not stated anywhere, nor enforced.  Let's allow the
+        method to take both compressed and uncompressed holdings as the "end"
+        (and handle it appropriately).
+    
+      * Add some holdings with missing and unsure data to test the new
+        comparison operators handling of such data.
+    
+    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+
+33	5	Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHD/Holding.pm
+19	15	Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHD/test/mfhddata2.txt
+
+commit 68c1bf0152750e3d085d24bea7c9a47b80e5189a
+Author: Dan Wells <dbw2 at calvin.edu>
+Date:   Wed May 8 15:09:41 2013 -0400
+
+    Fix logic in get_compressed_holdings()
+    
+    [This commit has been squashed for merging. LFW]
+    
+      * This commit rearranges some of the logic branches to protect
+        against an unusual case of having two holding statements with
+        the same start value, but one being open-ended and one not.
+    
+      * The logic in get_combined_holdings() was a little sloppy and
+        repeated some steps unnecessarily.  This cleans things up.
+    
+        See the test case in the previous commit for more clarity.
+    
+    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+
+17	16	Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHD.pm
+
+commit 12d88a006c06015e9bba5de483af6b987722ee7f
+Author: Dan Wells <dbw2 at calvin.edu>
+Date:   Tue May 7 18:23:27 2013 -0400
+
+    Tie in new MFHD method to serials module/MFHD tests for compressing, combining
+    
+    [This commit has been squashed for merging. LFW]
+    
+     *  Now that we have a potentially better alternative, let's call
+        get_combined_holdings() in place of get_compressed_holdings() in
+        Serial.pm.
+    
+     *  First, add a test for the new get_combined_holdings() method.
+    
+        Second, add a known problem case for get_compressed_holdings().
+        The fix will come in a subsequent commit.
+    
+    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+
+2	2	Open-ILS/src/perlmods/lib/OpenILS/Application/Serial.pm
+24	0	Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHD/test/mfhd.t
+31	0	Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHD/test/mfhddata2.txt
+
+commit df0d0704534db44eab4cb7a4b414510c61b21c40
+Author: Dan Wells <dbw2 at calvin.edu>
+Date:   Tue May 7 18:19:34 2013 -0400
+
+    Add new get_combined_holdings() method to MFHD.pm
+    
+    This commit adds a new method to the MFHD module which creates an
+    array of compressed holdings from all holdings for a given caption,
+    combining as needed.
+    
+    NOTE: This method is similar to, but much less aggressive/strict than
+    get_compressed_holdings(). Ultimately, get_compressed_holdings()
+    might be deprecated in favor of this.
+    
+    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+
+84	0	Open-ILS/src/perlmods/lib/OpenILS/Utils/MFHD.pm
+
+commit 9717addcd5221e594df9c9025e9c3e51475b6db3
+Author: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+Date:   Mon Jun 24 11:47:40 2013 -0400
+
+    Acq: When processing EDI invoices, skip unknown line item references
+    
+    See LP #1172373.
+    
+    In their electronic invoices, vendors sometimes include a mix of line
+    items that your ILS knows about, because you ordered them through it,
+    and line items of which your ILS knows nothing. We should not fail
+    altogether at processing invoices, but instead process what line items
+    we can.
+    
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+106	66	Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/EDI.pm
+
+commit 96a1fb4e9a148af329a0b024534ab4279963c791
+Author: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+Date:   Tue Apr 16 15:18:17 2013 -0400
+
+    Acq: When building invoices from EDI messages, avoid bad data
+    
+    From some vendors, these EDI messages contain strings (useless ones,
+    like just the name of the vendor) where we had been expecting numeric
+    identifiers.
+    
+    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+18	5	Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/EDI.pm
+
+commit ed48cbdedf0b6e4be292c4fa2ad9d6741a1ee225
+Author: Pasi Kallinen <pasi.kallinen at pttk.fi>
+Date:   Wed Jul 17 20:24:26 2013 +0300
+
+    Validate date ranges in Close Dates editor
+    
+    Complain in Closed Dates Editor when ending date is earlier than starting date.
+    
+    Signed-off-by: Pasi Kallinen <pasi.kallinen at pttk.fi>
+    Signed-off-by: Remington Steed <rjs7 at calvin.edu>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+1	0	Open-ILS/web/opac/locale/en-US/lang.dtd
+5	0	Open-ILS/xul/staff_client/server/admin/closed_dates.js
+1	0	Open-ILS/xul/staff_client/server/admin/closed_dates.xhtml
+
+commit 3ba30f6c644f51d1158025e94675db8759c30cc2
+Author: Pasi Kallinen <pasi.kallinen at pttk.fi>
+Date:   Tue Jul 23 10:49:47 2013 +0300
+
+    Prevent paste from empty clipboard throwing an error
+    
+    Signed-off-by: Pasi Kallinen <pasi.kallinen at pttk.fi>
+    Signed-off-by: Ben Shum <bshum at biblio.org>
+
+3	1	Open-ILS/xul/staff_client/chrome/content/util/clipboard.js
+
+commit 953cd16194b454199b3029ac00e83287d533546b
+Author: Jeff Godin <jgodin at tadl.org>
+Date:   Tue May 29 10:28:50 2012 -0400
+
+    Fix IDL and OU setting check for staged users
+    
+    The IDL had references to sequences that do not exist:
+    
+    staging.usr_stage_row_id_seq -- a typo, fixed
+    
+    In the case of staging.billing_address_stage_row_id_seq, the
+    staging.billing_address_stage table is created with LIKE,
+    and uses the sequence staging.mailing_address_stage_row_id_seq
+    
+    The OU setting check for the open-ils.actor.user.stage.create API
+    call was not passing an org unit, and would always fail.
+    
+    We now pass the home_ou of the user being staged.
+    
+    At this point, the opac.allow_pending_user OU setting type must
+    be manually created before its value can be set.
+    
+    Signed-off-by: Jeff Godin <jgodin at tadl.org>
+    Signed-off-by: Bill Erickson <berick at esilibrary.com>
+
+2	2	Open-ILS/examples/fm_IDL.xml
+1	1	Open-ILS/src/perlmods/lib/OpenILS/Application/Actor/Stage.pm
+
+commit e956804719b1f4380293b5dc2ed1f420f075b478
+Author: Bill Erickson <berick at esilibrary.com>
+Date:   Mon Jul 22 15:21:15 2013 -0400
+
+    LP1203753 AuthProxy barcode login support
+    
+    When users attempt a barcode-based login with AuthProxy, the system will
+    determine the username of the user (based on the barcode) and use the
+    username instead of the barcode for all proxied login attempts.  This
+    allows users to use their barcodes (or barcode-looking usernames) to
+    log in via remote authenticators.
+    
+    Signed-off-by: Bill Erickson <berick at esilibrary.com>
+    Signed-off-by: Dan Wells <dbw2 at calvin.edu>
+
+16	4	Open-ILS/src/perlmods/lib/OpenILS/Application/AuthProxy.pm
+
+commit c41a96c64cae57981a5f62ae2b685817a4dbba31
+Author: Pasi Kallinen <pasi.kallinen at pttk.fi>
+Date:   Fri Jul 19 09:04:04 2013 +0300
+
+    Fix LP#1187402: Datafield contents turned undefined in Marc Editor after adding 006, 007 or 008
+    
+    Signed-off-by: Pasi Kallinen <pasi.kallinen at pttk.fi>
+    Signed-off-by: Dan Scott <dan at coffeecode.net>
+
+4	1	Open-ILS/xul/staff_client/server/cat/marcedit.js
+
+commit 1f99bc8a85d56f9de3089ca38e9f88dc95f661e3
+Author: Mike Rylander <mrylander at gmail.com>
+Date:   Wed Jul 17 17:13:57 2013 -0400
+
+    Explicit function ownership is not the job of upgrade scripts
+    
+    Signed-off-by: Mike Rylander <mrylander at gmail.com>
+    
+    Conflicts:
+    	Open-ILS/src/sql/Pg/version-upgrade/2.4.0-2.4.1-upgrade-db.sql
+    
+    Signed-off-by: Bill Erickson <berick at esilibrary.com>
+
+0	2	Open-ILS/src/sql/Pg/upgrade/0811.function.copy_related_hold_stats.sql
diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application.pm
index cd4dbbf..f1f4432 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application.pm
@@ -6,7 +6,7 @@ use base qw/OpenSRF::Application/;
 sub ils_version {
     # version format is "x-y-z", for example "2-0-0" for Evergreen 2.0.0
     # For branches, format is "x-y"
-    return "HEAD";
+    return "2-3-10";
 }
 
 __PACKAGE__->register_method(
diff --git a/Open-ILS/src/sql/Pg/002.schema.config.sql b/Open-ILS/src/sql/Pg/002.schema.config.sql
index 68255c5..a382055 100644
--- a/Open-ILS/src/sql/Pg/002.schema.config.sql
+++ b/Open-ILS/src/sql/Pg/002.schema.config.sql
@@ -88,6 +88,7 @@ CREATE TRIGGER no_overlapping_deps
     FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');
 
 INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0819', :eg_version); -- phasefx/bshum
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('2.3.10', :eg_version);
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,
diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.3.9-2.3.10-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.3.9-2.3.10-upgrade-db.sql
new file mode 100644
index 0000000..b92e91c
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/version-upgrade/2.3.9-2.3.10-upgrade-db.sql
@@ -0,0 +1,75 @@
+--Upgrade Script for 2.3.9 to 2.3.10
+\set eg_version '''2.3.10'''
+BEGIN;
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('2.3.10', :eg_version);
+
+SELECT evergreen.upgrade_deps_block_check('0818', :eg_version);
+
+INSERT INTO config.org_unit_setting_type ( name, grp, label, description, datatype ) VALUES (
+    'circ.patron_edit.duplicate_patron_check_depth', 'circ',
+    oils_i18n_gettext(
+        'circ.patron_edit.duplicate_patron_check_depth',
+        'Specify search depth for the duplicate patron check in the patron editor',
+        'coust',
+        'label'),
+    oils_i18n_gettext(
+        'circ.patron_edit.duplicate_patron_check_depth',
+        'When using the patron registration page, the duplicate patron check will use the configured depth to scope the search for duplicate patrons.',
+        'coust',
+        'description'),
+    'integer')
+;
+
+
+
+-- Evergreen DB patch 0819.schema.acn_dewey_normalizer.sql
+--
+-- Fixes Dewey call number sorting (per LP# 1150939)
+--
+
+-- check whether patch can be applied
+SELECT evergreen.upgrade_deps_block_check('0819', :eg_version);
+
+CREATE OR REPLACE FUNCTION asset.label_normalizer_dewey(TEXT) RETURNS TEXT AS $func$
+    # Derived from the Koha C4::ClassSortRoutine::Dewey module
+    # Copyright (C) 2007 LibLime
+    # Licensed under the GPL v2 or later
+
+    use strict;
+    use warnings;
+
+    my $init = uc(shift);
+    $init =~ s/^\s+//;
+    $init =~ s/\s+$//;
+    $init =~ s!/!!g;
+    $init =~ s/^([\p{IsAlpha}]+)/$1 /;
+    my @tokens = split /\.|\s+/, $init;
+    my $digit_group_count = 0;
+    my $first_digit_group_idx;
+    for (my $i = 0; $i <= $#tokens; $i++) {
+        if ($tokens[$i] =~ /^\d+$/) {
+            $digit_group_count++;
+            if ($digit_group_count == 1) {
+                $first_digit_group_idx = $i;
+            }
+            if (2 == $digit_group_count) {
+                $tokens[$i] = sprintf("%-15.15s", $tokens[$i]);
+                $tokens[$i] =~ tr/ /0/;
+            }
+        }
+    }
+    # Pad the first digit_group if there was only one
+    if (1 == $digit_group_count) {
+        $tokens[$first_digit_group_idx] .= '_000000000000000'
+    }
+    my $key = join("_", @tokens);
+    $key =~ s/[^\p{IsAlnum}_]//g;
+
+    return $key;
+
+$func$ LANGUAGE PLPERLU;
+
+-- regenerate sort keys for any dewey call numbers
+UPDATE asset.call_number SET id = id WHERE label_class = 2;
+
+COMMIT;
diff --git a/Open-ILS/xul/staff_client/chrome/content/main/about.html b/Open-ILS/xul/staff_client/chrome/content/main/about.html
index 2737f47..82e353e 100644
--- a/Open-ILS/xul/staff_client/chrome/content/main/about.html
+++ b/Open-ILS/xul/staff_client/chrome/content/main/about.html
@@ -1,7 +1,7 @@
 <html><head><script></script></head><body onload="var x = document.getElementById('version'); var version ='/xul/server/'.split(/\//)[2]; if (version == 'server') { version = 'versionless debug build'; } x.appendChild(document.createTextNode(version));">
 <h1 style="text-decoration: underline">Evergreen</h1>
 <p>Target Server ID: <span id="version"></span></p>
-<p>$HeadURL$</p>
+<p>http://git.evergreen-ils.org/Evergreen.git?h=refs/heads/rel_2_3_10</p>
 <h2>What is Evergreen?</h2>
 <blockquote>
 <p>
diff --git a/Open-ILS/xul/staff_client/defaults/preferences/prefs.js b/Open-ILS/xul/staff_client/defaults/preferences/prefs.js
index 6352b6e..bef2d67 100644
--- a/Open-ILS/xul/staff_client/defaults/preferences/prefs.js
+++ b/Open-ILS/xul/staff_client/defaults/preferences/prefs.js
@@ -11,7 +11,7 @@ pref("toolkit.singletonWindowType", "eg_main");
 pref("open-ils.enable_join_tabs", true);
 
 // We'll use this one to help brand some build information into the client, and rely on subversion keywords
-pref("open-ils.repository.headURL","$HeadURL$");
+pref("open-ils.repository.headURL","http://git.evergreen-ils.org/Evergreen.git?h=refs/heads/rel_2_3_10");
 pref("open-ils.repository.author","$Author$");
 pref("open-ils.repository.revision","$Revision$");
 pref("open-ils.repository.date","$Date$");
diff --git a/Open-ILS/xul/staff_client/windowssetup.nsi b/Open-ILS/xul/staff_client/windowssetup.nsi
index e0bc1ef..e7e96bb 100644
--- a/Open-ILS/xul/staff_client/windowssetup.nsi
+++ b/Open-ILS/xul/staff_client/windowssetup.nsi
@@ -3,7 +3,7 @@
 ; HM NIS Edit Wizard helper defines
 ; Old versions of makensis don't like this, moved to Makefile
 ;!define /file PRODUCT_VERSION "client/VERSION"
-!define PRODUCT_TAG "Master"
+!define PRODUCT_TAG "2.3"
 !define PRODUCT_INSTALL_TAG "${PRODUCT_TAG}"
 !define UI_IMAGESET "beta"
 ;!define UI_IMAGESET "release"
diff --git a/README b/README
deleted file mode 120000
index b57451a..0000000
--- a/README
+++ /dev/null
@@ -1 +0,0 @@
-docs/installation/server_installation.txt
\ No newline at end of file
diff --git a/README b/README
new file mode 100644
index 0000000..a053b55
--- /dev/null
+++ b/README
@@ -0,0 +1,549 @@
+Installing the Evergreen server
+===============================
+:toc:
+:numbered:
+
+Preamble: referenced user accounts
+----------------------------------
+
+In subsequent sections, we will refer to a number of different accounts, as
+follows:
+
+  * Linux user accounts:
+    ** The *user* Linux account is the account that you use to log onto the
+       Linux system as a regular user.
+    ** The *root* Linux account is an account that has system administrator
+       privileges. On Debian and Fedora you can switch to this account from
+       your *user* account by issuing the `su -` command and entering the
+       password for the *root* account when prompted. On Ubuntu you can switch
+       to this account from your *user* account using the `sudo su -` command
+       and entering the password for your *user* account when prompted.
+    ** The *opensrf* Linux account is an account that you create when installing
+       OpenSRF. You can switch to this account from the *root* account by
+       issuing the `su - opensrf` command.
+    ** The *postgres* Linux account is created automatically when you install
+       the PostgreSQL database server. You can switch to this account from the
+       *root* account by issuing the `su - postgres` command.
+  * PostgreSQL user accounts:
+    ** The *evergreen* PostgreSQL account is a superuser account that you will
+       create to connect to the PostgreSQL database server.
+  * Evergreen administrator account:
+    ** The *egadmin* Evergreen account is an administrator account for
+       Evergreen that you will use to test connectivity and configure your
+       Evergreen instance.
+
+Preamble: developer instructions
+--------------------------------
+
+[NOTE]
+Skip this section if you are using an official release tarball downloaded
+from http://evergreen-ils.org/downloads
+
+Developers working directly with the source code from the Git repository,
+rather than an official release tarball, must install some extra packages
+and perform one step before they can proceed with the `./configure` step.
+
+As the *root* Linux account, install the following packages:
+
+  * autoconf
+  * automake
+  * libtool
+
+As the *user* Linux account, issue the following command in the Evergreen
+source directory to generate the configure script and Makefiles:
+
+[source, bash]
+------------------------------------------------------------------------------
+autoreconf -i
+------------------------------------------------------------------------------
+
+After running `make install`, developers also need to install the Dojo Toolkit
+set of JavaScript libraries. The appropriate version of Dojo is included
+in Evergreen release tarballs. Developers should install the Dojo 1.3.3
+version of Dojo by issuing the following commands as the *opensrf* Linux
+account:
+
+[source, bash]
+------------------------------------------------------------------------------
+wget http://download.dojotoolkit.org/release-1.3.3/dojo-release-1.3.3.tar.gz
+tar -C /openils/var/web/js -xzf dojo-release-1.3.3.tar.gz
+cp -r /openils/var/web/js/dojo-release-1.3.3/* /openils/var/web/js/dojo/.
+------------------------------------------------------------------------------
+
+Installing prerequisites
+------------------------
+
+Evergreen has a number of prerequisite packages that must be installed
+before you can successfully configure, compile, and install Evergreen.
+
+1. Begin by installing the most recent version of OpenSRF (2.1 or later).
+   You can download OpenSRF releases from http://evergreen-ils.org/opensrf.php
+2. On many distributions, it is necessary to install PostgreSQL 9 from external
+   repositories.
++
+  * On Debian Squeeze, open `/etc/apt/sources.list` in a text editor as the
+    *root* Linux account and add the following line:
++
+[source, bash]
+------------------------------------------------------------------------------
+deb http://backports.debian.org/debian-backports squeeze-backports main contrib
+------------------------------------------------------------------------------
++
+  * On Ubuntu Lucid, you can use a PPA (personal package archive), which are 
+    package sources hosted on Launchpad. The one most commonly used by Evergreen
+    Community members is maintained by Martin Pitt, who also maintains the
+    official PostgreSQL packages for Ubuntu. As the *root* Linux account, issue
+    the following commands to add the PPA source:
++
+[source, bash]
+------------------------------------------------------------------------------
+apt-get install python-software-properties
+add-apt-repository ppa:pitti/postgresql
+------------------------------------------------------------------------------
++
+  * Ubuntu Precise comes with PostgreSQL 9, so no additional steps are required.
++
+  * Fedora comes with PostgreSQL 9, so no additional steps are required.
++
+3. On Debian and Ubuntu, run `aptitude update` as the *root* Linux account to
+   retrieve the new packages from the backports repository.
+4. Issue the following commands as the *root* Linux account to install
+   prerequisites using the `Makefile.install` prerequisite installer,
+   substituting `debian-squeeze`, `fedora`, `ubuntu-lucid`, or
+   `ubuntu-precise` for <osname> below:
++
+[source, bash]
+------------------------------------------------------------------------------
+make -f Open-ILS/src/extras/Makefile.install <osname>
+------------------------------------------------------------------------------
++
+5. Add the libdbi-libdbd libraries to the system dynamic library path by
+   issuing the following commands as the *root* Linux account:
++
+[NOTE]
+You should skip this step if installing on Ubuntu Precise. The ubuntu-precise
+target uses libdbd-pgsql from packages.
++
+.Debian / Ubuntu Lucid
+[source, bash]
+------------------------------------------------------------------------------
+echo "/usr/local/lib/dbd" > /etc/ld.so.conf.d/eg.conf
+ldconfig
+------------------------------------------------------------------------------
++
+.Fedora
+[source, bash]
+------------------------------------------------------------------------------
+echo "/usr/lib64/dbd" > /etc/ld.so.conf.d/eg.conf
+ldconfig
+------------------------------------------------------------------------------
+
+Configuration and compilation instructions
+------------------------------------------
+
+For the time being, we are still installing everything in the `/openils/`
+directory. From the Evergreen source directory, issue the following commands as
+the *user* Linux account to configure and build Evergreen:
+
+[source, bash]
+------------------------------------------------------------------------------
+./configure --prefix=/openils --sysconfdir=/openils/conf
+make
+------------------------------------------------------------------------------
+
+Installation instructions
+-------------------------
+
+1. Once you have configured and compiled Evergreen, issue the following
+   command as the *root* Linux account to install Evergreen, build the server
+   portion of the staff client, and copy example configuration files to
+   `/openils/conf`.
+   Change the value of the `STAFF_CLIENT_STAMP_ID` variable to match the version
+   of the staff client that you will use to connect to the Evergreen server.
++
+[source, bash]
+------------------------------------------------------------------------------
+make STAFF_CLIENT_STAMP_ID=rel_2_3_10 install
+------------------------------------------------------------------------------
++
+2. The server portion of the staff client expects `http://hostname/xul/server`
+   to resolve. Issue the following commands as the *root* Linux account to
+   create a symbolic link pointing to the `server` subdirectory of the server
+   portion of the staff client that we just built using the staff client ID
+   'rel_name':
++
+[source, bash]
+------------------------------------------------------------------------------
+cd /openils/var/web/xul
+ln -sf rel_name/server server
+------------------------------------------------------------------------------
+
+Change ownership of the Evergreen files
+---------------------------------------
+
+All files in the `/openils/` directory and subdirectories must be owned by the
+`opensrf` user. Issue the following command as the *root* Linux account to
+change the ownership on the files:
+
+[source, bash]
+------------------------------------------------------------------------------
+chown -R opensrf:opensrf /openils
+------------------------------------------------------------------------------
+
+Configure the Apache Web server
+-------------------------------
+
+1. Use the example configuration files in `Open-ILS/examples/apache/` to
+configure your Web server for the Evergreen catalog, staff client, Web
+services, and administration interfaces. Issue the following commands as the
+*root* Linux account:
++
+.Debian and Ubuntu
+[source,bash]
+------------------------------------------------------------------------------
+cp Open-ILS/examples/apache/eg.conf       /etc/apache2/sites-available/
+cp Open-ILS/examples/apache/eg_vhost.conf /etc/apache2/
+cp Open-ILS/examples/apache/startup.pl    /etc/apache2/
+# Now set up SSL
+mkdir /etc/apache2/ssl
+cd /etc/apache2/ssl
+------------------------------------------------------------------------------
++
+.Fedora
+[source,bash]
+------------------------------------------------------------------------------
+cp Open-ILS/examples/apache/eg.conf       /etc/httpd/conf.d/
+cp Open-ILS/examples/apache/eg_vhost.conf /etc/httpd/
+cp Open-ILS/examples/apache/startup.pl    /etc/httpd/
+# Now set up SSL
+mkdir /etc/httpd/ssl
+cd /etc/httpd/ssl
+------------------------------------------------------------------------------
++
+2. The `openssl` command cuts a new SSL key for your Apache server. For a
+production server, you should purchase a signed SSL certificate, but you can
+just use a self-signed certificate and accept the warnings in the staff client
+and browser during testing and development. Create an SSL key for the Apache
+server by issuing the following command as the *root* Linux account:
++
+[source,bash]
+------------------------------------------------------------------------------
+openssl req -new -x509 -days 365 -nodes -out server.crt -keyout server.key
+------------------------------------------------------------------------------
++
+3. As the *root* Linux account, edit the `eg.conf` file that you copied into
+place.
+  a. Replace `Allow from 10.0.0.0/8` with `Allow from all` (to enable
+     access to the offline upload / execute interface from any workstation on
+     any network - note that you must secure this for a production instance)
+  b. (Fedora): Change references from the non-existent `/etc/apache2/` directory
+     to `/etc/httpd/`.
+4. Change the user for the Apache server.
+  * (Debian and Ubuntu): As the *root* Linux account, edit
+    `/etc/apache2/envvars`.  Change `export APACHE_RUN_USER=www-data` to 
+    `export APACHE_RUN_USER=opensrf`.
+  * (Fedora): As the *root* Linux account , edit `/etc/httpd/conf/httpd.conf`.
+    Change `User apache` to `User opensrf`.
+5. Configure Apache with performance settings appropriate for Evergreen:
+  * (Debian and Ubuntu): As the *root* Linux account, edit
+    `/etc/apache2/apache2.conf`:
+  * (Fedora): As the *root* Linux account, edit `/etc/httpd/conf/httpd.conf`:
+    a. Change `KeepAliveTimeout` to `1`. Higher values reduce the chance of
+       a request timing out unexpectedly, but increase the risk of using up
+       all available Apache child processes.
+    b. 'Optional': Change `MaxKeepAliveRequests` to `100`
+    c. Update the prefork configuration section to suit your environment. The
+       following settings apply to a busy system:
++
+[source,bash]
+------------------------------------------------------------------------------
+<IfModule mpm_prefork_module>
+   StartServers           20
+   MinSpareServers         5
+   MaxSpareServers        15
+   MaxClients            150
+   MaxRequestsPerChild 10000
+</IfModule>
+------------------------------------------------------------------------------
++
+6. (Fedora): As the *root* Linux account, edit the `/etc/httpd/eg_vhost.conf`
+   file to change references from the non-existent `/etc/apache2/` directory
+   to `/etc/httpd/`.
+7. (Debian and Ubuntu): As the *root* Linux account, enable the Evergreen site:
++
+[source,bash]
+------------------------------------------------------------------------------
+a2dissite default  # OPTIONAL: disable the default site (the "It Works" page)
+a2ensite eg.conf
+------------------------------------------------------------------------------
+
+Configure OpenSRF for the Evergreen application
+-----------------------------------------------
+There are a number of example OpenSRF configuration files in `/openils/conf/`
+that you can use as a template for your Evergreen installation. Issue the
+following commands as the *opensrf* Linux account:
+
+[source, bash]
+------------------------------------------------------------------------------
+cp -b /openils/conf/opensrf_core.xml.example /openils/conf/opensrf_core.xml
+cp -b /openils/conf/opensrf.xml.example /openils/conf/opensrf.xml
+------------------------------------------------------------------------------
+
+When you installed OpenSRF, you created four Jabber users on two
+separate domains and edited the `opensrf_core.xml` file accordingly. Please
+refer back to the OpenSRF README and, as the *opensrf* Linux account, edit the
+Evergreen version of the `opensrf_core.xml` file using the same Jabber users
+and domains as you used while installing and testing OpenSRF.
+
+[NOTE]
+The `-b` flag tells the `cp` command to create a backup version of the
+destination file. The backup version of the destination file has a tilde (`~`)
+appended to the file name, so if you have forgotten the Jabber users and
+domains, you can retrieve the settings from the backup version of the files.
+
+`eg_db_config.pl`, described in the following section, sets the database
+connection information in `opensrf.xml` for you.
+
+Creating the Evergreen database
+-------------------------------
+
+By default, the `Makefile.install` prerequisite installer does not install
+the PostgreSQL 9 database server required by every Evergreen system;
+for production use, most libraries install the PostgreSQL database server on a
+dedicated machine. You can install the packages required by Debian or Ubuntu Lucid
+on the machine of your choice using the following commands as the *root*
+Linux account:
+
+.(Debian and Ubuntu Lucid) Installing PostgreSQL 9.1 server packages
+[source, bash]
+------------------------------------------------------------------------------
+make -f Open-ILS/src/extras/Makefile.install install_pgsql_server_backport_debs_91
+------------------------------------------------------------------------------
+
+.(Ubuntu Precise) Installing PostgreSQL 9.1 server packages
+[source, bash]
+------------------------------------------------------------------------------
+make -f Open-ILS/src/extras/Makefile.install install_pgsql_server_debs_91
+------------------------------------------------------------------------------
+
+You can install the packages required by Fedora on the machine of your choice
+using the following commands as the *root* Linux account:
+
+.(Fedora) Installing PostgreSQL server packages
+[source, bash]
+------------------------------------------------------------------------------
+make -f Open-ILS/src/extras/Makefile.install install_fedora_pgsql_server
+postgresql-setup initdb
+------------------------------------------------------------------------------
+
+For a standalone PostgreSQL server, install the following Perl modules as the
+*root* Linux account:
+
+.(Debian / Ubuntu) Installing additional Perl modules on a standalone PostgreSQL 9 server
+[source, bash]
+------------------------------------------------------------------------------
+aptitude install gcc libxml-libxml-perl libxml-libxslt-perl
+cpan Business::ISBN
+cpan JSON::XS
+cpan Library::CallNumber::LC
+cpan MARC::Record
+cpan MARC::File::XML
+cpan UUID::Tiny
+------------------------------------------------------------------------------
+
+.(Fedora) Installing additional Perl modules on a standalone PostgreSQL 9 server
+[source, bash]
+------------------------------------------------------------------------------
+yum install gcc perl-XML-LibXML perl-XML-LibXSLT perl-Business-ISBN
+cpan Library::CallNumber::LC
+cpan MARC::Record
+cpan MARC::File::XML
+cpan UUID::Tiny
+------------------------------------------------------------------------------
+
+You need to create a PostgreSQL superuser to create and access the database.
+Issue the following command as the *postgres* Linux account to create a new
+PostgreSQL superuser named `evergreen`. When prompted, enter the new user's
+password:
+
+[source, bash]
+------------------------------------------------------------------------------
+createuser -s -P evergreen
+------------------------------------------------------------------------------
+
+Once you have created the *evergreen* PostgreSQL account, you also need to
+create the database and schema, and configure your configuration files to point
+at the database server. Issue the following command as the *root* Linux account
+from inside the Evergreen source directory, replacing <user>, <password>,
+<hostname>, <port>, and <dbname> with the appropriate values for your
+PostgreSQL database (where <user> and <password> are for the *evergreen*
+PostgreSQL account you just created), and replace <admin-user> and <admin-pass>
+with the values you want for the *egadmin* Evergreen administrator account:
+
+[source, bash]
+------------------------------------------------------------------------------
+perl Open-ILS/src/support-scripts/eg_db_config.pl --update-config \
+       --service all --create-database --create-schema --create-offline \
+       --user <user> --password <password> --hostname <hostname> --port <port> \
+       --database <dbname> --admin-user <admin-user> --admin-pass <admin-pass>
+------------------------------------------------------------------------------
+
+This creates the database and schema and configures all of the services in
+your `/openils/conf/opensrf.xml` configuration file to point to that database.
+It also creates the configuration files required by the Evergreen `cgi-bin`
+administration scripts, and sets the user name and password for the *egadmin*
+Evergreen administrator account to your requested values.
+
+Creating the database on a remote server
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+In a production instance of Evergreen, your PostgreSQL server should be
+installed on a dedicated server.
+
+PostgreSQL 9.1 and later
+^^^^^^^^^^^^^^^^^^^^^^^^
+To create the database instance on a remote database server running PostgreSQL
+9.1 or later, simply use the `--create-database` flag on `eg_db_config.pl`.
+
+For PostgreSQL 9.0
+^^^^^^^^^^^^^^^^^^
+To create the database instance on a remote database server running PostgreSQL
+9.0, you can either:
+
+  *  Install the PostgreSQL contrib modules on the machine on which you
+     are installing the Evergreen code, and use the `--create-database`
+     option from that machine, or
+  *  Copy the `Open-ILS/src/sql/Pg/create_database.sql` script to your
+     PostgreSQL server and invoke it as the *postgres* Linux account:
++
+[source, bash]
+------------------------------------------------------------------------------
+psql -vdb_name=<dbname> -vcontrib_dir=`pg_config --sharedir`/contrib -f create_database.sql
+------------------------------------------------------------------------------
+
+Then you can issue the `eg_db_config.pl` command as above _without_ the
+`--create-database` argument to create your schema and configure your
+configuration files.
+
+Starting Evergreen
+------------------
+1. As the *root* Linux account, start the `memcached` and `ejabberd` services
+(if they aren't already running):
++
+[source, bash]
+------------------------------------------------------------------------------
+/etc/init.d/ejabberd start
+/etc/init.d/memcached start
+------------------------------------------------------------------------------
++
+2. As the *opensrf* Linux account, start Evergreen. The `-l` flag in the
+following command is only necessary if you want to force Evergreen to treat the
+hostname as `localhost`; if you configured `opensrf.xml` using the real
+hostname of your machine as returned by `perl -ENet::Domain 'print
+Net::Domain::hostfqdn() . "\n";'`, you should not use the `-l` flag.
++
+[source, bash]
+------------------------------------------------------------------------------
+osrf_ctl.sh -l -a start_all
+------------------------------------------------------------------------------
++
+  ** If you receive the error message `bash: osrf_ctl.sh: command not found`,
+     then your environment variable `PATH` does not include the `/openils/bin`
+     directory; this should have been set in the *opensrf* Linux account's
+     `.bashrc` configuration file. To manually set the `PATH` variable, edit the
+     configuration file `~/.bashrc` as the *opensrf* Linux account and add the
+     following line:
++
+[source, bash]
+------------------------------------------------------------------------------
+export PATH=$PATH:/openils/bin
+------------------------------------------------------------------------------
++
+3. As the *opensrf* Linux account, generate the Web files needed by the staff
+   client and catalogue and update the organization unit proximity (you need to do
+   this the first time you start Evergreen, and after that each time you change
+   the library hierarchy in `config.cgi`):
++
+[source, bash]
+------------------------------------------------------------------------------
+autogen.sh -u
+------------------------------------------------------------------------------
++
+4. As the *root* Linux account, restart the Apache Web server:
++
+[source, bash]
+------------------------------------------------------------------------------
+/etc/init.d/apache2 restart
+------------------------------------------------------------------------------
++
+If the Apache Web server was running when you started the OpenSRF services, you
+might not be able to successfully log in to the OPAC or staff client until the
+Apache Web server is restarted.
+
+Testing connections to Evergreen
+--------------------------------
+
+Once you have installed and started Evergreen, test your connection to
+Evergreen via `srfsh`. As the *opensrf* Linux account, issue the following
+commands to start `srfsh` and try to log onto the Evergreen server using the
+*egadmin* Evergreen administrator user name and password that you set using the
+`eg_db_config.pl` command:
+
+[source, bash]
+------------------------------------------------------------------------------
+/openils/bin/srfsh
+srfsh% login <admin-user> <admin-pass>
+------------------------------------------------------------------------------
+
+You should see a result like:
+
+    Received Data: "250bf1518c7527a03249858687714376"
+    ------------------------------------
+    Request Completed Successfully
+    Request Time in seconds: 0.045286
+    ------------------------------------
+
+    Received Data: {
+       "ilsevent":0,
+       "textcode":"SUCCESS",
+       "desc":" ",
+       "pid":21616,
+       "stacktrace":"oils_auth.c:304",
+       "payload":{
+          "authtoken":"e5f9827cc0f93b503a1cc66bee6bdd1a",
+          "authtime":420
+       }
+
+    }
+
+    ------------------------------------
+    Request Completed Successfully
+    Request Time in seconds: 1.336568
+    ------------------------------------
+
+If this does not work, it's time to do some troubleshooting.
+
+  * As the *opensrf* Linux acccount, run the `settings-tester.pl` script to see
+    if it finds any system configuration problems. The script is found at
+    `Open-ILS/src/support-scripts/settings-tester.pl` in the Evergreen source
+    tree.
+  * Follow the steps in the http://evergreen-ils.org/dokuwiki/doku.php?id=troubleshooting:checking_for_errors[troubleshooting guide].
+  * If you have faithfully followed the entire set of installation steps
+    listed here, you are probably extremely close to a working system.
+    Gather your configuration files and log files and contact the
+    http://open-ils.org/listserv.php[Evergreen development mailing list]
+    for assistance before making any drastic changes to your system
+    configuration.
+
+Getting help
+------------
+
+Need help installing or using Evergreen? Join the mailing lists at
+http://evergreen-ils.org/listserv.php or contact us on the Freenode
+IRC network on the #evergreen channel.
+
+License
+-------
+This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
+Unported License. To view a copy of this license, visit
+http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
+Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
diff --git a/configure.ac b/configure.ac
index 89e64f6..a868a00 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,8 +20,8 @@
 
 export PATH=${PATH}:/usr/sbin
 AC_PREREQ(2.61)
-AC_INIT(Open-ILS, trunk, open-ils-dev at list.georgialibraries.org)
-AM_INIT_AUTOMAKE([OpenILS], [trunk])
+AC_INIT(Open-ILS, 2.3.10, open-ils-dev at list.georgialibraries.org)
+AM_INIT_AUTOMAKE([OpenILS], [2.3.10])
 AC_REVISION($Revision: 0.1 $)
 AC_CONFIG_SRCDIR([configure.ac])
 AC_PREFIX_DEFAULT([/openils/])

commit 9d563a8d4626cd4e4b6b0f394606e74ef51e0456
Author: Bill Erickson <berick at esilibrary.com>
Date:   Wed Aug 21 09:20:42 2013 -0400

    Bumping OpenILS VERSION to 2.0310
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS.pm b/Open-ILS/src/perlmods/lib/OpenILS.pm
index ead71e2..08463a9 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS.pm
@@ -6,6 +6,6 @@ OpenILS - Client and server support for the Evergreen open source library system
 
 =cut
 
-our $VERSION = '2.00';
+our $VERSION = '2.0310';
 
 1;

commit 189a620e91fe07bb372a27524544c4e5690a8a82
Author: Bill Erickson <berick at esilibrary.com>
Date:   Wed Aug 21 09:15:46 2013 -0400

    2.3.10 translations import
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>

diff --git a/build/i18n/po/Searcher.js/es-ES.po b/build/i18n/po/Searcher.js/es-ES.po
index e900f89..93d9edc 100644
--- a/build/i18n/po/Searcher.js/es-ES.po
+++ b/build/i18n/po/Searcher.js/es-ES.po
@@ -8,14 +8,14 @@ msgstr ""
 "Project-Id-Version: evergreen\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL at ADDRESS>\n"
 "POT-Creation-Date: 2011-04-18 21:45-0400\n"
-"PO-Revision-Date: 2012-04-22 23:59+0000\n"
-"Last-Translator: A. Byrne <Unknown>\n"
+"PO-Revision-Date: 2013-05-25 01:12+0000\n"
+"Last-Translator: Gerson Vazquez <gerson.v.h at gmail.com>\n"
 "Language-Team: Spanish <es at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-24 04:54+0000\n"
-"X-Generator: Launchpad (build 15135)\n"
+"X-Launchpad-Export-Date: 2013-05-26 04:53+0000\n"
+"X-Generator: Launchpad (build 16640)\n"
 
 #: Searcher.js:before
 msgid "Published Before"
@@ -107,7 +107,7 @@ msgstr ""
 
 #: Searcher.js:perform_search
 msgid "Go!"
-msgstr ""
+msgstr "Buscar"
 
 #: Searcher.js:remove
 msgid "Remove"
diff --git a/build/i18n/po/XULTermLoader.js/XULTermLoader.js.pot b/build/i18n/po/XULTermLoader.js/XULTermLoader.js.pot
index 4446ac2..780c3db 100644
--- a/build/i18n/po/XULTermLoader.js/XULTermLoader.js.pot
+++ b/build/i18n/po/XULTermLoader.js/XULTermLoader.js.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:09-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:52-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -24,7 +24,9 @@ msgid "You have already loaded the maximum number of terms."
 msgstr ""
 
 #: XULTermLoader.js:TERM_LIMIT_SOME
-msgid "Could not load all terms from the file without exceeding maximum number of terms. Some data not included."
+msgid ""
+"Could not load all terms from the file without exceeding maximum number of "
+"terms. Some data not included."
 msgstr ""
 
 #: XULTermLoader.js:CHOOSE_FILE
diff --git a/build/i18n/po/acq.js/acq.js.pot b/build/i18n/po/acq.js/acq.js.pot
index c5f1cd4..f76362c 100644
--- a/build/i18n/po/acq.js/acq.js.pot
+++ b/build/i18n/po/acq.js/acq.js.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:08-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:52-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -12,7 +12,9 @@ msgstr ""
 "Content-Transfer-Encoding: 8-bit\n"
 
 #: acq.js:ADD_LI_TO_PO_BAD_LI_STATE
-msgid "The selected lineitem is not in a state that can be added to a purchase order"
+msgid ""
+"The selected lineitem is not in a state that can be added to a purchase "
+"order"
 msgstr ""
 
 #: acq.js:CONFIRM_FUNDS_AT_WARNING
@@ -26,19 +28,27 @@ msgid "You have not selected any lineitem details to claim."
 msgstr ""
 
 #: acq.js:FUND_LIST_ROLLOVER_SUMMARY_FUNDS
-msgid "<b>${1}</b> funds propagated for fiscal year ${0} for the selected locations"
+msgid ""
+"<b>${1}</b> funds propagated for fiscal year ${0} for the selected locations"
 msgstr ""
 
 #: acq.js:ONE_LI_ATTR_SEARCH_AT_A_TIME
-msgid "You cannot both type in an attribute value search and search for an uploaded file of terms at the same time."
+msgid ""
+"You cannot both type in an attribute value search and search for an uploaded"
+" file of terms at the same time."
 msgstr ""
 
 #: acq.js:PREPAYMENT_REQUIRED_REMINDER
-msgid "This PO requires prepayment.  Are you certain you're ready to activate it?"
+msgid ""
+"This PO requires prepayment.  Are you certain you're ready to activate it?"
 msgstr ""
 
 #: acq.js:INVOICE_EXTRA_COPIES
-msgid "You are attempting to invoice <b>${0}</b> more copies than originally ordered.  <br/><br/>To add these items to the original order, select a fund and choose 'Add New Items' below.  <br/>After saving the invoice, you may finish editing and importing the new copies from the lineitem details page."
+msgid ""
+"You are attempting to invoice <b>${0}</b> more copies than originally "
+"ordered.  <br/><br/>To add these items to the original order, select a fund "
+"and choose 'Add New Items' below.  <br/>After saving the invoice, you may "
+"finish editing and importing the new copies from the lineitem details page."
 msgstr ""
 
 #: acq.js:LI_ATTR_SEARCH_CHOOSE_FILE
@@ -68,7 +78,9 @@ msgid ""
 msgstr ""
 
 #: acq.js:INVOICE_ITEM_DETAILS
-msgid "${0} <br/> ${1} <br/> ${2}. <br/> Estimated Price: $${3}. <br/> Lineitem ID: ${4} <br/> PO: ${5} <br/> Order Date: ${6}"
+msgid ""
+"${0} <br/> ${1} <br/> ${2}. <br/> Estimated Price: $${3}. <br/> Lineitem ID:"
+" ${4} <br/> PO: ${5} <br/> Order Date: ${6}"
 msgstr ""
 
 #: acq.js:XUL_RECORD_DETAIL_PAGE
@@ -137,7 +149,9 @@ msgid "Print"
 msgstr ""
 
 #: acq.js:INVOICE_ITEM_PO_DETAILS
-msgid "<b>${0}</b><br/><a href='${1}/acq/po/view/${2}'>PO #${3} ${4}</a><br/>Total Estimated Cost: $${5}"
+msgid ""
+"<b>${0}</b><br/><a href='${1}/acq/po/view/${2}'>PO #${3} ${4}</a><br/>Total "
+"Estimated Cost: $${5}"
 msgstr ""
 
 #: acq.js:LI_CANCEL_CONFIRM
@@ -157,7 +171,11 @@ msgid "Unnamed"
 msgstr ""
 
 #: acq.js:DEL_LI_FROM_PO
-msgid "That item has already been ordered!  Deleting it now will not revoke or modify any order that has been placed with a vendor.  Deleting the item may put the system's idea of your purchase order in a state that is inconsistent with reality.  Are you sure you mean to do this?"
+msgid ""
+"That item has already been ordered!  Deleting it now will not revoke or "
+"modify any order that has been placed with a vendor.  Deleting the item may "
+"put the system's idea of your purchase order in a state that is inconsistent"
+" with reality.  Are you sure you mean to do this?"
 msgstr ""
 
 #: acq.js:CREATE_PO_ASSETS_CONFIRM
@@ -260,7 +278,9 @@ msgid "Claims (${0} existing)"
 msgstr ""
 
 #: acq.js:FUND_LIST_ROLLOVER_SUMMARY_ROLLOVER_AMOUNT
-msgid "<b>$${1}</b> unspent money rolled over to fiscal year ${0} for the selected locations"
+msgid ""
+"<b>$${1}</b> unspent money rolled over to fiscal year ${0} for the selected "
+"locations"
 msgstr ""
 
 #: acq.js:DFA_TIP
diff --git a/build/i18n/po/capture.js/capture.js.pot b/build/i18n/po/capture.js/capture.js.pot
index 2b86e76..8484440 100644
--- a/build/i18n/po/capture.js/capture.js.pot
+++ b/build/i18n/po/capture.js/capture.js.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:08-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:52-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -64,7 +64,9 @@ msgid "Printed by"
 msgstr ""
 
 #: capture.js:NO_PAYLOAD
-msgid "We did not receive further information from the server about this attempt to capture."
+msgid ""
+"We did not receive further information from the server about this attempt to"
+" capture."
 msgstr ""
 
 #: capture.js:CAPTURE_TRANSIT_SOURCE
diff --git a/build/i18n/po/cat.properties/cs-CZ.po b/build/i18n/po/cat.properties/cs-CZ.po
index f392dbd..332b681 100644
--- a/build/i18n/po/cat.properties/cs-CZ.po
+++ b/build/i18n/po/cat.properties/cs-CZ.po
@@ -3,14 +3,14 @@ msgstr ""
 "Project-Id-Version: Evergreen\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-09-04 13:44-0400\n"
-"PO-Revision-Date: 2012-09-13 18:57+0000\n"
+"PO-Revision-Date: 2013-07-04 11:49+0000\n"
 "Last-Translator: Eva Cerninakova <Unknown>\n"
 "Language-Team: UISK <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-09-14 04:37+0000\n"
-"X-Generator: Launchpad (build 15944)\n"
+"X-Launchpad-Export-Date: 2013-07-05 05:39+0000\n"
+"X-Generator: Launchpad (build 16696)\n"
 "X-Poedit-Country: CZECH REPUBLIC\n"
 "X-Accelerator-Marker: &\n"
 "X-Poedit-Language: Czech\n"
@@ -563,7 +563,7 @@ msgstr "Editor exemplářů"
 
 #: staff.cat.copy_editor.create_copies
 msgid "Modify/Create Copies"
-msgstr "Upravit/vytvořit exempláře"
+msgstr "Uložit/vytvořit exempláře"
 
 #: staff.cat.copy_editor.create_copies.accesskey
 msgid "M"
diff --git a/build/i18n/po/common.properties/cs-CZ.po b/build/i18n/po/common.properties/cs-CZ.po
index 97eb1f6..e31453fc 100644
--- a/build/i18n/po/common.properties/cs-CZ.po
+++ b/build/i18n/po/common.properties/cs-CZ.po
@@ -3,14 +3,14 @@ msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-12-20 09:37-0400\n"
-"PO-Revision-Date: 2013-01-12 19:14+0000\n"
+"PO-Revision-Date: 2013-06-06 12:41+0000\n"
 "Last-Translator: Eva Cerninakova <Unknown>\n"
 "Language-Team: UISK <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-01-13 04:39+0000\n"
-"X-Generator: Launchpad (build 16420)\n"
+"X-Launchpad-Export-Date: 2013-06-07 05:57+0000\n"
+"X-Generator: Launchpad (build 16667)\n"
 "X-Poedit-Country: CZECH REPUBLIC\n"
 "X-Accelerator-Marker: &\n"
 "X-Poedit-Language: Czech\n"
@@ -394,7 +394,7 @@ msgstr "Uplatnil(a) "
 
 #: staff.ausp_set_date_label
 msgid "Applied On "
-msgstr "Uplatněno na "
+msgstr "Vytvořeno "
 
 #: staff.ausp_note_label
 msgid "Note "
diff --git a/build/i18n/po/conify.js/conify.js.pot b/build/i18n/po/conify.js/conify.js.pot
index 31b2100..6986c7c 100644
--- a/build/i18n/po/conify.js/conify.js.pot
+++ b/build/i18n/po/conify.js/conify.js.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:08-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:52-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -116,7 +116,9 @@ msgid "Problem fetching Mailing Address for ${0}"
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_AOU
-msgid "There are unsaved changes to one or more organizational units. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved changes to one or more organizational units. Click OK to "
+"save these changes, or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:SURVEY_SAVE_ADD
@@ -160,7 +162,9 @@ msgid "New Group"
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_PGT
-msgid "There are unsaved modified permission maps. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved modified permission maps. Click OK to save these changes, "
+"or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:SUCCESS_SAVING_MAILING
@@ -184,11 +188,15 @@ msgid "Are you sure you want to delete ${0}?"
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_PPL
-msgid "There are unsaved modified permissions. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved modified permissions. Click OK to save these changes, or "
+"Cancel to abandon them."
 msgstr ""
 
 #: conify.js:CONFIRM_UNSAVED_CHANGES
-msgid "There are unsaved changes to one or more organization types. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved changes to one or more organization types. Click OK to "
+"save these changes, or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:ERROR_FETCHING_HOURS
@@ -296,7 +304,9 @@ msgid "Problem fetching organizational unit data"
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_CCS
-msgid "There are unsaved changes to one or more copy statuses. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved changes to one or more copy statuses. Click OK to save "
+"these changes, or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:OPAC_VISIBLE
@@ -348,7 +358,9 @@ msgid "${0}: ${1}"
 msgstr ""
 
 #: conify.js:CONFIRM_EXIT_CAM
-msgid "There are unsaved changes to one or more ${0} codes. Click OK to save these changes, or Cancel to abandon them."
+msgid ""
+"There are unsaved changes to one or more ${0} codes. Click OK to save these "
+"changes, or Cancel to abandon them."
 msgstr ""
 
 #: conify.js:ERROR_CALLING_METHOD_PGT
diff --git a/build/i18n/po/db.seed/db.seed.pot b/build/i18n/po/db.seed/db.seed.pot
index 4f087bd..8dd225f 100644
--- a/build/i18n/po/db.seed/db.seed.pot
+++ b/build/i18n/po/db.seed/db.seed.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:07-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -12,12 +12,12 @@ msgstr ""
 "Content-Transfer-Encoding: 8-bit\n"
 
 # id::cmf.label__27 id::vqbrad.description__11
-#: 950.data.seed-values.sql:170 950.data.seed-values.sql:4794
+#: 950.data.seed-values.sql:170 950.data.seed-values.sql:4824
 msgid "Internal ID"
 msgstr ""
 
 # id::ccvm.value__461
-#: 950.data.seed-values.sql:6275
+#: 950.data.seed-values.sql:6305
 msgid "Vai"
 msgstr ""
 
@@ -33,7 +33,7 @@ msgid "Series Title"
 msgstr ""
 
 # id::ccvm.value__520
-#: 950.data.seed-values.sql:6340
+#: 950.data.seed-values.sql:6370
 msgid "Poetry"
 msgstr ""
 
@@ -43,7 +43,7 @@ msgid "In transit"
 msgstr ""
 
 # id::ccvm.value__339
-#: 950.data.seed-values.sql:6153
+#: 950.data.seed-values.sql:6183
 msgid "Palauan"
 msgstr ""
 
@@ -53,32 +53,32 @@ msgid "On reservation shelf"
 msgstr ""
 
 # id::ccvm.value__226
-#: 950.data.seed-values.sql:6040
+#: 950.data.seed-values.sql:6070
 msgid "Kyrgyz"
 msgstr ""
 
 # id::ccvm.value__552
-#: 950.data.seed-values.sql:6379
+#: 950.data.seed-values.sql:6409
 msgid "Blu-ray disc"
 msgstr ""
 
 # id::ccvm.value__531
-#: 950.data.seed-values.sql:6356
+#: 950.data.seed-values.sql:6386
 msgid "Serial component part"
 msgstr ""
 
 # id::ccvm.value__312
-#: 950.data.seed-values.sql:6126
+#: 950.data.seed-values.sql:6156
 msgid "Niuean"
 msgstr ""
 
 # id::ccvm.value__131
-#: 950.data.seed-values.sql:5945
+#: 950.data.seed-values.sql:5975
 msgid "Fanti"
 msgstr ""
 
 # id::coust.label__config.settings_group.opac
-#: 950.data.seed-values.sql:2488
+#: 950.data.seed-values.sql:2498
 msgid "OPAC"
 msgstr ""
 
@@ -94,22 +94,22 @@ msgid "LCCN"
 msgstr ""
 
 # id::ccvm.value__274
-#: 950.data.seed-values.sql:6088
+#: 950.data.seed-values.sql:6118
 msgid "Masai"
 msgstr ""
 
 # id::ccvm.value__40
-#: 950.data.seed-values.sql:5854
+#: 950.data.seed-values.sql:5884
 msgid "Bambara"
 msgstr ""
 
 # id::ccvm.value__395
-#: 950.data.seed-values.sql:6209
+#: 950.data.seed-values.sql:6239
 msgid "Sindhi"
 msgstr ""
 
 # id::ccvm.value__258
-#: 950.data.seed-values.sql:6072
+#: 950.data.seed-values.sql:6102
 msgid "Ganda"
 msgstr ""
 
@@ -119,12 +119,12 @@ msgid "Alerting block on Circ"
 msgstr ""
 
 # id::ccvm.value__370
-#: 950.data.seed-values.sql:6184
+#: 950.data.seed-values.sql:6214
 msgid "Santali"
 msgstr ""
 
 # id::ccvm.value__110
-#: 950.data.seed-values.sql:5924
+#: 950.data.seed-values.sql:5954
 msgid "Duala"
 msgstr ""
 
@@ -134,17 +134,17 @@ msgid "ISMN"
 msgstr ""
 
 # id::ccvm.value__465
-#: 950.data.seed-values.sql:6279
+#: 950.data.seed-values.sql:6309
 msgid "Votic"
 msgstr ""
 
 # id::ccvm.value__522 id::ccvm.value__553
-#: 950.data.seed-values.sql:6342 950.data.seed-values.sql:6380
+#: 950.data.seed-values.sql:6372 950.data.seed-values.sql:6410
 msgid "Unknown"
 msgstr ""
 
 # id::cubt.label__folks%3Acirc.view
-#: 950.data.seed-values.sql:4866
+#: 950.data.seed-values.sql:4896
 msgid "View Circulations"
 msgstr ""
 
@@ -154,22 +154,27 @@ msgid "Example Branch 2"
 msgstr ""
 
 # id::ccvm.value__443
-#: 950.data.seed-values.sql:6257
+#: 950.data.seed-values.sql:6287
 msgid "Tsonga"
 msgstr ""
 
+# id::acsaf.name__68
+#: 950.data.seed-values.sql:10230
+msgid "See From Tracing -- General Subdivision"
+msgstr ""
+
 # id::pgt.name__6 id::coust.label__config.settings_group.system
-#: 950.data.seed-values.sql:1587 950.data.seed-values.sql:2479
+#: 950.data.seed-values.sql:1587 950.data.seed-values.sql:2489
 msgid "Acquisitions"
 msgstr ""
 
 # id::ccvm.value__216
-#: 950.data.seed-values.sql:6030
+#: 950.data.seed-values.sql:6060
 msgid "Kanuri"
 msgstr ""
 
 # id::ccvm.value__457
-#: 950.data.seed-values.sql:6271
+#: 950.data.seed-values.sql:6301
 msgid "Umbundu"
 msgstr ""
 
@@ -184,22 +189,17 @@ msgid "Keyword"
 msgstr ""
 
 # id::cubt.label__folks%3Acirc.renew
-#: 950.data.seed-values.sql:4867
+#: 950.data.seed-values.sql:4897
 msgid "Renew Circulations"
 msgstr ""
 
-# id::acsaf.name__70
-#: 950.data.seed-values.sql:10197
-msgid "See Also Tracing -- Chronological Subdivision"
-msgstr ""
-
 # id::vie.description__overlay.missing.sysid
-#: 950.data.seed-values.sql:9441
+#: 950.data.seed-values.sql:9476
 msgid "Overlay failed due to missing system id"
 msgstr ""
 
 # id::ccvm.value__72
-#: 950.data.seed-values.sql:5886
+#: 950.data.seed-values.sql:5916
 msgid "Celtic (Other)"
 msgstr ""
 
@@ -209,17 +209,17 @@ msgid "Barred"
 msgstr ""
 
 # id::ccvm.value__176
-#: 950.data.seed-values.sql:5990
+#: 950.data.seed-values.sql:6020
 msgid "Hiligaynon"
 msgstr ""
 
 # id::ccvm.value__210
-#: 950.data.seed-values.sql:6024
+#: 950.data.seed-values.sql:6054
 msgid "Kachin"
 msgstr ""
 
 # id::acsaf.name__3
-#: 950.data.seed-values.sql:10152
+#: 950.data.seed-values.sql:10187
 msgid "Heading -- Meeting Name"
 msgstr ""
 
@@ -229,7 +229,7 @@ msgid "overdue_max"
 msgstr ""
 
 # id::coust.label__config.settings_group.recall
-#: 950.data.seed-values.sql:2494
+#: 950.data.seed-values.sql:2504
 msgid "Recalls"
 msgstr ""
 
@@ -239,75 +239,80 @@ msgid "Volunteers"
 msgstr ""
 
 # id::ccvm.value__518
-#: 950.data.seed-values.sql:6338
+#: 950.data.seed-values.sql:6368
 msgid "Short stories"
 msgstr ""
 
 # id::ccvm.value__334
-#: 950.data.seed-values.sql:6148
+#: 950.data.seed-values.sql:6178
 msgid "Pangasinan"
 msgstr ""
 
 # id::cgf.label__history.circ.retention_age
 # id::cust.label__history.circ.retention_age
 # id::cust.description__history.circ.retention_age
-#: 950.data.seed-values.sql:8943 950.data.seed-values.sql:8993
-#: 950.data.seed-values.sql:8994
+#: 950.data.seed-values.sql:8978 950.data.seed-values.sql:9028
+#: 950.data.seed-values.sql:9029
 msgid "Historical Circulation Retention Age"
 msgstr ""
 
 # id::at.name__b
-#: 950.data.seed-values.sql:10269
+#: 950.data.seed-values.sql:10304
 msgid "LC subject headings for children's literature"
 msgstr ""
 
 # id::coust.label__config.settings_group.global
-#: 950.data.seed-values.sql:2490
+#: 950.data.seed-values.sql:2500
 msgid "Global"
 msgstr ""
 
 # id::aiit.name__TAX
-#: 950.data.seed-values.sql:8849
+#: 950.data.seed-values.sql:8884
 msgid "Tax"
 msgstr ""
 
+# id::ccvm.value__372
+#: 950.data.seed-values.sql:6216
+msgid "Scots"
+msgstr ""
+
 # id::ccvm.value__336
-#: 950.data.seed-values.sql:6150
+#: 950.data.seed-values.sql:6180
 msgid "Pampanga"
 msgstr ""
 
 # id::ccvm.value__299
-#: 950.data.seed-values.sql:6113
+#: 950.data.seed-values.sql:6143
 msgid "Nahuatl"
 msgstr ""
 
 # id::ccvm.value__478
-#: 950.data.seed-values.sql:6292
+#: 950.data.seed-values.sql:6322
 msgid "Yiddish"
 msgstr ""
 
 # id::ccvm.value__93
-#: 950.data.seed-values.sql:5907
+#: 950.data.seed-values.sql:5937
 msgid "Creoles and Pidgins, Portuguese-based (Other)"
 msgstr ""
 
 # id::ccvm.value__438
-#: 950.data.seed-values.sql:6252
+#: 950.data.seed-values.sql:6282
 msgid "Tongan"
 msgstr ""
 
 # id::ccvm.value__189
-#: 950.data.seed-values.sql:6003
+#: 950.data.seed-values.sql:6033
 msgid "Ijo"
 msgstr ""
 
 # id::aiit.name__ITM
-#: 950.data.seed-values.sql:8853
+#: 950.data.seed-values.sql:8888
 msgid "Non-library Item"
 msgstr ""
 
 # id::ccvm.value__153
-#: 950.data.seed-values.sql:5967
+#: 950.data.seed-values.sql:5997
 msgid "Gilbertese"
 msgstr ""
 
@@ -318,7 +323,7 @@ msgstr ""
 
 # id::cust.label__history.hold.retention_start
 # id::cust.description__history.hold.retention_start
-#: 950.data.seed-values.sql:9014 950.data.seed-values.sql:9015
+#: 950.data.seed-values.sql:9049 950.data.seed-values.sql:9050
 msgid "Historical Hold Retention Start Date"
 msgstr ""
 
@@ -328,37 +333,37 @@ msgid "Bookmobile"
 msgstr ""
 
 # id::ccvm.value__217
-#: 950.data.seed-values.sql:6031
+#: 950.data.seed-values.sql:6061
 msgid "Kawi"
 msgstr ""
 
 # id::at.name__d
-#: 950.data.seed-values.sql:10271
+#: 950.data.seed-values.sql:10306
 msgid "National Agricultural Library subject authority file"
 msgstr ""
 
 # id::coust.label__config.settings_group.gui
-#: 950.data.seed-values.sql:2481
+#: 950.data.seed-values.sql:2491
 msgid "GUI"
 msgstr ""
 
 # id::ccvm.value__228
-#: 950.data.seed-values.sql:6042
+#: 950.data.seed-values.sql:6072
 msgid "Konkani"
 msgstr ""
 
 # id::ccvm.value__302
-#: 950.data.seed-values.sql:6116
+#: 950.data.seed-values.sql:6146
 msgid "Nauru"
 msgstr ""
 
 # id::ccvm.value__494
-#: 950.data.seed-values.sql:6310
+#: 950.data.seed-values.sql:6340
 msgid "General"
 msgstr ""
 
 # id::ccvm.value__369
-#: 950.data.seed-values.sql:6183
+#: 950.data.seed-values.sql:6213
 msgid "Sasak"
 msgstr ""
 
@@ -373,59 +378,59 @@ msgid "35_days_1_renew"
 msgstr ""
 
 # id::ccvm.value__247
-#: 950.data.seed-values.sql:6061
+#: 950.data.seed-values.sql:6091
 msgid "Latin"
 msgstr ""
 
 # id::ccvm.value__485
-#: 950.data.seed-values.sql:6299
+#: 950.data.seed-values.sql:6329
 msgid "Zulu"
 msgstr ""
 
 # id::ccvm.value__542
-#: 950.data.seed-values.sql:6369
+#: 950.data.seed-values.sql:6399
 msgid "Quadruplex"
 msgstr ""
 
 # id::ccvm.value__150
-#: 950.data.seed-values.sql:5964
+#: 950.data.seed-values.sql:5994
 msgid "Georgian"
 msgstr ""
 
 # id::ccvm.value__192
-#: 950.data.seed-values.sql:6006
+#: 950.data.seed-values.sql:6036
 msgid "Iloko"
 msgstr ""
 
 # id::ccvm.value__arc
-#: 950.data.seed-values.sql:5834
+#: 950.data.seed-values.sql:5864
 msgid "Aramaic"
 msgstr ""
 
 # id::ccvm.value__432
-#: 950.data.seed-values.sql:6246
+#: 950.data.seed-values.sql:6276
 msgid "Tigrinya"
 msgstr ""
 
 # id::ccvm.value__78 id::ccvm.value__440
-#: 950.data.seed-values.sql:5892 950.data.seed-values.sql:6254
+#: 950.data.seed-values.sql:5922 950.data.seed-values.sql:6284
 msgid "Truk"
 msgstr ""
 
 # id::ccvm.value__430
-#: 950.data.seed-values.sql:6244
+#: 950.data.seed-values.sql:6274
 msgid "Tibetan"
 msgstr ""
 
 # id::cza.label__7 id::cza.label__16 id::cza.label__25
 # id::vqbrad.description__12
 #: 950.data.seed-values.sql:372 950.data.seed-values.sql:393
-#: 950.data.seed-values.sql:412 950.data.seed-values.sql:4795
+#: 950.data.seed-values.sql:412 950.data.seed-values.sql:4825
 msgid "Publisher"
 msgstr ""
 
 # id::ccvm.value__197
-#: 950.data.seed-values.sql:6011
+#: 950.data.seed-values.sql:6041
 msgid "Ingush"
 msgstr ""
 
@@ -435,32 +440,32 @@ msgid "Alerting Note, no blocks"
 msgstr ""
 
 # id::ccvm.value__114
-#: 950.data.seed-values.sql:5928
+#: 950.data.seed-values.sql:5958
 msgid "Dzongkha"
 msgstr ""
 
 # id::ccvm.value__166 id::ccvm.value__167
-#: 950.data.seed-values.sql:5980 950.data.seed-values.sql:5981
+#: 950.data.seed-values.sql:6010 950.data.seed-values.sql:6011
 msgid "Guarani"
 msgstr ""
 
 # id::ccvm.value__188
-#: 950.data.seed-values.sql:6002
+#: 950.data.seed-values.sql:6032
 msgid "Sichuan Yi"
 msgstr ""
 
 # id::ccvm.value__60
-#: 950.data.seed-values.sql:5874
+#: 950.data.seed-values.sql:5904
 msgid "Batak"
 msgstr ""
 
 # id::ccvm.value__107
-#: 950.data.seed-values.sql:5921
+#: 950.data.seed-values.sql:5951
 msgid "Divehi"
 msgstr ""
 
 # id::ccvm.value__376
-#: 950.data.seed-values.sql:6190
+#: 950.data.seed-values.sql:6220
 msgid "Irish, Old (to 1100)"
 msgstr ""
 
@@ -470,7 +475,7 @@ msgid "Lost Materials Processing Fee"
 msgstr ""
 
 # id::ccvm.value__175
-#: 950.data.seed-values.sql:5989
+#: 950.data.seed-values.sql:6019
 msgid "Herero"
 msgstr ""
 
@@ -485,7 +490,7 @@ msgid "3_months_0_renew"
 msgstr ""
 
 # id::acsaf.name__8
-#: 950.data.seed-values.sql:10156
+#: 950.data.seed-values.sql:10191
 msgid "Heading -- General Subdivision"
 msgstr ""
 
@@ -495,77 +500,82 @@ msgid "System Administrator"
 msgstr ""
 
 # id::ccvm.value__248
-#: 950.data.seed-values.sql:6062
+#: 950.data.seed-values.sql:6092
 msgid "Latvian"
 msgstr ""
 
 # id::ccvm.value__119
-#: 950.data.seed-values.sql:5933
+#: 950.data.seed-values.sql:5963
 msgid "English"
 msgstr ""
 
 # id::ccvm.value__487
-#: 950.data.seed-values.sql:6303
+#: 950.data.seed-values.sql:6333
 msgid "Unknown or unspecified"
 msgstr ""
 
 # id::csg.label__sms
-#: 950.data.seed-values.sql:2498
+#: 950.data.seed-values.sql:2508
 msgid "SMS Text Messages"
 msgstr ""
 
 # id::ccvm.value__495
-#: 950.data.seed-values.sql:6311
+#: 950.data.seed-values.sql:6341
 msgid "Juvenile"
 msgstr ""
 
 # id::ccvm.value__77
-#: 950.data.seed-values.sql:5891
+#: 950.data.seed-values.sql:5921
 msgid "Chinese"
 msgstr ""
 
-# id::at.name__r
-#: 950.data.seed-values.sql:10274
-msgid "Art and Architecture Thesaurus"
+# id::acsaf.name__69
+#: 950.data.seed-values.sql:10231
+msgid "See From Tracing -- Geographic Subdivision"
 msgstr ""
 
 # id::ccvm.value__190
-#: 950.data.seed-values.sql:6004
+#: 950.data.seed-values.sql:6034
 msgid "Inuktitut"
 msgstr ""
 
 # id::ccvm.value__295
-#: 950.data.seed-values.sql:6109
+#: 950.data.seed-values.sql:6139
 msgid "Munda (Other)"
 msgstr ""
 
 # id::ccvm.value__344
-#: 950.data.seed-values.sql:6158
+#: 950.data.seed-values.sql:6188
 msgid "Pali"
 msgstr ""
 
 # id::ccvm.value__143
-#: 950.data.seed-values.sql:5957
+#: 950.data.seed-values.sql:5987
 msgid "Gã"
 msgstr ""
 
+# id::aurt.label__3
+#: 950.data.seed-values.sql:2514
+msgid "Audiobooks"
+msgstr ""
+
 # id::ccvm.value__477
-#: 950.data.seed-values.sql:6291
+#: 950.data.seed-values.sql:6321
 msgid "Yapese"
 msgstr ""
 
 # id::ccvm.value__ara
-#: 950.data.seed-values.sql:5833
+#: 950.data.seed-values.sql:5863
 msgid "Arabic"
 msgstr ""
 
 # id::ccvm.value__462
-#: 950.data.seed-values.sql:6276
+#: 950.data.seed-values.sql:6306
 msgid "Venda"
 msgstr ""
 
 # id::ccvm.value__550
-#: 950.data.seed-values.sql:6377
+#: 950.data.seed-values.sql:6407
 msgid "8 mm."
 msgstr ""
 
@@ -574,28 +584,23 @@ msgstr ""
 msgid "Staff"
 msgstr ""
 
-# id::ccvm.value''in__169
-#: 950.data.seed-values.sql:5983
-msgid "Gwich"
-msgstr ""
-
 # id::ccvm.value__202
-#: 950.data.seed-values.sql:6016
+#: 950.data.seed-values.sql:6046
 msgid "Iroquoian (Other)"
 msgstr ""
 
 # id::ccvm.value__240
-#: 950.data.seed-values.sql:6054
+#: 950.data.seed-values.sql:6084
 msgid "Kutenai"
 msgstr ""
 
 # id::ccvm.value__327
-#: 950.data.seed-values.sql:6141
+#: 950.data.seed-values.sql:6171
 msgid "Oriya"
 msgstr ""
 
 # id::cuat.label__9
-#: 950.data.seed-values.sql:11679
+#: 950.data.seed-values.sql:11714
 msgid "Verification via opensrf"
 msgstr ""
 
@@ -605,17 +610,17 @@ msgid "Abbreviated Title"
 msgstr ""
 
 # id::ccvm.value__322
-#: 950.data.seed-values.sql:6136
+#: 950.data.seed-values.sql:6166
 msgid "Nyankole"
 msgstr ""
 
 # id::acsaf.name__10
-#: 950.data.seed-values.sql:10158
+#: 950.data.seed-values.sql:10193
 msgid "Heading -- Chronological Subdivision"
 msgstr ""
 
 # id::coust.label__config.settings_group.receipt_template
-#: 950.data.seed-values.sql:2497
+#: 950.data.seed-values.sql:2507
 msgid "Receipt Template"
 msgstr ""
 
@@ -625,12 +630,12 @@ msgid "English (Canada)"
 msgstr ""
 
 # id::ccvm.value__178
-#: 950.data.seed-values.sql:5992
+#: 950.data.seed-values.sql:6022
 msgid "Hindi"
 msgstr ""
 
 # id::ccvm.value__127
-#: 950.data.seed-values.sql:5941
+#: 950.data.seed-values.sql:5971
 msgid "Ewondo"
 msgstr ""
 
@@ -640,12 +645,12 @@ msgid "Mexican Spanish"
 msgstr ""
 
 # id::acsaf.name__11
-#: 950.data.seed-values.sql:10159
+#: 950.data.seed-values.sql:10194
 msgid "Heading -- Form Subdivision"
 msgstr ""
 
 # id::ccvm.value__abk
-#: 950.data.seed-values.sql:5816
+#: 950.data.seed-values.sql:5846
 msgid "Abkhaz"
 msgstr ""
 
@@ -655,32 +660,32 @@ msgid "Alternate Title"
 msgstr ""
 
 # id::ccvm.value__87
-#: 950.data.seed-values.sql:5901
+#: 950.data.seed-values.sql:5931
 msgid "Chamic languages"
 msgstr ""
 
 # id::ccvm.value__515
-#: 950.data.seed-values.sql:6335
+#: 950.data.seed-values.sql:6365
 msgid "Novels"
 msgstr ""
 
 # id::ccvm.value__473
-#: 950.data.seed-values.sql:6287
+#: 950.data.seed-values.sql:6317
 msgid "Wolof"
 msgstr ""
 
 # id::ccvm.value__57
-#: 950.data.seed-values.sql:5871
+#: 950.data.seed-values.sql:5901
 msgid "Bosnian"
 msgstr ""
 
 # id::ccvm.value__357
-#: 950.data.seed-values.sql:6171
+#: 950.data.seed-values.sql:6201
 msgid "Romani"
 msgstr ""
 
 # id::ccvm.value__463
-#: 950.data.seed-values.sql:6277
+#: 950.data.seed-values.sql:6307
 msgid "Vietnamese"
 msgstr ""
 
@@ -690,7 +695,7 @@ msgid "This Specialized Library"
 msgstr ""
 
 # id::ccvm.value__287
-#: 950.data.seed-values.sql:6101
+#: 950.data.seed-values.sql:6131
 msgid "Manchu"
 msgstr ""
 
@@ -706,42 +711,42 @@ msgstr ""
 
 # id::i18n_l.name__ru-RU id::i18n_l.description__ru-RU id::ccvm.value__360
 #: 950.data.seed-values.sql:347 950.data.seed-values.sql:348
-#: 950.data.seed-values.sql:6174
+#: 950.data.seed-values.sql:6204
 msgid "Russian"
 msgstr ""
 
 # id::ccvm.value__543
-#: 950.data.seed-values.sql:6370
+#: 950.data.seed-values.sql:6400
 msgid "Laserdisc"
 msgstr ""
 
 # id::ccvm.value__148
-#: 950.data.seed-values.sql:5962
+#: 950.data.seed-values.sql:5992
 msgid "Gbaya"
 msgstr ""
 
 # id::ccvm.value__218
-#: 950.data.seed-values.sql:6032
+#: 950.data.seed-values.sql:6062
 msgid "Kazakh"
 msgstr ""
 
 # id::ccvm.value__433
-#: 950.data.seed-values.sql:6247
+#: 950.data.seed-values.sql:6277
 msgid "Tiv"
 msgstr ""
 
 # id::ccvm.value__458
-#: 950.data.seed-values.sql:6272
+#: 950.data.seed-values.sql:6302
 msgid "Undetermined"
 msgstr ""
 
 # id::ccvm.value__181
-#: 950.data.seed-values.sql:5995
+#: 950.data.seed-values.sql:6025
 msgid "Hiri Motu"
 msgstr ""
 
 # id::coust.label__config.settings_group.holds
-#: 950.data.seed-values.sql:2485
+#: 950.data.seed-values.sql:2495
 msgid "Holds"
 msgstr ""
 
@@ -756,162 +761,167 @@ msgid "Canadian English"
 msgstr ""
 
 # id::aiit.name__SUB
-#: 950.data.seed-values.sql:8854
+#: 950.data.seed-values.sql:8889
 msgid "Serial Subscription"
 msgstr ""
 
 # id::ccvm.value__58
-#: 950.data.seed-values.sql:5872
+#: 950.data.seed-values.sql:5902
 msgid "Braj"
 msgstr ""
 
 # id::ccvm.value__44
-#: 950.data.seed-values.sql:5858
+#: 950.data.seed-values.sql:5888
 msgid "Baltic (Other)"
 msgstr ""
 
 # id::vie.description__import.item.invalid.deposit_amount
-#: 950.data.seed-values.sql:9452
+#: 950.data.seed-values.sql:9487
 msgid "Invalid value for \"deposit_amount\""
 msgstr ""
 
 # id::ccvm.value__516
-#: 950.data.seed-values.sql:6336
+#: 950.data.seed-values.sql:6366
 msgid "Humor, satires, etc."
 msgstr ""
 
 # id::cuat.label__7
-#: 950.data.seed-values.sql:11676
+#: 950.data.seed-values.sql:11711
 msgid "SIP2 Proxy Login"
 msgstr ""
 
 # id::ccvm.value__509
-#: 950.data.seed-values.sql:6327
+#: 950.data.seed-values.sql:6357
 msgid "Computer file"
 msgstr ""
 
 # id::ccvm.value__342
-#: 950.data.seed-values.sql:6156
+#: 950.data.seed-values.sql:6186
 msgid "Philippine (Other)"
 msgstr ""
 
 # id::acsaf.name__51
-#: 950.data.seed-values.sql:10185
+#: 950.data.seed-values.sql:10220
 msgid "Subdivision Linking Entry -- Form Subdivision"
 msgstr ""
 
 # id::ccvm.value__151
-#: 950.data.seed-values.sql:5965
+#: 950.data.seed-values.sql:5995
 msgid "German"
 msgstr ""
 
 # id::acqim.name__EDI
-#: 950.data.seed-values.sql:8856
+#: 950.data.seed-values.sql:8891
 msgid "EDI"
 msgstr ""
 
 # id::vie.description__import.item.duplicate.barcode
-#: 950.data.seed-values.sql:9436
+#: 950.data.seed-values.sql:9471
 msgid "Import failed due to barcode collision"
 msgstr ""
 
 # id::coust.label__config.settings_group.lib
-#: 950.data.seed-values.sql:2482
+#: 950.data.seed-values.sql:2492
 msgid "Library"
 msgstr ""
 
 # id::ccvm.value__384
-#: 950.data.seed-values.sql:6198
+#: 950.data.seed-values.sql:6228
 msgid "Slavic (Other)"
 msgstr ""
 
 # id::ccvm.value__42
-#: 950.data.seed-values.sql:5856
+#: 950.data.seed-values.sql:5886
 msgid "Basque"
 msgstr ""
 
 # id::ccvm.value__446
-#: 950.data.seed-values.sql:6260
+#: 950.data.seed-values.sql:6290
 msgid "Tumbuka"
 msgstr ""
 
+# id::ccvm.value__526
+#: 950.data.seed-values.sql:6379
+msgid "Large print"
+msgstr ""
+
 # id::cbs.source__1
 #: 950.data.seed-values.sql:3
 msgid "oclc"
 msgstr ""
 
 # id::pgt.name__11 id::coust.label__config.settings_group.serial
-#: 950.data.seed-values.sql:1598 950.data.seed-values.sql:2493
+#: 950.data.seed-values.sql:1598 950.data.seed-values.sql:2503
 msgid "Serials"
 msgstr ""
 
 # id::ccvm.value__56
-#: 950.data.seed-values.sql:5870
+#: 950.data.seed-values.sql:5900
 msgid "Bantu (Other)"
 msgstr ""
 
 # id::acsaf.name__1
-#: 950.data.seed-values.sql:10150
+#: 950.data.seed-values.sql:10185
 msgid "Heading -- Personal Name"
 msgstr ""
 
 # id::acsaf.name__43
-#: 950.data.seed-values.sql:10178
+#: 950.data.seed-values.sql:10213
 msgid "Established Heading Linking Entry -- Meeting Name"
 msgstr ""
 
 # id::ccvm.value__277
-#: 950.data.seed-values.sql:6091
+#: 950.data.seed-values.sql:6121
 msgid "Mandar"
 msgstr ""
 
 # id::ccvm.value__530
-#: 950.data.seed-values.sql:6355
+#: 950.data.seed-values.sql:6385
 msgid "Monographic component part"
 msgstr ""
 
 # id::ccvm.value__549
-#: 950.data.seed-values.sql:6376
+#: 950.data.seed-values.sql:6406
 msgid "D-2"
 msgstr ""
 
 # id::ccvm.value__497
-#: 950.data.seed-values.sql:6315
+#: 950.data.seed-values.sql:6345
 msgid "Manuscript language material"
 msgstr ""
 
 # id::ccvm.value__75
-#: 950.data.seed-values.sql:5889
+#: 950.data.seed-values.sql:5919
 msgid "Chechen"
 msgstr ""
 
 # id::ccvm.value__324
-#: 950.data.seed-values.sql:6138
+#: 950.data.seed-values.sql:6168
 msgid "Nzima"
 msgstr ""
 
 # id::ccvm.value__112
-#: 950.data.seed-values.sql:5926
+#: 950.data.seed-values.sql:5956
 msgid "Dutch"
 msgstr ""
 
 # id::ccvm.value__232 id::ccvm.value__239
-#: 950.data.seed-values.sql:6046 950.data.seed-values.sql:6053
+#: 950.data.seed-values.sql:6076 950.data.seed-values.sql:6083
 msgid "Kusaie"
 msgstr ""
 
 # id::ccvm.value__117
-#: 950.data.seed-values.sql:5931
+#: 950.data.seed-values.sql:5961
 msgid "Ekajuk"
 msgstr ""
 
 # id::ccvm.value__163
-#: 950.data.seed-values.sql:5977
+#: 950.data.seed-values.sql:6007
 msgid "Grebo"
 msgstr ""
 
 # id::coust.label__config.settings_group.finances
-#: 950.data.seed-values.sql:2491
+#: 950.data.seed-values.sql:2501
 msgid "Finances"
 msgstr ""
 
@@ -921,32 +931,32 @@ msgid "28_days_2_renew"
 msgstr ""
 
 # id::ccvm.value__308
-#: 950.data.seed-values.sql:6122
+#: 950.data.seed-values.sql:6152
 msgid "Nepali"
 msgstr ""
 
 # id::ccvm.value__393
-#: 950.data.seed-values.sql:6207
+#: 950.data.seed-values.sql:6237
 msgid "Skolt Sami"
 msgstr ""
 
 # id::ccvm.value__133
-#: 950.data.seed-values.sql:5947
+#: 950.data.seed-values.sql:5977
 msgid "Finnish"
 msgstr ""
 
 # id::ccvm.value__51
-#: 950.data.seed-values.sql:5865
+#: 950.data.seed-values.sql:5895
 msgid "Bihari"
 msgstr ""
 
 # id::ccvm.value__470
-#: 950.data.seed-values.sql:6284
+#: 950.data.seed-values.sql:6314
 msgid "Welsh"
 msgstr ""
 
 # id::ccvm.value__331
-#: 950.data.seed-values.sql:6145
+#: 950.data.seed-values.sql:6175
 msgid "Turkish, Ottoman"
 msgstr ""
 
@@ -954,37 +964,42 @@ msgstr ""
 # id::vqbrad.description__6
 #: 950.data.seed-values.sql:154 950.data.seed-values.sql:370
 #: 950.data.seed-values.sql:391 950.data.seed-values.sql:410
-#: 950.data.seed-values.sql:4789
+#: 950.data.seed-values.sql:4819
 msgid "ISSN"
 msgstr ""
 
 # id::ccvm.value__234
-#: 950.data.seed-values.sql:6048
+#: 950.data.seed-values.sql:6078
 msgid "Kru"
 msgstr ""
 
 # id::coust.label__config.settings_group.booking
-#: 950.data.seed-values.sql:2495
+#: 950.data.seed-values.sql:2505
 msgid "Booking"
 msgstr ""
 
 # id::ccvm.value__159
-#: 950.data.seed-values.sql:5973
+#: 950.data.seed-values.sql:6003
 msgid "German, Old High (ca. 750-1050)"
 msgstr ""
 
 # id::ccvm.value__424
-#: 950.data.seed-values.sql:6238
+#: 950.data.seed-values.sql:6268
 msgid "Temne"
 msgstr ""
 
+# id::acsaf.name__71
+#: 950.data.seed-values.sql:10233
+msgid "See From Tracing -- Form Subdivision"
+msgstr ""
+
 # id::ccvm.value__206
-#: 950.data.seed-values.sql:6020
+#: 950.data.seed-values.sql:6050
 msgid "Judeo-Persian"
 msgstr ""
 
 # id::cubt.label__folks
-#: 950.data.seed-values.sql:4863
+#: 950.data.seed-values.sql:4893
 msgid "Friends"
 msgstr ""
 
@@ -994,27 +1009,27 @@ msgid "Patron exceeds fine threshold"
 msgstr ""
 
 # id::ccvm.value__102
-#: 950.data.seed-values.sql:5916
+#: 950.data.seed-values.sql:5946
 msgid "Dayak"
 msgstr ""
 
 # id::ccvm.value__160
-#: 950.data.seed-values.sql:5974
+#: 950.data.seed-values.sql:6004
 msgid "Gondi"
 msgstr ""
 
 # id::ccvm.value__182
-#: 950.data.seed-values.sql:5996
+#: 950.data.seed-values.sql:6026
 msgid "Hungarian"
 msgstr ""
 
 # id::ccvm.value__bak
-#: 950.data.seed-values.sql:5852
+#: 950.data.seed-values.sql:5882
 msgid "Bashkir"
 msgstr ""
 
 # id::ccvm.value__212
-#: 950.data.seed-values.sql:6026
+#: 950.data.seed-values.sql:6056
 msgid "Kamba"
 msgstr ""
 
@@ -1024,7 +1039,7 @@ msgid "Spanish (Mexico)"
 msgstr ""
 
 # id::ccvm.value__507
-#: 950.data.seed-values.sql:6325
+#: 950.data.seed-values.sql:6355
 msgid "Nonmusical sound recording"
 msgstr ""
 
@@ -1034,12 +1049,17 @@ msgid "Patrons"
 msgstr ""
 
 # id::aiit.name__SHP
-#: 950.data.seed-values.sql:8851
+#: 950.data.seed-values.sql:8886
 msgid "Shipping Charge"
 msgstr ""
 
+# id::at.name__r
+#: 950.data.seed-values.sql:10309
+msgid "Art and Architecture Thesaurus"
+msgstr ""
+
 # id::ccvm.value__304
-#: 950.data.seed-values.sql:6118
+#: 950.data.seed-values.sql:6148
 msgid "Ndebele (South Africa)"
 msgstr ""
 
@@ -1049,12 +1069,12 @@ msgid "1_hour_2_renew"
 msgstr ""
 
 # id::ccvm.value__517
-#: 950.data.seed-values.sql:6337
+#: 950.data.seed-values.sql:6367
 msgid "Letters"
 msgstr ""
 
 # id::ccvm.value__268
-#: 950.data.seed-values.sql:6082
+#: 950.data.seed-values.sql:6112
 msgid "Makasar"
 msgstr ""
 
@@ -1064,7 +1084,7 @@ msgid "Series"
 msgstr ""
 
 # id::ccvm.value__afa
-#: 950.data.seed-values.sql:5821
+#: 950.data.seed-values.sql:5851
 msgid "Afroasiatic (Other)"
 msgstr ""
 
@@ -1074,22 +1094,22 @@ msgid "Missing"
 msgstr ""
 
 # id::ccvm.value__53
-#: 950.data.seed-values.sql:5867
+#: 950.data.seed-values.sql:5897
 msgid "Edo"
 msgstr ""
 
 # id::ccvm.value__225
-#: 950.data.seed-values.sql:6039
+#: 950.data.seed-values.sql:6069
 msgid "Kinyarwanda"
 msgstr ""
 
 # id::ccvm.value__191
-#: 950.data.seed-values.sql:6005
+#: 950.data.seed-values.sql:6035
 msgid "Interlingue"
 msgstr ""
 
 # id::cuat.label__24
-#: 950.data.seed-values.sql:11697
+#: 950.data.seed-values.sql:11732
 msgid "EZProxy Verification"
 msgstr ""
 
@@ -1099,42 +1119,42 @@ msgid "Reserves"
 msgstr ""
 
 # id::ccvm.value__174
-#: 950.data.seed-values.sql:5988
+#: 950.data.seed-values.sql:6018
 msgid "Hebrew"
 msgstr ""
 
 # id::ccvm.value__121 id::ccvm.value__123
-#: 950.data.seed-values.sql:5935 950.data.seed-values.sql:5937
+#: 950.data.seed-values.sql:5965 950.data.seed-values.sql:5967
 msgid "Esperanto"
 msgstr ""
 
 # id::vie.description__import.item.invalid.price
-#: 950.data.seed-values.sql:9450
+#: 950.data.seed-values.sql:9485
 msgid "Invalid value for \"price\""
 msgstr ""
 
 # id::ccvm.value__92
-#: 950.data.seed-values.sql:5906
+#: 950.data.seed-values.sql:5936
 msgid "Creoles and Pidgins, French-based (Other)"
 msgstr ""
 
 # id::ccvm.value__407 id::ccvm.value__414
-#: 950.data.seed-values.sql:6221 950.data.seed-values.sql:6228
+#: 950.data.seed-values.sql:6251 950.data.seed-values.sql:6258
 msgid "Swazi"
 msgstr ""
 
 # id::ccvm.value__246 id::ccvm.value__389
-#: 950.data.seed-values.sql:6060 950.data.seed-values.sql:6203
+#: 950.data.seed-values.sql:6090 950.data.seed-values.sql:6233
 msgid "Sami"
 msgstr ""
 
 # id::ccvm.value__194
-#: 950.data.seed-values.sql:6008
+#: 950.data.seed-values.sql:6038
 msgid "Indic (Other)"
 msgstr ""
 
 # id::ccvm.value__423
-#: 950.data.seed-values.sql:6237
+#: 950.data.seed-values.sql:6267
 msgid "Telugu"
 msgstr ""
 
@@ -1149,18 +1169,23 @@ msgstr ""
 msgid "System Local"
 msgstr ""
 
+# id::acsaf.name__64
+#: 950.data.seed-values.sql:10180
+msgid "See From Tracing -- Uniform Title"
+msgstr ""
+
 # id::cuat.label__13
-#: 950.data.seed-values.sql:11683
+#: 950.data.seed-values.sql:11718
 msgid "Verification via xmlrpc"
 msgstr ""
 
 # id::ccvm.value__309
-#: 950.data.seed-values.sql:6123
+#: 950.data.seed-values.sql:6153
 msgid "Newari"
 msgstr ""
 
 # id::ccvm.value__366
-#: 950.data.seed-values.sql:6180
+#: 950.data.seed-values.sql:6210
 msgid "Samaritan Aramaic"
 msgstr ""
 
@@ -1174,44 +1199,39 @@ msgstr ""
 msgid "Unfiltered"
 msgstr ""
 
-# id::acsaf.name__62
-#: 950.data.seed-values.sql:10190
-msgid "See Also Tracing -- Corporate Name"
-msgstr ""
-
 # id::csp.label__30
 #: 950.data.seed-values.sql:41
 msgid "Patron has been referred to a collections agency"
 msgstr ""
 
 # id::ccvm.value__417
-#: 950.data.seed-values.sql:6231
+#: 950.data.seed-values.sql:6261
 msgid "Tahitian"
 msgstr ""
 
 # id::ccvm.value__141
-#: 950.data.seed-values.sql:5955
+#: 950.data.seed-values.sql:5985
 msgid "Fula"
 msgstr ""
 
 # id::ccvm.value__523
-#: 950.data.seed-values.sql:6346
+#: 950.data.seed-values.sql:6376
 msgid "Microfilm"
 msgstr ""
 
 # id::acsaf.name__7
-#: 950.data.seed-values.sql:10155
+#: 950.data.seed-values.sql:10190
 msgid "Heading -- Genre/Form Term"
 msgstr ""
 
 # id::ccvm.value__319
-#: 950.data.seed-values.sql:6133
+#: 950.data.seed-values.sql:6163
 msgid "Nubian languages"
 msgstr ""
 
 # id::i18n_l.name__hy-AM id::i18n_l.description__hy-AM id::ccvm.value__arm
 #: 950.data.seed-values.sql:338 950.data.seed-values.sql:339
-#: 950.data.seed-values.sql:5836
+#: 950.data.seed-values.sql:5866
 msgid "Armenian"
 msgstr ""
 
@@ -1226,52 +1246,52 @@ msgid "Example System 2"
 msgstr ""
 
 # id::ccvm.value__420
-#: 950.data.seed-values.sql:6234
+#: 950.data.seed-values.sql:6264
 msgid "Tamil"
 msgstr ""
 
 # id::ccvm.value__aus
-#: 950.data.seed-values.sql:5844
+#: 950.data.seed-values.sql:5874
 msgid "Australian languages"
 msgstr ""
 
 # id::ccvm.value__356
-#: 950.data.seed-values.sql:6170
+#: 950.data.seed-values.sql:6200
 msgid "Raeto-Romance"
 msgstr ""
 
 # id::ccvm.value__535
-#: 950.data.seed-values.sql:6360
+#: 950.data.seed-values.sql:6390
 msgid "Monograph/Item"
 msgstr ""
 
 # id::ccvm.value__350
-#: 950.data.seed-values.sql:6164
+#: 950.data.seed-values.sql:6194
 msgid "Pushto"
 msgstr ""
 
 # id::acsaf.name__49
-#: 950.data.seed-values.sql:10183
+#: 950.data.seed-values.sql:10218
 msgid "Subdivision Linking Entry -- Geographic Subdivision"
 msgstr ""
 
 # id::ccvm.value__524
-#: 950.data.seed-values.sql:6347
+#: 950.data.seed-values.sql:6377
 msgid "Microfiche"
 msgstr ""
 
 # id::ccvm.value__472
-#: 950.data.seed-values.sql:6286
+#: 950.data.seed-values.sql:6316
 msgid "Walloon"
 msgstr ""
 
 # id::ccvm.value__106
-#: 950.data.seed-values.sql:5920
+#: 950.data.seed-values.sql:5950
 msgid "Dinka"
 msgstr ""
 
 # id::ccvm.value__84
-#: 950.data.seed-values.sql:5898
+#: 950.data.seed-values.sql:5928
 msgid "Church Slavic"
 msgstr ""
 
@@ -1281,17 +1301,17 @@ msgid "‡biblios.net"
 msgstr ""
 
 # id::ccvm.value__243
-#: 950.data.seed-values.sql:6057
+#: 950.data.seed-values.sql:6087
 msgid "Lamba"
 msgstr ""
 
 # id::ccvm.value__546
-#: 950.data.seed-values.sql:6373
+#: 950.data.seed-values.sql:6403
 msgid "Betacam SP"
 msgstr ""
 
 # id::ccvm.value__280
-#: 950.data.seed-values.sql:6094
+#: 950.data.seed-values.sql:6124
 msgid "Micmac"
 msgstr ""
 
@@ -1301,42 +1321,42 @@ msgid "Personal Author"
 msgstr ""
 
 # id::ccvm.value__145 id::ccvm.value__156
-#: 950.data.seed-values.sql:5959 950.data.seed-values.sql:5970
+#: 950.data.seed-values.sql:5989 950.data.seed-values.sql:6000
 msgid "Galician"
 msgstr ""
 
-# id::cuat.label__16
-#: 950.data.seed-values.sql:11688
-msgid "OPAC Login (jspac)"
+# id::acsaf.name__62
+#: 950.data.seed-values.sql:10225
+msgid "See From Tracing -- Corporate Name"
 msgstr ""
 
 # id::ccvm.value__264
-#: 950.data.seed-values.sql:6078
+#: 950.data.seed-values.sql:6108
 msgid "Madurese"
 msgstr ""
 
 # id::ccvm.value__227
-#: 950.data.seed-values.sql:6041
+#: 950.data.seed-values.sql:6071
 msgid "Kimbundu"
 msgstr ""
 
 # id::ccvm.value__405
-#: 950.data.seed-values.sql:6219
+#: 950.data.seed-values.sql:6249
 msgid "Nilo-Saharan (Other)"
 msgstr ""
 
 # id::ccvm.value__362
-#: 950.data.seed-values.sql:6176
+#: 950.data.seed-values.sql:6206
 msgid "Sango (Ubangi Creole)"
 msgstr ""
 
 # id::ccvm.value__220
-#: 950.data.seed-values.sql:6034
+#: 950.data.seed-values.sql:6064
 msgid "Khasi"
 msgstr ""
 
 # id::vie.description__import.item.invalid.circ_as_type
-#: 950.data.seed-values.sql:9460
+#: 950.data.seed-values.sql:9495
 msgid "Invalid value for \"circ_as_type\""
 msgstr ""
 
@@ -1346,58 +1366,53 @@ msgid "Subject"
 msgstr ""
 
 # id::ccvm.value__266
-#: 950.data.seed-values.sql:6080
+#: 950.data.seed-values.sql:6110
 msgid "Marshallese"
 msgstr ""
 
 # id::ccvm.value__476
-#: 950.data.seed-values.sql:6290
+#: 950.data.seed-values.sql:6320
 msgid "Yao (Africa)"
 msgstr ""
 
-# id::acsaf.name__72
-#: 950.data.seed-values.sql:10199
-msgid "See Also Tracing -- Chronological Term"
-msgstr ""
-
 # id::ccvm.value__273
-#: 950.data.seed-values.sql:6087
+#: 950.data.seed-values.sql:6117
 msgid "Marathi"
 msgstr ""
 
 # id::ccvm.value__386
-#: 950.data.seed-values.sql:6200
+#: 950.data.seed-values.sql:6230
 msgid "Slovenian"
 msgstr ""
 
 # id::vie.description__import.duplicate.sysid
 # id::vie.description__import.duplicate.sysid
-#: 950.data.seed-values.sql:9439 950.data.seed-values.sql:9440
+#: 950.data.seed-values.sql:9474 950.data.seed-values.sql:9475
 msgid "Import failed due to system id collision"
 msgstr ""
 
 # id::ccvm.value__365
-#: 950.data.seed-values.sql:6179
+#: 950.data.seed-values.sql:6209
 msgid "Salishan languages"
 msgstr ""
 
 # id::cuat.label__23
-#: 950.data.seed-values.sql:11696
+#: 950.data.seed-values.sql:11731
 msgid "Self-Check User Verification"
 msgstr ""
 
 # id::acsaf.name__6
-#: 950.data.seed-values.sql:10154
+#: 950.data.seed-values.sql:10189
 msgid "Heading -- Geographic Name"
 msgstr ""
 
 # id::ccvm.value__367
-#: 950.data.seed-values.sql:6181
+#: 950.data.seed-values.sql:6211
 msgid "Sanskrit"
 msgstr ""
 
 # id::ccvm.value__547
-#: 950.data.seed-values.sql:6374
+#: 950.data.seed-values.sql:6404
 msgid "Super-VHS"
 msgstr ""
 
@@ -1407,7 +1422,7 @@ msgid "On order"
 msgstr ""
 
 # id::ccvm.value__514
-#: 950.data.seed-values.sql:6334
+#: 950.data.seed-values.sql:6364
 msgid "Essays"
 msgstr ""
 
@@ -1417,29 +1432,34 @@ msgid "Local Library System"
 msgstr ""
 
 # id::ccvm.value__528
-#: 950.data.seed-values.sql:6351
+#: 950.data.seed-values.sql:6381
 msgid "Regular print reproduction"
 msgstr ""
 
 # id::ccvm.value__118
-#: 950.data.seed-values.sql:5932
+#: 950.data.seed-values.sql:5962
 msgid "Elamite"
 msgstr ""
 
+# id::ccvm.value__361
+#: 950.data.seed-values.sql:6205
+msgid "Sandawe"
+msgstr ""
+
 # id::ccvm.value__ady
-#: 950.data.seed-values.sql:5820
+#: 950.data.seed-values.sql:5850
 msgid "Adygei"
 msgstr ""
 
 # id::ccpbt.label__misc id::ccnbt.label__misc id::cbrebt.label__misc
 # id::cubt.label__misc
-#: 950.data.seed-values.sql:4852 950.data.seed-values.sql:4855
-#: 950.data.seed-values.sql:4856 950.data.seed-values.sql:4862
+#: 950.data.seed-values.sql:4882 950.data.seed-values.sql:4885
+#: 950.data.seed-values.sql:4886 950.data.seed-values.sql:4892
 msgid "Miscellaneous"
 msgstr ""
 
 # id::ccvm.value__317
-#: 950.data.seed-values.sql:6131
+#: 950.data.seed-values.sql:6161
 msgid "Norwegian"
 msgstr ""
 
@@ -1464,42 +1484,42 @@ msgid "Example Branch 1"
 msgstr ""
 
 # id::ccvm.value__229
-#: 950.data.seed-values.sql:6043
+#: 950.data.seed-values.sql:6073
 msgid "Komi"
 msgstr ""
 
 # id::acs.description__1
-#: 950.data.seed-values.sql:10137
+#: 950.data.seed-values.sql:10172
 msgid "Library of Congress standard authority record control semantics"
 msgstr ""
 
 # id::ccvm.value__179
-#: 950.data.seed-values.sql:5993
+#: 950.data.seed-values.sql:6023
 msgid "Hittite"
 msgstr ""
 
 # id::ccvm.value__445
-#: 950.data.seed-values.sql:6259
+#: 950.data.seed-values.sql:6289
 msgid "Turkmen"
 msgstr ""
 
-# id::acsaf.name__65
-#: 950.data.seed-values.sql:10192
-msgid "See Also Tracing -- Topical Term"
-msgstr ""
-
 # id::ccvm.value__408
-#: 950.data.seed-values.sql:6222
+#: 950.data.seed-values.sql:6252
 msgid "Sukuma"
 msgstr ""
 
 # id::ccvm.value__502
-#: 950.data.seed-values.sql:6320
+#: 950.data.seed-values.sql:6350
 msgid "Mixed materials"
 msgstr ""
 
+# id::ahrcc.label__6
+#: 950.data.seed-values.sql:2433
+msgid "Patron via OPAC"
+msgstr ""
+
 # id::coust.label__config.settings_group.sec
-#: 950.data.seed-values.sql:2483
+#: 950.data.seed-values.sql:2493
 msgid "Security"
 msgstr ""
 
@@ -1508,38 +1528,43 @@ msgstr ""
 msgid "On holds shelf"
 msgstr ""
 
+# id::ahrcc.label__1
+#: 950.data.seed-values.sql:2428
+msgid "Untargeted expiration"
+msgstr ""
+
 # id::cuat.label__10
-#: 950.data.seed-values.sql:11680
+#: 950.data.seed-values.sql:11715
 msgid "Verification via srfsh"
 msgstr ""
 
 # id::ccvm.value__480
-#: 950.data.seed-values.sql:6294
+#: 950.data.seed-values.sql:6324
 msgid "Yupik languages"
 msgstr ""
 
 # id::ccvm.value__450
-#: 950.data.seed-values.sql:6264
+#: 950.data.seed-values.sql:6294
 msgid "Tuvaluan"
 msgstr ""
 
 # id::at.name__|
-#: 950.data.seed-values.sql:10278
+#: 950.data.seed-values.sql:10313
 msgid "No attempt to code"
 msgstr ""
 
 # id::ccvm.value__318
-#: 950.data.seed-values.sql:6132
+#: 950.data.seed-values.sql:6162
 msgid "Northern Sotho"
 msgstr ""
 
 # id::ccvm.value__45
-#: 950.data.seed-values.sql:5859
+#: 950.data.seed-values.sql:5889
 msgid "Beja"
 msgstr ""
 
 # id::ccvm.value__149
-#: 950.data.seed-values.sql:5963
+#: 950.data.seed-values.sql:5993
 msgid "Germanic (Other)"
 msgstr ""
 
@@ -1550,12 +1575,12 @@ msgid "Item Type"
 msgstr ""
 
 # id::vie.description__import.record.perm_failure
-#: 950.data.seed-values.sql:9462
+#: 950.data.seed-values.sql:9497
 msgid "Perm failure creating a record"
 msgstr ""
 
 # id::ccvm.value__209
-#: 950.data.seed-values.sql:6023
+#: 950.data.seed-values.sql:6053
 msgid "Kabyle"
 msgstr ""
 
@@ -1570,27 +1595,27 @@ msgid "SSN"
 msgstr ""
 
 # id::ccvm.value__162
-#: 950.data.seed-values.sql:5976
+#: 950.data.seed-values.sql:6006
 msgid "Gothic"
 msgstr ""
 
 # id::ccvm.value__436
-#: 950.data.seed-values.sql:6250
+#: 950.data.seed-values.sql:6280
 msgid "Tamashek"
 msgstr ""
 
 # id::ccvm.value__208
-#: 950.data.seed-values.sql:6022
+#: 950.data.seed-values.sql:6052
 msgid "Kara-Kalpak"
 msgstr ""
 
 # id::ccvm.value__412
-#: 950.data.seed-values.sql:6226
+#: 950.data.seed-values.sql:6256
 msgid "Swahili"
 msgstr ""
 
 # id::ccvm.value__68
-#: 950.data.seed-values.sql:5882
+#: 950.data.seed-values.sql:5912
 msgid "Carib"
 msgstr ""
 
@@ -1600,12 +1625,12 @@ msgid "Sub-library"
 msgstr ""
 
 # id::ccvm.value__83
-#: 950.data.seed-values.sql:5897
+#: 950.data.seed-values.sql:5927
 msgid "Cherokee"
 msgstr ""
 
 # id::acsaf.name__9
-#: 950.data.seed-values.sql:10157
+#: 950.data.seed-values.sql:10192
 msgid "Heading -- Geographic Subdivision"
 msgstr ""
 
@@ -1620,178 +1645,178 @@ msgid "Alerting block on Circ and Renew"
 msgstr ""
 
 # id::coust.label__config.settings_group.program
-#: 950.data.seed-values.sql:2489
+#: 950.data.seed-values.sql:2499
 msgid "Program"
 msgstr ""
 
 # id::cust.label__history.hold.retention_count
 # id::cust.description__history.hold.retention_count
-#: 950.data.seed-values.sql:9020 950.data.seed-values.sql:9021
+#: 950.data.seed-values.sql:9055 950.data.seed-values.sql:9056
 msgid "Historical Hold Retention Count"
 msgstr ""
 
 # id::ccvm.value__265
-#: 950.data.seed-values.sql:6079
+#: 950.data.seed-values.sql:6109
 msgid "Magahi"
 msgstr ""
 
 # id::ccvm.value__333
-#: 950.data.seed-values.sql:6147
+#: 950.data.seed-values.sql:6177
 msgid "Papuan (Other)"
 msgstr ""
 
 # id::ccvm.value__207
-#: 950.data.seed-values.sql:6021
+#: 950.data.seed-values.sql:6051
 msgid "Judeo-Arabic"
 msgstr ""
 
 # id::ccvm.value__548
-#: 950.data.seed-values.sql:6375
+#: 950.data.seed-values.sql:6405
 msgid "M-II"
 msgstr ""
 
 # id::ccvm.value__284 id::ccvm.value__285
-#: 950.data.seed-values.sql:6098 950.data.seed-values.sql:6099
+#: 950.data.seed-values.sql:6128 950.data.seed-values.sql:6129
 msgid "Malagasy"
 msgstr ""
 
 # id::ccvm.value__435
-#: 950.data.seed-values.sql:6249
+#: 950.data.seed-values.sql:6279
 msgid "Tlingit"
 msgstr ""
 
-# id::acsaf.name__67
-#: 950.data.seed-values.sql:10194
-msgid "See Also Tracing -- Genre/Form Term"
-msgstr ""
-
 # id::acsaf.name__24
-#: 950.data.seed-values.sql:10143
+#: 950.data.seed-values.sql:10178
 msgid "See Also From Tracing -- Uniform Title"
 msgstr ""
 
 # id::ccvm.value__271
-#: 950.data.seed-values.sql:6085
+#: 950.data.seed-values.sql:6115
 msgid "Maori"
 msgstr ""
 
 # id::ccvm.value__138
-#: 950.data.seed-values.sql:5952
+#: 950.data.seed-values.sql:5982
 msgid "French, Middle (ca. 1400-1600)"
 msgstr ""
 
 # id::ccvm.value__bai
-#: 950.data.seed-values.sql:5851
+#: 950.data.seed-values.sql:5881
 msgid "Bamileke languages"
 msgstr ""
 
 # id::ccvm.value__185
-#: 950.data.seed-values.sql:5999
+#: 950.data.seed-values.sql:6029
 msgid "Igbo"
 msgstr ""
 
 # id::cuat.label__18
-#: 950.data.seed-values.sql:11690
+#: 950.data.seed-values.sql:11725
 msgid "Staff Client Login"
 msgstr ""
 
 # id::ccvm.value__241
-#: 950.data.seed-values.sql:6055
+#: 950.data.seed-values.sql:6085
 msgid "Ladino"
 msgstr ""
 
 # id::ccvm.value__69
-#: 950.data.seed-values.sql:5883
+#: 950.data.seed-values.sql:5913
 msgid "Catalan"
 msgstr ""
 
 # id::ccvm.value__404
-#: 950.data.seed-values.sql:6218
+#: 950.data.seed-values.sql:6248
 msgid "Serer"
 msgstr ""
 
 # id::ccvm.value__492
-#: 950.data.seed-values.sql:6308
+#: 950.data.seed-values.sql:6338
 msgid "Adult"
 msgstr ""
 
 # id::ccvm.value__540
-#: 950.data.seed-values.sql:6367
+#: 950.data.seed-values.sql:6397
 msgid "EIAJ"
 msgstr ""
 
 # id::ccvm.value__343
-#: 950.data.seed-values.sql:6157
+#: 950.data.seed-values.sql:6187
 msgid "Phoenician"
 msgstr ""
 
 # id::ccvm.value__471
-#: 950.data.seed-values.sql:6285
+#: 950.data.seed-values.sql:6315
 msgid "Sorbian languages"
 msgstr ""
 
 # id::acsaf.name__22
-#: 950.data.seed-values.sql:10164
+#: 950.data.seed-values.sql:10199
 msgid "See Also From Tracing -- Corporate Name"
 msgstr ""
 
 # id::vie.description__import.item.invalid.circ_modifier
-#: 950.data.seed-values.sql:9437
+#: 950.data.seed-values.sql:9472
 msgid "Import failed due to invalid circulation modifier"
 msgstr ""
 
 # id::ccvm.value__488
-#: 950.data.seed-values.sql:6304
+#: 950.data.seed-values.sql:6334
 msgid "Preschool"
 msgstr ""
 
 # id::ccvm.value__374
-#: 950.data.seed-values.sql:6188
+#: 950.data.seed-values.sql:6218
 msgid "Selkup"
 msgstr ""
 
 # id::ccvm.value__314
-#: 950.data.seed-values.sql:6128
+#: 950.data.seed-values.sql:6158
 msgid "Norwegian (Bokmål)"
 msgstr ""
 
 # id::coust.label__config.settings_group.circulation
-#: 950.data.seed-values.sql:2486
+#: 950.data.seed-values.sql:2496
 msgid "Circulation"
 msgstr ""
 
 # id::ccvm.value__bal
-#: 950.data.seed-values.sql:5853
+#: 950.data.seed-values.sql:5883
 msgid "Baluchi"
 msgstr ""
 
 # id::ccvm.value__544
-#: 950.data.seed-values.sql:6371
+#: 950.data.seed-values.sql:6401
 msgid "CED videodisc"
 msgstr ""
 
 # id::ccvm.value__337
-#: 950.data.seed-values.sql:6151
+#: 950.data.seed-values.sql:6181
 msgid "Panjabi"
 msgstr ""
 
 # id::ccvm.value__330
-#: 950.data.seed-values.sql:6144
+#: 950.data.seed-values.sql:6174
 msgid "Ossetic"
 msgstr ""
 
+# id::acsaf.name__63
+#: 950.data.seed-values.sql:10226
+msgid "See From Tracing -- Meeting Name"
+msgstr ""
+
 # id::ccvm.value__221
-#: 950.data.seed-values.sql:6035
+#: 950.data.seed-values.sql:6065
 msgid "Khoisan (Other)"
 msgstr ""
 
 # id::ccvm.value__352
-#: 950.data.seed-values.sql:6166
+#: 950.data.seed-values.sql:6196
 msgid "Rajasthani"
 msgstr ""
 
 # id::ccvm.value__316
-#: 950.data.seed-values.sql:6130
+#: 950.data.seed-values.sql:6160
 msgid "Old Norse"
 msgstr ""
 
@@ -1801,17 +1826,17 @@ msgid "Stacks"
 msgstr ""
 
 # id::ccvm.value__172
-#: 950.data.seed-values.sql:5986
+#: 950.data.seed-values.sql:6016
 msgid "Hausa"
 msgstr ""
 
 # id::cubt.label__folks%3Ahold.cancel
-#: 950.data.seed-values.sql:4870
+#: 950.data.seed-values.sql:4900
 msgid "Cancel Holds"
 msgstr ""
 
 # id::ccvm.value__arn
-#: 950.data.seed-values.sql:5837
+#: 950.data.seed-values.sql:5867
 msgid "Mapuche"
 msgstr ""
 
@@ -1821,17 +1846,17 @@ msgid "Set"
 msgstr ""
 
 # id::ccvm.value__291
-#: 950.data.seed-values.sql:6105
+#: 950.data.seed-values.sql:6135
 msgid "Moldavian"
 msgstr ""
 
 # id::acsaf.name__45
-#: 950.data.seed-values.sql:10179
+#: 950.data.seed-values.sql:10214
 msgid "Established Heading Linking Entry -- Topical Term"
 msgstr ""
 
 # id::ccvm.value__539
-#: 950.data.seed-values.sql:6366
+#: 950.data.seed-values.sql:6396
 msgid "U-matic"
 msgstr ""
 
@@ -1841,12 +1866,12 @@ msgid "Translated Title"
 msgstr ""
 
 # id::ccvm.value__237
-#: 950.data.seed-values.sql:6051
+#: 950.data.seed-values.sql:6081
 msgid "Kumyk"
 msgstr ""
 
 # id::vqbrad.description__14
-#: 950.data.seed-values.sql:4797
+#: 950.data.seed-values.sql:4827
 msgid "Edition"
 msgstr ""
 
@@ -1861,7 +1886,7 @@ msgid "Patron has an invalid address"
 msgstr ""
 
 # id::ccvm.value__ava
-#: 950.data.seed-values.sql:5845
+#: 950.data.seed-values.sql:5875
 msgid "Avaric"
 msgstr ""
 
@@ -1871,7 +1896,7 @@ msgid "Patron exceeds max checked out item threshold"
 msgstr ""
 
 # id::ccvm.value__455
-#: 950.data.seed-values.sql:6269
+#: 950.data.seed-values.sql:6299
 msgid "Uighur"
 msgstr ""
 
@@ -1886,12 +1911,12 @@ msgid "Can do anything at the Branch level"
 msgstr ""
 
 # id::cuat.label__3
-#: 950.data.seed-values.sql:11672
+#: 950.data.seed-values.sql:11707
 msgid "Login via gateway-v1"
 msgstr ""
 
 # id::ccvm.value__158
-#: 950.data.seed-values.sql:5972
+#: 950.data.seed-values.sql:6002
 msgid "German, Middle High (ca. 1050-1500)"
 msgstr ""
 
@@ -1899,12 +1924,12 @@ msgstr ""
 # id::vqbrad.description__5
 #: 950.data.seed-values.sql:152 950.data.seed-values.sql:362
 #: 950.data.seed-values.sql:383 950.data.seed-values.sql:402
-#: 950.data.seed-values.sql:4788
+#: 950.data.seed-values.sql:4818
 msgid "ISBN"
 msgstr ""
 
 # id::ccvm.value__267
-#: 950.data.seed-values.sql:6081
+#: 950.data.seed-values.sql:6111
 msgid "Maithili"
 msgstr ""
 
@@ -1914,22 +1939,22 @@ msgid "Circulators"
 msgstr ""
 
 # id::acsaf.name__12
-#: 950.data.seed-values.sql:10160
+#: 950.data.seed-values.sql:10195
 msgid "Heading -- Chronological Term"
 msgstr ""
 
 # id::ccvm.value__418
-#: 950.data.seed-values.sql:6232
+#: 950.data.seed-values.sql:6262
 msgid "Tai (Other)"
 msgstr ""
 
 # id::ccvm.value__439
-#: 950.data.seed-values.sql:6253
+#: 950.data.seed-values.sql:6283
 msgid "Tok Pisin"
 msgstr ""
 
 # id::ccvm.value__205
-#: 950.data.seed-values.sql:6019
+#: 950.data.seed-values.sql:6049
 msgid "Japanese"
 msgstr ""
 
@@ -1939,7 +1964,7 @@ msgid "Topic Subject"
 msgstr ""
 
 # id::at.name__v
-#: 950.data.seed-values.sql:10276
+#: 950.data.seed-values.sql:10311
 msgid "Repertoire de vedettes-matiere"
 msgstr ""
 
@@ -1949,44 +1974,44 @@ msgid "Patron exceeds max overdue item threshold"
 msgstr ""
 
 # id::cit.name__3 id::ccvm.value__555 id::at.name__z
-#: 950.data.seed-values.sql:240 950.data.seed-values.sql:6382
-#: 950.data.seed-values.sql:10277
+#: 950.data.seed-values.sql:240 950.data.seed-values.sql:6412
+#: 950.data.seed-values.sql:10312
 msgid "Other"
 msgstr ""
 
 # id::ccvm.value__340
-#: 950.data.seed-values.sql:6154
+#: 950.data.seed-values.sql:6184
 msgid "Old Persian (ca. 600-400 B.C.)"
 msgstr ""
 
 # id::acsaf.name__32
-#: 950.data.seed-values.sql:10173
+#: 950.data.seed-values.sql:10208
 msgid "See Also From Tracing -- Chronological Term"
 msgstr ""
 
 # id::ccvm.value__499
-#: 950.data.seed-values.sql:6317
+#: 950.data.seed-values.sql:6347
 msgid "Two-dimensional nonprojectable graphic"
 msgstr ""
 
 # id::ccvm.value__41
-#: 950.data.seed-values.sql:5855
+#: 950.data.seed-values.sql:5885
 msgid "Balinese"
 msgstr ""
 
 # id::cust.label__history.circ.retention_start
 # id::cust.description__history.circ.retention_start
-#: 950.data.seed-values.sql:8999 950.data.seed-values.sql:9000
+#: 950.data.seed-values.sql:9034 950.data.seed-values.sql:9035
 msgid "Historical Circulation Retention Start Date"
 msgstr ""
 
 # id::ccvm.value__434
-#: 950.data.seed-values.sql:6248
+#: 950.data.seed-values.sql:6278
 msgid "Tokelauan"
 msgstr ""
 
 # id::ccvm.value__108
-#: 950.data.seed-values.sql:5922
+#: 950.data.seed-values.sql:5952
 msgid "Dogri"
 msgstr ""
 
@@ -1996,12 +2021,12 @@ msgid "Users"
 msgstr ""
 
 # id::ccvm.value__250
-#: 950.data.seed-values.sql:6064
+#: 950.data.seed-values.sql:6094
 msgid "Limburgish"
 msgstr ""
 
 # id::ccvm.value__116
-#: 950.data.seed-values.sql:5930
+#: 950.data.seed-values.sql:5960
 msgid "Egyptian"
 msgstr ""
 
@@ -2011,52 +2036,52 @@ msgid "Global Administrator"
 msgstr ""
 
 # id::ccvm.value__452
-#: 950.data.seed-values.sql:6266
+#: 950.data.seed-values.sql:6296
 msgid "Tuvinian"
 msgstr ""
 
 # id::coust.label__config.settings_group.ccp
-#: 950.data.seed-values.sql:2492
+#: 950.data.seed-values.sql:2502
 msgid "Credit Card Processing"
 msgstr ""
 
 # id::ccvm.value__501
-#: 950.data.seed-values.sql:6319
+#: 950.data.seed-values.sql:6349
 msgid "Kit"
 msgstr ""
 
 # id::aiit.name__PRO
-#: 950.data.seed-values.sql:8850
+#: 950.data.seed-values.sql:8885
 msgid "Processing Fee"
 msgstr ""
 
 # id::ccvm.value__294
-#: 950.data.seed-values.sql:6108
+#: 950.data.seed-values.sql:6138
 msgid "Multiple languages"
 msgstr ""
 
 # id::ccvm.value__286
-#: 950.data.seed-values.sql:6100
+#: 950.data.seed-values.sql:6130
 msgid "Maltese"
 msgstr ""
 
 # id::ccvm.value__asm
-#: 950.data.seed-values.sql:5841
+#: 950.data.seed-values.sql:5871
 msgid "Assamese"
 msgstr ""
 
 # id::vie.description__import.auth.duplicate.acn
-#: 950.data.seed-values.sql:9442
+#: 950.data.seed-values.sql:9477
 msgid "Import failed due to Accession Number collision"
 msgstr ""
 
 # id::ccvm.value__500
-#: 950.data.seed-values.sql:6318
+#: 950.data.seed-values.sql:6348
 msgid "Three-dimensional artifact or naturally occurring object"
 msgstr ""
 
 # id::cmf.label__17 id::vqbrad.description__8
-#: 950.data.seed-values.sql:150 950.data.seed-values.sql:4791
+#: 950.data.seed-values.sql:150 950.data.seed-values.sql:4821
 msgid "Accession Number"
 msgstr ""
 
@@ -2066,7 +2091,7 @@ msgid "All Subjects"
 msgstr ""
 
 # id::ccvm.value__442 id::ccvm.value__444
-#: 950.data.seed-values.sql:6256 950.data.seed-values.sql:6258
+#: 950.data.seed-values.sql:6286 950.data.seed-values.sql:6288
 msgid "Tswana"
 msgstr ""
 
@@ -2076,7 +2101,7 @@ msgid "overdue_equip_mid"
 msgstr ""
 
 # id::ccvm.value__88
-#: 950.data.seed-values.sql:5902
+#: 950.data.seed-values.sql:5932
 msgid "Coptic"
 msgstr ""
 
@@ -2086,27 +2111,27 @@ msgid "overdue_equip_min"
 msgstr ""
 
 # id::ccvm.value__255
-#: 950.data.seed-values.sql:6069
+#: 950.data.seed-values.sql:6099
 msgid "Letzeburgesch"
 msgstr ""
 
 # id::ccvm.value__137 id::ccvm.value__140
-#: 950.data.seed-values.sql:5951 950.data.seed-values.sql:5954
+#: 950.data.seed-values.sql:5981 950.data.seed-values.sql:5984
 msgid "Frisian"
 msgstr ""
 
 # id::ccvm.value__298
-#: 950.data.seed-values.sql:6112
+#: 950.data.seed-values.sql:6142
 msgid "Mayan languages"
 msgstr ""
 
 # id::ccvm.value__347
-#: 950.data.seed-values.sql:6161
+#: 950.data.seed-values.sql:6191
 msgid "Portuguese"
 msgstr ""
 
 # id::ccvm.value__ace
-#: 950.data.seed-values.sql:5817
+#: 950.data.seed-values.sql:5847
 msgid "Achinese"
 msgstr ""
 
@@ -2116,17 +2141,17 @@ msgid "Drivers License"
 msgstr ""
 
 # id::acsaf.name__48
-#: 950.data.seed-values.sql:10182
+#: 950.data.seed-values.sql:10217
 msgid "Subdivision Linking Entry -- General Subdivision"
 msgstr ""
 
 # id::ccvm.value__425
-#: 950.data.seed-values.sql:6239
+#: 950.data.seed-values.sql:6269
 msgid "Terena"
 msgstr ""
 
 # id::ccvm.value__ave
-#: 950.data.seed-values.sql:5846
+#: 950.data.seed-values.sql:5876
 msgid "Avestan"
 msgstr ""
 
@@ -2136,42 +2161,42 @@ msgid "SICI"
 msgstr ""
 
 # id::ccvm.value__281
-#: 950.data.seed-values.sql:6095
+#: 950.data.seed-values.sql:6125
 msgid "Minangkabau"
 msgstr ""
 
 # id::ccvm.value__541
-#: 950.data.seed-values.sql:6368
+#: 950.data.seed-values.sql:6398
 msgid "Type C"
 msgstr ""
 
 # id::ccvm.value__177
-#: 950.data.seed-values.sql:5991
+#: 950.data.seed-values.sql:6021
 msgid "Himachali"
 msgstr ""
 
 # id::cuat.label__19
-#: 950.data.seed-values.sql:11691
+#: 950.data.seed-values.sql:11726
 msgid "Self-Check Proxy Login"
 msgstr ""
 
 # id::ccvm.value__534
-#: 950.data.seed-values.sql:6359
+#: 950.data.seed-values.sql:6389
 msgid "Integrating resource"
 msgstr ""
 
 # id::ccvm.value__484
-#: 950.data.seed-values.sql:6298
+#: 950.data.seed-values.sql:6328
 msgid "Zande"
 msgstr ""
 
 # id::ccvm.value__139
-#: 950.data.seed-values.sql:5953
+#: 950.data.seed-values.sql:5983
 msgid "French, Old (ca. 842-1400)"
 msgstr ""
 
 # id::ccvm.value__383
-#: 950.data.seed-values.sql:6197
+#: 950.data.seed-values.sql:6227
 msgid "Sino-Tibetan (Other)"
 msgstr ""
 
@@ -2181,17 +2206,17 @@ msgid "Bound Volume"
 msgstr ""
 
 # id::ccvm.value__125 id::ccvm.value__152
-#: 950.data.seed-values.sql:5939 950.data.seed-values.sql:5966
+#: 950.data.seed-values.sql:5969 950.data.seed-values.sql:5996
 msgid "Ethiopic"
 msgstr ""
 
 # id::acsaf.name__4
-#: 950.data.seed-values.sql:10142
+#: 950.data.seed-values.sql:10177
 msgid "Heading -- Uniform Title"
 msgstr ""
 
 # id::ccvm.value__387
-#: 950.data.seed-values.sql:6201
+#: 950.data.seed-values.sql:6231
 msgid "Southern Sami"
 msgstr ""
 
@@ -2201,32 +2226,32 @@ msgid "Discard/Weed"
 msgstr ""
 
 # id::coust.label__config.settings_group.self
-#: 950.data.seed-values.sql:2487
+#: 950.data.seed-values.sql:2497
 msgid "Self Check"
 msgstr ""
 
 # id::ccvm.value__89
-#: 950.data.seed-values.sql:5903
+#: 950.data.seed-values.sql:5933
 msgid "Cornish"
 msgstr ""
 
 # id::ccvm.value__63
-#: 950.data.seed-values.sql:5877
+#: 950.data.seed-values.sql:5907
 msgid "Bulgarian"
 msgstr ""
 
 # id::ccvm.value__355
-#: 950.data.seed-values.sql:6169
+#: 950.data.seed-values.sql:6199
 msgid "Romance (Other)"
 msgstr ""
 
 # id::ccvm.value__479
-#: 950.data.seed-values.sql:6293
+#: 950.data.seed-values.sql:6323
 msgid "Yoruba"
 msgstr ""
 
 # id::ccvm.value__arw
-#: 950.data.seed-values.sql:5840
+#: 950.data.seed-values.sql:5870
 msgid "Arawak"
 msgstr ""
 
@@ -2236,37 +2261,42 @@ msgid "Long Overdue Collection Fee"
 msgstr ""
 
 # id::ccvm.value__136
-#: 950.data.seed-values.sql:5950
+#: 950.data.seed-values.sql:5980
 msgid "French"
 msgstr ""
 
 # id::ccvm.value__437
-#: 950.data.seed-values.sql:6251
+#: 950.data.seed-values.sql:6281
 msgid "Tonga (Nyasa)"
 msgstr ""
 
+# id::acsaf.name__65
+#: 950.data.seed-values.sql:10227
+msgid "See From Tracing -- Topical Term"
+msgstr ""
+
 # id::ccvm.value__48
-#: 950.data.seed-values.sql:5862
+#: 950.data.seed-values.sql:5892
 msgid "Bengali"
 msgstr ""
 
 # id::ccvm.value__551
-#: 950.data.seed-values.sql:6378
+#: 950.data.seed-values.sql:6408
 msgid "Hi-8 mm."
 msgstr ""
 
 # id::ccvm.value__43
-#: 950.data.seed-values.sql:5857
+#: 950.data.seed-values.sql:5887
 msgid "Basa"
 msgstr ""
 
 # id::ccvm.value__521
-#: 950.data.seed-values.sql:6341
+#: 950.data.seed-values.sql:6371
 msgid "Speeches"
 msgstr ""
 
 # id::acsaf.name__47
-#: 950.data.seed-values.sql:10181
+#: 950.data.seed-values.sql:10216
 msgid "Established Heading Linking Entry -- Genre/Form Term"
 msgstr ""
 
@@ -2276,7 +2306,7 @@ msgid "Paperback Book"
 msgstr ""
 
 # id::ccvm.value__301
-#: 950.data.seed-values.sql:6115
+#: 950.data.seed-values.sql:6145
 msgid "Neapolitan Italian"
 msgstr ""
 
@@ -2286,32 +2316,32 @@ msgid "Serials (includes admin features)"
 msgstr ""
 
 # id::acsaf.name__23
-#: 950.data.seed-values.sql:10165
+#: 950.data.seed-values.sql:10200
 msgid "See Also From Tracing -- Meeting Name"
 msgstr ""
 
 # id::ccvm.value__409
-#: 950.data.seed-values.sql:6223
+#: 950.data.seed-values.sql:6253
 msgid "Sundanese"
 msgstr ""
 
 # id::ccvm.value__alb
-#: 950.data.seed-values.sql:5827
+#: 950.data.seed-values.sql:5857
 msgid "Albanian"
 msgstr ""
 
 # id::cubt.label__folks%3Ahold.view
-#: 950.data.seed-values.sql:4869
+#: 950.data.seed-values.sql:4899
 msgid "View Holds"
 msgstr ""
 
 # id::ccvm.value__329
-#: 950.data.seed-values.sql:6143
+#: 950.data.seed-values.sql:6173
 msgid "Osage"
 msgstr ""
 
 # id::vqbrad.description__10
-#: 950.data.seed-values.sql:4793
+#: 950.data.seed-values.sql:4823
 msgid "TCN Source"
 msgstr ""
 
@@ -2321,42 +2351,37 @@ msgid "Temporal Subject"
 msgstr ""
 
 # id::ccvm.value__416 id::ccvm.value__428
-#: 950.data.seed-values.sql:6230 950.data.seed-values.sql:6242
+#: 950.data.seed-values.sql:6260 950.data.seed-values.sql:6272
 msgid "Tagalog"
 msgstr ""
 
 # id::ccvm.value__371
-#: 950.data.seed-values.sql:6185
+#: 950.data.seed-values.sql:6215
 msgid "Serbian"
 msgstr ""
 
-# id::acsaf.name__71
-#: 950.data.seed-values.sql:10198
-msgid "See Also Tracing -- Form Subdivision"
-msgstr ""
-
 # id::ccvm.value__ast
-#: 950.data.seed-values.sql:5842
+#: 950.data.seed-values.sql:5872
 msgid "Bable"
 msgstr ""
 
 # id::ccvm.value__533
-#: 950.data.seed-values.sql:6358
+#: 950.data.seed-values.sql:6388
 msgid "Subunit"
 msgstr ""
 
 # id::ccvm.value__203
-#: 950.data.seed-values.sql:6017
+#: 950.data.seed-values.sql:6047
 msgid "Italian"
 msgstr ""
 
-# id::cuat.label__22
-#: 950.data.seed-values.sql:11694
-msgid "LibraryElf Login"
+# id::acsaf.name__61
+#: 950.data.seed-values.sql:10224
+msgid "See From Tracing -- Personal Name"
 msgstr ""
 
 # id::ccvm.value__74
-#: 950.data.seed-values.sql:5888
+#: 950.data.seed-values.sql:5918
 msgid "Chibcha"
 msgstr ""
 
@@ -2366,22 +2391,22 @@ msgid "Example Sub-library 1"
 msgstr ""
 
 # id::ccvm.value__303
-#: 950.data.seed-values.sql:6117
+#: 950.data.seed-values.sql:6147
 msgid "Navajo"
 msgstr ""
 
 # id::ccvm.value__289
-#: 950.data.seed-values.sql:6103
+#: 950.data.seed-values.sql:6133
 msgid "Manobo languages"
 msgstr ""
 
 # id::ccvm.value__73
-#: 950.data.seed-values.sql:5887
+#: 950.data.seed-values.sql:5917
 msgid "Chamorro"
 msgstr ""
 
 # id::ccvm.value__256
-#: 950.data.seed-values.sql:6070
+#: 950.data.seed-values.sql:6100
 msgid "Luba-Lulua"
 msgstr ""
 
@@ -2391,12 +2416,12 @@ msgid "Catalogers"
 msgstr ""
 
 # id::ccvm.value__466
-#: 950.data.seed-values.sql:6280
+#: 950.data.seed-values.sql:6310
 msgid "Wakashan languages"
 msgstr ""
 
 # id::ccvm.value__amh
-#: 950.data.seed-values.sql:5830
+#: 950.data.seed-values.sql:5860
 msgid "Amharic"
 msgstr ""
 
@@ -2406,58 +2431,63 @@ msgstr ""
 msgid "default"
 msgstr ""
 
+# id::cuat.label__22
+#: 950.data.seed-values.sql:11729
+msgid "LibraryElf Login"
+msgstr ""
+
 # id::cbt.name__1
 #: 950.data.seed-values.sql:469
 msgid "Overdue Materials"
 msgstr ""
 
 # id::ccvm.value__419 id::ccvm.value__427
-#: 950.data.seed-values.sql:6233 950.data.seed-values.sql:6241
+#: 950.data.seed-values.sql:6263 950.data.seed-values.sql:6271
 msgid "Tajik"
 msgstr ""
 
 # id::ccvm.value__353
-#: 950.data.seed-values.sql:6167
+#: 950.data.seed-values.sql:6197
 msgid "Rapanui"
 msgstr ""
 
 # id::ccvm.value__459
-#: 950.data.seed-values.sql:6273
+#: 950.data.seed-values.sql:6303
 msgid "Urdu"
 msgstr ""
 
 # id::vie.description__import.item.invalid.circ_lib
-#: 950.data.seed-values.sql:9456
+#: 950.data.seed-values.sql:9491
 msgid "Invalid value for \"circ_lib\""
 msgstr ""
 
 # id::at.name__a
-#: 950.data.seed-values.sql:10268
+#: 950.data.seed-values.sql:10303
 msgid "Library of Congress Subject Headings"
 msgstr ""
 
 # id::ccvm.value__254
-#: 950.data.seed-values.sql:6068
+#: 950.data.seed-values.sql:6098
 msgid "Lozi"
 msgstr ""
 
 # id::acsaf.name__30
-#: 950.data.seed-values.sql:10171
+#: 950.data.seed-values.sql:10206
 msgid "See Also From Tracing -- Chronological Subdivision"
 msgstr ""
 
 # id::ccvm.value__161
-#: 950.data.seed-values.sql:5975
+#: 950.data.seed-values.sql:6005
 msgid "Gorontalo"
 msgstr ""
 
 # id::acsaf.name__2
-#: 950.data.seed-values.sql:10151
+#: 950.data.seed-values.sql:10186
 msgid "Heading -- Corporate Name"
 msgstr ""
 
 # id::ccvm.value__76
-#: 950.data.seed-values.sql:5890
+#: 950.data.seed-values.sql:5920
 msgid "Chagatai"
 msgstr ""
 
@@ -2467,7 +2497,7 @@ msgid "28_days_0_renew"
 msgstr ""
 
 # id::ccs.name__11 id::coust.label__config.settings_group.cat
-#: 950.data.seed-values.sql:308 950.data.seed-values.sql:2484
+#: 950.data.seed-values.sql:308 950.data.seed-values.sql:2494
 msgid "Cataloging"
 msgstr ""
 
@@ -2477,12 +2507,12 @@ msgid "3_days_1_renew"
 msgstr ""
 
 # id::ccvm.value__art
-#: 950.data.seed-values.sql:5839
+#: 950.data.seed-values.sql:5869
 msgid "Artificial (Other)"
 msgstr ""
 
 # id::ccvm.value__310
-#: 950.data.seed-values.sql:6124
+#: 950.data.seed-values.sql:6154
 msgid "Nias"
 msgstr ""
 
@@ -2492,7 +2522,7 @@ msgid "Damaged Item Processing Fee"
 msgstr ""
 
 # id::vqbrad.description__9
-#: 950.data.seed-values.sql:4792
+#: 950.data.seed-values.sql:4822
 msgid "TCN Value"
 msgstr ""
 
@@ -2502,7 +2532,7 @@ msgid "Patron exceeds pre-collections warning fine threshold"
 msgstr ""
 
 # id::ccvm.value__86
-#: 950.data.seed-values.sql:5900
+#: 950.data.seed-values.sql:5930
 msgid "Cheyenne"
 msgstr ""
 
@@ -2512,32 +2542,32 @@ msgid "Bilingual"
 msgstr ""
 
 # id::ccvm.value__135
-#: 950.data.seed-values.sql:5949
+#: 950.data.seed-values.sql:5979
 msgid "Fon"
 msgstr ""
 
 # id::ccvm.value__awa
-#: 950.data.seed-values.sql:5847
+#: 950.data.seed-values.sql:5877
 msgid "Awadhi"
 msgstr ""
 
 # id::ccvm.value__94
-#: 950.data.seed-values.sql:5908
+#: 950.data.seed-values.sql:5938
 msgid "Cree"
 msgstr ""
 
 # id::ccvm.value__332
-#: 950.data.seed-values.sql:6146
+#: 950.data.seed-values.sql:6176
 msgid "Otomian languages"
 msgstr ""
 
 # id::ccvm.value__321
-#: 950.data.seed-values.sql:6135
+#: 950.data.seed-values.sql:6165
 msgid "Nyamwezi"
 msgstr ""
 
 # id::ccvm.value__195
-#: 950.data.seed-values.sql:6009
+#: 950.data.seed-values.sql:6039
 msgid "Indonesian"
 msgstr ""
 
@@ -2547,72 +2577,77 @@ msgid "Good"
 msgstr ""
 
 # id::ccvm.value__104
-#: 950.data.seed-values.sql:5918
+#: 950.data.seed-values.sql:5948
 msgid "Slave"
 msgstr ""
 
 # id::ccvm.value__454
-#: 950.data.seed-values.sql:6268
+#: 950.data.seed-values.sql:6298
 msgid "Ugaritic"
 msgstr ""
 
 # id::ccvm.value__173
-#: 950.data.seed-values.sql:5987
+#: 950.data.seed-values.sql:6017
 msgid "Hawaiian"
 msgstr ""
 
 # id::ccvm.value__263
-#: 950.data.seed-values.sql:6077
+#: 950.data.seed-values.sql:6107
 msgid "Macedonian"
 msgstr ""
 
+# id::acsaf.name__72
+#: 950.data.seed-values.sql:10234
+msgid "See From Tracing -- Chronological Term"
+msgstr ""
+
 # id::ccvm.value__380
-#: 950.data.seed-values.sql:6194
+#: 950.data.seed-values.sql:6224
 msgid "Sidamo"
 msgstr ""
 
 # id::ccvm.value__349
-#: 950.data.seed-values.sql:6163
+#: 950.data.seed-values.sql:6193
 msgid "Provençal (to 1500)"
 msgstr ""
 
 # id::cubt.label__folks%3Apub_book_bags.view
-#: 950.data.seed-values.sql:4864
+#: 950.data.seed-values.sql:4894
 msgid "List Published Book Bags"
 msgstr ""
 
 # id::ccvm.value__381 id::ccvm.value__396
-#: 950.data.seed-values.sql:6195 950.data.seed-values.sql:6210
+#: 950.data.seed-values.sql:6225 950.data.seed-values.sql:6240
 msgid "Sinhalese"
 msgstr ""
 
 # id::ccvm.value__ada
-#: 950.data.seed-values.sql:5819
+#: 950.data.seed-values.sql:5849
 msgid "Adangme"
 msgstr ""
 
 # id::ccvm.value__429
-#: 950.data.seed-values.sql:6243
+#: 950.data.seed-values.sql:6273
 msgid "Thai"
 msgstr ""
 
 # id::ccvm.value__afr
-#: 950.data.seed-values.sql:5823
+#: 950.data.seed-values.sql:5853
 msgid "Afrikaans"
 msgstr ""
 
 # id::acsaf.name__41
-#: 950.data.seed-values.sql:10176
+#: 950.data.seed-values.sql:10211
 msgid "Established Heading Linking Entry -- Personal Name"
 msgstr ""
 
 # id::ccvm.value__496
-#: 950.data.seed-values.sql:6314
+#: 950.data.seed-values.sql:6344
 msgid "Language material"
 msgstr ""
 
 # id::vqbrad.description__4
-#: 950.data.seed-values.sql:4787
+#: 950.data.seed-values.sql:4817
 msgid "Pagination"
 msgstr ""
 
@@ -2622,27 +2657,27 @@ msgid "Damaged Item"
 msgstr ""
 
 # id::ccvm.value__460
-#: 950.data.seed-values.sql:6274
+#: 950.data.seed-values.sql:6304
 msgid "Uzbek"
 msgstr ""
 
 # id::ccvm.value__235
-#: 950.data.seed-values.sql:6049
+#: 950.data.seed-values.sql:6079
 msgid "Kurukh"
 msgstr ""
 
 # id::ccvm.value__200
-#: 950.data.seed-values.sql:6014
+#: 950.data.seed-values.sql:6044
 msgid "Iranian (Other)"
 msgstr ""
 
 # id::ccvm.value__482
-#: 950.data.seed-values.sql:6296
+#: 950.data.seed-values.sql:6326
 msgid "Zenaga"
 msgstr ""
 
 # id::ccvm.value__62
-#: 950.data.seed-values.sql:5876
+#: 950.data.seed-values.sql:5906
 msgid "Bugis"
 msgstr ""
 
@@ -2652,12 +2687,12 @@ msgid "Reshelving"
 msgstr ""
 
 # id::ccvm.value__64
-#: 950.data.seed-values.sql:5878
+#: 950.data.seed-values.sql:5908
 msgid "Burmese"
 msgstr ""
 
 # id::ccvm.value__ale
-#: 950.data.seed-values.sql:5828
+#: 950.data.seed-values.sql:5858
 msgid "Aleut"
 msgstr ""
 
@@ -2667,17 +2702,17 @@ msgid "e-Reader Preload"
 msgstr ""
 
 # id::cmc.label__identifier id::vqarad.description__1
-#: 950.data.seed-values.sql:95 950.data.seed-values.sql:4848
+#: 950.data.seed-values.sql:95 950.data.seed-values.sql:4878
 msgid "Identifier"
 msgstr ""
 
 # id::cuat.label__11
-#: 950.data.seed-values.sql:11681
+#: 950.data.seed-values.sql:11716
 msgid "Verification via gateway-v1"
 msgstr ""
 
 # id::ccvm.value__251
-#: 950.data.seed-values.sql:6065
+#: 950.data.seed-values.sql:6095
 msgid "Lingala"
 msgstr ""
 
@@ -2687,7 +2722,7 @@ msgid "System: Rental"
 msgstr ""
 
 # id::cuat.label__8
-#: 950.data.seed-values.sql:11677
+#: 950.data.seed-values.sql:11712
 msgid "Login via Apache module"
 msgstr ""
 
@@ -2697,87 +2732,87 @@ msgid "Checked out"
 msgstr ""
 
 # id::ccvm.value__260
-#: 950.data.seed-values.sql:6074
+#: 950.data.seed-values.sql:6104
 msgid "Lunda"
 msgstr ""
 
-# id::ccvm.value__293
-#: 950.data.seed-values.sql:6107
-msgid "Mooré"
+# id::ahrcc.label__5
+#: 950.data.seed-values.sql:2432
+msgid "Staff forced"
 msgstr ""
 
 # id::ccvm.value__arg
-#: 950.data.seed-values.sql:5835
+#: 950.data.seed-values.sql:5865
 msgid "Aragonese Spanish"
 msgstr ""
 
 # id::ccvm.value__489
-#: 950.data.seed-values.sql:6305
+#: 950.data.seed-values.sql:6335
 msgid "Primary"
 msgstr ""
 
 # id::ccvm.value__282
-#: 950.data.seed-values.sql:6096
+#: 950.data.seed-values.sql:6126
 msgid "Miscellaneous languages"
 msgstr ""
 
 # id::ccvm.value__259
-#: 950.data.seed-values.sql:6073
+#: 950.data.seed-values.sql:6103
 msgid "Luiseño"
 msgstr ""
 
 # id::ccvm.value__415
-#: 950.data.seed-values.sql:6229
+#: 950.data.seed-values.sql:6259
 msgid "Syriac"
 msgstr ""
 
 # id::ccvm.value__214
-#: 950.data.seed-values.sql:6028
+#: 950.data.seed-values.sql:6058
 msgid "Karen"
 msgstr ""
 
 # id::ccvm.value__164
-#: 950.data.seed-values.sql:5978
+#: 950.data.seed-values.sql:6008
 msgid "Greek, Ancient (to 1453)"
 msgstr ""
 
 # id::ccvm.value__142
-#: 950.data.seed-values.sql:5956
+#: 950.data.seed-values.sql:5986
 msgid "Friulian"
 msgstr ""
 
 # id::ccvm.value__323
-#: 950.data.seed-values.sql:6137
+#: 950.data.seed-values.sql:6167
 msgid "Nyoro"
 msgstr ""
 
 # id::cbrebt.label__template_merge
-#: 950.data.seed-values.sql:4860
+#: 950.data.seed-values.sql:4890
 msgid "Template Merge Container"
 msgstr ""
 
 # id::ccvm.value__59
-#: 950.data.seed-values.sql:5873
+#: 950.data.seed-values.sql:5903
 msgid "Breton"
 msgstr ""
 
 # id::acsaf.name__26
-#: 950.data.seed-values.sql:10167
+#: 950.data.seed-values.sql:10202
 msgid "See Also From Tracing -- Geographic Name"
 msgstr ""
 
 # id::ccvm.value__144 id::ccvm.value__154
-#: 950.data.seed-values.sql:5958 950.data.seed-values.sql:5968
+#: 950.data.seed-values.sql:5988 950.data.seed-values.sql:5998
 msgid "Scottish Gaelic"
 msgstr ""
 
 # id::ccvm.value__448
-#: 950.data.seed-values.sql:6262
+#: 950.data.seed-values.sql:6292
 msgid "Turkish"
 msgstr ""
 
 # id::ccvm.value__554
-#: 950.data.seed-values.sql:6381
+#: 950.data.seed-values.sql:6411
 msgid "DVD"
 msgstr ""
 
@@ -2787,12 +2822,12 @@ msgid "ILL"
 msgstr ""
 
 # id::ccvm.value__103
-#: 950.data.seed-values.sql:5917
+#: 950.data.seed-values.sql:5947
 msgid "Delaware"
 msgstr ""
 
 # id::ccvm.value__468
-#: 950.data.seed-values.sql:6282
+#: 950.data.seed-values.sql:6312
 msgid "Waray"
 msgstr ""
 
@@ -2807,47 +2842,52 @@ msgid "Alerting block on Circ, Hold and Renew"
 msgstr ""
 
 # id::ccvm.value__397
-#: 950.data.seed-values.sql:6211
+#: 950.data.seed-values.sql:6241
 msgid "Soninke"
 msgstr ""
 
 # id::acsaf.name__25
-#: 950.data.seed-values.sql:10166
+#: 950.data.seed-values.sql:10201
 msgid "See Also From Tracing -- Topical Term"
 msgstr ""
 
+# id::aurt.label__4
+#: 950.data.seed-values.sql:2515
+msgid "Music"
+msgstr ""
+
 # id::ccvm.value__481
-#: 950.data.seed-values.sql:6295
+#: 950.data.seed-values.sql:6325
 msgid "Zapotec"
 msgstr ""
 
 # id::ccvm.value__180
-#: 950.data.seed-values.sql:5994
+#: 950.data.seed-values.sql:6024
 msgid "Hmong"
 msgstr ""
 
 # id::ccvm.value__556
-#: 950.data.seed-values.sql:6383
+#: 950.data.seed-values.sql:6413
 msgid "Unspecified"
 msgstr ""
 
 # id::acs.name__1
-#: 950.data.seed-values.sql:10136
+#: 950.data.seed-values.sql:10171
 msgid "LoC"
 msgstr ""
 
 # id::ccvm.value__67 id::ccvm.value__222
-#: 950.data.seed-values.sql:5881 950.data.seed-values.sql:6036
+#: 950.data.seed-values.sql:5911 950.data.seed-values.sql:6066
 msgid "Khmer"
 msgstr ""
 
 # id::ccvm.value__85
-#: 950.data.seed-values.sql:5899
+#: 950.data.seed-values.sql:5929
 msgid "Chuvash"
 msgstr ""
 
 # id::ccvm.value__196
-#: 950.data.seed-values.sql:6010
+#: 950.data.seed-values.sql:6040
 msgid "Indo-European (Other)"
 msgstr ""
 
@@ -2862,27 +2902,27 @@ msgid "Lost Materials"
 msgstr ""
 
 # id::ccvm.value__252
-#: 950.data.seed-values.sql:6066
+#: 950.data.seed-values.sql:6096
 msgid "Lithuanian"
 msgstr ""
 
 # id::ccvm.value__276
-#: 950.data.seed-values.sql:6090
+#: 950.data.seed-values.sql:6120
 msgid "Malay"
 msgstr ""
 
 # id::ccvm.value__211
-#: 950.data.seed-values.sql:6025
+#: 950.data.seed-values.sql:6055
 msgid "Kalâtdlisut"
 msgstr ""
 
 # id::ccvm.value__486
-#: 950.data.seed-values.sql:6300
+#: 950.data.seed-values.sql:6330
 msgid "Zuni"
 msgstr ""
 
 # id::ccvm.value__504
-#: 950.data.seed-values.sql:6322
+#: 950.data.seed-values.sql:6352
 msgid "Manuscript cartographic material"
 msgstr ""
 
@@ -2892,7 +2932,7 @@ msgid "Geographic Subject"
 msgstr ""
 
 # id::ccvm.value__184
-#: 950.data.seed-values.sql:5998
+#: 950.data.seed-values.sql:6028
 msgid "Iban"
 msgstr ""
 
@@ -2907,12 +2947,12 @@ msgid "Notification Fee"
 msgstr ""
 
 # id::ccvm.value__373
-#: 950.data.seed-values.sql:6187
+#: 950.data.seed-values.sql:6217
 msgid "Croatian"
 msgstr ""
 
 # id::ccvm.value__71
-#: 950.data.seed-values.sql:5885
+#: 950.data.seed-values.sql:5915
 msgid "Cebuano"
 msgstr ""
 
@@ -2922,43 +2962,43 @@ msgid "Can do anything at the System level"
 msgstr ""
 
 # id::ccvm.value__290
-#: 950.data.seed-values.sql:6104
+#: 950.data.seed-values.sql:6134
 msgid "Mohawk"
 msgstr ""
 
 # id::ccvm.value__105
-#: 950.data.seed-values.sql:5919
+#: 950.data.seed-values.sql:5949
 msgid "Dogrib"
 msgstr ""
 
 # id::ccvm.value__464
-#: 950.data.seed-values.sql:6278
+#: 950.data.seed-values.sql:6308
 msgid "Volapük"
 msgstr ""
 
 # id::cuat.label__12
-#: 950.data.seed-values.sql:11682
+#: 950.data.seed-values.sql:11717
 msgid "Verification via translator-v1"
 msgstr ""
 
 # id::ccvm.value__279
-#: 950.data.seed-values.sql:6093
+#: 950.data.seed-values.sql:6123
 msgid "Irish, Middle (ca. 1100-1550)"
 msgstr ""
 
 # id::ccvm.value__508
-#: 950.data.seed-values.sql:6326
+#: 950.data.seed-values.sql:6356
 msgid "Musical sound recording"
 msgstr ""
 
 # id::ccvm.value__456
-#: 950.data.seed-values.sql:6270
+#: 950.data.seed-values.sql:6300
 msgid "Ukrainian"
 msgstr ""
 
-# id::ccvm.value__361
-#: 950.data.seed-values.sql:6175
-msgid "Sandawe"
+# id::ccvm.value__169
+#: 950.data.seed-values.sql:6013
+msgid "Gwich'in"
 msgstr ""
 
 # id::czs.label__oclc
@@ -2967,17 +3007,17 @@ msgid "OCLC"
 msgstr ""
 
 # id::ccvm.value__204
-#: 950.data.seed-values.sql:6018
+#: 950.data.seed-values.sql:6048
 msgid "Javanese"
 msgstr ""
 
 # id::ccvm.value__bad
-#: 950.data.seed-values.sql:5850
+#: 950.data.seed-values.sql:5880
 msgid "Banda"
 msgstr ""
 
 # id::vqbrad.description__2
-#: 950.data.seed-values.sql:4785
+#: 950.data.seed-values.sql:4815
 msgid "Author of work"
 msgstr ""
 
@@ -2987,53 +3027,58 @@ msgid "Misc"
 msgstr ""
 
 # id::ccvm.value__449
-#: 950.data.seed-values.sql:6263
+#: 950.data.seed-values.sql:6293
 msgid "Altaic (Other)"
 msgstr ""
 
 # id::ccvm.value__213
-#: 950.data.seed-values.sql:6027
+#: 950.data.seed-values.sql:6057
 msgid "Kannada"
 msgstr ""
 
 # id::ccvm.value__111
-#: 950.data.seed-values.sql:5925
+#: 950.data.seed-values.sql:5955
 msgid "Dutch, Middle (ca. 1050-1350)"
 msgstr ""
 
 # id::ccvm.value__341
-#: 950.data.seed-values.sql:6155
+#: 950.data.seed-values.sql:6185
 msgid "Persian"
 msgstr ""
 
 # id::cuat.label__21
-#: 950.data.seed-values.sql:11693
+#: 950.data.seed-values.sql:11728
 msgid "Apache Auth Proxy Login"
 msgstr ""
 
 # id::ccvm.value__292
-#: 950.data.seed-values.sql:6106
+#: 950.data.seed-values.sql:6136
 msgid "Mongolian"
 msgstr ""
 
 # id::ccvm.value__81
-#: 950.data.seed-values.sql:5895
+#: 950.data.seed-values.sql:5925
 msgid "Choctaw"
 msgstr ""
 
+# id::ccvm.value__293
+#: 950.data.seed-values.sql:6137
+msgid "Mooré"
+msgstr ""
+
 # id::ccvm.value__aym
-#: 950.data.seed-values.sql:5848
+#: 950.data.seed-values.sql:5878
 msgid "Aymara"
 msgstr ""
 
 # id::ccvm.value__364
-#: 950.data.seed-values.sql:6178
+#: 950.data.seed-values.sql:6208
 msgid "South American Indian (Other)"
 msgstr ""
 
-# id::acsaf.name__68
-#: 950.data.seed-values.sql:10195
-msgid "See Also Tracing -- General Subdivision"
+# id::vie.description__import.xml.malformed
+#: 950.data.seed-values.sql:9478
+msgid "Malformed record cause Import failure"
 msgstr ""
 
 # id::cmf.label__26 id::cza.label__1 id::cza.label__10 id::cza.label__19
@@ -3043,67 +3088,67 @@ msgid "Title Control Number"
 msgstr ""
 
 # id::ccvm.value__379 id::ccvm.value__394
-#: 950.data.seed-values.sql:6193 950.data.seed-values.sql:6208
+#: 950.data.seed-values.sql:6223 950.data.seed-values.sql:6238
 msgid "Shona"
 msgstr ""
 
 # id::ccvm.value__82
-#: 950.data.seed-values.sql:5896
+#: 950.data.seed-values.sql:5926
 msgid "Chipewyan"
 msgstr ""
 
 # id::ccvm.value__90
-#: 950.data.seed-values.sql:5904
+#: 950.data.seed-values.sql:5934
 msgid "Corsican"
 msgstr ""
 
 # id::vie.description__import.item.invalid.location
-#: 950.data.seed-values.sql:9438
+#: 950.data.seed-values.sql:9473
 msgid "Import failed due to invalid copy location"
 msgstr ""
 
 # id::ccvm.value__233
-#: 950.data.seed-values.sql:6047
+#: 950.data.seed-values.sql:6077
 msgid "Kpelle"
 msgstr ""
 
 # id::cuat.label__15
-#: 950.data.seed-values.sql:11685
+#: 950.data.seed-values.sql:11720
 msgid "SIP2 User Verification"
 msgstr ""
 
 # id::ccvm.value__525
-#: 950.data.seed-values.sql:6348
+#: 950.data.seed-values.sql:6378
 msgid "Microopaque"
 msgstr ""
 
 # id::ccvm.value__399
-#: 950.data.seed-values.sql:6213
+#: 950.data.seed-values.sql:6243
 msgid "Somali"
 msgstr ""
 
 # id::ccvm.value__arp
-#: 950.data.seed-values.sql:5838
+#: 950.data.seed-values.sql:5868
 msgid "Arapaho"
 msgstr ""
 
 # id::ccvm.value__49
-#: 950.data.seed-values.sql:5863
+#: 950.data.seed-values.sql:5893
 msgid "Berber (Other)"
 msgstr ""
 
 # id::ccvm.value__80
-#: 950.data.seed-values.sql:5894
+#: 950.data.seed-values.sql:5924
 msgid "Chinook jargon"
 msgstr ""
 
 # id::ccvm.value__aka
-#: 950.data.seed-values.sql:5825
+#: 950.data.seed-values.sql:5855
 msgid "Akan"
 msgstr ""
 
 # id::ccvm.value__262
-#: 950.data.seed-values.sql:6076
+#: 950.data.seed-values.sql:6106
 msgid "Lushai"
 msgstr ""
 
@@ -3113,7 +3158,7 @@ msgid "English (US)"
 msgstr ""
 
 # id::ccvm.value__346
-#: 950.data.seed-values.sql:6160
+#: 950.data.seed-values.sql:6190
 msgid "Ponape"
 msgstr ""
 
@@ -3123,62 +3168,67 @@ msgid "Cataloging Administrator"
 msgstr ""
 
 # id::ccvm.value__55
-#: 950.data.seed-values.sql:5869
+#: 950.data.seed-values.sql:5899
 msgid "Siksika"
 msgstr ""
 
 # id::ccvm.value__307
-#: 950.data.seed-values.sql:6121
+#: 950.data.seed-values.sql:6151
 msgid "Low German"
 msgstr ""
 
+# id::acsaf.name__70
+#: 950.data.seed-values.sql:10232
+msgid "See From Tracing -- Chronological Subdivision"
+msgstr ""
+
 # id::ccvm.value__101
-#: 950.data.seed-values.sql:5915
+#: 950.data.seed-values.sql:5945
 msgid "Dargwa"
 msgstr ""
 
 # id::ccvm.value__519
-#: 950.data.seed-values.sql:6339
+#: 950.data.seed-values.sql:6369
 msgid "Mixed forms"
 msgstr ""
 
 # id::ccvm.value__398
-#: 950.data.seed-values.sql:6212
+#: 950.data.seed-values.sql:6242
 msgid "Sogdian"
 msgstr ""
 
 # id::ccvm.value__348
-#: 950.data.seed-values.sql:6162
+#: 950.data.seed-values.sql:6192
 msgid "Prakrit languages"
 msgstr ""
 
 # id::ccvm.value__147
-#: 950.data.seed-values.sql:5961
+#: 950.data.seed-values.sql:5991
 msgid "Gayo"
 msgstr ""
 
 # id::acsaf.name__28
-#: 950.data.seed-values.sql:10169
+#: 950.data.seed-values.sql:10204
 msgid "See Also From Tracing -- General Subdivision"
 msgstr ""
 
 # id::ccvm.value__510
-#: 950.data.seed-values.sql:6330
+#: 950.data.seed-values.sql:6360
 msgid "Not fiction (not further specified)"
 msgstr ""
 
 # id::ccvm.value__236
-#: 950.data.seed-values.sql:6050
+#: 950.data.seed-values.sql:6080
 msgid "Kuanyama"
 msgstr ""
 
 # id::ccvm.value__421 id::ccvm.value__422
-#: 950.data.seed-values.sql:6235 950.data.seed-values.sql:6236
+#: 950.data.seed-values.sql:6265 950.data.seed-values.sql:6266
 msgid "Tatar"
 msgstr ""
 
 # id::ccvm.value__505
-#: 950.data.seed-values.sql:6323
+#: 950.data.seed-values.sql:6353
 msgid "Notated music"
 msgstr ""
 
@@ -3198,27 +3248,27 @@ msgid "System Control Number"
 msgstr ""
 
 # id::ccvm.value__146 id::ccvm.value__328
-#: 950.data.seed-values.sql:5960 950.data.seed-values.sql:6142
+#: 950.data.seed-values.sql:5990 950.data.seed-values.sql:6172
 msgid "Oromo"
 msgstr ""
 
 # id::ccvm.value__536
-#: 950.data.seed-values.sql:6361
+#: 950.data.seed-values.sql:6391
 msgid "Serial"
 msgstr ""
 
 # id::cbrebt.label__reading_list
-#: 950.data.seed-values.sql:4859
+#: 950.data.seed-values.sql:4889
 msgid "Reading List"
 msgstr ""
 
 # id::ccvm.value__503
-#: 950.data.seed-values.sql:6321
+#: 950.data.seed-values.sql:6351
 msgid "Cartographic material"
 msgstr ""
 
 # id::ccvm.value__375
-#: 950.data.seed-values.sql:6189
+#: 950.data.seed-values.sql:6219
 msgid "Semitic (Other)"
 msgstr ""
 
@@ -3227,78 +3277,83 @@ msgstr ""
 msgid "General Keywords"
 msgstr ""
 
+# id::aurt.label__5
+#: 950.data.seed-values.sql:2516
+msgid "DVDs"
+msgstr ""
+
 # id::ccvm.value__223
-#: 950.data.seed-values.sql:6037
+#: 950.data.seed-values.sql:6067
 msgid "Khotanese"
 msgstr ""
 
 # id::ccvm.value__47
-#: 950.data.seed-values.sql:5861
+#: 950.data.seed-values.sql:5891
 msgid "Bemba"
 msgstr ""
 
 # id::vqbrad.description__1
-#: 950.data.seed-values.sql:4784
+#: 950.data.seed-values.sql:4814
 msgid "Title of work"
 msgstr ""
 
 # id::ccvm.value__351
-#: 950.data.seed-values.sql:6165
+#: 950.data.seed-values.sql:6195
 msgid "Quechua"
 msgstr ""
 
-# id::acsaf.name__69
-#: 950.data.seed-values.sql:10196
-msgid "See Also Tracing -- Geographic Subdivision"
-msgstr ""
-
 # id::vqbrad.description__7
-#: 950.data.seed-values.sql:4790
+#: 950.data.seed-values.sql:4820
 msgid "Price"
 msgstr ""
 
 # id::ccvm.value__96
-#: 950.data.seed-values.sql:5910
+#: 950.data.seed-values.sql:5940
 msgid "Creoles and Pidgins (Other)"
 msgstr ""
 
+# id::acsaf.name__67
+#: 950.data.seed-values.sql:10229
+msgid "See From Tracing -- Genre/Form Term"
+msgstr ""
+
 # id::ccvm.value__311
-#: 950.data.seed-values.sql:6125
+#: 950.data.seed-values.sql:6155
 msgid "Niger-Kordofanian (Other)"
 msgstr ""
 
 # id::ccvm.value__124
-#: 950.data.seed-values.sql:5938
+#: 950.data.seed-values.sql:5968
 msgid "Estonian"
 msgstr ""
 
 # id::ccvm.value__128
-#: 950.data.seed-values.sql:5942
+#: 950.data.seed-values.sql:5972
 msgid "Fang"
 msgstr ""
 
 # id::ccvm.value__253
-#: 950.data.seed-values.sql:6067
+#: 950.data.seed-values.sql:6097
 msgid "Mongo-Nkundu"
 msgstr ""
 
 # id::vie.description__general.unknown
-#: 950.data.seed-values.sql:9435
+#: 950.data.seed-values.sql:9470
 msgid "Import or Overlay failed"
 msgstr ""
 
 # id::ccvm.value__269
-#: 950.data.seed-values.sql:6083
+#: 950.data.seed-values.sql:6113
 msgid "Malayalam"
 msgstr ""
 
 # id::cuat.label__20
-#: 950.data.seed-values.sql:11692
+#: 950.data.seed-values.sql:11727
 msgid "Unique Mgt Login"
 msgstr ""
 
 # id::ccvm.value__391
-#: 950.data.seed-values.sql:6205
+#: 950.data.seed-values.sql:6235
 msgid "Inari Sami"
 msgstr ""
 
@@ -3318,17 +3373,17 @@ msgid "Branch"
 msgstr ""
 
 # id::ccvm.value__afh
-#: 950.data.seed-values.sql:5822
+#: 950.data.seed-values.sql:5852
 msgid "Afrihili (Artificial language)"
 msgstr ""
 
 # id::vqbrad.description__15
-#: 950.data.seed-values.sql:4798
+#: 950.data.seed-values.sql:4828
 msgid "Item Barcode"
 msgstr ""
 
 # id::vie.description__overlay.xml.malformed
-#: 950.data.seed-values.sql:9444
+#: 950.data.seed-values.sql:9479
 msgid "Malformed record cause Overlay failure"
 msgstr ""
 
@@ -3343,17 +3398,17 @@ msgid "Example Bookmobile 1"
 msgstr ""
 
 # id::ccvm.value__493
-#: 950.data.seed-values.sql:6309
+#: 950.data.seed-values.sql:6339
 msgid "Specialized"
 msgstr ""
 
 # id::ccvm.value__132
-#: 950.data.seed-values.sql:5946
+#: 950.data.seed-values.sql:5976
 msgid "Fijian"
 msgstr ""
 
 # id::acsaf.name__46
-#: 950.data.seed-values.sql:10180
+#: 950.data.seed-values.sql:10215
 msgid "Established Heading Linking Entry -- Geographic Name"
 msgstr ""
 
@@ -3368,33 +3423,33 @@ msgid "Authority Record ID"
 msgstr ""
 
 # id::acsaf.name__52
-#: 950.data.seed-values.sql:10186
+#: 950.data.seed-values.sql:10221
 msgid "Established Heading Linking Entry -- Chronological Term"
 msgstr ""
 
 # id::cust.label__history.hold.retention_age
 # id::cust.description__history.hold.retention_age
-#: 950.data.seed-values.sql:9008 950.data.seed-values.sql:9009
+#: 950.data.seed-values.sql:9043 950.data.seed-values.sql:9044
 msgid "Historical Hold Retention Age"
 msgstr ""
 
 # id::ccvm.value__313
-#: 950.data.seed-values.sql:6127
+#: 950.data.seed-values.sql:6157
 msgid "Norwegian (Nynorsk)"
 msgstr ""
 
 # id::ccvm.value__431
-#: 950.data.seed-values.sql:6245
+#: 950.data.seed-values.sql:6275
 msgid "Tigré"
 msgstr ""
 
 # id::ccvm.value__368 id::ccvm.value__392
-#: 950.data.seed-values.sql:6182 950.data.seed-values.sql:6206
+#: 950.data.seed-values.sql:6212 950.data.seed-values.sql:6236
 msgid "Samoan"
 msgstr ""
 
 # id::ccpbt.label__staff_client id::cbrebt.label__staff_client
-#: 950.data.seed-values.sql:4853 950.data.seed-values.sql:4857
+#: 950.data.seed-values.sql:4883 950.data.seed-values.sql:4887
 msgid "General Staff Client container"
 msgstr ""
 
@@ -3404,22 +3459,22 @@ msgid "Circulation Administrator"
 msgstr ""
 
 # id::ccvm.value__157 id::ccvm.value__275
-#: 950.data.seed-values.sql:5971 950.data.seed-values.sql:6089
+#: 950.data.seed-values.sql:6001 950.data.seed-values.sql:6119
 msgid "Manx"
 msgstr ""
 
 # id::ccvm.value__354
-#: 950.data.seed-values.sql:6168
+#: 950.data.seed-values.sql:6198
 msgid "Rarotongan"
 msgstr ""
 
 # id::acsaf.name__50
-#: 950.data.seed-values.sql:10184
+#: 950.data.seed-values.sql:10219
 msgid "Subdivision Linking Entry -- Chronological Subdivision"
 msgstr ""
 
 # id::at.name__s
-#: 950.data.seed-values.sql:10275
+#: 950.data.seed-values.sql:10310
 msgid "Sears List of Subject Headings"
 msgstr ""
 
@@ -3429,22 +3484,22 @@ msgid "50_cent_per_day"
 msgstr ""
 
 # id::ccvm.value__113
-#: 950.data.seed-values.sql:5927
+#: 950.data.seed-values.sql:5957
 msgid "Dyula"
 msgstr ""
 
 # id::ccvm.value__199
-#: 950.data.seed-values.sql:6013
+#: 950.data.seed-values.sql:6043
 msgid "Inupiaq"
 msgstr ""
 
 # id::ccvm.value__165
-#: 950.data.seed-values.sql:5979
+#: 950.data.seed-values.sql:6009
 msgid "Greek, Modern (1453- )"
 msgstr ""
 
 # id::ccvm.value__115
-#: 950.data.seed-values.sql:5929
+#: 950.data.seed-values.sql:5959
 msgid "Efik"
 msgstr ""
 
@@ -3453,63 +3508,68 @@ msgstr ""
 msgid "Corporate Author"
 msgstr ""
 
+# id::ahrcc.label__3
+#: 950.data.seed-values.sql:2430
+msgid "Patron via phone"
+msgstr ""
+
 # id::ccvm.value__296
-#: 950.data.seed-values.sql:6110
+#: 950.data.seed-values.sql:6140
 msgid "Creek"
 msgstr ""
 
 # id::ccvm.value__490
-#: 950.data.seed-values.sql:6306
+#: 950.data.seed-values.sql:6336
 msgid "Pre-adolescent"
 msgstr ""
 
 # id::ccvm.value__390
-#: 950.data.seed-values.sql:6204
+#: 950.data.seed-values.sql:6234
 msgid "Lule Sami"
 msgstr ""
 
 # id::ccvm.value__54
-#: 950.data.seed-values.sql:5868
+#: 950.data.seed-values.sql:5898
 msgid "Bislama"
 msgstr ""
 
 # id::ccvm.value__230
-#: 950.data.seed-values.sql:6044
+#: 950.data.seed-values.sql:6074
 msgid "Kongo"
 msgstr ""
 
 # id::vie.description__import.item.invalid.owning_lib
-#: 950.data.seed-values.sql:9454
+#: 950.data.seed-values.sql:9489
 msgid "Invalid value for \"owning_lib\""
 msgstr ""
 
 # id::cuat.label__2
-#: 950.data.seed-values.sql:11671
+#: 950.data.seed-values.sql:11706
 msgid "Login via srfsh"
 msgstr ""
 
 # id::ccvm.value__ach
-#: 950.data.seed-values.sql:5818
+#: 950.data.seed-values.sql:5848
 msgid "Acoli"
 msgstr ""
 
 # id::ccvm.value__283
-#: 950.data.seed-values.sql:6097
+#: 950.data.seed-values.sql:6127
 msgid "Mon-Khmer (Other)"
 msgstr ""
 
 # id::acsaf.name__21
-#: 950.data.seed-values.sql:10163
+#: 950.data.seed-values.sql:10198
 msgid "See Also From Tracing -- Personal Name"
 msgstr ""
 
 # id::ccvm.value__338
-#: 950.data.seed-values.sql:6152
+#: 950.data.seed-values.sql:6182
 msgid "Papiamento"
 msgstr ""
 
 # id::ccvm.value__297
-#: 950.data.seed-values.sql:6111
+#: 950.data.seed-values.sql:6141
 msgid "Marwari"
 msgstr ""
 
@@ -3519,7 +3579,7 @@ msgid "overdue_min"
 msgstr ""
 
 # id::ccvm.value__99
-#: 950.data.seed-values.sql:5913
+#: 950.data.seed-values.sql:5943
 msgid "Dakota"
 msgstr ""
 
@@ -3534,52 +3594,52 @@ msgid "overdue_mid"
 msgstr ""
 
 # id::ccvm.value__171
-#: 950.data.seed-values.sql:5985
+#: 950.data.seed-values.sql:6015
 msgid "Haitian French Creole"
 msgstr ""
 
 # id::ccvm.value__52
-#: 950.data.seed-values.sql:5866
+#: 950.data.seed-values.sql:5896
 msgid "Bikol"
 msgstr ""
 
 # id::ccvm.value__413
-#: 950.data.seed-values.sql:6227
+#: 950.data.seed-values.sql:6257
 msgid "Swedish"
 msgstr ""
 
 # id::vie.description__import.item.invalid.copy_number
-#: 950.data.seed-values.sql:9458
+#: 950.data.seed-values.sql:9493
 msgid "Invalid value for \"copy_number\""
 msgstr ""
 
 # id::ccvm.value__377
-#: 950.data.seed-values.sql:6191
+#: 950.data.seed-values.sql:6221
 msgid "Sign languages"
 msgstr ""
 
 # id::ccvm.value__79
-#: 950.data.seed-values.sql:5893
+#: 950.data.seed-values.sql:5923
 msgid "Mari"
 msgstr ""
 
 # id::ccvm.value__126
-#: 950.data.seed-values.sql:5940
+#: 950.data.seed-values.sql:5970
 msgid "Ewe"
 msgstr ""
 
 # id::ccvm.value__447
-#: 950.data.seed-values.sql:6261
+#: 950.data.seed-values.sql:6291
 msgid "Tupi languages"
 msgstr ""
 
 # id::ccvm.value__alg
-#: 950.data.seed-values.sql:5829
+#: 950.data.seed-values.sql:5859
 msgid "Algonquian (Other)"
 msgstr ""
 
 # id::ccvm.value__129 id::ccvm.value__130
-#: 950.data.seed-values.sql:5943 950.data.seed-values.sql:5944
+#: 950.data.seed-values.sql:5973 950.data.seed-values.sql:5974
 msgid "Faroese"
 msgstr ""
 
@@ -3589,17 +3649,17 @@ msgid "Alerting block on Circ and Hold"
 msgstr ""
 
 # id::ccvm.value__100
-#: 950.data.seed-values.sql:5914
+#: 950.data.seed-values.sql:5944
 msgid "Danish"
 msgstr ""
 
 # id::ccvm.value__109
-#: 950.data.seed-values.sql:5923
+#: 950.data.seed-values.sql:5953
 msgid "Dravidian (Other)"
 msgstr ""
 
 # id::acsaf.name__42
-#: 950.data.seed-values.sql:10177
+#: 950.data.seed-values.sql:10212
 msgid "Established Heading Linking Entry -- Corporate Name"
 msgstr ""
 
@@ -3609,62 +3669,62 @@ msgid "Lost"
 msgstr ""
 
 # id::ccvm.value__91
-#: 950.data.seed-values.sql:5905
+#: 950.data.seed-values.sql:5935
 msgid "Creoles and Pidgins, English-based (Other)"
 msgstr ""
 
 # id::ccvm.value__97
-#: 950.data.seed-values.sql:5911
+#: 950.data.seed-values.sql:5941
 msgid "Cushitic (Other)"
 msgstr ""
 
 # id::ccvm.value__426
-#: 950.data.seed-values.sql:6240
+#: 950.data.seed-values.sql:6270
 msgid "Tetum"
 msgstr ""
 
 # id::ccvm.value__335
-#: 950.data.seed-values.sql:6149
+#: 950.data.seed-values.sql:6179
 msgid "Pahlavi"
 msgstr ""
 
 # id::cubt.label__folks%3Apub_book_bags.add
-#: 950.data.seed-values.sql:4865
+#: 950.data.seed-values.sql:4895
 msgid "Add to Published Book Bags"
 msgstr ""
 
 # id::vie.description__import.item.invalid.status
-#: 950.data.seed-values.sql:9448
+#: 950.data.seed-values.sql:9483
 msgid "Invalid value for \"status\""
 msgstr ""
 
-# id::acsaf.name__61
-#: 950.data.seed-values.sql:10189
-msgid "See Also Tracing -- Personal Name"
+# id::ahrcc.label__4
+#: 950.data.seed-values.sql:2431
+msgid "Patron in person"
 msgstr ""
 
 # id::ccvm.value__385
-#: 950.data.seed-values.sql:6199
+#: 950.data.seed-values.sql:6229
 msgid "Slovak"
 msgstr ""
 
 # id::at.name__n
-#: 950.data.seed-values.sql:10273
+#: 950.data.seed-values.sql:10308
 msgid "Not applicable"
 msgstr ""
 
 # id::ccvm.value__66
-#: 950.data.seed-values.sql:5880
+#: 950.data.seed-values.sql:5910
 msgid "Central American Indian (Other)"
 msgstr ""
 
 # id::ccvm.value__224
-#: 950.data.seed-values.sql:6038
+#: 950.data.seed-values.sql:6068
 msgid "Kikuyu"
 msgstr ""
 
 # id::ccvm.value__545
-#: 950.data.seed-values.sql:6372
+#: 950.data.seed-values.sql:6402
 msgid "Betacam"
 msgstr ""
 
@@ -3674,7 +3734,7 @@ msgid "6month"
 msgstr ""
 
 # id::cgf.label__history.circ.retention_count
-#: 950.data.seed-values.sql:8947
+#: 950.data.seed-values.sql:8982
 msgid "Historical Circulations per Copy"
 msgstr ""
 
@@ -3684,57 +3744,57 @@ msgid "UPC"
 msgstr ""
 
 # id::aiit.name__HND
-#: 950.data.seed-values.sql:8852
+#: 950.data.seed-values.sql:8887
 msgid "Handling Charge"
 msgstr ""
 
 # id::at.name__k
-#: 950.data.seed-values.sql:10272
+#: 950.data.seed-values.sql:10307
 msgid "Canadian Subject Headings"
 msgstr ""
 
 # id::ccvm.value__ang
-#: 950.data.seed-values.sql:5831
+#: 950.data.seed-values.sql:5861
 msgid "English, Old (ca. 450-1100)"
 msgstr ""
 
 # id::ccvm.value__300
-#: 950.data.seed-values.sql:6114
+#: 950.data.seed-values.sql:6144
 msgid "North American Indian (Other)"
 msgstr ""
 
 # id::ccvm.value__345
-#: 950.data.seed-values.sql:6159
+#: 950.data.seed-values.sql:6189
 msgid "Polish"
 msgstr ""
 
+# id::cuat.label__16
+#: 950.data.seed-values.sql:11723
+msgid "OPAC Login (jspac)"
+msgstr ""
+
 # id::acsaf.name__5
-#: 950.data.seed-values.sql:10153
+#: 950.data.seed-values.sql:10188
 msgid "Heading -- Topical Term"
 msgstr ""
 
 # id::ccvm.value__95
-#: 950.data.seed-values.sql:5909
+#: 950.data.seed-values.sql:5939
 msgid "Crimean Tatar"
 msgstr ""
 
 # id::cbrebt.label__bookbag
-#: 950.data.seed-values.sql:4858
+#: 950.data.seed-values.sql:4888
 msgid "Book Bag"
 msgstr ""
 
-# id::acsaf.name__63
-#: 950.data.seed-values.sql:10191
-msgid "See Also Tracing -- Meeting Name"
-msgstr ""
-
 # id::ccvm.value__50
-#: 950.data.seed-values.sql:5864
+#: 950.data.seed-values.sql:5894
 msgid "Bhojpuri"
 msgstr ""
 
 # id::ccvm.value__441
-#: 950.data.seed-values.sql:6255
+#: 950.data.seed-values.sql:6285
 msgid "Tsimshian"
 msgstr ""
 
@@ -3744,97 +3804,97 @@ msgid "Your Bookmobile"
 msgstr ""
 
 # id::ccvm.value__315
-#: 950.data.seed-values.sql:6129
+#: 950.data.seed-values.sql:6159
 msgid "Nogai"
 msgstr ""
 
 # id::cuat.label__14
-#: 950.data.seed-values.sql:11684
+#: 950.data.seed-values.sql:11719
 msgid "Verification via remoteauth"
 msgstr ""
 
 # id::ccvm.value__120
-#: 950.data.seed-values.sql:5934
+#: 950.data.seed-values.sql:5964
 msgid "English, Middle (1100-1500)"
 msgstr ""
 
 # id::ccvm.value__363
-#: 950.data.seed-values.sql:6177
+#: 950.data.seed-values.sql:6207
 msgid "Yakut"
 msgstr ""
 
 # id::ccvm.value__411
-#: 950.data.seed-values.sql:6225
+#: 950.data.seed-values.sql:6255
 msgid "Sumerian"
 msgstr ""
 
 # id::acqit.name__PPR
-#: 950.data.seed-values.sql:8857
+#: 950.data.seed-values.sql:8892
 msgid "Paper"
 msgstr ""
 
 # id::ccvm.value__475
-#: 950.data.seed-values.sql:6289
+#: 950.data.seed-values.sql:6319
 msgid "Xhosa"
 msgstr ""
 
 # id::ccvm.value__288
-#: 950.data.seed-values.sql:6102
+#: 950.data.seed-values.sql:6132
 msgid "Manipuri"
 msgstr ""
 
 # id::ccvm.value__61
-#: 950.data.seed-values.sql:5875
+#: 950.data.seed-values.sql:5905
 msgid "Buriat"
 msgstr ""
 
 # id::ccvm.value__270
-#: 950.data.seed-values.sql:6084
+#: 950.data.seed-values.sql:6114
 msgid "Mandingo"
 msgstr ""
 
 # id::ccvm.value__183
-#: 950.data.seed-values.sql:5997
+#: 950.data.seed-values.sql:6027
 msgid "Hupa"
 msgstr ""
 
 # id::ccvm.value__193 id::ccvm.value__198
-#: 950.data.seed-values.sql:6007 950.data.seed-values.sql:6012
+#: 950.data.seed-values.sql:6037 950.data.seed-values.sql:6042
 msgid "Interlingua (International Auxiliary Language Association)"
 msgstr ""
 
 # id::ccvm.value__186
-#: 950.data.seed-values.sql:6000
+#: 950.data.seed-values.sql:6030
 msgid "Icelandic"
 msgstr ""
 
 # id::acsaf.name__27
-#: 950.data.seed-values.sql:10168
+#: 950.data.seed-values.sql:10203
 msgid "See Also From Tracing -- Genre/Form Term"
 msgstr ""
 
 # id::ccvm.value__451
-#: 950.data.seed-values.sql:6265
+#: 950.data.seed-values.sql:6295
 msgid "Twi"
 msgstr ""
 
 # id::ccvm.value__168
-#: 950.data.seed-values.sql:5982
+#: 950.data.seed-values.sql:6012
 msgid "Gujarati"
 msgstr ""
 
 # id::ccvm.value__511
-#: 950.data.seed-values.sql:6331
+#: 950.data.seed-values.sql:6361
 msgid "Fiction (not further specified)"
 msgstr ""
 
 # id::ccvm.value__272
-#: 950.data.seed-values.sql:6086
+#: 950.data.seed-values.sql:6116
 msgid "Austronesian (Other)"
 msgstr ""
 
 # id::ccvm.value__akk
-#: 950.data.seed-values.sql:5826
+#: 950.data.seed-values.sql:5856
 msgid "Akkadian"
 msgstr ""
 
@@ -3844,72 +3904,67 @@ msgid "Filtered"
 msgstr ""
 
 # id::ccvm.value__231
-#: 950.data.seed-values.sql:6045
+#: 950.data.seed-values.sql:6075
 msgid "Korean"
 msgstr ""
 
 # id::ccvm.value__378
-#: 950.data.seed-values.sql:6192
+#: 950.data.seed-values.sql:6222
 msgid "Shan"
 msgstr ""
 
 # id::vie.description__overlay.record.quality
-#: 950.data.seed-values.sql:9445
+#: 950.data.seed-values.sql:9480
 msgid "New record had insufficient quality"
 msgstr ""
 
 # id::ccvm.value__506
-#: 950.data.seed-values.sql:6324
+#: 950.data.seed-values.sql:6354
 msgid "Manuscript notated music"
 msgstr ""
 
 # id::acsaf.name__44
-#: 950.data.seed-values.sql:10144
+#: 950.data.seed-values.sql:10179
 msgid "Established Heading Linking Entry -- Uniform Title"
 msgstr ""
 
 # id::ccvm.value__537
-#: 950.data.seed-values.sql:6364
+#: 950.data.seed-values.sql:6394
 msgid "Beta"
 msgstr ""
 
 # id::ccvm.value__532
-#: 950.data.seed-values.sql:6357
+#: 950.data.seed-values.sql:6387
 msgid "Collection"
 msgstr ""
 
 # id::ccvm.value__320
-#: 950.data.seed-values.sql:6134
+#: 950.data.seed-values.sql:6164
 msgid "Nyanja"
 msgstr ""
 
-# id::acsaf.name__66
-#: 950.data.seed-values.sql:10193
-msgid "See Also Tracing -- Geographic Name"
-msgstr ""
-
 # id::pgt.description__13
 #: 950.data.seed-values.sql:1605
 msgid "Can do anything at the Consortium level"
 msgstr ""
 
 # id::ccvm.value__65
-#: 950.data.seed-values.sql:5879
+#: 950.data.seed-values.sql:5909
 msgid "Caddo"
 msgstr ""
 
 # id::ccvm.value__249
-#: 950.data.seed-values.sql:6063
+#: 950.data.seed-values.sql:6093
 msgid "Lezgian"
 msgstr ""
 
 # id::ccvm.value__215
-#: 950.data.seed-values.sql:6029
+#: 950.data.seed-values.sql:6059
 msgid "Kashmiri"
 msgstr ""
 
 # id::ccvm.value__170
-#: 950.data.seed-values.sql:5984
+#: 950.data.seed-values.sql:6014
 msgid "Haida"
 msgstr ""
 
@@ -3919,17 +3974,17 @@ msgid "Local Free-Text Call Number"
 msgstr ""
 
 # id::ccvm.value__244 id::ccvm.value__325
-#: 950.data.seed-values.sql:6058 950.data.seed-values.sql:6139
+#: 950.data.seed-values.sql:6088 950.data.seed-values.sql:6169
 msgid "Occitan (post-1500)"
 msgstr ""
 
-# id::vie.description__import.xml.malformed
-#: 950.data.seed-values.sql:9443
-msgid "Malformed record cause Import failure"
+# id::aurt.label__2
+#: 950.data.seed-values.sql:2513
+msgid "Journal/Magazine & Newspaper Articles"
 msgstr ""
 
 # id::ccvm.value__400
-#: 950.data.seed-values.sql:6214
+#: 950.data.seed-values.sql:6244
 msgid "Songhai"
 msgstr ""
 
@@ -3944,7 +3999,7 @@ msgid "Bindery"
 msgstr ""
 
 # id::aout.name__2 id::coust.label__config.settings_group.system
-#: 950.data.seed-values.sql:429 950.data.seed-values.sql:2480
+#: 950.data.seed-values.sql:429 950.data.seed-values.sql:2490
 msgid "System"
 msgstr ""
 
@@ -3954,17 +4009,17 @@ msgid "Acquisitions Administrator"
 msgstr ""
 
 # id::cbrebt.label__vandelay_queue
-#: 950.data.seed-values.sql:10294
+#: 950.data.seed-values.sql:10329
 msgid "Vandelay Queue"
 msgstr ""
 
 # id::vqbrad.description__3
-#: 950.data.seed-values.sql:4786
+#: 950.data.seed-values.sql:4816
 msgid "Language of work"
 msgstr ""
 
 # id::ccvm.value__aar
-#: 950.data.seed-values.sql:5815
+#: 950.data.seed-values.sql:5845
 msgid "Afar"
 msgstr ""
 
@@ -3976,48 +4031,43 @@ msgstr ""
 # id::cza.label__8 id::cza.label__17 id::cza.label__26
 # id::vqbrad.description__13
 #: 950.data.seed-values.sql:374 950.data.seed-values.sql:395
-#: 950.data.seed-values.sql:414 950.data.seed-values.sql:4796
+#: 950.data.seed-values.sql:414 950.data.seed-values.sql:4826
 msgid "Publication Date"
 msgstr ""
 
 # id::ccvm.value__453
-#: 950.data.seed-values.sql:6267
+#: 950.data.seed-values.sql:6297
 msgid "Udmurt"
 msgstr ""
 
 # id::ccvm.value__155 id::ccvm.value__201
-#: 950.data.seed-values.sql:5969 950.data.seed-values.sql:6015
+#: 950.data.seed-values.sql:5999 950.data.seed-values.sql:6045
 msgid "Irish"
 msgstr ""
 
-# id::acsaf.name__64
-#: 950.data.seed-values.sql:10145
-msgid "See Also Tracing -- Uniform Title"
-msgstr ""
-
 # id::i18n_l.name__cs-CZ id::i18n_l.description__cs-CZ id::ccvm.value__98
 #: 950.data.seed-values.sql:329 950.data.seed-values.sql:330
-#: 950.data.seed-values.sql:5912
+#: 950.data.seed-values.sql:5942
 msgid "Czech"
 msgstr ""
 
 # id::ccvm.value__261
-#: 950.data.seed-values.sql:6075
+#: 950.data.seed-values.sql:6105
 msgid "Luo (Kenya and Tanzania)"
 msgstr ""
 
 # id::ccvm.value__219
-#: 950.data.seed-values.sql:6033
+#: 950.data.seed-values.sql:6063
 msgid "Kabardian"
 msgstr ""
 
 # id::ccvm.value__242
-#: 950.data.seed-values.sql:6056
+#: 950.data.seed-values.sql:6086
 msgid "Lahnda"
 msgstr ""
 
 # id::ccvm.value__46
-#: 950.data.seed-values.sql:5860
+#: 950.data.seed-values.sql:5890
 msgid "Belarusian"
 msgstr ""
 
@@ -4026,18 +4076,18 @@ msgstr ""
 msgid "Library of Congress"
 msgstr ""
 
-# id::cuat.label__1
-#: 950.data.seed-values.sql:11670
-msgid "Login via opensrf"
+# id::aurt.label__1
+#: 950.data.seed-values.sql:2512
+msgid "Books"
 msgstr ""
 
-# id::ccvm.value__526
-#: 950.data.seed-values.sql:6349
-msgid "Large print"
+# id::cuat.label__1
+#: 950.data.seed-values.sql:11705
+msgid "Login via opensrf"
 msgstr ""
 
 # id::ccvm.value__-ajm
-#: 950.data.seed-values.sql:5824
+#: 950.data.seed-values.sql:5854
 msgid "Aljamía"
 msgstr ""
 
@@ -4047,12 +4097,12 @@ msgid "Name Subject"
 msgstr ""
 
 # id::ccvm.value__388
-#: 950.data.seed-values.sql:6202
+#: 950.data.seed-values.sql:6232
 msgid "Northern Sami"
 msgstr ""
 
 # id::ccvm.value__474
-#: 950.data.seed-values.sql:6288
+#: 950.data.seed-values.sql:6318
 msgid "Kalmyk"
 msgstr ""
 
@@ -4062,32 +4112,32 @@ msgid "Title Proper"
 msgstr ""
 
 # id::cuat.label__17
-#: 950.data.seed-values.sql:11689
+#: 950.data.seed-values.sql:11724
 msgid "OPAC Login (tpac)"
 msgstr ""
 
 # id::ccvm.value__491
-#: 950.data.seed-values.sql:6307
+#: 950.data.seed-values.sql:6337
 msgid "Adolescent"
 msgstr ""
 
 # id::ccvm.value__358
-#: 950.data.seed-values.sql:6172
+#: 950.data.seed-values.sql:6202
 msgid "Romanian"
 msgstr ""
 
 # id::ccvm.value__aze
-#: 950.data.seed-values.sql:5849
+#: 950.data.seed-values.sql:5879
 msgid "Azerbaijani"
 msgstr ""
 
 # id::ccvm.value__403
-#: 950.data.seed-values.sql:6217
+#: 950.data.seed-values.sql:6247
 msgid "Sardinian"
 msgstr ""
 
 # id::ccvm.value__538
-#: 950.data.seed-values.sql:6365
+#: 950.data.seed-values.sql:6395
 msgid "VHS"
 msgstr ""
 
@@ -4097,27 +4147,27 @@ msgid "System: Deposit"
 msgstr ""
 
 # id::at.name__c
-#: 950.data.seed-values.sql:10270
+#: 950.data.seed-values.sql:10305
 msgid "Medical Subject Headings"
 msgstr ""
 
 # id::cuat.label__4
-#: 950.data.seed-values.sql:11673
+#: 950.data.seed-values.sql:11708
 msgid "Login via translator-v1"
 msgstr ""
 
 # id::ccvm.value__498
-#: 950.data.seed-values.sql:6316
+#: 950.data.seed-values.sql:6346
 msgid "Projected medium"
 msgstr ""
 
 # id::coust.label__config.settings_group.offline
-#: 950.data.seed-values.sql:2496
+#: 950.data.seed-values.sql:2506
 msgid "Offline"
 msgstr ""
 
 # id::ccvm.value__245
-#: 950.data.seed-values.sql:6059
+#: 950.data.seed-values.sql:6089
 msgid "Lao"
 msgstr ""
 
@@ -4127,52 +4177,52 @@ msgid "EAN"
 msgstr ""
 
 # id::cuat.label__6
-#: 950.data.seed-values.sql:11675
+#: 950.data.seed-values.sql:11710
 msgid "Login via remoteauth"
 msgstr ""
 
 # id::ccvm.value__382
-#: 950.data.seed-values.sql:6196
+#: 950.data.seed-values.sql:6226
 msgid "Siouan (Other)"
 msgstr ""
 
-# id::ccvm.value__372
-#: 950.data.seed-values.sql:6186
-msgid "Scots"
+# id::ahrcc.label__2
+#: 950.data.seed-values.sql:2429
+msgid "Hold Shelf expiration"
 msgstr ""
 
 # id::ccvm.value__278
-#: 950.data.seed-values.sql:6092
+#: 950.data.seed-values.sql:6122
 msgid "Mende"
 msgstr ""
 
 # id::ccvm.value__326
-#: 950.data.seed-values.sql:6140
+#: 950.data.seed-values.sql:6170
 msgid "Ojibwa"
 msgstr ""
 
 # id::ccvm.value__410
-#: 950.data.seed-values.sql:6224
+#: 950.data.seed-values.sql:6254
 msgid "Susu"
 msgstr ""
 
 # id::ccvm.value__70
-#: 950.data.seed-values.sql:5884
+#: 950.data.seed-values.sql:5914
 msgid "Caucasian (Other)"
 msgstr ""
 
 # id::ccvm.value__238
-#: 950.data.seed-values.sql:6052
+#: 950.data.seed-values.sql:6082
 msgid "Kurdish"
 msgstr ""
 
 # id::ccvm.value__467
-#: 950.data.seed-values.sql:6281
+#: 950.data.seed-values.sql:6311
 msgid "Walamo"
 msgstr ""
 
 # id::cuat.label__5
-#: 950.data.seed-values.sql:11674
+#: 950.data.seed-values.sql:11709
 msgid "Login via xmlrpc"
 msgstr ""
 
@@ -4182,42 +4232,42 @@ msgid "American Spanish"
 msgstr ""
 
 # id::ccvm.value__305
-#: 950.data.seed-values.sql:6119
+#: 950.data.seed-values.sql:6149
 msgid "Ndebele (Zimbabwe)  "
 msgstr ""
 
 # id::ccvm.value__257
-#: 950.data.seed-values.sql:6071
+#: 950.data.seed-values.sql:6101
 msgid "Luba-Katanga"
 msgstr ""
 
 # id::ccvm.value__529
-#: 950.data.seed-values.sql:6352
+#: 950.data.seed-values.sql:6382
 msgid "Electronic"
 msgstr ""
 
 # id::ccvm.value__513
-#: 950.data.seed-values.sql:6333
+#: 950.data.seed-values.sql:6363
 msgid "Dramas"
 msgstr ""
 
 # id::ccvm.value__483
-#: 950.data.seed-values.sql:6297
+#: 950.data.seed-values.sql:6327
 msgid "Zhuang"
 msgstr ""
 
 # id::ccvm.value__527
-#: 950.data.seed-values.sql:6350
+#: 950.data.seed-values.sql:6380
 msgid "Braille"
 msgstr ""
 
 # id::ccvm.value__512
-#: 950.data.seed-values.sql:6332
+#: 950.data.seed-values.sql:6362
 msgid "Comic strips"
 msgstr ""
 
 # id::ccvm.value__187
-#: 950.data.seed-values.sql:6001
+#: 950.data.seed-values.sql:6031
 msgid "Ido"
 msgstr ""
 
@@ -4226,18 +4276,23 @@ msgstr ""
 msgid "Canadian French"
 msgstr ""
 
+# id::acsaf.name__66
+#: 950.data.seed-values.sql:10228
+msgid "See From Tracing -- Geographic Name"
+msgstr ""
+
 # id::cmf.label__23
 #: 950.data.seed-values.sql:162
 msgid "ISRC"
 msgstr ""
 
 # id::ccvm.value__134
-#: 950.data.seed-values.sql:5948
+#: 950.data.seed-values.sql:5978
 msgid "Finno-Ugrian (Other)"
 msgstr ""
 
 # id::ccvm.value__apa
-#: 950.data.seed-values.sql:5832
+#: 950.data.seed-values.sql:5862
 msgid "Apache languages"
 msgstr ""
 
@@ -4247,7 +4302,7 @@ msgid "Alerting block on Hold"
 msgstr ""
 
 # id::ccvm.value__359
-#: 950.data.seed-values.sql:6173
+#: 950.data.seed-values.sql:6203
 msgid "Rundi"
 msgstr ""
 
@@ -4257,12 +4312,12 @@ msgid "7_days_2_renew"
 msgstr ""
 
 # id::ccvm.value__122
-#: 950.data.seed-values.sql:5936
+#: 950.data.seed-values.sql:5966
 msgid "Eskimo languages"
 msgstr ""
 
 # id::cubt.label__folks%3Acirc.checkout
-#: 950.data.seed-values.sql:4868
+#: 950.data.seed-values.sql:4898
 msgid "Checkout Items"
 msgstr ""
 
@@ -4272,12 +4327,12 @@ msgid "Other Author"
 msgstr ""
 
 # id::ccvm.value__ath
-#: 950.data.seed-values.sql:5843
+#: 950.data.seed-values.sql:5873
 msgid "Athapascan (Other)"
 msgstr ""
 
 # id::ccvm.value__306
-#: 950.data.seed-values.sql:6120
+#: 950.data.seed-values.sql:6150
 msgid "Ndonga"
 msgstr ""
 
@@ -4287,26 +4342,26 @@ msgid "Alerting block on Hold and Renew"
 msgstr ""
 
 # id::ccvm.value__401 id::ccvm.value__406
-#: 950.data.seed-values.sql:6215 950.data.seed-values.sql:6220
+#: 950.data.seed-values.sql:6245 950.data.seed-values.sql:6250
 msgid "Sotho"
 msgstr ""
 
 # id::ccvm.value__469
-#: 950.data.seed-values.sql:6283
+#: 950.data.seed-values.sql:6313
 msgid "Washo"
 msgstr ""
 
 # id::ccvm.value__402
-#: 950.data.seed-values.sql:6216
+#: 950.data.seed-values.sql:6246
 msgid "Spanish"
 msgstr ""
 
 # id::acsaf.name__31
-#: 950.data.seed-values.sql:10172
+#: 950.data.seed-values.sql:10207
 msgid "See Also From Tracing -- Form Subdivision"
 msgstr ""
 
 # id::acsaf.name__29
-#: 950.data.seed-values.sql:10170
+#: 950.data.seed-values.sql:10205
 msgid "See Also From Tracing -- Geographic Subdivision"
 msgstr ""
diff --git a/build/i18n/po/fm_IDL.dtd/fm_IDL.dtd.pot b/build/i18n/po/fm_IDL.dtd/fm_IDL.dtd.pot
index 07ba710..8d355fc 100644
--- a/build/i18n/po/fm_IDL.dtd/fm_IDL.dtd.pot
+++ b/build/i18n/po/fm_IDL.dtd/fm_IDL.dtd.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:04:20-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:06-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -2570,11 +2570,8 @@ msgstr ""
 msgid "Hold/Copy Ratio per Bib"
 msgstr ""
 
-#: field.vii.alert_message.label:209 field.viiad.alert_message.label:260
-#: field.au.alert_message.label:2782 field.aal.alert_message.label:3377
-#: field.sunit.alert_message.label:4488 field.acp.alert_message.label:5876
-#: field.act.alert_message.label:5980
-msgid "Alert Message"
+#: field.artc.reservation.label:6431
+msgid "Reservation requiring Transit"
 msgstr ""
 
 #: field.sre.creator.label:4194 field.ssubn.creator.label:4296
@@ -3372,8 +3369,9 @@ msgstr ""
 msgid "Is Persistent?"
 msgstr ""
 
-#: class.cwa.label:1440
-msgid "Matrix Weight Association"
+#: field.acqii.fund_debit.label:6856 field.acqpoi.fund_debit.label:7658
+#: field.acqlid.fund_debit.label:7859 field.acqda.fund_debit.label:8441
+msgid "Fund Debit"
 msgstr ""
 
 #: field.au.net_access_level.label:2806
@@ -4252,8 +4250,11 @@ msgstr ""
 msgid "User Activity Type"
 msgstr ""
 
-#: field.artc.reservation.label:6431
-msgid "Reservation requiring Transit"
+#: field.vii.alert_message.label:209 field.viiad.alert_message.label:260
+#: field.au.alert_message.label:2782 field.aal.alert_message.label:3377
+#: field.sunit.alert_message.label:4488 field.acp.alert_message.label:5876
+#: field.act.alert_message.label:5980
+msgid "Alert Message"
 msgstr ""
 
 #: field.sitem.date_received.label:4567
@@ -5386,9 +5387,8 @@ msgstr ""
 msgid "Family Linkage or other Group"
 msgstr ""
 
-#: field.acqii.fund_debit.label:6856 field.acqpoi.fund_debit.label:7658
-#: field.acqlid.fund_debit.label:7859 field.acqda.fund_debit.label:8441
-msgid "Fund Debit"
+#: class.cwa.label:1440
+msgid "Matrix Weight Association"
 msgstr ""
 
 #: field.cmf.browse_field.label:2291
diff --git a/build/i18n/po/ils_events.xml/ils_events.xml.pot b/build/i18n/po/ils_events.xml/ils_events.xml.pot
index 3835e7a..3ee452a 100644
--- a/build/i18n/po/ils_events.xml/ils_events.xml.pot
+++ b/build/i18n/po/ils_events.xml/ils_events.xml.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:05-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:50-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -33,7 +33,9 @@ msgid "This item is too new to have a hold placed on it"
 msgstr ""
 
 #: 1214.PATRON_DUP_IDENT1:92
-msgid "The selected primary identification type and value are in use by another patron"
+msgid ""
+"The selected primary identification type and value are in use by another "
+"patron"
 msgstr ""
 
 #: 1561.PERMISSION_PERM_LIST_NOT_FOUND:335
@@ -65,7 +67,9 @@ msgid "No default credit processor is selected"
 msgstr ""
 
 #: 1862.ACQ_FUND_EXCEEDS_STOP_PERCENT:667
-msgid "The requested acq.purchase_order cannot be activated because it would over-encumber a fund."
+msgid ""
+"The requested acq.purchase_order cannot be activated because it would over-"
+"encumber a fund."
 msgstr ""
 
 #: 1649.VANDELAY_IMPORT_ITEM_NOT_FOUND:596
@@ -84,6 +88,10 @@ msgstr ""
 msgid "The requested action_open_circ_count_by_circ_mod was not found"
 msgstr ""
 
+#: 10003.ACQ_LINEITEM_DETAIL_NO_ORG:967
+msgid "The lineitem detail has no owning_lib"
+msgstr ""
+
 #: 1608.METABIB_SUBJECT_FIELD_ENTRY_NOT_FOUND:473
 msgid "The requested metabib_subject_field_entry was not found"
 msgstr ""
@@ -101,11 +109,14 @@ msgid "The requested acq_lineitem_attr was not found"
 msgstr ""
 
 #: 1207.REFUND_EXCEEDS_BALANCE:68
-msgid "A refund greater than the negative balance on a transaction was provided"
+msgid ""
+"A refund greater than the negative balance on a transaction was provided"
 msgstr ""
 
 #: 1504.ACTION_TRANSIT_COPY_NOT_FOUND:199
-msgid "Someone attempted to retrieve a transit object from the system and the object was not found."
+msgid ""
+"Someone attempted to retrieve a transit object from the system and the "
+"object was not found."
 msgstr ""
 
 #: 1538.ACTION_SURVEY_RESPONSE_NOT_FOUND:270
@@ -117,7 +128,9 @@ msgid "The requested money_open_billable_transaction_summary was not found"
 msgstr ""
 
 #: 7000.ROUTE_ITEM:824
-msgid "A copy needs to be routed to a different location The destination location will be specified by an 'org' key within the event object"
+msgid ""
+"A copy needs to be routed to a different location The destination location "
+"will be specified by an 'org' key within the event object"
 msgstr ""
 
 #: 1554.CONFIG_RULES_CIRC_DURATION_NOT_FOUND:315
@@ -182,7 +195,9 @@ msgid "The copy in question is not in an ideal status for deleting"
 msgstr ""
 
 #: 1204.CIRC_BAD_STATUS:59
-msgid "The given circulation is not in a standard status or the circulation was never fully closed properly"
+msgid ""
+"The given circulation is not in a standard status or the circulation was "
+"never fully closed properly"
 msgstr ""
 
 #: 1855.ACQ_FUNDING_SOURCE_CREDIT_TOTAL_NOT_FOUND:646
@@ -198,7 +213,9 @@ msgid "The user does not have a valid phone number assigned"
 msgstr ""
 
 #: 1002.ACTOR_USER_NOT_FOUND:34
-msgid "Someone attempted to retrieve a user from the system and the user was not found"
+msgid ""
+"Someone attempted to retrieve a user from the system and the user was not "
+"found"
 msgstr ""
 
 #: 7011.COPY_STATUS_LOST:862
@@ -279,10 +296,6 @@ msgstr ""
 msgid "An authority record already exists with the requested ARN"
 msgstr ""
 
-#: 11001.SERIAL_CAPTION_AND_PATTERN_HAS_ISSUANCES:990
-msgid "The caption/pattern still has dependent issuances"
-msgstr ""
-
 #: 5000.PERM_FAILURE:804
 msgid "Permission Denied"
 msgstr ""
@@ -312,7 +325,9 @@ msgid "User has already created a bucket with the requested name"
 msgstr ""
 
 #: 7001.PATRON_BAD_STANDING:831
-msgid "The patron in question is not able to check out materials because their account is in bad standing"
+msgid ""
+"The patron in question is not able to check out materials because their "
+"account is in bad standing"
 msgstr ""
 
 #: 1525.BILLING_NOT_FOUND:232
@@ -320,7 +335,9 @@ msgid "Requested billing note does not exist"
 msgstr ""
 
 #: 11102.SERIAL_DISTRIBUTION_HAS_NO_CALL_NUMBER:998
-msgid "Units cannot be created for the given item because its associated distribution does not have a call number."
+msgid ""
+"Units cannot be created for the given item because its associated "
+"distribution does not have a call number."
 msgstr ""
 
 #: 1575.CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND:375
@@ -336,7 +353,9 @@ msgid "The non-cataloged type object already exists"
 msgstr ""
 
 #: 1860.ACQ_PURCHASE_ORDER_TOO_SHORT:661
-msgid "The requested acq.purchase_order cannot be split because it does not have more than one lineitem"
+msgid ""
+"The requested acq.purchase_order cannot be split because it does not have "
+"more than one lineitem"
 msgstr ""
 
 #: 10004.ACQ_LINEITEM_NO_PRICE:970
@@ -344,7 +363,9 @@ msgid "The lineitem has no price"
 msgstr ""
 
 #: 1226.REFUND_EXCEEDS_DESK_PAYMENTS:140
-msgid "This refund amount is not allowed because it exceeds the total amount of desk payments for this transaction."
+msgid ""
+"This refund amount is not allowed because it exceeds the total amount of "
+"desk payments for this transaction."
 msgstr ""
 
 #: 1619.ACTOR_STAT_CAT_ENTRY_USER_MAP_NOT_FOUND:506
@@ -452,7 +473,9 @@ msgid "The requested permission_usr_grp_map was not found"
 msgstr ""
 
 #: 1215.CIRC_EXCEEDS_COPY_RANGE:99
-msgid "The selected copy may not circulate because the recipient's home location is not within the copy's circulation range"
+msgid ""
+"The selected copy may not circulate because the recipient's home location is"
+" not within the copy's circulation range"
 msgstr ""
 
 #: 10005.ACQ_LINEITEM_NO_PROVIDER:973
@@ -496,7 +519,9 @@ msgid "The selecte bill has already been voided"
 msgstr ""
 
 #: 7026.PATRON_NOT_AN_ACTIVE_PASSWORD_RESET_REQUEST:810
-msgid "The user attempted to update their password using a stale or inactive password reset request session."
+msgid ""
+"The user attempted to update their password using a stale or inactive "
+"password reset request session."
 msgstr ""
 
 #: 1222.PATRON_NO_EMAIL_ADDRESS:124
@@ -532,7 +557,9 @@ msgid "Copy is marked as missing"
 msgstr ""
 
 #: 1500.ACTION_CIRCULATION_NOT_FOUND:181
-msgid "Someone attempted to retrieve a circulation object from the system and the object was not found."
+msgid ""
+"Someone attempted to retrieve a circulation object from the system and the "
+"object was not found."
 msgstr ""
 
 #: 4001.CREDIT_PROCESSOR_NOT_ENABLED:775
@@ -572,7 +599,9 @@ msgid "The lineitem cannot be altered because it has already been approved"
 msgstr ""
 
 #: 1714.HIGH_LEVEL_HOLD_HAS_NO_COPIES:750
-msgid "A hold request at a higher level than copy has been attempted, but there are no copies that belonging to the higher-level unit."
+msgid ""
+"A hold request at a higher level than copy has been attempted, but there are"
+" no copies that belonging to the higher-level unit."
 msgstr ""
 
 #: 1611.ACTOR_STAT_CAT_ENTRY_DEFAULT_NOT_FOUND:482
@@ -592,7 +621,8 @@ msgid "The requested config_non_cataloged_type was not found"
 msgstr ""
 
 #: 1225.TRANSIT_ABORT_NOT_ALLOWED:133
-msgid "The transit on this item may not be aborted due to the state the item is in"
+msgid ""
+"The transit on this item may not be aborted due to the state the item is in"
 msgstr ""
 
 #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:282
@@ -644,7 +674,9 @@ msgid "The requested money_credit_payment was not found"
 msgstr ""
 
 #: 7017.ROUTE_TO_COPY_LOCATION:883
-msgid "A copy needs to be routed to a copy location.  The location should be specified within the event with a 'location' key"
+msgid ""
+"A copy needs to be routed to a copy location.  The location should be "
+"specified within the event with a 'location' key"
 msgstr ""
 
 #: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:503
@@ -668,7 +700,9 @@ msgid "The requested money_billing was not found"
 msgstr ""
 
 #: 1507.CONTAINER_ITEM_NOT_FOUND:213
-msgid "Someone attempted to retrieve a container item object from the system and the object was not found."
+msgid ""
+"Someone attempted to retrieve a container item object from the system and "
+"the object was not found."
 msgstr ""
 
 #: 2002.DATABASE_QUERY_FAILED:764
@@ -680,7 +714,9 @@ msgid "The requested config_standing was not found"
 msgstr ""
 
 #: 1861.ACQ_PURCHASE_ORDER_TOO_LATE:664
-msgid "The requested acq.purchase_order cannot be split because it has gone beyond the \"pending\" state"
+msgid ""
+"The requested acq.purchase_order cannot be split because it has gone beyond "
+"the \"pending\" state"
 msgstr ""
 
 #: 1210.INCORRECT_PASSWORD:78
@@ -716,7 +752,9 @@ msgid "The requested asset_copy_location was not found"
 msgstr ""
 
 #: 1506.CONTAINER_NOT_FOUND:207
-msgid "Someone attempted to retrieve a container object from the system and the object was not found."
+msgid ""
+"Someone attempted to retrieve a container object from the system and the "
+"object was not found."
 msgstr ""
 
 #: 1571.ASSET_CALL_NUMBER_NOTE_NOT_FOUND:364
@@ -724,7 +762,9 @@ msgid "The requested asset_call_number_note was not found"
 msgstr ""
 
 #: 4004.CREDIT_PROCESSOR_NOT_SPECIFIED:784
-msgid "No credit card processor specified either in org unit settings or in call to credit service API method."
+msgid ""
+"No credit card processor specified either in org unit settings or in call to"
+" credit service API method."
 msgstr ""
 
 #: 1528.ACTOR_USER_ADDRESS_NOT_FOUND:239
@@ -732,7 +772,8 @@ msgid "Requested address was not found"
 msgstr ""
 
 #: 7002.PATRON_EXCEEDS_CHECKOUT_COUNT:835
-msgid "The patron in question has the maximum number of items already checked out"
+msgid ""
+"The patron in question has the maximum number of items already checked out"
 msgstr ""
 
 #: 1609.CONFIG_RULES_RECURRING_FINE_NOT_FOUND:476
@@ -752,7 +793,8 @@ msgid "The requested permission_grp_perm_map was not found"
 msgstr ""
 
 #: 7025.PATRON_TOO_MANY_ACTIVE_PASSWORD_RESET_REQUESTS:807
-msgid "There are too many active password reset request sessions for this patron."
+msgid ""
+"There are too many active password reset request sessions for this patron."
 msgstr ""
 
 #: 1709.MAX_HOLDS:735
@@ -796,7 +838,9 @@ msgid "The patron has too many overdue items"
 msgstr ""
 
 #: 1863.ACQ_FUND_EXCEEDS_WARN_PERCENT:670
-msgid "Activating the requested acq.purchase_order would encumber it beyond its warning level."
+msgid ""
+"Activating the requested acq.purchase_order would encumber it beyond its "
+"warning level."
 msgstr ""
 
 #: 1578.ACTION_HOLD_NOTIFICATION_NOT_FOUND:384
@@ -848,7 +892,9 @@ msgid "A report template with the given name and folder already exists"
 msgstr ""
 
 #: 1502.ASSET_COPY_NOT_FOUND:190
-msgid "Someone attempted to retrieve a copy object from the system and the object was not found."
+msgid ""
+"Someone attempted to retrieve a copy object from the system and the object "
+"was not found."
 msgstr ""
 
 #: 1703.WORKSTATION_NAME_EXISTS:717
@@ -856,7 +902,9 @@ msgid "A workstation with that name already exists"
 msgstr ""
 
 #: 1235.INVALID_USER_XACT_ID:171
-msgid "While you were trying to make payments, this account's transaction history changed.  Please go back and try again."
+msgid ""
+"While you were trying to make payments, this account's transaction history "
+"changed.  Please go back and try again."
 msgstr ""
 
 #: 1568.CONFIG_COPY_STATUS_NOT_FOUND:356
@@ -879,6 +927,12 @@ msgstr ""
 msgid "A report with the given name and folder already exists"
 msgstr ""
 
+#: 11104.SERIAL_CORRUPT_PATTERN_CODE:1007
+msgid ""
+"A serial pattern code has been configured that fails to conform to MFHD "
+"standards for fields 853-855."
+msgstr ""
+
 #: 1705.VOLUME_LABEL_EXISTS:723
 msgid "A volume with the same label, title and owning library exists"
 msgstr ""
@@ -908,7 +962,9 @@ msgid "Not enough parameters to use credit card processor"
 msgstr ""
 
 #: 7024.HOLD_RESERVATION_CONFLICT:904
-msgid "Both a hold and a reservation exist for this item; staff intervention is required to resolve the conflict."
+msgid ""
+"Both a hold and a reservation exist for this item; staff intervention is "
+"required to resolve the conflict."
 msgstr ""
 
 #: 1644.VANDELAY_AUTHORITY_QUEUE_NOT_FOUND:581
@@ -916,7 +972,10 @@ msgid "The requested vandelay_authority_queue was not found"
 msgstr ""
 
 #: 4040.CREDIT_PROCESSOR_SUCCESS_WO_RECORD:799
-msgid "A *TERRIBLE* problem has occurred: a credit card transaction was processed successfully, but the patron's payment could not be recorded within Evergreen.  Please seek assistance."
+msgid ""
+"A *TERRIBLE* problem has occurred: a credit card transaction was processed "
+"successfully, but the patron's payment could not be recorded within "
+"Evergreen.  Please seek assistance."
 msgstr ""
 
 #: 1634.REPORTER_TEMPLATE_NOT_FOUND:551
@@ -939,6 +998,10 @@ msgstr ""
 msgid "User login failed"
 msgstr ""
 
+#: 11001.SERIAL_CAPTION_AND_PATTERN_HAS_ISSUANCES:990
+msgid "The caption/pattern still has dependent issuances"
+msgstr ""
+
 #: 1873.ACQ_CURRENCY_TYPE_NOT_FOUND:682
 msgid "The requested acq.currency_type was not found"
 msgstr ""
@@ -1020,7 +1083,8 @@ msgid "Attempt to suspend a hold after it has been captured."
 msgstr ""
 
 #: 1708.MONEY_COLLECTIONS_TRACKER_EXISTS:732
-msgid "A duplicate money.collections_tracker object already exists in the database"
+msgid ""
+"A duplicate money.collections_tracker object already exists in the database"
 msgstr ""
 
 #: 1614.ACTION_SURVEY_ANSWER_NOT_FOUND:491
@@ -1028,7 +1092,9 @@ msgid "The requested action_survey_answer was not found"
 msgstr ""
 
 #: 2004.ACTOR_USER_DELETE_OPEN_XACTS:770
-msgid "The user you have attempted to delete cannot be deleted because it has open circulations and/or unpaid bills."
+msgid ""
+"The user you have attempted to delete cannot be deleted because it has open "
+"circulations and/or unpaid bills."
 msgstr ""
 
 #: 1845.ACQ_PROVIDER_NOT_FOUND:616
@@ -1091,12 +1157,10 @@ msgstr ""
 msgid "The requested container_call_number_bucket_item was not found"
 msgstr ""
 
-#: 10003.ACQ_LINEITEM_DETAIL_NO_ORG:967
-msgid "The lineitem detail has no owning_lib"
-msgstr ""
-
 #: 11101.SERIAL_DISTRIBUTION_HAS_NO_COPY_TEMPLATE:994
-msgid "Units cannot be created for the given item because its associated distribution does not have a copy template."
+msgid ""
+"Units cannot be created for the given item because its associated "
+"distribution does not have a copy template."
 msgstr ""
 
 #: 1518.ACTION_HOLD_TRANSIT_COPY_NOT_FOUND:221
@@ -1135,10 +1199,6 @@ msgstr ""
 msgid "The requested action_non_cataloged_circulation was not found"
 msgstr ""
 
-#: 11104.SERIAL_CORRUPT_PATTERN_CODE:1007
-msgid "A serial pattern code has been configured that fails to conform to MFHD standards for fields 853-855."
-msgstr ""
-
 #: 1604.MONEY_USER_SUMMARY_NOT_FOUND:461
 msgid "The requested money_user_summary was not found"
 msgstr ""
diff --git a/build/i18n/po/lang.dtd/cs-CZ.po b/build/i18n/po/lang.dtd/cs-CZ.po
index 9da287d..c100da2 100644
--- a/build/i18n/po/lang.dtd/cs-CZ.po
+++ b/build/i18n/po/lang.dtd/cs-CZ.po
@@ -3,14 +3,14 @@ msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-03-15 19:37+0000\n"
-"PO-Revision-Date: 2013-04-26 16:55+0000\n"
+"PO-Revision-Date: 2013-07-04 11:54+0000\n"
 "Last-Translator: Eva Cerninakova <Unknown>\n"
 "Language-Team: UISK <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-04-27 05:52+0000\n"
-"X-Generator: Launchpad (build 16580)\n"
+"X-Launchpad-Export-Date: 2013-07-05 05:39+0000\n"
+"X-Generator: Launchpad (build 16696)\n"
 "X-Poedit-Country: CZECH REPUBLIC\n"
 "X-Accelerator-Marker: &\n"
 "X-Poedit-Language: Czech\n"
@@ -1035,7 +1035,7 @@ msgstr "Informace"
 #: staff.bills_interface_label
 msgctxt "staff.bills_interface_label"
 msgid "Bills"
-msgstr "Účty"
+msgstr "Poplatky"
 
 #: staff.bills_money_label
 msgid "Money"
@@ -5610,7 +5610,7 @@ msgstr "Čtenář"
 
 #: staff.patron_display.bills.label
 msgid "Bills:"
-msgstr "Účty:"
+msgstr "Poplatky:"
 
 #: staff.patron_display.checkout.auto_print.label
 #: staff.patron_display.checkout.auto_print.accesskey
@@ -5684,7 +5684,7 @@ msgstr "Telefonní čísla"
 #: staff.patron_display.tab.identification.label
 msgctxt "staff.patron_display.tab.identification.label"
 msgid "Identification"
-msgstr "Číslo dokladu"
+msgstr "Identifikační údaje"
 
 #: staff.patron_display.tab.group.label
 msgctxt "staff.patron_display.tab.group.label"
@@ -5892,46 +5892,46 @@ msgstr "Čtenář"
 
 #: staff.patron_display.penalty.caption
 msgid "Staff-Generated Penalties/Messages"
-msgstr "Pokuty / zprávy vytvořené personálem"
+msgstr "Upozornění/blokace vytvořené personálem"
 
 #: staff.patron_display.archived_penalty.caption
 msgid "Archived Penalties/Messages"
-msgstr "Archiv pokut / zpráv"
+msgstr "Archiv upozornění/blokací"
 
 #: staff.patron_display.penalty.menu.actions.label
 #: staff.patron_display.penalty.menu.actions.accesskey
 msgid "Actions for these &Penalties/Messages"
-msgstr "Akce pro pokuty / záznamy"
+msgstr "Akce pro u&pozornění/blokace"
 
 #: staff.patron_display.penalty.menu.apply.label
 #: staff.patron_display.penalty.menu.apply.accesskey
 msgid "Apply &Standing Penalty/Message"
-msgstr "Použít &blokaci / pokutu / zprávu"
+msgstr "Vytvořit upozornění/&blokaci"
 
 #: staff.patron_display.penalty.menu.actions.remove.label
 #: staff.patron_display.penalty.menu.actions.remove.accesskey
 msgid "&Remove Penalty/Message"
-msgstr "Odst&ranit pokutu / zprávu"
+msgstr "Smazat upozo&rnění/blokaci"
 
 #: staff.patron_display.penalty.menu.actions.edit.label
 #: staff.patron_display.penalty.menu.actions.edit.accesskey
 msgid "&Modify Penalty/Message"
-msgstr "Upra&vit pokutu / zprávu"
+msgstr "Upra&vit upozornění/blokaci"
 
 #: staff.patron_display.penalty.menu.actions.archive.label
 #: staff.patron_display.penalty.menu.actions.archive.accesskey
 msgid "&Archive Penalty/Message"
-msgstr "Uložit pokutu / zprávu do &archivu"
+msgstr "Přesunout upozornění/blokaci do &archivu"
 
 #: staff.patron_display.apply_penalty_dialog.title
 msgctxt "staff.patron_display.apply_penalty_dialog.title"
 msgid "Apply Standing Penalty/Message"
-msgstr "Použít  blokaci / pokutu / zprávu"
+msgstr "Nové upozornění/blokace"
 
 #: staff.patron_display.apply_penalty_dialog.header
 msgctxt "staff.patron_display.apply_penalty_dialog.header"
 msgid "Apply Standing Penalty/Message"
-msgstr "Uložit blokaci / pokutu / zprávu"
+msgstr "Vytvořit upozornění/blokaci"
 
 #: staff.patron_display.apply_penalty_dialog.description
 msgctxt "staff.patron_display.apply_penalty_dialog.description"
@@ -5976,7 +5976,7 @@ msgctxt ""
 "staff.patron_display.apply_penalty_dialog.apply_btn.label "
 "staff.patron_display.apply_penalty_dialog.apply_btn.accesskey"
 msgid "&Apply"
-msgstr "Po&užít"
+msgstr "Ulo&užit"
 
 #: staff.patron_display.apply_penalty_dialog.initials_entry.label
 #: staff.patron_display.apply_penalty_dialog.initials_entry.accesskey
@@ -5989,12 +5989,12 @@ msgstr "&Iniciály"
 #: staff.patron_display.edit_penalty_dialog.title
 msgctxt "staff.patron_display.edit_penalty_dialog.title"
 msgid "Modify Standing Penalty/Message"
-msgstr "Upravit blokaci / pokutu / zprávu"
+msgstr "Změna upozornění/blokace"
 
 #: staff.patron_display.edit_penalty_dialog.header
 msgctxt "staff.patron_display.edit_penalty_dialog.header"
 msgid "Modify Standing Penalty/Message"
-msgstr "Upravit blokaci / pokutu / zprávu"
+msgstr "Úpravit upozornění/blokaci"
 
 #: staff.patron_display.edit_penalty_dialog.description
 msgctxt "staff.patron_display.edit_penalty_dialog.description"
@@ -6062,7 +6062,7 @@ msgstr "Datum ukončení:"
 #: staff.patron_display.archived_penalty.retrieve.label
 #: staff.patron_display.archived_penalty.retrieve.accesskey
 msgid "&Retrieve Archived Penalties"
-msgstr "Zob&razit archivované pokuty"
+msgstr "Zob&razit archivovaná upozornění/blokace"
 
 #: staff.patron_display.staged.caption
 msgid "Pending Patrons"
@@ -6147,7 +6147,7 @@ msgstr "čtenář "
 #: staff.patron_navbar.bills
 msgctxt "staff.patron_navbar.bills"
 msgid "Bills"
-msgstr "Účty"
+msgstr "Poplatky"
 
 #: staff.patron_navbar.bills.accesskey
 msgctxt "staff.patron_navbar.bills.accesskey"
@@ -6203,7 +6203,7 @@ msgstr "k"
 #: staff.patron_navbar.other
 msgctxt "staff.patron_navbar.other"
 msgid "Other"
-msgstr "Jiné"
+msgstr "Ostatní"
 
 #: staff.patron_navbar.other.accesskey
 msgid "o"
@@ -7572,7 +7572,7 @@ msgstr "Neplatný formát času"
 
 #: staff.server.admin.closed_dates.success
 msgid "Closed date successfully updated"
-msgstr "DA"
+msgstr "Dny, kdy je knihovna uzavřena byly  úspěšně upraveny"
 
 #: staff.server.admin.copy_locations.title
 msgid "Evergreen: Copy Locations Editor"
@@ -8453,7 +8453,8 @@ msgstr ""
 
 #: staff.server.admin.org_settings.ui.circ.show_billing_tab_on_bills
 msgid "Show billing tab first when bills are present"
-msgstr "Zobrazit kartu s účty, pokud má čtenář nevyřízené platby"
+msgstr ""
+"Pokud má čtenář nevyřízené platby, zobrazit nejdříve kartu s poplatky"
 
 #: staff.server.admin.org_settings.ui.circ.show_billing_tab_on_bills.desc
 msgid ""
@@ -8463,7 +8464,7 @@ msgid ""
 msgstr ""
 "Pokud je tato volba aktivována, má-li čtenář má nezaplacené poplatky a "
 "zároveň není vyžadováno zobrazení varovné stránky, standardně při načítání "
-"čtenáře zobrazit kartu Účty  (místo karty Půjčit)"
+"čtenáře zobrazit kartu Poplatky  (místo karty Půjčit)"
 
 #: staff.server.admin.org_settings.ui.circ.patron_display_timeout_interval
 msgid "GUI: Patron display timeout interval"
@@ -10754,7 +10755,7 @@ msgstr "Kopie &Poznámky"
 #: staff.cat.copy_editor.save.label
 #: staff.cat.copy_editor.save.accesskey
 msgid "&Modify Copies"
-msgstr "Upravit exe&mpláře"
+msgstr "Uložit z&měny"
 
 #: staff.cat.copy_editor.cancel.label
 #: staff.cat.copy_editor.cancel.accesskey
@@ -11804,7 +11805,7 @@ msgstr "&Potvrdit tuto informaci"
 #: staff.patron.bill_details.bills.label
 msgctxt "staff.patron.bill_details.bills.label"
 msgid "Bills"
-msgstr "Účty"
+msgstr "Poplatky"
 
 #: staff.patron.bill_details.void_selection.label
 msgid "Void selected billings"
@@ -12945,7 +12946,7 @@ msgstr "Vlastník adresy"
 #: staff.patron.ue.edit.label
 msgctxt "staff.patron.ue.edit.label"
 msgid "Edit"
-msgstr "Editovat"
+msgstr "Údaje o čtenáři"
 
 #: staff.patron.ue.label.label
 msgctxt "staff.patron.ue.label.label"
diff --git a/build/i18n/po/lang.dtd/es-ES.po b/build/i18n/po/lang.dtd/es-ES.po
index 2265b63..d3a4e75 100644
--- a/build/i18n/po/lang.dtd/es-ES.po
+++ b/build/i18n/po/lang.dtd/es-ES.po
@@ -8,14 +8,14 @@ msgstr ""
 "Project-Id-Version: evergreen\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL at ADDRESS>\n"
 "POT-Creation-Date: 2013-03-15 19:37+0000\n"
-"PO-Revision-Date: 2011-10-05 02:55+0000\n"
-"Last-Translator: Ben Shum <bshum at biblio.org>\n"
+"PO-Revision-Date: 2013-06-25 20:36+0000\n"
+"Last-Translator: Mariano Couto <mariano.couto at pjn.gov.ar>\n"
 "Language-Team: Spanish <es at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-03-16 06:00+0000\n"
-"X-Generator: Launchpad (build 16532)\n"
+"X-Launchpad-Export-Date: 2013-06-26 05:14+0000\n"
+"X-Generator: Launchpad (build 16681)\n"
 
 #: lang.version
 msgid "remote v1"
@@ -300,19 +300,19 @@ msgstr "Seleccionar todo"
 
 #: common.sort.first.ascending
 msgid "Sort First (Ascending)"
-msgstr ""
+msgstr "Ordenar Primero (Ascendente)"
 
 #: common.sort.first.descending
 msgid "Sort First (Descending)"
-msgstr ""
+msgstr "Ordenar Primero (Descendente)"
 
 #: common.sort.next.ascending
 msgid "Sort Next (Ascending)"
-msgstr ""
+msgstr "Ordenar Siguiente (Ascendente)"
 
 #: common.sort.next.descending
 msgid "Sort Next (Descending)"
-msgstr ""
+msgstr "Ordenar Siguiente (Descendente)"
 
 #: ilsevent.1000
 msgid "Login failed.  The username or password entered was incorrect."
@@ -335,6 +335,7 @@ msgstr "Permiso denegado"
 #: ilsperm.CREATE_HOLD
 msgid "User is not allowed to create holds for other users at this location"
 msgstr ""
+"Usuario no autorizado a crear reservas para otros usuarios en esta ubicación"
 
 #: common.cancel.accesskey
 msgctxt "common.cancel.accesskey"
@@ -445,7 +446,7 @@ msgstr "Fecha de vencimiento"
 
 #: staff.ahr_fulfillment_time_label
 msgid "Fulfillment Time"
-msgstr ""
+msgstr "Tiempo de Cumplimiento"
 
 #: staff.ahr_hold_type_label
 msgctxt "staff.ahr_hold_type_label"
@@ -458,7 +459,7 @@ msgstr "Formatos retenibles"
 
 #: staff.ahr_id_label
 msgid "Hold ID"
-msgstr ""
+msgstr "Identificador de la reserva"
 
 #: staff.ahr_ischanged_label
 msgctxt "staff.ahr_ischanged_label"
@@ -482,15 +483,15 @@ msgstr "Notificar por teléfono"
 #: staff.ahr_pickup_lib_label
 msgctxt "staff.ahr_pickup_lib_label"
 msgid "Pickup Library"
-msgstr ""
+msgstr "Biblioteca de Recolección"
 
 #: staff.ahr_prev_check_time_label
 msgid "Previous Check Time"
-msgstr ""
+msgstr "Tiempo De Verificación Previo"
 
 #: staff.ahr_request_time_label
 msgid "Request Time"
-msgstr ""
+msgstr "Tiempo Pedido"
 
 #: staff.ahr_requestor_label
 msgid "Requestor"
@@ -560,7 +561,7 @@ msgstr ""
 
 #: staff.au_day_phone_label
 msgid "Day Phone"
-msgstr ""
+msgstr "Teléfono Diurno"
 
 #: staff.au_dob_label
 msgctxt "staff.au_dob_label"
@@ -574,7 +575,7 @@ msgstr "Email"
 #: staff.au_evening_phone_label
 msgctxt "staff.au_evening_phone_label"
 msgid "Evening Phone"
-msgstr ""
+msgstr "Teléfono Nocturno"
 
 #: staff.au_expire_date_label
 msgctxt "staff.au_expire_date_label"
@@ -597,7 +598,7 @@ msgstr "Solicitudes de espera"
 #. "OU" is an organization unit - typically a library
 #: staff.au_home_ou_label
 msgid "Home OU"
-msgstr ""
+msgstr "UO de orígen"
 
 #: staff.au_id_label
 msgid "User ID"
@@ -622,17 +623,17 @@ msgstr "Valor de identificacion"
 #: staff.au_ischanged_label
 msgctxt "staff.au_ischanged_label"
 msgid "Is changed"
-msgstr ""
+msgstr "Se ha modificado"
 
 #: staff.au_isdeleted_label
 msgctxt "staff.au_isdeleted_label"
 msgid "Is deleted"
-msgstr ""
+msgstr "Se ha eliminado"
 
 #: staff.au_isnew_label
 msgctxt "staff.au_isnew_label"
 msgid "Is new"
-msgstr ""
+msgstr "Es nuevo"
 
 #: staff.au_label_active
 msgctxt "staff.au_label_active"
@@ -647,11 +648,11 @@ msgstr "Apellido"
 #: staff.au_label_first_given_name
 msgctxt "staff.au_label_first_given_name"
 msgid "First Name"
-msgstr ""
+msgstr "Nombre"
 
 #: staff.au_label_id
 msgid "Database ID"
-msgstr ""
+msgstr "ID de la Base de Datos"
 
 #: staff.au_label_prefix
 msgctxt "staff.au_label_prefix"
diff --git a/build/i18n/po/lang.dtd/lang.dtd.pot b/build/i18n/po/lang.dtd/lang.dtd.pot
index c583044..4759de2 100644
--- a/build/i18n/po/lang.dtd/lang.dtd.pot
+++ b/build/i18n/po/lang.dtd/lang.dtd.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-20 09:13-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -7695,6 +7695,10 @@ msgstr ""
 msgid "Invalid time format"
 msgstr ""
 
+#: staff.server.admin.closed_dates.date_span.invalid
+msgid "Ending date is earlier than starting date"
+msgstr ""
+
 #: staff.server.admin.closed_dates.success
 msgid "Closed date successfully updated"
 msgstr ""
diff --git a/build/i18n/po/opac.js/opac.js.pot b/build/i18n/po/opac.js/opac.js.pot
index be99344..66b64f6 100644
--- a/build/i18n/po/opac.js/opac.js.pot
+++ b/build/i18n/po/opac.js/opac.js.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:08-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:52-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -12,7 +12,9 @@ msgstr ""
 "Content-Transfer-Encoding: 8-bit\n"
 
 #: opac.js:PWD_RESET_SUBMIT_PROMPT
-msgid "To begin the password reset process, enter either your barcode or user name in the form below and click 'Submit'"
+msgid ""
+"To begin the password reset process, enter either your barcode or user name "
+"in the form below and click 'Submit'"
 msgstr ""
 
 #: opac.js:PWD_RESET_FORM_TITLE
@@ -60,7 +62,9 @@ msgid "... more copies listed in full record"
 msgstr ""
 
 #: opac.js:PWD_RESET_SUBMIT_ERROR
-msgid "The system could not process your request for a password reset. Please try again, or contact circulation staff for assistance."
+msgid ""
+"The system could not process your request for a password reset. Please try "
+"again, or contact circulation staff for assistance."
 msgstr ""
 
 #: opac.js:EDIT_MFHD_RECORD
@@ -156,7 +160,10 @@ msgid "Are you sure you want to delete this serial record?"
 msgstr ""
 
 #: opac.js:PWD_RESET_SUBMIT_SUCCESS
-msgid "Your request to begin the password reset process has been processed. If your account has a valid email address, you should soon receive an email containing further instructions for resetting your password."
+msgid ""
+"Your request to begin the password reset process has been processed. If your"
+" account has a valid email address, you should soon receive an email "
+"containing further instructions for resetting your password."
 msgstr ""
 
 #: opac.js:CANCEL_BUTTON_LABEL
diff --git a/build/i18n/po/patron.properties/cs-CZ.po b/build/i18n/po/patron.properties/cs-CZ.po
index c65c29f..5c32a07 100644
--- a/build/i18n/po/patron.properties/cs-CZ.po
+++ b/build/i18n/po/patron.properties/cs-CZ.po
@@ -3,14 +3,14 @@ msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-03-15 19:42+0000\n"
-"PO-Revision-Date: 2013-01-03 09:10+0000\n"
+"PO-Revision-Date: 2013-06-06 13:06+0000\n"
 "Last-Translator: Eva Cerninakova <Unknown>\n"
 "Language-Team: UISK <LL at li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-03-16 06:01+0000\n"
-"X-Generator: Launchpad (build 16532)\n"
+"X-Launchpad-Export-Date: 2013-06-07 05:57+0000\n"
+"X-Generator: Launchpad (build 16667)\n"
 "X-Poedit-Country: CZECH REPUBLIC\n"
 "X-Accelerator-Marker: &\n"
 "X-Poedit-Language: Czech\n"
@@ -1764,7 +1764,7 @@ msgstr "Účet vytvořen"
 
 #: staff.patron.summary.expires_on
 msgid "Expires on"
-msgstr "Vyprší dne"
+msgstr "Registrace platná do"
 
 #: staff.patron.summary.last_activity
 msgid "Last Activity"
diff --git a/build/i18n/po/register.js/register.js.pot b/build/i18n/po/register.js/register.js.pot
index 725d82f..d2db2ce 100644
--- a/build/i18n/po/register.js/register.js.pot
+++ b/build/i18n/po/register.js/register.js.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:08-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:52-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -31,12 +31,17 @@ msgstr ""
 msgid "This address is owned by another user: "
 msgstr ""
 
-#: register.js:ADDRESS_NEW
-msgid "New Address"
+#: register.js:ALL_CARDS_PRIMARY
+msgid "Primary"
+msgstr ""
+
+#: register.js:ALL_CARDS_BARCODE
+msgid "Barcode"
 msgstr ""
 
 #: register.js:REPLACED_ADDRESS
-msgid "<div>Replaces address <b>${0}</b><br/> ${1} ${2}<br/> ${3}, ${4} ${5}</div>"
+msgid ""
+"<div>Replaces address <b>${0}</b><br/> ${1} ${2}<br/> ${3}, ${4} ${5}</div>"
 msgstr ""
 
 #: register.js:SHOW_REQUIRED
@@ -67,10 +72,6 @@ msgstr ""
 msgid "An address is required during registration."
 msgstr ""
 
-#: register.js:ALL_CARDS_PRIMARY
-msgid "Primary"
-msgstr ""
-
 #: register.js:BARCODE_IN_USE
 msgid "Barcode is already in use"
 msgstr ""
@@ -151,8 +152,8 @@ msgstr ""
 msgid "Statistical Categories"
 msgstr ""
 
-#: register.js:ALL_CARDS_BARCODE
-msgid "Barcode"
+#: register.js:ADDRESS_NEW
+msgid "New Address"
 msgstr ""
 
 #: register.js:RESET_PASSWORD
diff --git a/build/i18n/po/reservation.js/reservation.js.pot b/build/i18n/po/reservation.js/reservation.js.pot
index 670578d..a5df9a2 100644
--- a/build/i18n/po/reservation.js/reservation.js.pot
+++ b/build/i18n/po/reservation.js/reservation.js.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:08-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:52-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -188,7 +188,10 @@ msgid "This user has no existing reservations at this time."
 msgstr ""
 
 #: reservation.js:AUTO_explain_bookable
-msgid "To reserve an item that is not yet registered as a bookable resource, find it in the catalog or under <em>Display Item</em>, and select <em>Make Item Bookable</em> or <em>Book Item Now</em> there."
+msgid ""
+"To reserve an item that is not yet registered as a bookable resource, find "
+"it in the catalog or under <em>Display Item</em>, and select <em>Make Item "
+"Bookable</em> or <em>Book Item Now</em> there."
 msgstr ""
 
 #: reservation.js:CXL_BRESV_FAILURE2
diff --git a/build/i18n/po/selfcheck.js/selfcheck.js.pot b/build/i18n/po/selfcheck.js/selfcheck.js.pot
index 7505432..458a168 100644
--- a/build/i18n/po/selfcheck.js/selfcheck.js.pot
+++ b/build/i18n/po/selfcheck.js/selfcheck.js.pot
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Evergreen 1.4\n"
 "Report-Msgid-Bugs-To: open-ils-dev at list.georgialibraries.org\n"
-"POT-Creation-Date: 2013-05-15 16:06:08-0400\n"
+"POT-Creation-Date: 2013-08-21 09:16:52-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -107,7 +107,10 @@ msgid "The patron is barred"
 msgstr ""
 
 #: selfcheck.js:PAYMENT_INVALID_USER_XACT_ID
-msgid "We cannot proceed with the payment, because your account was updated from another location.  Please refresh the interface or log out and back in to retrieve the latest account information"
+msgid ""
+"We cannot proceed with the payment, because your account was updated from "
+"another location.  Please refresh the interface or log out and back in to "
+"retrieve the latest account information"
 msgstr ""
 
 #: selfcheck.js:FAIL_PART_status.holdable
@@ -159,7 +162,9 @@ msgid "Item ${0} is already checked out to another user"
 msgstr ""
 
 #: selfcheck.js:WORKSTATION_EXISTS
-msgid "This workstation has already been registered.  Would you like to use it for this self-check station?"
+msgid ""
+"This workstation has already been registered.  Would you like to use it for "
+"this self-check station?"
 msgstr ""
 
 #: selfcheck.js:UNKNOWN_ERROR
diff --git a/build/i18n/po/tpac/tpac.pot b/build/i18n/po/tpac/tpac.pot
index bdbf478..30932cb 100644
--- a/build/i18n/po/tpac/tpac.pot
+++ b/build/i18n/po/tpac/tpac.pot
@@ -1124,7 +1124,7 @@ msgstr ""
 msgid "Email address associated with the account:"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:75
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:79
 msgid "Enabled"
 msgstr ""
 
@@ -1931,7 +1931,7 @@ msgstr ""
 msgid "No holds found."
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:79
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:74
 msgid "No notification preferences are configured"
 msgstr ""
 
@@ -1967,7 +1967,7 @@ msgstr ""
 msgid "Notification Preferences"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:74
+#: ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:78
 msgid "Notification Type"
 msgstr ""
 
@@ -2523,7 +2523,7 @@ msgstr ""
 msgid "Rubricator"
 msgstr ""
 
-#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:206 ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:93 ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:102
+#: ../../Open-ILS/src/templates/opac/myopac/lists.tt2:206 ../../Open-ILS/src/templates/opac/myopac/prefs_notify.tt2:96 ../../Open-ILS/src/templates/opac/myopac/prefs_settings.tt2:102
 msgid "Save"
 msgstr ""
 

-----------------------------------------------------------------------


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list