From e55fc88a1e3278bcc3c1e91ea6f8df2b53ae0492 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 17 May 2022 12:30:28 +0000 Subject: [PATCH] Bug 30761: Fix typos in OPAC reset password template This patch corrects the word "PLease" to "Please." The patch also adds some periods at the end of some alert strings to make punctuation consistent between different alerts. To test, an inspection of the patch is probably enough. The main fix (the "PLease") only appears when an unknown error occurs. Signed-off-by: David Nind Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit d1f67e4287e888beb205c48a6769d967deb1777e) Signed-off-by: Lucas Gass --- .../opac-tmpl/bootstrap/en/modules/opac-reset-password.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reset-password.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reset-password.tt index c770189a48..dc2f998029 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reset-password.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reset-password.tt @@ -51,16 +51,16 @@ You entered an incorrect username or password. Please try again! But note that passwords are case sensitive[% IF Koha.Preference('FailedLoginAttempts') %] and that your account will be locked out after a fixed number of failed login attempts[% END %]. Please contact a library staff member if you continue to have problems. [% CASE 'no_expire' %] Please log-in to account to update your password.
- + . [% CASE 'account_locked' %] This account has been locked! [% IF Categories.can_any_reset_password && Koha.Preference('OpacBaseURL') %] You must reset your password via e-mail. [% ELSE %] - You must contact the library for assistance + You must contact the library for assistance. [% END %] [% CASE %] - An unknown error occurred. PLease try again or contact the library for assistance + An unknown error occurred. Please try again or contact the library for assistance. [% END %]

-- 2.20.1