From f0f75e25c55989cdfa4c030cc27b6e11c347491c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 13 Jun 2024 11:58:42 +0000 Subject: [PATCH] Bug 36905: Terminology: home locations / home collections This patch removes the unnecessary word "home" from several aria-lablels in OPAC facets. I think they were copy-paste errors. To test, apply the patch and perform a catalog search in the OPAC. Since the aria-label isn't visible in the interface, you can check the source to confirm that the "Show more" links for locations, collections, and languages say "Show more locations," "Show more collections," and "Show more languages." --- .../opac-tmpl/bootstrap/en/includes/opac-facets.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 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 a376bbc7bb..bdd65c1e02 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc @@ -121,11 +121,11 @@ [% CASE 'Holding libraries' %] [% aria_label = t("Show more holding libraries") %] [% CASE 'Location' %] - [% aria_label = t("Show more home locations") %] + [% aria_label = t("Show more locations") %] [% CASE 'Collections' %] - [% aria_label = t("Show more home collections") %] + [% aria_label = t("Show more collections") %] [% CASE 'Languages' %] - [% aria_label = t("Show more home languages") %] + [% aria_label = t("Show more languages") %] [% END %] Show more @@ -150,11 +150,11 @@ [% CASE 'Holding libraries' %] [% aria_label = t("Show fewer holding libraries") %] [% CASE 'Location' %] - [% aria_label = t("Show fewer home locations") %] + [% aria_label = t("Show fewer locations") %] [% CASE 'Collections' %] - [% aria_label = t("Show fewer home collections") %] + [% aria_label = t("Show fewer collections") %] [% CASE 'Languages' %] - [% aria_label = t("Show fewer home languages") %] + [% aria_label = t("Show fewer languages") %] [% END %] [% IF aria_label %] -- 2.39.2