|
Lines 238-246
Link Here
|
| 238 |
<label for="masthead_search" class="visually-hidden">Search the catalog by:</label> |
238 |
<label for="masthead_search" class="visually-hidden">Search the catalog by:</label> |
| 239 |
<select name="idx" id="masthead_search" class="form-select"> |
239 |
<select name="idx" id="masthead_search" class="form-select"> |
| 240 |
[% IF ( ms_kw ) %] |
240 |
[% IF ( ms_kw ) %] |
| 241 |
<option selected="selected" value="" data-placeholder="[% t("Search the catalog by keyword") | html %]">Library catalog</option> |
241 |
<option selected="selected" value="" data-placeholder="[% t("Search the catalog") | html %]">Library catalog</option> |
| 242 |
[% ELSE %] |
242 |
[% ELSE %] |
| 243 |
<option value="" data-placeholder="[% t("Search the catalog by keyword") | html %]">Library catalog</option> |
243 |
<option value="" data-placeholder="[% t("Search the catalog") | html %]">Library catalog</option> |
| 244 |
[% END # /ms_kw %] |
244 |
[% END # /ms_kw %] |
| 245 |
[% IF ( ms_ti ) %] |
245 |
[% IF ( ms_ti ) %] |
| 246 |
<option selected="selected" value="ti" data-placeholder="[% t("Search the catalog by title") | html %]">Title</option> |
246 |
<option selected="selected" value="ti" data-placeholder="[% t("Search the catalog by title") | html %]">Title</option> |
|
Lines 291-297
Link Here
|
| 291 |
|
291 |
|
| 292 |
<div class="col order-4 order-sm-3"> |
292 |
<div class="col order-4 order-sm-3"> |
| 293 |
[% IF ( !Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 && mylibraryfirst ) %] |
293 |
[% IF ( !Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 && mylibraryfirst ) %] |
| 294 |
<label for="translControl1" class="visually-hidden">Search the catalog by keyword in [% Branches.GetName( mylibraryfirst ) | html %]</label> |
294 |
<label for="translControl1" class="visually-hidden">Search the catalog in [% Branches.GetName( mylibraryfirst ) | html %]</label> |
| 295 |
<input |
295 |
<input |
| 296 |
type="text" |
296 |
type="text" |
| 297 |
class="transl1 form-control form-control-filtered" |
297 |
class="transl1 form-control form-control-filtered" |
|
Lines 301-311
Link Here
|
| 301 |
data-bs-toggle="tooltip" |
301 |
data-bs-toggle="tooltip" |
| 302 |
data-bs-placement="top" |
302 |
data-bs-placement="top" |
| 303 |
title="Searching in [% Branches.GetName( mylibraryfirst ) | html %] only" |
303 |
title="Searching in [% Branches.GetName( mylibraryfirst ) | html %] only" |
| 304 |
placeholder="Search the catalog by keyword" |
304 |
placeholder="Search the catalog" |
| 305 |
/><span id="translControl"></span> |
305 |
/><span id="translControl"></span> |
| 306 |
[% ELSE %] |
306 |
[% ELSE %] |
| 307 |
<label for="translControl1" class="visually-hidden">Search the catalog by keyword</label> |
307 |
<label for="translControl1" class="visually-hidden">Search the catalog</label> |
| 308 |
<input type="text" class="transl1 form-control" id="translControl1" name="q" value="[% ms_value | html %]" placeholder="Search the catalog by keyword" /><span id="translControl"></span> |
308 |
<input type="text" class="transl1 form-control" id="translControl1" name="q" value="[% ms_value | html %]" placeholder="Search the catalog" /><span id="translControl"></span> |
| 309 |
[% END # /ms_value %] |
309 |
[% END # /ms_value %] |
| 310 |
</div> |
310 |
</div> |
| 311 |
<!-- /.col --> |
311 |
<!-- /.col --> |
| 312 |
- |
|
|