From: Shula Link Date: Wed, 23 Sep 2020 17:02:45 +0000 (-0400) Subject: Copy location to shelving location updated in labels. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fslink%2Flp1843632_updating_terminology;p=working%2FEvergreen.git Copy location to shelving location updated in labels. Signed-off-by: Shula Link --- diff --git a/Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.ts b/Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.ts index 2f41a1080b..d0e13d6058 100644 --- a/Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.ts +++ b/Open-ILS/src/eg2/src/app/share/item-location-select/item-location-select.component.ts @@ -31,11 +31,11 @@ import {StringComponent} from '@eg/share/string/string.component'; export class ItemLocationSelectComponent implements OnInit, AfterViewInit, ControlValueAccessor { - // Limit copy locations to those owned at or above org units where + // Limit shelving locations to those owned at or above org units where // the user has work permissions for the provided permission code. @Input() permFilter: string; - // Limit copy locations to those owned at or above this org unit. + // Limit shelving locations to those owned at or above this org unit. @Input() contextOrgId: number; @Input() orgUnitLabelField = 'shortname'; @@ -95,7 +95,7 @@ export class ItemLocationSelectComponent const search: any = {deleted: 'f'}; if (this.startId) { - // Guarantee we have the load-time copy location, which + // Guarantee we have the load-time shelving location, which // may not be included in the org-scoped set of locations // we fetch by default. search['-or'] = [ diff --git a/Open-ILS/src/extras/ils_events.xml b/Open-ILS/src/extras/ils_events.xml index 43a4141fca..d771b1f35b 100644 --- a/Open-ILS/src/extras/ils_events.xml +++ b/Open-ILS/src/extras/ils_events.xml @@ -712,13 +712,13 @@ The non-cataloged type object already exists - The copy location object already exists + The shelving location object already exists - The copy location is not empty + The shelving location is not empty - The copy location does not exist + The shelving location does not exist There is an open circulation on the requested item @@ -901,7 +901,7 @@ - A copy needs to be routed to a copy location. The location + A copy needs to be routed to a shelving location. The location should be specified within the event with a 'location' key diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/Order.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/Order.pm index 122d1eb79b..68b43aa91a 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/Order.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/Order.pm @@ -1757,7 +1757,7 @@ sub extract_lineitem_detail_data { my $cp_base_org = $base_org; if ($compiled{owning_lib}) { - # start looking for copy locations at the copy + # start looking for shelving locations at the copy # owning lib instaed of the upload context org $cp_base_org = $compiled{owning_lib}; } @@ -1772,7 +1772,7 @@ sub extract_lineitem_detail_data { $org = $mgr->editor->retrieve_actor_org_unit($org)->parent_ou; } } - return $killme->("Invalid copy location $name") unless $loc; + return $killme->("Invalid shelving location $name") unless $loc; $compiled{copy_location} = $loc; $mgr->cache($cp_base_org, "copy_loc.$name", $loc); } diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CopyLocations.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CopyLocations.pm index 23061ca748..dec8c37d57 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CopyLocations.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CopyLocations.pm @@ -16,12 +16,12 @@ __PACKAGE__->register_method( method => 'cl_retrieve_all', argc => 2, signature => q/ - Retrieves the ranged set of copy locations for the requested org. - If no org is provided, all copy locations are returned + Retrieves the ranged set of shelving locations for the requested org. + If no org is provided, all shelving locations are returned @param orgId The org location id @param noi18n No i18n in result @param flesh_owning_lib Flesh owning lib in results - @return An array of copy location objects + @return An array of shelving location objects /); sub cl_retrieve_all { @@ -50,7 +50,7 @@ __PACKAGE__->register_method( "method" => "cl_retrieve_distinct", "stream" => 1, "argc" => 0, - "signature" => q/Retrieve copy locations with distinct names globally/ + "signature" => q/Retrieve shelving locations with distinct names globally/ ); sub cl_retrieve_distinct { @@ -75,10 +75,10 @@ __PACKAGE__->register_method( method => 'cl_create', argc => 2, signature => q/ - Creates a new copy location. Requestor must have the CREATE_COPY_LOCATION + Creates a new shelving location. Requestor must have the CREATE_COPY_LOCATION permission at the location specified on the new location object @param authtoken The login session key - @param copyLoc The new copy location object + @param copyLoc The new shelving location object @return The if of the new location object on success, event on error /); @@ -108,10 +108,10 @@ __PACKAGE__->register_method ( method => 'cl_delete', argc => 2, signature => q/ - Deletes a copy location. Requestor must have the + Deletes a shelving location. Requestor must have the DELETE_COPY_LOCATION permission. @param authtoken The login session key - @param id The copy location object id + @param id The shelving location object id @return 1 on success, event on error /); @@ -141,10 +141,10 @@ __PACKAGE__->register_method ( method => 'cl_update', argc => 2, signature => q/ - Updates a copy location object. Requestor must have + Updates a shelving location object. Requestor must have the UPDATE_COPY_LOCATION permission @param authtoken The login session key - @param copyLoc The copy location object + @param copyLoc The shelving location object @return 1 on success, event on error /); @@ -155,7 +155,7 @@ sub cl_update { my $e = new_editor(authtoken=>$auth, xact=>1); return $e->die_event unless $e->checkauth; - # check permissions against the original copy location + # check permissions against the original shelving location my $orig_loc = $e->retrieve_asset_copy_location($location->id) or return $e->die_event; diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Browse.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Browse.pm index 803f08b054..476a76c7ca 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Browse.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/Browse.pm @@ -53,7 +53,7 @@ __PACKAGE__->register_method( org_unit -- context org unit ID copy_location_group - -- copy location filter ID + -- shelving location filter ID limit -- return this many results pivot diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/CNBrowse.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/CNBrowse.pm index e6f77a3e64..65b04be2d3 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/CNBrowse.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search/CNBrowse.pm @@ -66,7 +66,7 @@ __PACKAGE__->register_method( desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, { name => 'locations', - desc => 'Array of copy locations to filter copies by, optional and can be undef.', + desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], return => { diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Serial.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Serial.pm index d41c688564..5f7a44f713 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Serial.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Serial.pm @@ -1482,7 +1482,7 @@ sub unitize_items { # Fetch a list of issuances with received copies already existing # on this distribution (and with the same holding type on the # issuance). This will be used in up to two places: once when building - # a summary, once when changing the copy location of the previous + # a summary, once when changing the shelving location of the previous # issuance's copy. # manually flesh distribution if not present @@ -1497,7 +1497,7 @@ sub unitize_items { return $issuances_received; } - # Find out if we need to to deal with previous copy location changing. + # Find out if we need to to deal with previous shelving location changing. my $ou = $sdist->holding_lib; unless (exists $prev_loc_setting_map->{$ou}) { $prev_loc_setting_map->{$ou} = $U->ou_ancestor_setting_value( @@ -1505,14 +1505,14 @@ sub unitize_items { ); } - # If there is a previous copy location setting, we need the previous + # If there is a previous shelving location setting, we need the previous # issuance, from which we can in turn look up the item attached to the # same stream we're on now. if ($prev_loc_setting_map->{$ou}) { if (my $prev_iss = _previous_issuance($issuances_received, $item->issuance)) { - # Now we can change the copy location of the previous unit, + # Now we can change the shelving location of the previous unit, # if needed. return $editor->event if defined $U->event_code( move_previous_unit( @@ -2067,7 +2067,7 @@ sub receive_items_one_unit_per { # Fetch a list of issuances with received copies already existing # on this distribution (and with the same holding type on the # issuance). This will be used in up to two places: once when building - # a summary, once when changing the copy location of the previous + # a summary, once when changing the shelving location of the previous # issuance's copy. my $issuances_received = _issuances_received($e, $item); if ($U->event_code($issuances_received)) { @@ -2075,7 +2075,7 @@ sub receive_items_one_unit_per { return $issuances_received; } - # Find out if we need to to deal with previous copy location changing. + # Find out if we need to to deal with previous shelving location changing. my $ou = $sdist->holding_lib->id; unless (exists $prev_loc_setting_map->{$ou}) { $prev_loc_setting_map->{$ou} = $U->ou_ancestor_setting_value( @@ -2083,14 +2083,14 @@ sub receive_items_one_unit_per { ); } - # If there is a previous copy location setting, we need the previous + # If there is a previous shelving location setting, we need the previous # issuance, from which we can in turn look up the item attached to the # same stream we're on now. if ($prev_loc_setting_map->{$ou}) { if (my $prev_iss = _previous_issuance($issuances_received, $item->issuance)) { - # Now we can change the copy location of the previous unit, + # Now we can change the shelving location of the previous unit, # if needed. return $e->event if defined $U->event_code( move_previous_unit( diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/container.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/container.pm index 176197a7ab..1252ddae4b 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/container.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/container.pm @@ -143,7 +143,7 @@ sub refresh_container_from_carousel_definition { if ($ctype->filter_by_copy_location eq 't') { if (scalar(@$locs) < 1) { - $logger->error("Carousel for bucket $bucket is misconfigured; copy location filter expected but none specified"); + $logger->error("Carousel for bucket $bucket is misconfigured; shelving location filter expected but none specified"); return 0; } my $loc_placeholders = join(',', map { '?' } @$locs); diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/SuperCat.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/SuperCat.pm index 2715571e19..4196ed3b0e 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/SuperCat.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/SuperCat.pm @@ -513,7 +513,7 @@ Returns the XML representation of the requested bibliographic record's holdings desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, { name => 'locations', - desc => 'Array of copy locations to filter copies by, optional and can be undef.', + desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => @@ -639,7 +639,7 @@ Returns the XML representation of the requested bibliographic record's holdings desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, { name => 'locations', - desc => 'Array of copy locations to filter copies by, optional and can be undef.', + desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => @@ -723,7 +723,7 @@ Returns the XML representation of the requested bibliographic record's holdings desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, { name => 'locations', - desc => 'Array of copy locations to filter copies by, optional and can be undef.', + desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => @@ -810,7 +810,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -828,7 +828,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -846,7 +846,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -864,7 +864,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -882,7 +882,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -1060,7 +1060,7 @@ Returns a list of the requested org-scoped record IDs held desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, { name => 'locations', - desc => 'Array of copy locations to filter copies by, optional and can be undef.', + desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => @@ -1403,7 +1403,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -1421,7 +1421,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -1439,7 +1439,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -1457,7 +1457,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -1475,7 +1475,7 @@ __PACKAGE__->register_method( { name => 'page_size', desc => 'Count of records to retrieve, default is 9', type => 'number' }, { name => 'page', desc => 'The page of records retrieved, calculated based on page_size. Can be positive, negative or 0.', type => 'number' }, { name => 'statuses', desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, - { name => 'locations', desc => 'Array of copy locations to filter copies by, optional and can be undef.', type => 'array' }, ], + { name => 'locations', desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => { desc => 'Record IDs that have copies at the relevant org units', type => 'array' } } ); @@ -1642,7 +1642,7 @@ Returns a list of the requested org-scoped record IDs held desc => 'Array of statuses to filter copies by, optional and can be undef.', type => 'array' }, { name => 'locations', - desc => 'Array of copy locations to filter copies by, optional and can be undef.', + desc => 'Array of shelving locations to filter copies by, optional and can be undef.', type => 'array' }, ], 'return' => diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Trigger/Reactor.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Trigger/Reactor.pm index 9e52ac8ea5..d23c4c488f 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Trigger/Reactor.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Trigger/Reactor.pm @@ -140,7 +140,7 @@ $_TT_helpers = { } }, - # given a call number, returns the copy location with the most copies + # given a call number, returns the shelving location with the most copies get_most_populous_location => sub { my $acn_id = shift; diff --git a/Open-ILS/src/perlmods/lib/OpenILS/SIP/Item.pm b/Open-ILS/src/perlmods/lib/OpenILS/SIP/Item.pm index e727732e6f..7d77a80812 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/SIP/Item.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/SIP/Item.pm @@ -138,7 +138,7 @@ sub new { $self->{hold} = $self->fetch_hold; - # use the non-translated version of the copy location as the + # use the non-translated version of the shelving location as the # collection code, since it may be used for additional routing # purposes by the SIP client. Config option? $self->{collection_code} = diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Util.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Util.pm index 730586a128..083078e801 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Util.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Util.pm @@ -655,7 +655,7 @@ sub load_eg_cache_hash { } } -# Extracts the copy location org unit and group from the +# Extracts the shelving location org unit and group from the # "logc" param, which takes the form org_id:grp_id. sub extract_copy_location_group_info { my $self = shift; diff --git a/Open-ILS/src/sql/Pg/100.circ_matrix.sql b/Open-ILS/src/sql/Pg/100.circ_matrix.sql index 6125810c40..45adaf87e3 100644 --- a/Open-ILS/src/sql/Pg/100.circ_matrix.sql +++ b/Open-ILS/src/sql/Pg/100.circ_matrix.sql @@ -125,7 +125,7 @@ CREATE TABLE config.circ_limit_set_circ_mod_map ( CONSTRAINT cm_once_per_set UNIQUE (limit_set, circ_mod) ); --- Linkage between limit sets and copy locations +-- Linkage between limit sets and shelving locations CREATE TABLE config.circ_limit_set_copy_loc_map ( id SERIAL PRIMARY KEY, limit_set INT NOT NULL REFERENCES config.circ_limit_set (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index 302ea4375e..8162460924 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -843,11 +843,11 @@ INSERT INTO permission.perm_list ( id, code, description ) VALUES ( 70, 'COPY_CHECKOUT', oils_i18n_gettext( 70, 'Allow a user to check out a copy', 'ppl', 'description' )), ( 71, 'CREATE_COPY_LOCATION', oils_i18n_gettext( 71, - 'Allow a user to create a new copy location', 'ppl', 'description' )), + 'Allow a user to create a new shelving location', 'ppl', 'description' )), ( 72, 'UPDATE_COPY_LOCATION', oils_i18n_gettext( 72, - 'Allow a user to update a copy location', 'ppl', 'description' )), + 'Allow a user to update a shelving location', 'ppl', 'description' )), ( 73, 'DELETE_COPY_LOCATION', oils_i18n_gettext( 73, - 'Allow a user to delete a copy location', 'ppl', 'description' )), + 'Allow a user to delete a shelving location', 'ppl', 'description' )), ( 74, 'CREATE_COPY_TRANSIT', oils_i18n_gettext( 74, 'Allow a user to create a transit_copy object for transiting a copy', 'ppl', 'description' )), ( 75, 'COPY_TRANSIT_RECEIVE', oils_i18n_gettext( 75, @@ -1107,7 +1107,7 @@ INSERT INTO permission.perm_list ( id, code, description ) VALUES ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT', oils_i18n_gettext( 202, 'Allows staff to manually change a patron''s claims never checkout out count', 'ppl', 'description' )), ( 203, 'ADMIN_COPY_LOCATION_ORDER', oils_i18n_gettext( 203, - 'Allow a user to create/view/update/delete a copy location order', 'ppl', 'description' )), + 'Allow a user to create/view/update/delete a shelving location order', 'ppl', 'description' )), ( 204, 'ASSIGN_GROUP_PERM', oils_i18n_gettext( 204, 'ASSIGN_GROUP_PERM', 'ppl', 'description' )), ( 205, 'CREATE_AUDIENCE', oils_i18n_gettext( 205, @@ -1763,7 +1763,7 @@ INSERT INTO permission.perm_list ( id, code, description ) VALUES ( 532, 'VIEW_ADDRESS_ALERT', oils_i18n_gettext( 532, 'Allows a user to view address alerts', 'ppl', 'description' )), ( 533, 'ADMIN_COPY_LOCATION_GROUP', oils_i18n_gettext( 533, - 'Allows a user to create/retrieve/update/delete copy location groups', 'ppl', 'description' )), + 'Allows a user to create/retrieve/update/delete shelving location groups', 'ppl', 'description' )), ( 534, 'ADMIN_USER_ACTIVITY_TYPE', oils_i18n_gettext( 534, 'Allows a user to create/retrieve/update/delete user activity types', 'ppl', 'description' )), ( 535, 'VIEW_TRIGGER_EVENT', oils_i18n_gettext( 535, @@ -3085,10 +3085,10 @@ INSERT into config.org_unit_setting_type ,( 'acq.default_copy_location', 'acq', oils_i18n_gettext('acq.default_copy_location', - 'Default copy location', + 'Default shelving location', 'coust', 'label'), oils_i18n_gettext('acq.default_copy_location', - 'Default copy location', + 'Default shelving location', 'coust', 'description'), 'link', 'acpl') @@ -12937,7 +12937,7 @@ INSERT INTO action_trigger.environment (event_def, path) VALUES INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'general.unknown', oils_i18n_gettext('general.unknown', 'Import or Overlay failed', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.duplicate.barcode', oils_i18n_gettext('import.item.duplicate.barcode', 'Import failed due to barcode collision', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.circ_modifier', oils_i18n_gettext('import.item.invalid.circ_modifier', 'Import failed due to invalid circulation modifier', 'vie', 'description') ); -INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.location', oils_i18n_gettext('import.item.invalid.location', 'Import failed due to invalid copy location', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.location', oils_i18n_gettext('import.item.invalid.location', 'Import failed due to invalid shelving location', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.duplicate.sysid', oils_i18n_gettext('import.duplicate.sysid', 'Import failed due to system id collision', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.duplicate.tcn', oils_i18n_gettext('import.duplicate.tcn', 'Import failed due to system id collision', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'overlay.missing.sysid', oils_i18n_gettext('overlay.missing.sysid', 'Overlay failed due to missing system id', 'vie', 'description') ); @@ -16863,7 +16863,7 @@ VALUES ( 'coust', 'label'), oils_i18n_gettext( 'vandelay.item.copy_location.default', - 'Default copy location value for imported items', + 'Default shelving location value for imported items', 'coust', 'description'), 'link', 'acpl' @@ -17353,10 +17353,10 @@ VALUES ('circ.in_house_use.checkin_alert', 'circ', oils_i18n_gettext('circ.in_house_use.checkin_alert', - 'Display copy location checkin alert for in-house-use', + 'Display shelving location checkin alert for in-house-use', 'coust', 'label'), oils_i18n_gettext('circ.in_house_use.checkin_alert', - 'Display copy location checkin alert for in-house-use', + 'Display shelving location checkin alert for in-house-use', 'coust', 'description'), 'bool'); diff --git a/Open-ILS/src/sql/Pg/999.functions.global.sql b/Open-ILS/src/sql/Pg/999.functions.global.sql index d806534576..34057ab513 100644 --- a/Open-ILS/src/sql/Pg/999.functions.global.sql +++ b/Open-ILS/src/sql/Pg/999.functions.global.sql @@ -1898,7 +1898,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/upgrade/0052.schema.asset_copy_location_order.sql b/Open-ILS/src/sql/Pg/upgrade/0052.schema.asset_copy_location_order.sql index 0b998fbe17..a1f361a84a 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0052.schema.asset_copy_location_order.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0052.schema.asset_copy_location_order.sql @@ -18,6 +18,6 @@ CREATE TABLE asset.copy_location_order ); INSERT INTO permission.perm_list VALUES -(350, 'ADMIN_COPY_LOCATION_ORDER', oils_i18n_gettext(350, 'Allow a user to create/view/update/delete a copy location order', 'ppl', 'description')); +(350, 'ADMIN_COPY_LOCATION_ORDER', oils_i18n_gettext(350, 'Allow a user to create/view/update/delete a shelving location order', 'ppl', 'description')); COMMIT; diff --git a/Open-ILS/src/sql/Pg/upgrade/0560.fix_opac_copy_vis_cache.sql b/Open-ILS/src/sql/Pg/upgrade/0560.fix_opac_copy_vis_cache.sql index 73838b9df5..93077a3299 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0560.fix_opac_copy_vis_cache.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0560.fix_opac_copy_vis_cache.sql @@ -1,7 +1,7 @@ -- Evergreen DB patch XXXX.fix_opac_copy_vis_cache.sql -- -- Correct LP#788763: glitch in asset.cache_copy_visibility --- prevented updating the visibility of copy locations, org +-- prevented updating the visibility of shelving locations, org -- units, and copy statuses. -- diff --git a/Open-ILS/src/sql/Pg/upgrade/0572.schema.vandelay-record-matching-and-quality.sql b/Open-ILS/src/sql/Pg/upgrade/0572.schema.vandelay-record-matching-and-quality.sql index 3b986b0c0a..4be6e2e35a 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0572.schema.vandelay-record-matching-and-quality.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0572.schema.vandelay-record-matching-and-quality.sql @@ -1011,7 +1011,7 @@ $func$ LANGUAGE PLPGSQL; INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'general.unknown', oils_i18n_gettext('general.unknown', 'Import or Overlay failed', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.duplicate.barcode', oils_i18n_gettext('import.item.duplicate.barcode', 'Import failed due to barcode collision', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.circ_modifier', oils_i18n_gettext('import.item.invalid.circ_modifier', 'Import failed due to invalid circulation modifier', 'vie', 'description') ); -INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.location', oils_i18n_gettext('import.item.invalid.location', 'Import failed due to invalid copy location', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.location', oils_i18n_gettext('import.item.invalid.location', 'Import failed due to invalid shelving location', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.duplicate.sysid', oils_i18n_gettext('import.duplicate.sysid', 'Import failed due to system id collision', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.duplicate.tcn', oils_i18n_gettext('import.duplicate.sysid', 'Import failed due to system id collision', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'overlay.missing.sysid', oils_i18n_gettext('overlay.missing.sysid', 'Overlay failed due to missing system id', 'vie', 'description') ); diff --git a/Open-ILS/src/sql/Pg/upgrade/0577.schema.vandelay-item-import-copy-loc-ancestors.sql b/Open-ILS/src/sql/Pg/upgrade/0577.schema.vandelay-item-import-copy-loc-ancestors.sql index 64a6c763ba..955b41c2e6 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0577.schema.vandelay-item-import-copy-loc-ancestors.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0577.schema.vandelay-item-import-copy-loc-ancestors.sql @@ -1,6 +1,6 @@ -- Evergreen DB patch 0577.schema.vandelay-item-import-copy-loc-ancestors.sql -- --- Ingest items copy location inheritance +-- Ingest items shelving location inheritance -- BEGIN; @@ -221,7 +221,7 @@ BEGIN SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, diff --git a/Open-ILS/src/sql/Pg/upgrade/0596.schema.vandelay-item-import-error-detail.sql b/Open-ILS/src/sql/Pg/upgrade/0596.schema.vandelay-item-import-error-detail.sql index e7823dc52b..fbc9e79686 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0596.schema.vandelay-item-import-error-detail.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0596.schema.vandelay-item-import-error-detail.sql @@ -304,7 +304,7 @@ BEGIN IF tmp_attr_set.cl != '' THEN - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/upgrade/0709.data.misc_missing_perms.sql b/Open-ILS/src/sql/Pg/upgrade/0709.data.misc_missing_perms.sql index dd419057d2..4742995f75 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0709.data.misc_missing_perms.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0709.data.misc_missing_perms.sql @@ -30,7 +30,7 @@ INSERT INTO permission.perm_list ( id, code, description ) 'ADMIN_COPY_LOCATION_GROUP', oils_i18n_gettext( 533, - 'Allows a user to create/retrieve/update/delete copy location groups', + 'Allows a user to create/retrieve/update/delete shelving location groups', 'ppl', 'description' ) diff --git a/Open-ILS/src/sql/Pg/upgrade/0731.schema.vandelay_item_overlay.sql b/Open-ILS/src/sql/Pg/upgrade/0731.schema.vandelay_item_overlay.sql index 145228b369..1c2e5b9c3a 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0731.schema.vandelay_item_overlay.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0731.schema.vandelay_item_overlay.sql @@ -379,7 +379,7 @@ BEGIN IF tmp_attr_set.cl != '' THEN - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/upgrade/0824.schema.vandelay-item-import-defaults.sql b/Open-ILS/src/sql/Pg/upgrade/0824.schema.vandelay-item-import-defaults.sql index 62cb9149cc..34b3f4b251 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0824.schema.vandelay-item-import-defaults.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0824.schema.vandelay-item-import-defaults.sql @@ -66,7 +66,7 @@ VALUES ( 'coust', 'label'), oils_i18n_gettext( 'vandelay.item.copy_location.default', - 'Default copy location value for imported items', + 'Default shelving location value for imported items', 'coust', 'label'), 'link', 'acpl' @@ -419,7 +419,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/upgrade/0912.asset.copy_location-delete-rule.sql b/Open-ILS/src/sql/Pg/upgrade/0912.asset.copy_location-delete-rule.sql index 2f963c8b7c..68f445ef2d 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0912.asset.copy_location-delete-rule.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0912.asset.copy_location-delete-rule.sql @@ -401,7 +401,7 @@ BEGIN END; $func$ LANGUAGE PLPGSQL; --- updated copy location validity test to disallow deleted locations +-- updated shelving location validity test to disallow deleted locations CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$ DECLARE @@ -736,7 +736,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/upgrade/0929.schema.vandelay-stat-cat-import.sql b/Open-ILS/src/sql/Pg/upgrade/0929.schema.vandelay-stat-cat-import.sql index e475366c91..c22c949baf 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0929.schema.vandelay-stat-cat-import.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0929.schema.vandelay-stat-cat-import.sql @@ -337,7 +337,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/upgrade/0962.schema.vandelay-parts-import.sql b/Open-ILS/src/sql/Pg/upgrade/0962.schema.vandelay-parts-import.sql index b953182792..acf32c029b 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0962.schema.vandelay-parts-import.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0962.schema.vandelay-parts-import.sql @@ -340,7 +340,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/upgrade/0975.schema.fix_vandelay_stored_procs.sql b/Open-ILS/src/sql/Pg/upgrade/0975.schema.fix_vandelay_stored_procs.sql index 29b064d67c..6df3135cce 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0975.schema.fix_vandelay_stored_procs.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0975.schema.fix_vandelay_stored_procs.sql @@ -335,7 +335,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/upgrade/1011.data.in-house-use_copy_alert.sql b/Open-ILS/src/sql/Pg/upgrade/1011.data.in-house-use_copy_alert.sql index 667b12e330..b9f3923b07 100644 --- a/Open-ILS/src/sql/Pg/upgrade/1011.data.in-house-use_copy_alert.sql +++ b/Open-ILS/src/sql/Pg/upgrade/1011.data.in-house-use_copy_alert.sql @@ -17,10 +17,10 @@ INSERT INTO config.org_unit_setting_type ('circ.in_house_use.checkin_alert', 'circ', oils_i18n_gettext('circ.in_house_use.checkin_alert', - 'Display copy location checkin alert for in-house-use', + 'Display shelving location checkin alert for in-house-use', 'coust', 'label'), oils_i18n_gettext('circ.in_house_use.checkin_alert', - 'Display copy location checkin alert for in-house-use', + 'Display shelving location checkin alert for in-house-use', 'coust', 'description'), 'bool'); diff --git a/Open-ILS/src/sql/Pg/version-upgrade/1.6.1-2.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/1.6.1-2.0-upgrade-db.sql index c0358faf24..debd46020e 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/1.6.1-2.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/1.6.1-2.0-upgrade-db.sql @@ -353,11 +353,11 @@ INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 69, 'CREATE_ INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 70, 'COPY_CHECKOUT', 'Allow a user to check out a copy' ); INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 71, 'CREATE_COPY_LOCATION', - 'Allow a user to create a new copy location' ); + 'Allow a user to create a new shelving location' ); INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 72, 'UPDATE_COPY_LOCATION', - 'Allow a user to update a copy location' ); + 'Allow a user to update a shelving location' ); INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 73, 'DELETE_COPY_LOCATION', - 'Allow a user to delete a copy location' ); + 'Allow a user to delete a shelving location' ); INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 74, 'CREATE_COPY_TRANSIT', 'Allow a user to create a transit_copy object for transiting a copy' ); INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 75, 'COPY_TRANSIT_RECEIVE', @@ -617,7 +617,7 @@ INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 201, 'UPDATE INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT', 'Allows staff to manually change a patron''s claims never checkout out count' ); INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 203, 'ADMIN_COPY_LOCATION_ORDER', - 'Allow a user to create/view/update/delete a copy location order' ); + 'Allow a user to create/view/update/delete a shelving location order' ); INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 204, 'ASSIGN_GROUP_PERM', '' ); INSERT INTO permission.temp_perm ( id, code, description ) VALUES ( 205, 'CREATE_AUDIENCE', @@ -1835,7 +1835,7 @@ INSERT INTO config.org_unit_setting_type INSERT into config.org_unit_setting_type ( name, label, description, datatype, fm_class ) VALUES ( 'acq.default_copy_location', - 'Default copy location', + 'Default shelving location', null, 'link', 'acpl' ); diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql index a4d4318c1d..e043b125cb 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.1-2.2-upgrade-db.sql @@ -2040,7 +2040,7 @@ $func$ LANGUAGE PLPGSQL; INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'general.unknown', oils_i18n_gettext('general.unknown', 'Import or Overlay failed', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.duplicate.barcode', oils_i18n_gettext('import.item.duplicate.barcode', 'Import failed due to barcode collision', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.circ_modifier', oils_i18n_gettext('import.item.invalid.circ_modifier', 'Import failed due to invalid circulation modifier', 'vie', 'description') ); -INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.location', oils_i18n_gettext('import.item.invalid.location', 'Import failed due to invalid copy location', 'vie', 'description') ); +INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.item.invalid.location', oils_i18n_gettext('import.item.invalid.location', 'Import failed due to invalid shelving location', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.duplicate.sysid', oils_i18n_gettext('import.duplicate.sysid', 'Import failed due to system id collision', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'import.duplicate.tcn', oils_i18n_gettext('import.duplicate.sysid', 'Import failed due to system id collision', 'vie', 'description') ); INSERT INTO vandelay.import_error ( code, description ) VALUES ( 'overlay.missing.sysid', oils_i18n_gettext('overlay.missing.sysid', 'Overlay failed due to missing system id', 'vie', 'description') ); @@ -3166,7 +3166,7 @@ BEGIN -- Evergreen DB patch 0577.schema.vandelay-item-import-copy-loc-ancestors.sql -- --- Ingest items copy location inheritance +-- Ingest items shelving location inheritance -- -- check whether patch can be applied @@ -3386,7 +3386,7 @@ BEGIN SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, @@ -3953,7 +3953,7 @@ BEGIN IF tmp_attr_set.cl != '' THEN - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, @@ -12403,7 +12403,7 @@ INSERT INTO permission.perm_list ( id, code, description ) 'ADMIN_COPY_LOCATION_GROUP', oils_i18n_gettext( 533, - 'Allows a user to create/retrieve/update/delete copy location groups', + 'Allows a user to create/retrieve/update/delete shelving location groups', 'ppl', 'description' ) diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.10.0-2.10.1-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.10.0-2.10.1-upgrade-db.sql index c79e9e8379..91b0b8aa22 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.10.0-2.10.1-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.10.0-2.10.1-upgrade-db.sql @@ -339,7 +339,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.11.3-2.12.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.11.3-2.12.0-upgrade-db.sql index d97782689c..7febb0685a 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.11.3-2.12.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.11.3-2.12.0-upgrade-db.sql @@ -135,10 +135,10 @@ INSERT INTO config.org_unit_setting_type ('circ.in_house_use.checkin_alert', 'circ', oils_i18n_gettext('circ.in_house_use.checkin_alert', - 'Display copy location checkin alert for in-house-use', + 'Display shelving location checkin alert for in-house-use', 'coust', 'label'), oils_i18n_gettext('circ.in_house_use.checkin_alert', - 'Display copy location checkin alert for in-house-use', + 'Display shelving location checkin alert for in-house-use', 'coust', 'description'), 'bool'); diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.2-2.3.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.2-2.3.0-upgrade-db.sql index 911b14d7eb..593fc4d2d3 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.2-2.3.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.2-2.3.0-upgrade-db.sql @@ -1739,7 +1739,7 @@ BEGIN IF tmp_attr_set.cl != '' THEN - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.4.3-2.5.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.4.3-2.5.0-upgrade-db.sql index e1cb0fba0c..ef2c95b7c5 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.4.3-2.5.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.4.3-2.5.0-upgrade-db.sql @@ -9869,7 +9869,7 @@ VALUES ( 'coust', 'label'), oils_i18n_gettext( 'vandelay.item.copy_location.default', - 'Default copy location value for imported items', + 'Default shelving location value for imported items', 'coust', 'label'), 'link', 'acpl' @@ -10222,7 +10222,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.7.4-2.8.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.7.4-2.8.0-upgrade-db.sql index a8a04aab35..daf26e5d65 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.7.4-2.8.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.7.4-2.8.0-upgrade-db.sql @@ -1027,7 +1027,7 @@ BEGIN END; $func$ LANGUAGE PLPGSQL; --- updated copy location validity test to disallow deleted locations +-- updated shelving location validity test to disallow deleted locations CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$ DECLARE @@ -1362,7 +1362,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.8.4-2.9.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.8.4-2.9.0-upgrade-db.sql index c44fba286a..8f146bb7fc 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.8.4-2.9.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.8.4-2.9.0-upgrade-db.sql @@ -629,7 +629,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql index 1e46baa53f..dc4256a76e 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/2.9.3-2.10.0-upgrade-db.sql @@ -2548,7 +2548,7 @@ BEGIN END IF; ELSE - -- search up the org unit tree for a matching copy location + -- search up the org unit tree for a matching shelving location WITH RECURSIVE anscestor_depth AS ( SELECT ou.id, out.depth AS depth, diff --git a/Open-ILS/src/support-scripts/test-scripts/copy_locations.pl b/Open-ILS/src/support-scripts/test-scripts/copy_locations.pl index 44647744a6..963193f176 100755 --- a/Open-ILS/src/support-scripts/test-scripts/copy_locations.pl +++ b/Open-ILS/src/support-scripts/test-scripts/copy_locations.pl @@ -11,7 +11,7 @@ use strict; use warnings; #---------------------------------------------------------------- err("\nusage: $0 ". " \n". - "Where is the copy location name and is the \n". + "Where is the shelving location name and is the \n". "org that houses the new location object\n") unless $ARGV[4]; #---------------------------------------------------------------- @@ -65,7 +65,7 @@ sub update_cl { my $resp = simplereq( CIRC(), 'open-ils.circ.copy_location.update', $authtoken, $cl ); oils_event_die($resp); - printl("Successfully set copy location name to ".$cl->name); + printl("Successfully set shelving location name to ".$cl->name); } sub delete_cl { diff --git a/Open-ILS/src/templates-bootstrap/opac/parts/header.tt2 b/Open-ILS/src/templates-bootstrap/opac/parts/header.tt2 index f54b472241..1c402e9ecb 100755 --- a/Open-ILS/src/templates-bootstrap/opac/parts/header.tt2 +++ b/Open-ILS/src/templates-bootstrap/opac/parts/header.tt2 @@ -112,7 +112,7 @@ END; END; - # Dojo is required for the copy locations advanced search filter + # Dojo is required for the shelving locations advanced search filter IF ctx.page == 'advanced'; want_dojo = 1; END; diff --git a/Open-ILS/src/templates/opac/parts/header.tt2 b/Open-ILS/src/templates/opac/parts/header.tt2 index 2bf7bb0e3c..15da541c02 100644 --- a/Open-ILS/src/templates/opac/parts/header.tt2 +++ b/Open-ILS/src/templates/opac/parts/header.tt2 @@ -112,7 +112,7 @@ END; END; - # Dojo is required for the copy locations advanced search filter + # Dojo is required for the shelving locations advanced search filter IF ctx.page == 'advanced'; want_dojo = 1; END; diff --git a/Open-ILS/tests/datasets/sql/assets_extras.sql b/Open-ILS/tests/datasets/sql/assets_extras.sql index 89201f229f..53f8c4855f 100644 --- a/Open-ILS/tests/datasets/sql/assets_extras.sql +++ b/Open-ILS/tests/datasets/sql/assets_extras.sql @@ -1,5 +1,5 @@ --- copy locations --- copy location groups +-- shelving locations +-- shelving location groups -- copy stat cats -- ... @@ -80,7 +80,7 @@ INSERT INTO asset.copy_location (4, 'New Arrivals', TRUE, TRUE, FALSE), (5, 'New Arrivals', TRUE, TRUE, TRUE); --- copy location groups +-- shelving location groups INSERT INTO asset.copy_location_group (name, owner) VALUES ('Juvenile Collection', 2); @@ -111,7 +111,7 @@ INSERT INTO asset.copy_location_group_map (lgroup, location) 'Local History' ); --- Distribute copies evenly across copy locations whose owning_lib +-- Distribute copies evenly across shelving locations whose owning_lib -- matches the copy circ lib. To provide some level of repeatable -- outcome, we loop instead of applying locations at randon within -- a given owning_lib. @@ -126,9 +126,9 @@ BEGIN FOR cur_copy IN SELECT * FROM asset.copy WHERE location = 1 ORDER BY circ_lib, call_number, id LOOP - -- Move to the next copy location if we are changing call numbers. + -- Move to the next shelving location if we are changing call numbers. -- This provides some visual consistency between call numbers and - -- copy locations and helps avoid having practically every copy in + -- shelving locations and helps avoid having practically every copy in -- view residing in a different location. IF cur_cn <> cur_copy.call_number THEN @@ -146,7 +146,7 @@ BEGIN END IF; IF NOT FOUND THEN - -- no copy location at this circ lib, leave the default (1) + -- no shelving location at this circ lib, leave the default (1) CONTINUE; END IF; diff --git a/Open-ILS/web/opac/locale/en-US/lang.dtd b/Open-ILS/web/opac/locale/en-US/lang.dtd index 6313c7fd14..bb1383487c 100644 --- a/Open-ILS/web/opac/locale/en-US/lang.dtd +++ b/Open-ILS/web/opac/locale/en-US/lang.dtd @@ -2198,8 +2198,8 @@ - - + + diff --git a/build/i18n/po/db.seed/ar-JO.po b/build/i18n/po/db.seed/ar-JO.po index fcfe73ed7c..bd89472a6c 100644 --- a/build/i18n/po/db.seed/ar-JO.po +++ b/build/i18n/po/db.seed/ar-JO.po @@ -333,7 +333,7 @@ msgid "Game" msgstr "لعبة" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "السماح للمستخدم بحذف موقع النُسخة" #: 950.data.seed-values.sql:544 @@ -1795,7 +1795,7 @@ msgid "Org Unit Target Weight" msgstr "الوزن المُستهدف لـِ الوحدة التنظيمية" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "قيمة موقع النُسخة الافتراضي لـِ النُسخ المستوردة" #: 950.data.seed-values.sql:3536 @@ -3514,7 +3514,7 @@ msgid "Khoisan (Other)" msgstr "الخواز (أخرى)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "السماح لـِ المستخدم بتحديث موقع النسخة" #: 950.data.seed-values.sql:15477 @@ -3528,7 +3528,7 @@ msgstr "" "للمستخدم يمكن عرضها." #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "السماح للمستخدم بإنشاء/استرداد/تحديث/حذف مجموعات موقع نسخة" #: 950.data.seed-values.sql:15559 @@ -4999,7 +4999,7 @@ msgid "Both transposed and arranged" msgstr "اقتباس وتوزيع" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "موقع النُسخة الافتراضي" #: 950.data.seed-values.sql:23 @@ -6521,7 +6521,7 @@ msgid "Soft boundary" msgstr "الإطار/الحد اللين" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "إظهار تنبيه موقع إعارة النسخة من أجل الاستخدام داخل المكتبة" #: 950.data.seed-values.sql:4661 @@ -8658,7 +8658,7 @@ msgstr "" "سوف يمنع إعارات المُطالبات المُسترجعة من التعداد باتجاه هذه الاحصاءات." #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "السماح لـِ المستخدم بإنشاء موقع نسخة جديد" #: 950.data.seed-values.sql:8428 @@ -10594,7 +10594,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "السماح للمستخدم بعرض الإعارة وأحداث الإطلاق/الإجراءات للحجز ذو الصلة" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "السماح للمستخدم بـِ إنشاء/عرض/تحديث/حذف طلب موقع النُسخة" #: 950.data.seed-values.sql:8588 @@ -14399,7 +14399,7 @@ msgstr "" "إلغاء تعيين الكل بدلاً من حقل استلام الدفع" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "فشل الاستيراد بسبب موقع نسخة غير صالح" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/cs-CZ.po b/build/i18n/po/db.seed/cs-CZ.po index c6e22f2f12..48a0e07059 100644 --- a/build/i18n/po/db.seed/cs-CZ.po +++ b/build/i18n/po/db.seed/cs-CZ.po @@ -347,7 +347,7 @@ msgid "Game" msgstr "Hra" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "Povolit uživateli smazat umístění exempláře" #: 950.data.seed-values.sql:544 @@ -1899,7 +1899,7 @@ msgid "Org Unit Target Weight" msgstr "Váha cíle s ohledem na organizační jednotku." #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "Standardní hodnota umístění exempláře pro importované položky" #: 950.data.seed-values.sql:3536 @@ -3703,7 +3703,7 @@ msgid "Khoisan (Other)" msgstr "Khoisanské jazyky (ostatní)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "Povolit uživateli změnit umístění exempláře" #: 950.data.seed-values.sql:15477 @@ -3717,7 +3717,7 @@ msgstr "" "personálu spuštěné události uživatele bez ohledu na jejich stáří." #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" "Povolit uživateli vytvořit / načíst / změnit / smazat skupiny umístění " "exempláře" @@ -5270,7 +5270,7 @@ msgid "Both transposed and arranged" msgstr "Transponováno a uspořádáno" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "Výchozí umístění exempláře" #: 950.data.seed-values.sql:23 @@ -6860,7 +6860,7 @@ msgid "Soft boundary" msgstr "Měkké hranice" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" "Při prezenční výpůjčce zobrazit varování jako vrácení související s " "umístěním exempláře" @@ -9134,7 +9134,7 @@ msgstr "" "Údajně vrácené výpůjčky započítaly do tohoto čísla." #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "Povolit uživateli nové umístění exempláře" #: 950.data.seed-values.sql:8428 @@ -11153,7 +11153,7 @@ msgstr "" "výpůjček a rezervací" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" "Povolit uživateli vytvořit / zobrazit / změnit / smazat pořadí lokací" @@ -15160,7 +15160,7 @@ msgstr "" "pole Přijetí platby." #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "Import se nezdařil kvůli neplatnému umístění exempláře" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/db.seed.pot b/build/i18n/po/db.seed/db.seed.pot index 1464c4189c..4fe5ba5617 100644 --- a/build/i18n/po/db.seed/db.seed.pot +++ b/build/i18n/po/db.seed/db.seed.pot @@ -398,7 +398,7 @@ msgstr "" # id::ppl.description__73 #: 950.data.seed-values.sql:849 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" # id::ccs.name__16 @@ -2171,7 +2171,7 @@ msgstr "" # id::coust.description__vandelay.item.copy_location.default #: 950.data.seed-values.sql:16864 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" # id::coust.label__circ.holds.clear_shelf.copy_status @@ -4215,7 +4215,7 @@ msgstr "" # id::ppl.description__72 #: 950.data.seed-values.sql:847 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" # id::coust.description__circ.staff.max_visible_event_age @@ -4228,7 +4228,7 @@ msgstr "" # id::ppl.description__533 #: 950.data.seed-values.sql:1765 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" # id::coust.label__circ.patron_expires_soon_warning @@ -6038,7 +6038,7 @@ msgstr "" # id::coust.label__acq.default_copy_location # id::coust.description__acq.default_copy_location #: 950.data.seed-values.sql:3087 950.data.seed-values.sql:3090 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" # id::csp.label__1 @@ -7877,7 +7877,7 @@ msgstr "" # id::coust.label__circ.in_house_use.checkin_alert # id::coust.description__circ.in_house_use.checkin_alert #: 950.data.seed-values.sql:17355 950.data.seed-values.sql:17358 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" # id::coust.description__ui.patron.edit.au.active.suggest @@ -10431,7 +10431,7 @@ msgstr "" # id::ppl.description__71 #: 950.data.seed-values.sql:845 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" # id::ccvm.value__1079 @@ -12705,7 +12705,7 @@ msgstr "" # id::ppl.description__203 #: 950.data.seed-values.sql:1109 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" # id::ccvm.value__1239 @@ -17374,7 +17374,7 @@ msgstr "" # id::vie.description__import.item.invalid.location #: 950.data.seed-values.sql:12940 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "" # id::acsaf.name__51 diff --git a/build/i18n/po/db.seed/de-DE.po b/build/i18n/po/db.seed/de-DE.po index b6fd7bb915..38b1364ec4 100644 --- a/build/i18n/po/db.seed/de-DE.po +++ b/build/i18n/po/db.seed/de-DE.po @@ -311,7 +311,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1701,7 +1701,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3347,7 +3347,7 @@ msgid "Khoisan (Other)" msgstr "Khoisan-Sprachen (Andere)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3358,7 +3358,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4780,7 +4780,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6231,7 +6231,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8263,7 +8263,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10087,7 +10087,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -13749,7 +13749,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/en-CA.po b/build/i18n/po/db.seed/en-CA.po index 9c9a2666ed..58d781380c 100644 --- a/build/i18n/po/db.seed/en-CA.po +++ b/build/i18n/po/db.seed/en-CA.po @@ -309,7 +309,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1706,7 +1706,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3356,7 +3356,7 @@ msgid "Khoisan (Other)" msgstr "Khoisan (Other)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3367,7 +3367,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4793,7 +4793,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6251,7 +6251,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8287,7 +8287,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10113,7 +10113,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -13779,8 +13779,8 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" -msgstr "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" +msgstr "Import failed due to invalid shelving location" #: 950.data.seed-values.sql:13603 msgid "Subdivision Linking Entry -- Form Subdivision" diff --git a/build/i18n/po/db.seed/en-GB.po b/build/i18n/po/db.seed/en-GB.po index 320b3d1d53..68c8db7e85 100644 --- a/build/i18n/po/db.seed/en-GB.po +++ b/build/i18n/po/db.seed/en-GB.po @@ -316,7 +316,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1713,7 +1713,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3359,7 +3359,7 @@ msgid "Khoisan (Other)" msgstr "Khoisan (Other)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3370,7 +3370,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4798,7 +4798,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6256,7 +6256,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8294,7 +8294,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10122,7 +10122,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -13791,8 +13791,8 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" -msgstr "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" +msgstr "Import failed due to invalid shelving location" #: 950.data.seed-values.sql:13603 msgid "Subdivision Linking Entry -- Form Subdivision" diff --git a/build/i18n/po/db.seed/es-ES.po b/build/i18n/po/db.seed/es-ES.po index 296fdbc6b7..619a93241e 100644 --- a/build/i18n/po/db.seed/es-ES.po +++ b/build/i18n/po/db.seed/es-ES.po @@ -336,7 +336,7 @@ msgid "Game" msgstr "Juego" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "Permite el usuario borrar o copiar la ubicacion" #: 950.data.seed-values.sql:544 @@ -1861,7 +1861,7 @@ msgid "Org Unit Target Weight" msgstr "Unidad Org peso objetivo" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "Valor ejemplar ubicación predeterminada de los artículos importados" #: 950.data.seed-values.sql:3536 @@ -3635,7 +3635,7 @@ msgid "Khoisan (Other)" msgstr "Khoisan (Otras)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "Permitir a un usuario actualizar ruta de la copia" #: 950.data.seed-values.sql:15477 @@ -3646,7 +3646,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" "Permite a un usuario crear/recuperar/actualizar/borrar grupos de ubicación " "de copia" @@ -5173,7 +5173,7 @@ msgid "Both transposed and arranged" msgstr "Tanto en la incorporación y dispuesto" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "Ubicación predeterminada de copia" #: 950.data.seed-values.sql:23 @@ -6733,7 +6733,7 @@ msgid "Soft boundary" msgstr "Contorno suave" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8953,7 +8953,7 @@ msgstr "" "contar hacia estas unidades." #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "Permitir a un usuario crear una nueva ruta de la copia" #: 950.data.seed-values.sql:8428 @@ -10937,7 +10937,7 @@ msgstr "" "activación" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" "Permitir a un usuario crear / ver / actualizar / borrar una orden de " "ubicación de copia" @@ -14871,7 +14871,7 @@ msgstr "" "del campo del pago recibido." #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "La importación ha fallado debido a la ubicación de copia no válida" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/fi-FI.po b/build/i18n/po/db.seed/fi-FI.po index c32b72f0aa..689e603c14 100644 --- a/build/i18n/po/db.seed/fi-FI.po +++ b/build/i18n/po/db.seed/fi-FI.po @@ -332,7 +332,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1817,7 +1817,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3587,7 +3587,7 @@ msgid "Khoisan (Other)" msgstr "khoisankielet" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3598,7 +3598,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -5117,7 +5117,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" # id::csp.label__1 @@ -6675,7 +6675,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8842,7 +8842,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10778,7 +10778,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -14673,7 +14673,7 @@ msgstr "" # id::vie.description__import.item.invalid.location #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "Tuonti epäonnistui virheellisen nidesijainnin vuoksi" # id::acsaf.name__51 diff --git a/build/i18n/po/db.seed/fr-CA.po b/build/i18n/po/db.seed/fr-CA.po index a8f356be61..021ac87bf1 100644 --- a/build/i18n/po/db.seed/fr-CA.po +++ b/build/i18n/po/db.seed/fr-CA.po @@ -334,7 +334,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1829,7 +1829,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3613,7 +3613,7 @@ msgid "Khoisan (Other)" msgstr "Khoin (Autre)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3624,7 +3624,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -5175,7 +5175,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6749,7 +6749,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8925,7 +8925,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10881,7 +10881,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -14831,7 +14831,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/he-IL.po b/build/i18n/po/db.seed/he-IL.po index 7fa123a3e7..d324bb499b 100644 --- a/build/i18n/po/db.seed/he-IL.po +++ b/build/i18n/po/db.seed/he-IL.po @@ -306,7 +306,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1696,7 +1696,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3340,7 +3340,7 @@ msgid "Khoisan (Other)" msgstr "" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3351,7 +3351,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4773,7 +4773,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6224,7 +6224,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8256,7 +8256,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10080,7 +10080,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -13742,7 +13742,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/hu-HU.po b/build/i18n/po/db.seed/hu-HU.po index 7fa123a3e7..d324bb499b 100644 --- a/build/i18n/po/db.seed/hu-HU.po +++ b/build/i18n/po/db.seed/hu-HU.po @@ -306,7 +306,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1696,7 +1696,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3340,7 +3340,7 @@ msgid "Khoisan (Other)" msgstr "" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3351,7 +3351,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4773,7 +4773,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6224,7 +6224,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8256,7 +8256,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10080,7 +10080,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -13742,7 +13742,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/hy-AM.po b/build/i18n/po/db.seed/hy-AM.po index d985099d11..f9ac043dd6 100644 --- a/build/i18n/po/db.seed/hy-AM.po +++ b/build/i18n/po/db.seed/hy-AM.po @@ -365,7 +365,7 @@ msgid "Game" msgstr "Խաղ" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "Թույլ է տալիս օգտվողին ջնջելու պատճենի տեղաբաշխումը" #: 950.data.seed-values.sql:544 @@ -1968,7 +1968,7 @@ msgid "Org Unit Target Weight" msgstr "Org Unit թիրախի քաշ" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "Ներմուծված նյութերի համար լռակյաց պատճենի տեղաբաշխման արժեք" #: 950.data.seed-values.sql:3536 @@ -3869,7 +3869,7 @@ msgid "Khoisan (Other)" msgstr "Khoisan (այլ)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "Թույլ տուր օգտվողին թարմացնելու պատճենի տեղաբաշխումը" #: 950.data.seed-values.sql:15477 @@ -3884,7 +3884,7 @@ msgstr "" "է դիտել։" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" "Թույլ տուր օգտվողին ստեղծելու/հետ կանչելու/ջնջելու խմբերի պատճենի " "տեղաբաշխումը" @@ -5498,7 +5498,7 @@ msgid "Both transposed and arranged" msgstr "Երկուսն էլ Փոխակերպված և կազմակերպված են" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "Լռակյաց պատճենի տեղաբաշխում" #: 950.data.seed-values.sql:23 @@ -7166,7 +7166,7 @@ msgid "Soft boundary" msgstr "Փափուկ սահման" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "Տնային օգտագործման դեպքում արտածիր պատճենի տեղակայումը" #: 950.data.seed-values.sql:4661 @@ -9493,7 +9493,7 @@ msgstr "" "հաշվարկը այս պիտակների համար։" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "Թույլ տուր օգտվողին ստեղծելու նոր պատճենի տեղաբաշխում։" #: 950.data.seed-values.sql:8428 @@ -11578,7 +11578,7 @@ msgstr "" "գործողություն/կապակցվածություն իրադարձությունները։" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" "Թույլ տուր ընթերցողին ստեղծելու/դիտելու/թարմացնելու/ջնջելու պատճենի " "տեղաբաշխման կարգը։" @@ -15744,7 +15744,7 @@ msgstr "" "կենտրոնացիր Uncheck All կոճակի վրա, Վճարումը Ստացված է դաշտի փոխարեն։" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "ներմուծումը ձախողվեց պատճենի տեղաբաշխման անիրական վայրի պատճառով" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/oc-FR.po b/build/i18n/po/db.seed/oc-FR.po index 6d172d93d0..7c5e1e5bee 100644 --- a/build/i18n/po/db.seed/oc-FR.po +++ b/build/i18n/po/db.seed/oc-FR.po @@ -311,7 +311,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1701,7 +1701,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3345,7 +3345,7 @@ msgid "Khoisan (Other)" msgstr "Khoisan, autras lengas" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3356,7 +3356,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4778,7 +4778,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6229,7 +6229,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8261,7 +8261,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10085,7 +10085,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -13747,7 +13747,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/pt-BR.po b/build/i18n/po/db.seed/pt-BR.po index 3a5683e792..e8cd788c7c 100644 --- a/build/i18n/po/db.seed/pt-BR.po +++ b/build/i18n/po/db.seed/pt-BR.po @@ -329,7 +329,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1771,7 +1771,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3491,7 +3491,7 @@ msgid "Khoisan (Other)" msgstr "Khoisan (Outros)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3502,7 +3502,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4992,7 +4992,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6511,7 +6511,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8627,7 +8627,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10527,7 +10527,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -14349,7 +14349,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "Importação falhou devido a localização inválida do exemplar" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/ru-RU.po b/build/i18n/po/db.seed/ru-RU.po index 1bc754f246..4597f55cc8 100644 --- a/build/i18n/po/db.seed/ru-RU.po +++ b/build/i18n/po/db.seed/ru-RU.po @@ -320,7 +320,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1764,7 +1764,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3484,7 +3484,7 @@ msgid "Khoisan (Other)" msgstr "Khoisan (другой)" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3495,7 +3495,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4986,7 +4986,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6509,7 +6509,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8624,7 +8624,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10520,7 +10520,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -14350,7 +14350,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/sv-SE.po b/build/i18n/po/db.seed/sv-SE.po index 65fae11071..f50eeaf358 100644 --- a/build/i18n/po/db.seed/sv-SE.po +++ b/build/i18n/po/db.seed/sv-SE.po @@ -306,7 +306,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1696,7 +1696,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3340,7 +3340,7 @@ msgid "Khoisan (Other)" msgstr "" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3351,7 +3351,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4773,7 +4773,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6224,7 +6224,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8256,7 +8256,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10080,7 +10080,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -13742,7 +13742,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/db.seed/tr-TR.po b/build/i18n/po/db.seed/tr-TR.po index 84a0cb5cb0..aad9f97a03 100644 --- a/build/i18n/po/db.seed/tr-TR.po +++ b/build/i18n/po/db.seed/tr-TR.po @@ -311,7 +311,7 @@ msgid "Game" msgstr "" #: 950.data.seed-values.sql:848 -msgid "Allow a user to delete a copy location" +msgid "Allow a user to delete a shelving location" msgstr "" #: 950.data.seed-values.sql:544 @@ -1701,7 +1701,7 @@ msgid "Org Unit Target Weight" msgstr "" #: 950.data.seed-values.sql:16748 -msgid "Default copy location value for imported items" +msgid "Default shelving location value for imported items" msgstr "" #: 950.data.seed-values.sql:3536 @@ -3345,7 +3345,7 @@ msgid "Khoisan (Other)" msgstr "" #: 950.data.seed-values.sql:846 -msgid "Allow a user to update a copy location" +msgid "Allow a user to update a shelving location" msgstr "" #: 950.data.seed-values.sql:15477 @@ -3356,7 +3356,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:1764 -msgid "Allows a user to create/retrieve/update/delete copy location groups" +msgid "Allows a user to create/retrieve/update/delete shelving location groups" msgstr "" #: 950.data.seed-values.sql:15559 @@ -4778,7 +4778,7 @@ msgid "Both transposed and arranged" msgstr "" #: 950.data.seed-values.sql:3046 950.data.seed-values.sql:3049 -msgid "Default copy location" +msgid "Default shelving location" msgstr "" #: 950.data.seed-values.sql:23 @@ -6229,7 +6229,7 @@ msgid "Soft boundary" msgstr "" #: 950.data.seed-values.sql:17167 950.data.seed-values.sql:17170 -msgid "Display copy location checkin alert for in-house-use" +msgid "Display shelving location checkin alert for in-house-use" msgstr "" #: 950.data.seed-values.sql:4661 @@ -8261,7 +8261,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:844 -msgid "Allow a user to create a new copy location" +msgid "Allow a user to create a new shelving location" msgstr "" #: 950.data.seed-values.sql:8428 @@ -10085,7 +10085,7 @@ msgid "Allows a user to view circ- and hold-related action/trigger events" msgstr "" #: 950.data.seed-values.sql:1108 -msgid "Allow a user to create/view/update/delete a copy location order" +msgid "Allow a user to create/view/update/delete a shelving location order" msgstr "" #: 950.data.seed-values.sql:8588 @@ -13747,7 +13747,7 @@ msgid "" msgstr "" #: 950.data.seed-values.sql:12833 -msgid "Import failed due to invalid copy location" +msgid "Import failed due to invalid shelving location" msgstr "" #: 950.data.seed-values.sql:13603 diff --git a/build/i18n/po/ils_events.xml/ar-JO.po b/build/i18n/po/ils_events.xml/ar-JO.po index f3babbdd48..e751715bcf 100644 --- a/build/i18n/po/ils_events.xml/ar-JO.po +++ b/build/i18n/po/ils_events.xml/ar-JO.po @@ -703,7 +703,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "لم يتم العثور على config_non_cataloged_type المطلوب" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "موقع النُسخة ليس فارغاً" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -760,7 +760,7 @@ msgstr "لم يتم العثور على money_credit_payment المطلوب" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" "تحتاج النُسخة أن يتم توجيهها إلى موقع النسخة. يجب تحديد الموقع داخل الحدث مع " @@ -1253,7 +1253,7 @@ msgid "The requested config_bib_source was not found" msgstr "لم يتم العثور على config_bib_source المطلوب" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "موقع النُسخة غير موجود" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1281,7 +1281,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "لم يتم العثور على config_circ_modifier المطلوب" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "كائن موقع النُسخة موجود مُسبقاً" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/cs-CZ.po b/build/i18n/po/ils_events.xml/cs-CZ.po index e03e6947db..ada533ea2c 100644 --- a/build/i18n/po/ils_events.xml/cs-CZ.po +++ b/build/i18n/po/ils_events.xml/cs-CZ.po @@ -703,7 +703,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "Požadovaný config_non_cataloged_type nebyl nalezen" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "Toto umístění není prázdné" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -760,7 +760,7 @@ msgstr "Požadovaný money_credit_payment nebyl nalezen" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" "Exemplář je nutné směrovat do umístění exempláře. Umístění bude uvedeno " @@ -1261,7 +1261,7 @@ msgid "The requested config_bib_source was not found" msgstr "Požadovaný config_bib_source nebyl nalezen" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "Toto umístění neexistuje" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1291,7 +1291,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "Požadovaný config_circ_modifier nebyl nalezen" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "Objekt umístění exempláře již existuje" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/de-DE.po b/build/i18n/po/ils_events.xml/de-DE.po index f61ba37771..95d30e4a92 100644 --- a/build/i18n/po/ils_events.xml/de-DE.po +++ b/build/i18n/po/ils_events.xml/de-DE.po @@ -673,7 +673,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -730,7 +730,7 @@ msgstr "" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" @@ -1202,7 +1202,7 @@ msgid "The requested config_bib_source was not found" msgstr "" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1230,7 +1230,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/en-CA.po b/build/i18n/po/ils_events.xml/en-CA.po index 23be8f3b51..c0d3335314 100644 --- a/build/i18n/po/ils_events.xml/en-CA.po +++ b/build/i18n/po/ils_events.xml/en-CA.po @@ -701,7 +701,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "The requested config_non_cataloged_type was not found" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -758,10 +758,10 @@ msgstr "The requested money_credit_payment was not found" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" #: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:505 @@ -1253,7 +1253,7 @@ msgid "The requested config_bib_source was not found" msgstr "The requested config_bib_source was not found" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1281,8 +1281,8 @@ msgid "The requested config_circ_modifier was not found" msgstr "The requested config_circ_modifier was not found" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" -msgstr "The copy location object already exists" +msgid "The shelving location object already exists" +msgstr "The shelving location object already exists" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 msgid "The requested money_billable_transaction_summary was not found" diff --git a/build/i18n/po/ils_events.xml/en-GB.po b/build/i18n/po/ils_events.xml/en-GB.po index 5725c35360..1478bddbb8 100644 --- a/build/i18n/po/ils_events.xml/en-GB.po +++ b/build/i18n/po/ils_events.xml/en-GB.po @@ -709,8 +709,8 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "The requested config_non_catalogued_type was not found" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" -msgstr "The copy location is not empty" +msgid "The shelving location is not empty" +msgstr "The shelving location is not empty" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 msgid "The requested config_language_map was not found" @@ -766,10 +766,10 @@ msgstr "The requested money_credit_payment was not found" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" #: 1618.METABIB_TITLE_FIELD_ENTRY_NOT_FOUND:505 @@ -1268,8 +1268,8 @@ msgid "The requested config_bib_source was not found" msgstr "The requested config_bib_source was not found" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" -msgstr "The copy location does not exist" +msgid "The shelving location does not exist" +msgstr "The shelving location does not exist" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 msgid "The requested vandelay_queued_bib_record was not found" @@ -1296,8 +1296,8 @@ msgid "The requested config_circ_modifier was not found" msgstr "The requested config_circ_modifier was not found" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" -msgstr "The copy location object already exists" +msgid "The shelving location object already exists" +msgstr "The shelving location object already exists" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 msgid "The requested money_billable_transaction_summary was not found" diff --git a/build/i18n/po/ils_events.xml/es-ES.po b/build/i18n/po/ils_events.xml/es-ES.po index 685b78bf8c..1560012f28 100644 --- a/build/i18n/po/ils_events.xml/es-ES.po +++ b/build/i18n/po/ils_events.xml/es-ES.po @@ -718,7 +718,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "No se encontró el config_non_cataloged_type solicitado" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "La ruta de la copia no está vacía" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -776,7 +776,7 @@ msgstr "No se encontró el money_credit_payment solicitado" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" "Una copia debe ser encaminado a una ubicación de copia. La ubicación debe " @@ -1285,7 +1285,7 @@ msgid "The requested config_bib_source was not found" msgstr "No se encontró el config_bib_source solicitado" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "La ruta de la copia no existe" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1313,7 +1313,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "No se encontró la config_circ_modifier solicitado" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "El objeto de copia de ubicación ya existe" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/fi-FI.po b/build/i18n/po/ils_events.xml/fi-FI.po index bb9e204ecd..fa17e9a914 100644 --- a/build/i18n/po/ils_events.xml/fi-FI.po +++ b/build/i18n/po/ils_events.xml/fi-FI.po @@ -702,7 +702,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "Pyydettyä kohdetta config_non_cataloged_type ei löytynyt" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -759,7 +759,7 @@ msgstr "Pyydettyä kohdetta money_credit_payment ei löytynyt" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" "Nide on kuljetettava sijaintipaikkaan. Sijainti pitäisi määrittää tapahtuman " @@ -1254,7 +1254,7 @@ msgid "The requested config_bib_source was not found" msgstr "Pyydettyä kohdetta config_bib_source ei löytynyt" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1282,7 +1282,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "Pyydettyä kohdetta config_circ_modifier ei löytynyt" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "Nidesijaintiobjekti on jo olemassa" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/fr-CA.po b/build/i18n/po/ils_events.xml/fr-CA.po index 32107444c0..1cf494833e 100644 --- a/build/i18n/po/ils_events.xml/fr-CA.po +++ b/build/i18n/po/ils_events.xml/fr-CA.po @@ -740,7 +740,7 @@ msgstr "" "L’élément demandé appelé config_non_cataloged_type n’a pas été trouvé" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -800,7 +800,7 @@ msgstr "L’élément demandé appelé money_credit_payment n’a pas été trou #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" "Un exemplaire doit être acheminé à l’emplacement d’un exemplaire. " @@ -1315,7 +1315,7 @@ msgid "The requested config_bib_source was not found" msgstr "L’élément demandé appelé config_bib_source n’a pas été trouvé" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1344,7 +1344,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "L’élément demandé appelé config_circ_modifier n’a pas été trouvé" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "L’objet de l’emplacement de l’exemplaire existe déjà" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/he-IL.po b/build/i18n/po/ils_events.xml/he-IL.po index d46ae8aaa6..dcaa820dfc 100644 --- a/build/i18n/po/ils_events.xml/he-IL.po +++ b/build/i18n/po/ils_events.xml/he-IL.po @@ -668,7 +668,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -725,7 +725,7 @@ msgstr "" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" @@ -1197,7 +1197,7 @@ msgid "The requested config_bib_source was not found" msgstr "" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1225,7 +1225,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/hu-HU.po b/build/i18n/po/ils_events.xml/hu-HU.po index d46ae8aaa6..dcaa820dfc 100644 --- a/build/i18n/po/ils_events.xml/hu-HU.po +++ b/build/i18n/po/ils_events.xml/hu-HU.po @@ -668,7 +668,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -725,7 +725,7 @@ msgstr "" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" @@ -1197,7 +1197,7 @@ msgid "The requested config_bib_source was not found" msgstr "" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1225,7 +1225,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/hy-AM.po b/build/i18n/po/ils_events.xml/hy-AM.po index 64b3fbbff9..5528d56454 100644 --- a/build/i18n/po/ils_events.xml/hy-AM.po +++ b/build/i18n/po/ils_events.xml/hy-AM.po @@ -700,7 +700,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "Հարցվող config_non_cataloged_type չի գտնված" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "Պատճենի տեղաբաշխումը դատարկ չէ։" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -757,7 +757,7 @@ msgstr "Հարցվող money_credit_payment չի գտնված" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" "Օրինակը կարիք ունի տեղափոխվել պատճենի տեղաբաշխման վայր: Տեղաբաշխման վայրը " @@ -1257,7 +1257,7 @@ msgid "The requested config_bib_source was not found" msgstr "Հարցվող config_bib_sourceչի գտնված" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "Պատճենի տեղաբաշխումը գոյություն չունի։" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1285,7 +1285,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "Պահանջվող config_circ_modifier չի գտնվել" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "Օրինակի տեղաբաշխման օբյեկտը արդեն առկա է" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 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 aebb6ad8c0..19b739f734 100644 --- a/build/i18n/po/ils_events.xml/ils_events.xml.pot +++ b/build/i18n/po/ils_events.xml/ils_events.xml.pot @@ -678,7 +678,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -735,7 +735,7 @@ msgstr "" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" @@ -1207,7 +1207,7 @@ msgid "The requested config_bib_source was not found" msgstr "" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1235,7 +1235,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/oc-FR.po b/build/i18n/po/ils_events.xml/oc-FR.po index d46ae8aaa6..dcaa820dfc 100644 --- a/build/i18n/po/ils_events.xml/oc-FR.po +++ b/build/i18n/po/ils_events.xml/oc-FR.po @@ -668,7 +668,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -725,7 +725,7 @@ msgstr "" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" @@ -1197,7 +1197,7 @@ msgid "The requested config_bib_source was not found" msgstr "" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1225,7 +1225,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/pt-BR.po b/build/i18n/po/ils_events.xml/pt-BR.po index 825f4eb681..04aead3230 100644 --- a/build/i18n/po/ils_events.xml/pt-BR.po +++ b/build/i18n/po/ils_events.xml/pt-BR.po @@ -711,7 +711,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "O objeto \"config_non_cataloged_type\" solicitado não foi encontrado" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -770,7 +770,7 @@ msgstr "O objeto \"money_credit_payment\" solicitado não foi encontrado" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" @@ -1260,7 +1260,7 @@ msgid "The requested config_bib_source was not found" msgstr "O objeto \"config_bib_source\" solicitado não foi encontrado" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1289,7 +1289,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "O objeto \"config_circ_modifier \" solicitado não foi encontrado" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/ru-RU.po b/build/i18n/po/ils_events.xml/ru-RU.po index e78133810d..a7b893f809 100644 --- a/build/i18n/po/ils_events.xml/ru-RU.po +++ b/build/i18n/po/ils_events.xml/ru-RU.po @@ -671,7 +671,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "Запрашиваемый config_non_cataloged_type не найден" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -728,7 +728,7 @@ msgstr "Запрашиваемый money_credit_payment не найден" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" @@ -1203,7 +1203,7 @@ msgid "The requested config_bib_source was not found" msgstr "Запрашиваемый config_bib_source не найден" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1231,7 +1231,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "Запрашиваемый config_circ_modifier не найден" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/sv-SE.po b/build/i18n/po/ils_events.xml/sv-SE.po index d46ae8aaa6..dcaa820dfc 100644 --- a/build/i18n/po/ils_events.xml/sv-SE.po +++ b/build/i18n/po/ils_events.xml/sv-SE.po @@ -668,7 +668,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -725,7 +725,7 @@ msgstr "" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" @@ -1197,7 +1197,7 @@ msgid "The requested config_bib_source was not found" msgstr "" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1225,7 +1225,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/ils_events.xml/tr-TR.po b/build/i18n/po/ils_events.xml/tr-TR.po index d46ae8aaa6..dcaa820dfc 100644 --- a/build/i18n/po/ils_events.xml/tr-TR.po +++ b/build/i18n/po/ils_events.xml/tr-TR.po @@ -668,7 +668,7 @@ msgid "The requested config_non_cataloged_type was not found" msgstr "" #: 1716.COPY_LOCATION_NOT_EMPTY:718 -msgid "The copy location is not empty" +msgid "The shelving location is not empty" msgstr "" #: 1542.CONFIG_LANGUAGE_MAP_NOT_FOUND:284 @@ -725,7 +725,7 @@ msgstr "" #: 7017.ROUTE_TO_COPY_LOCATION:906 msgid "" -"A copy needs to be routed to a copy location. The location should be " +"A copy needs to be routed to a shelving location. The location should be " "specified within the event with a 'location' key" msgstr "" @@ -1197,7 +1197,7 @@ msgid "The requested config_bib_source was not found" msgstr "" #: 1717.COPY_LOCATION_NOT_FOUND:721 -msgid "The copy location does not exist" +msgid "The shelving location does not exist" msgstr "" #: 1646.VANDELAY_QUEUED_BIB_RECORD_NOT_FOUND:589 @@ -1225,7 +1225,7 @@ msgid "The requested config_circ_modifier was not found" msgstr "" #: 1701.COPY_LOCATION_EXISTS:715 -msgid "The copy location object already exists" +msgid "The shelving location object already exists" msgstr "" #: 1532.MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND:255 diff --git a/build/i18n/po/lang.dtd/ar-JO.po b/build/i18n/po/lang.dtd/ar-JO.po index db19906bc7..5cdaee685a 100644 --- a/build/i18n/po/lang.dtd/ar-JO.po +++ b/build/i18n/po/lang.dtd/ar-JO.po @@ -8281,7 +8281,7 @@ msgstr "حذف" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" "إذا كان موقع النسخة 'قابل للحجز'، فإن النُسخ في هذا الموقع يمكن أن توضع في " @@ -8289,7 +8289,7 @@ msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" "هل أنت متأكد من أنك تريد حذف موقع النُسخة المُحدد؟ ملاحظة: إذا كانت النُسخ " @@ -14983,7 +14983,7 @@ msgstr "فتح صف الانتظار" #~ msgid " Copy Locations Editor " #~ msgstr " محرر مواقع النُسخة " -#~ msgid "Create a new copy location" +#~ msgid "Create a new shelving location" #~ msgstr "إنشاء موقع نُسخة جديد" #~ msgctxt "staff.circ.copy_status_overlay.sel_transit_abort.label" diff --git a/build/i18n/po/lang.dtd/cs-CZ.po b/build/i18n/po/lang.dtd/cs-CZ.po index 1c8d1163df..abfe952db5 100644 --- a/build/i18n/po/lang.dtd/cs-CZ.po +++ b/build/i18n/po/lang.dtd/cs-CZ.po @@ -8294,7 +8294,7 @@ msgstr "Smazat" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" "Pokud je pro umístění aktivována volba 'Lze rezervovat', exempláře v tomto " @@ -8302,7 +8302,7 @@ msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" "Opravdu chcete smazat označené umístění exemplářů? Pozn.: Jestliže jsou k " @@ -15676,7 +15676,7 @@ msgstr "Otevřít frontu" #~ msgid " Copy Locations Editor " #~ msgstr " Umístění exemplářů " -#~ msgid "Create a new copy location" +#~ msgid "Create a new shelving location" #~ msgstr "Vytvořit nové umístění" #~ msgctxt "staff.patron.ue.found_duplicate_patron.label" diff --git a/build/i18n/po/lang.dtd/de-DE.po b/build/i18n/po/lang.dtd/de-DE.po index f361014077..db0d520b20 100644 --- a/build/i18n/po/lang.dtd/de-DE.po +++ b/build/i18n/po/lang.dtd/de-DE.po @@ -8266,13 +8266,13 @@ msgstr "Entfernen" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" diff --git a/build/i18n/po/lang.dtd/en-CA.po b/build/i18n/po/lang.dtd/en-CA.po index 8af8b0becb..1860a6fbcd 100644 --- a/build/i18n/po/lang.dtd/en-CA.po +++ b/build/i18n/po/lang.dtd/en-CA.po @@ -8282,18 +8282,18 @@ msgstr "Delete" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." #: staff.server.admin.copy_locations.editor.prefix @@ -15120,8 +15120,8 @@ msgstr "" #~ msgid " Copy Locations Editor " #~ msgstr " Copy Locations Editor " -#~ msgid "Create a new copy location" -#~ msgstr "Create a new copy location" +#~ msgid "Create a new shelving location" +#~ msgstr "Create a new shelving location" #~ msgid "Copy Hold" #~ msgstr "Copy Hold" diff --git a/build/i18n/po/lang.dtd/en-GB.po b/build/i18n/po/lang.dtd/en-GB.po index db61d831a8..22e291b757 100644 --- a/build/i18n/po/lang.dtd/en-GB.po +++ b/build/i18n/po/lang.dtd/en-GB.po @@ -8277,18 +8277,18 @@ msgstr "Delete" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." #: staff.server.admin.copy_locations.editor.prefix @@ -15073,8 +15073,8 @@ msgstr "" #~ msgid " Copy Locations Editor " #~ msgstr " Copy Locations Editor " -#~ msgid "Create a new copy location" -#~ msgstr "Create a new copy location" +#~ msgid "Create a new shelving location" +#~ msgstr "Create a new shelving location" #~ msgid "Copy Hold" #~ msgstr "Copy Hold" diff --git a/build/i18n/po/lang.dtd/es-ES.po b/build/i18n/po/lang.dtd/es-ES.po index ebc5df2fcb..08a965acaa 100644 --- a/build/i18n/po/lang.dtd/es-ES.po +++ b/build/i18n/po/lang.dtd/es-ES.po @@ -8306,7 +8306,7 @@ msgstr "Eliminar" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" "Si una ubicación de copia es \"holdable ', copias en ese lugar pueden haber " @@ -8314,7 +8314,7 @@ msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" "¿Está seguro que desea eliminar la ubicación de copia seleccionado? Nota: Si " @@ -15112,7 +15112,7 @@ msgstr "Cola Abierta" #~ msgid " Copy Locations Editor " #~ msgstr " Editor de ubicaciones de copias " -#~ msgid "Create a new copy location" +#~ msgid "Create a new shelving location" #~ msgstr "Crear una nueva ubicación para la copia" #~ msgid "Edit Phone Notification" diff --git a/build/i18n/po/lang.dtd/fi-FI.po b/build/i18n/po/lang.dtd/fi-FI.po index f550f9fde6..26e9042201 100644 --- a/build/i18n/po/lang.dtd/fi-FI.po +++ b/build/i18n/po/lang.dtd/fi-FI.po @@ -8293,7 +8293,7 @@ msgstr "Tuhoa" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" "Jos niteen sijainti on 'varattavissa', ko. sijainnissa olevista niteistä on " @@ -8301,7 +8301,7 @@ msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" "Haluatko varmasti tuhota valitun nidesijainnin? Huomaa: Jos tähän sijaintiin " @@ -15050,7 +15050,7 @@ msgstr "Avoin jono" #~ msgid " Copy Locations Editor " #~ msgstr " Nidesijaintien muokkaustyökalu " -#~ msgid "Create a new copy location" +#~ msgid "Create a new shelving location" #~ msgstr "Luo uusi nidesijainti" #~ msgid "Server Settings" diff --git a/build/i18n/po/lang.dtd/fr-CA.po b/build/i18n/po/lang.dtd/fr-CA.po index d6f0fae1e0..b884f46856 100644 --- a/build/i18n/po/lang.dtd/fr-CA.po +++ b/build/i18n/po/lang.dtd/fr-CA.po @@ -8293,7 +8293,7 @@ msgstr "Supprimer" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" "Si un emplacement d’exemplaire est « Mise en réserve possible », les " @@ -8301,7 +8301,7 @@ msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" "Désirez-vous vraiment supprimer l’emplacement d’exemplaire sélectionné? Nota " @@ -15115,7 +15115,7 @@ msgstr "" #~ msgid " Copy Locations Editor " #~ msgstr " Éditeur d’emplacement des copies " -#~ msgid "Create a new copy location" +#~ msgid "Create a new shelving location" #~ msgstr "Créer un nouvel emplacement d’exemplaire" #~ msgid "Copy Hold" diff --git a/build/i18n/po/lang.dtd/he-IL.po b/build/i18n/po/lang.dtd/he-IL.po index ab2e848855..876f33e835 100644 --- a/build/i18n/po/lang.dtd/he-IL.po +++ b/build/i18n/po/lang.dtd/he-IL.po @@ -8260,13 +8260,13 @@ msgstr "" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" diff --git a/build/i18n/po/lang.dtd/hu-HU.po b/build/i18n/po/lang.dtd/hu-HU.po index ab2e848855..876f33e835 100644 --- a/build/i18n/po/lang.dtd/hu-HU.po +++ b/build/i18n/po/lang.dtd/hu-HU.po @@ -8260,13 +8260,13 @@ msgstr "" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" diff --git a/build/i18n/po/lang.dtd/hy-AM.po b/build/i18n/po/lang.dtd/hy-AM.po index 4de693a1af..6307cd3b21 100644 --- a/build/i18n/po/lang.dtd/hy-AM.po +++ b/build/i18n/po/lang.dtd/hy-AM.po @@ -8318,7 +8318,7 @@ msgstr "Ջնջիր" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" "Եթե օրինակի տեղաբաշխումը 'պահվող է', ապա այդտեղի օրինակները կարելի է " @@ -8326,7 +8326,7 @@ msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" "Վստա՞հ ես որ ցանկանում ես ջնջել ընտրված օրինակի տեղաբաշխումը: Նշում՝ եթե " @@ -15127,7 +15127,7 @@ msgstr "Բացել հերթը" #~ msgid " Copy Locations Editor " #~ msgstr " Պատճերի տեղաբաշխման խմբագիր " -#~ msgid "Create a new copy location" +#~ msgid "Create a new shelving location" #~ msgstr "Ստեղծիր նոր պատճեի տեղաբաշխում" #~ msgid "Copy Hold" diff --git a/build/i18n/po/lang.dtd/lang.dtd.pot b/build/i18n/po/lang.dtd/lang.dtd.pot index 63e8fa2187..7c6794ec6f 100644 --- a/build/i18n/po/lang.dtd/lang.dtd.pot +++ b/build/i18n/po/lang.dtd/lang.dtd.pot @@ -8473,13 +8473,13 @@ msgstr "" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" diff --git a/build/i18n/po/lang.dtd/oc-FR.po b/build/i18n/po/lang.dtd/oc-FR.po index e64d00f9f2..1267c9960b 100644 --- a/build/i18n/po/lang.dtd/oc-FR.po +++ b/build/i18n/po/lang.dtd/oc-FR.po @@ -8264,13 +8264,13 @@ msgstr "" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" diff --git a/build/i18n/po/lang.dtd/pt-BR.po b/build/i18n/po/lang.dtd/pt-BR.po index 901af1d396..046e74d061 100644 --- a/build/i18n/po/lang.dtd/pt-BR.po +++ b/build/i18n/po/lang.dtd/pt-BR.po @@ -8283,7 +8283,7 @@ msgstr "Excluir" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" "Se a localização do exemplar é \"Reservável\", os exemplares de tal " @@ -8291,7 +8291,7 @@ msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" "Tem certeza de que deseja apagar a localização do exemplar selecionado? PS: " @@ -15080,7 +15080,7 @@ msgstr "" #~ msgid " Copy Locations Editor " #~ msgstr " Editor de Localizações de Exemplares " -#~ msgid "Create a new copy location" +#~ msgid "Create a new shelving location" #~ msgstr "Cria uma nova localização de exemplar" #~ msgid "Copy Hold" diff --git a/build/i18n/po/lang.dtd/ru-RU.po b/build/i18n/po/lang.dtd/ru-RU.po index 6a18545f0c..555b218bc6 100644 --- a/build/i18n/po/lang.dtd/ru-RU.po +++ b/build/i18n/po/lang.dtd/ru-RU.po @@ -8288,7 +8288,7 @@ msgstr "Удалить" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" "Если местоположение копии 'Удерживаемый', копии в этом месте могут иметь " @@ -8296,7 +8296,7 @@ msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" "Вы уверены, что хотите удалить местоположения для выбранных копий? " @@ -15071,7 +15071,7 @@ msgstr "" #~ msgid " Copy Locations Editor " #~ msgstr " Редактор Копий местоположений " -#~ msgid "Create a new copy location" +#~ msgid "Create a new shelving location" #~ msgstr "Создать новую копию местоположения" #~ msgid "Copy Hold" diff --git a/build/i18n/po/lang.dtd/sv-SE.po b/build/i18n/po/lang.dtd/sv-SE.po index f800b99055..783299527f 100644 --- a/build/i18n/po/lang.dtd/sv-SE.po +++ b/build/i18n/po/lang.dtd/sv-SE.po @@ -8260,13 +8260,13 @@ msgstr "" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr "" diff --git a/build/i18n/po/lang.dtd/tr-TR.po b/build/i18n/po/lang.dtd/tr-TR.po index a93b83fedb..d0eb5478f8 100644 --- a/build/i18n/po/lang.dtd/tr-TR.po +++ b/build/i18n/po/lang.dtd/tr-TR.po @@ -8264,13 +8264,13 @@ msgstr "" #: staff.server.admin.copy_locations.editor.help.holdable msgid "" -"If a copy location is 'Holdable', copies in that location may have holds " +"If a shelving location is 'Holdable', copies in that location may have holds " "placed on them." msgstr "" #: staff.server.admin.copy_locations.editor.delete.confirm msgid "" -"Are you sure you wish to delete the selected copy location? Note: If copies " +"Are you sure you wish to delete the selected shelving location? Note: If copies " "are currently attached to this location, the delete operation will fail." msgstr ""