From 6434c6b69b8482069988edaf3bf73fe80e7935aa Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 24 Oct 2022 22:44:21 +0200 Subject: [PATCH] Bug 31877: Fix capitalization: "Delete this Tag" and "Repeat this Tag" To get to the string in the staff interface: 1. In the staff interface, go to Cataloging 2. Click "New record" 3. Hover the mouse cursor over one of the delete tag buttons (rectangle with a small x next to the tag title) --> a little popup thing (tooltip?) appears with "Delete this Tag" 4. Open the developper tools inspector in your browser 5. Click on the delete tag button --> the image alt text is "Delete this Tag" 6. Repeat the same check in the authorities editor 7. Apply patch 8. All tooltips and alt text should read correctly now --- .../prog/en/modules/authorities/authorities.tt | 8 ++++---- .../prog/en/modules/cataloguing/addbiblio.tt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt index 1b068ded6d..4a744bf144 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt @@ -465,12 +465,12 @@ [% END %] [% IF ( innerloo.repeatable ) %] - - Repeat this Tag + + Repeat this tag [% END %] - - Delete this Tag + + Delete this tag diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt index f16f5c8147..5ec7a309d1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt @@ -1084,12 +1084,12 @@ function PopupMARCFieldDoc(field) { [% IF ( innerloo.repeatable ) %] - - Repeat this Tag + + Repeat this tag [% END %] - - Delete this Tag + + Delete this tag -- 2.30.2