@@ -, +, @@ --- .../intranet-tmpl/prog/en/modules/labels/label-print.tt | 6 +++--- .../intranet-tmpl/prog/en/modules/patroncards/print.tt | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-print.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-print.tt @@ -58,11 +58,11 @@ [% ELSE %]

[% IF ( label_ids ) %] - [% IF ( label_count == 1 ) %]Exporting [% label_count | html %] label[% ELSE %]Exporting [% label_count | html %] labels[% END %] + [% IF ( label_count == 1 ) %]Exporting 1 label[% ELSE %]Exporting [% label_count | html %] labels[% END %] [% ELSIF ( item_numbers ) %] - [% IF ( item_count == 1 ) %]Exporting [% item_count | html %] label[% ELSE %]Exporting [% item_count | html %] labels[% END %] + [% IF ( item_count == 1 ) %]Exporting 1 label[% ELSE %]Exporting [% item_count | html %] labels[% END %] [% ELSE %] - [% IF ( multi_batch_count == 1 ) %][% multi_batch_count | html %] batch to export[% ELSE %][% multi_batch_count | html %] batches to export[% END %] + [% IF ( multi_batch_count == 1 ) %]1 batch to export[% ELSE %][% multi_batch_count | html %] batches to export[% END %] [% END %]

--- a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/print.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/print.tt @@ -46,12 +46,12 @@ [% ELSE %]

[% IF ( label_ids ) %] - [% IF ( card_count == 1 ) %]Exporting [% card_count | html %] patron card[% ELSE %]Exporting [% card_count | html %] patron cards[% END %] + [% IF ( card_count == 1 ) %]Exporting 1 patron card[% ELSE %]Exporting [% card_count | html %] patron cards[% END %] [% ELSIF ( borrower_numbers ) %] - [% IF ( borrower_count == 1 ) %]Exporting [% borrower_count | html %] patron card[% ELSE %]Exporting [% borrower_count | html %] patron cards[% END %] + [% IF ( borrower_count == 1 ) %]Exporting 1 patron card[% ELSE %]Exporting [% borrower_count | html %] patron cards[% END %] [% ELSIF ( patronlist_id ) %] Exporting from patron list [% ELSE %] - [% IF ( multi_batch_count == 1 ) %][% multi_batch_count | html %] batch to export[% ELSE %][% multi_batch_count | html %] batches to export[% END %] + [% IF ( multi_batch_count == 1 ) %]1 batch to export[% ELSE %][% multi_batch_count | html %] batches to export[% END %] [% END %]

--