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."

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Owen Leonard 2024-06-13 11:58:42 +00:00 committed by Katrin Fischer
parent 149412cb62
commit 66981d89c2
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -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 %]
<a href="#" aria-label="[% aria_label | html | trim %]"><strong>Show more</strong></a>
@ -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 %]