From 8269bdec3a5c9aa4a67e3be00313c842e9706d31 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 30 Aug 2021 13:08:31 +0000 Subject: [PATCH] Bug 16446: (follow-up) Fix translation and adjust radio buttons --- .../prog/en/modules/patron_lists/list.tt | 46 +++++++++++++------ 1 file changed, 31 insertions(+), 15 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt index 9965b297d0..83f8402ed6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt @@ -58,10 +58,18 @@

[% list.name | html %]

[% IF ( not_found.size > 0 ) %] -

Warning, the following [% id_column | html %] were not found:

+ [% IF id_column == 'borrowernumbers' %] +

Warning, the following borrowernumbers were not found:

+ [% ELSE %] +

Warning, the following cardnumbers were not found:

+ [% END %] - + [% IF id_column == 'borrowernumbers' %] + + [% ELSE %] + + [% END %] [% FOREACH nf IN not_found %] @@ -72,10 +80,18 @@ [% END %] [% IF ( existed.size > 0 ) %] -

Warning, the following [% id_column | html %] were already in this list:

+ [% IF id_column == 'borrowernumbers' %] +

Warning, the following borrowernumbers were already in this list:

+ [% ELSE %] +

Warning, the following cardnumbers were already in this list:

+ [% END %]
[% id_column | html FILTER ucfirst %] not found
Borrowernumbers not found
Cardnumbers not found
- + [% IF id_column == 'borrowernumbers' %] + + [% ELSE %] + + [% END %] [% FOREACH ed IN existed %] @@ -99,23 +115,23 @@
  •   Add multiple patrons
  • -
  • -
    - Choose type of ID to enter - -
    - - -
  • + +
  • + + +
  • +
    -- 2.20.1
    [% id_column | html FILTER ucfirst %] already in list
    Borrowernumbers already in list
    Cardnumbers already in list