From b8e7362fc21a7df8ca917be475625dbaea277b54 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 --- .../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 c770189a485..dc2f998029a 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.25.1