From 75a896091a97d2cbef30b20b0893f6574cc52c35 Mon Sep 17 00:00:00 2001 From: Lari Taskula Date: Mon, 16 Sep 2024 13:15:34 +0000 Subject: [PATCH] Bug 37931: Fix OPAC item type facet label To test: 1. Have additional language installed and set up for OPAC 2. Search something 3. Notice "Item types" facet label untranslated 4. Apply patch and make sure translations are updated 5. Observe facet label "Item types" translated 6. See patch [1] "Bug 36750: Fix some labels" in Bug 36750 7. Observe item type change missing for OPAC but present in staff client [1] https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=166289 Signed-off-by: Jonathan Druart --- koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc index bdd65c1e02a..5ce3bdcb6c4 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc @@ -53,7 +53,7 @@

Places

[% CASE 'Series' %]

Series

- [% CASE 'ItemTypes' %] + [% CASE 'Item types' %]

Item types

[% CASE 'Home libraries' %]

Home libraries

@@ -114,7 +114,7 @@ [% aria_label = t("Show more places") %] [% CASE 'Series' %] [% aria_label = t("Show more series") %] - [% CASE 'ItemTypes' %] + [% CASE 'Item types' %] [% aria_label = t("Show more item types") %] [% CASE 'Home libraries' %] [% aria_label = t("Show more home libraries") %] -- 2.34.1