From be089cedc5a1b716f016d043d15c6e8c5ff58d0a Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 5 Feb 2023 02:24:58 +0100 Subject: [PATCH] Bug 32294: Fix capitalization for user ID in self checkout Fixes capitalization of "user ID" on the self checkout help page. To test: * Enable WebBasedSelfCheck * Go to: /cgi-bin/koha/sco/sco-main.pl in the OPAC * Log in and open help * Verify there is a User ID within a sentence and a User id in the heading * Apply patch * Both should be corrected Signed-off-by: Owen Leonard Signed-off-by: Lucas Gass --- koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt index c47149f702c..b01c769dad6 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/help.tt @@ -35,9 +35,9 @@ is not behaving as expected, you may want to refer to this guide to get yourself started.

-

Step one: Enter your user id[% IF ( SelfCheckoutByLogin ) %] and password[% END %]

+

Step one: Enter your user ID[% IF ( SelfCheckoutByLogin ) %] and password[% END %]

-

Enter your User ID[% IF ( SelfCheckoutByLogin ) %] and password[% END %], and click the +

Enter your user ID[% IF ( SelfCheckoutByLogin ) %] and password[% END %], and click the submit button (or press the enter key).

Step two: Scan the barcode for each item, one at a time

-- 2.30.2