LP1902120 Rename All Parts to Any Part in Hold Placement
authorTerran McCanna <tmccanna@georgialibraries.org>
Thu, 10 Dec 2020 18:28:49 +0000 (13:28 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Sat, 19 Nov 2022 19:55:20 +0000 (14:55 -0500)
When parts are set up when placing a hold, the current
dropdown gives the option "All Parts" which implies that
the patron will receive all of the different parts
rather than just one.

This wording has already been changed to "Any Part" in
the new Angular staff catalog.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Open-ILS/src/templates-bootstrap/opac/parts/place_hold.tt2
Open-ILS/src/templates/opac/parts/place_hold.tt2

index 7af5d42..3dba482 100755 (executable)
@@ -179,7 +179,7 @@ function maybeToggleNumCopies(obj) {
                              <div class='radio-parts-selection'>
                              [% IF !hdata.part_required %]
                                 <span class='parts-radio-option'>
-                                 <input type='radio' name='part' value='' onchange='maybeToggleNumCopies(this);' required>[% l('All Parts') %]</span>
+                                 <input type='radio' name='part' value='' onchange='maybeToggleNumCopies(this);' required>[% l('Any Part') %]</span>
                               [% END %]
                                [% FOR part IN hdata.parts %]
                                  <span class='parts-radio-option'><input type='radio' name='part' id=[% part.id %] value=[% part.id %] onchange='maybeToggleNumCopies(this);' required>
@@ -192,7 +192,7 @@ function maybeToggleNumCopies(obj) {
                             %]</label></span>
                             <select id='select_hold_part' name='part' onchange='maybeToggleNumCopies(this);'>
                                 [% IF !hdata.part_required %]
-                                <option selected='selected' value=''>[% l('- All Parts -') %]</option>
+                                <option selected='selected' value=''>[% l('- Any Part -') %]</option>
                                 [% END %]
                                 [% FOR part IN hdata.parts %]
                                 <option value='[% part.id %]'>[% part.label | html %]</option>
index 6bc7b2a..402c945 100644 (file)
@@ -182,7 +182,7 @@ function maybeToggleNumCopies(obj) {
                              <div class='radio-parts-selection'>
                              [% IF !hdata.part_required %]
                                 <span class='parts-radio-option'>
-                                 <input type='radio' name='part' value='' onchange='maybeToggleNumCopies(this);' required>[% l('All Parts') %]</span>
+                                 <input type='radio' name='part' value='' onchange='maybeToggleNumCopies(this);' required>[% l('Any Part') %]</span>
                               [% END %]
                                [% FOR part IN hdata.parts %]
                                  <span class='parts-radio-option'><input type='radio' name='part' id=[% part.id %] value=[% part.id %] onchange='maybeToggleNumCopies(this);' required>
@@ -195,7 +195,7 @@ function maybeToggleNumCopies(obj) {
                             %]</label></span>
                             <select id='select_hold_part' name='part' onchange='maybeToggleNumCopies(this);'>
                                 [% IF !hdata.part_required %]
-                                <option selected='selected' value=''>[% l('- All Parts -') %]</option>
+                                <option selected='selected' value=''>[% l('- Any Part -') %]</option>
                                 [% END %]
                                 [% FOR part IN hdata.parts %]
                                 <option value='[% part.id %]'>[% part.label | html %]</option>