Currently, when placing a parts hold, the interface refers to the default
choice of "All Parts". This has been found misleading for some patrons/staff
who believe that the hold being created is a single hold against "all" of the
part items.
Calling it "Any Part" instead may help to clear up the fact that the part hold
being created can target any part, rather than all of them.
Signed-off-by: Ben Shum <bshum@biblio.org>
<span>[% hdata.part_required ? l('Select a Part:') : l('Select a Part (optional):') %]</span>
<select name='part'>
[% 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>