LP1902120 Rename All Parts to Any Part in Hold Placement user/mccanna/lp1902120_parts_hold_wording
authorTerran McCanna <tmccanna@georgialibraries.org>
Thu, 10 Dec 2020 18:28:49 +0000 (13:28 -0500)
committerTerran McCanna <tmccanna@georgialibraries.org>
Thu, 10 Dec 2020 18:28:49 +0000 (13:28 -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 419e7c1..7abcbe0 100755 (executable)
@@ -157,7 +157,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>
@@ -170,7 +170,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 1f0989d..dd30cf5 100644 (file)
@@ -156,7 +156,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>
@@ -169,7 +169,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>