@@ -, +, @@ and increases user comprehension --- .../intranet-tmpl/prog/en/modules/members/two_factor_auth.tt | 4 ++-- t/db_dependent/selenium/authentication_2fa.t | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/two_factor_auth.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/two_factor_auth.tt @@ -54,7 +54,7 @@ [% IF invalid_pin %] -
Invalid pin code
+
Invalid PIN code
[% END %]
@@ -67,7 +67,7 @@
  • - +
  • --- a/t/db_dependent/selenium/authentication_2fa.t +++ a/t/db_dependent/selenium/authentication_2fa.t @@ -70,7 +70,7 @@ SKIP: { $s->fill_form({pin_code => 'wrong_code'}); $s->submit_form; - ok($driver->find_element('//div[@class="dialog error"][contains(text(), "Invalid pin code")]')); + ok($driver->find_element('//div[@class="dialog error"][contains(text(), "Invalid PIN code")]')); is( $patron->get_from_storage->secret, undef, 'secret is not set in DB yet' ); my $secret32 = $driver->find_element('//form[@id="two-factor-auth"]//input[@name="secret32"]')->get_value(); --