From 2b3c253708df62544cce7a8ccbcdc950836a0aec Mon Sep 17 00:00:00 2001 From: Aleisha Date: Thu, 14 Jan 2016 22:00:41 +0000 Subject: [PATCH] Bug 15573: String and translatability fix to Patron Card Creator Fixing the split string To test: 1) Go to Tools -> Patron Card Creator -> Manage -> Card batches 2) Confirm the table heading reads 'Patron Count' 3) Edit a batch 4) Click Remove duplicates 5) Confirm it reads 'Duplicates removed from batch number X: Y patron(s)' Signed-off-by: Hector Castro Works as described. Rewording Ok for translatability purpose Signed-off-by: Kyle M Hall Signed-off-by: Brendan A Gallagher (cherry picked from commit a3d2de6248386d0efc91c317f2c2e84d936198f6) Signed-off-by: Julian Maurice --- .../intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt | 2 +- patroncards/manage.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt index c2288d9e2a..402248e65e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-batch.tt @@ -179,7 +179,7 @@ [% IF ( duplicate_message ) %]
- [% duplicate_count %] duplicate patron(s) found and removed from batch [% batch_id %]. + Duplicates removed from batch number [% batch_id %]: [% duplicate_count %] patron(s)
[% END %] diff --git a/patroncards/manage.pl b/patroncards/manage.pl index bd420b9642..10cbe2c81a 100755 --- a/patroncards/manage.pl +++ b/patroncards/manage.pl @@ -69,7 +69,7 @@ my $display_columns = { layout => [ # db column => {col label {select => {label => 'Select', value => 'profile_id'}}, ], batch => [ {batch_id => {label => 'Batch ID', link_field => 0}}, - {_item_count => {label => 'Item Count', link_field => 0}}, + {_item_count => {label => 'Patron Count', link_field => 0}}, {_action => {label => 'Actions', link_field => 0}}, {select => {label => 'Select', value => 'batch_id'}}, ], -- 2.39.5