From e8ecb9870860e9c7174444fc90f2934f4aa25db8 Mon Sep 17 00:00:00 2001 From: Aleisha Date: Tue, 26 Jan 2016 02:12:38 +0000 Subject: [PATCH] Bug 15662: String and translatability fix to Label Creator Content-Type: text/plain; charset=utf-8 To test: 1) Go to Tools -> Label Creator -> New label batch 2) Add an item 3) Click 'Remove selected items' button. Confirm message now reads "Please select at least one label to delete." 4) Click 'Remove duplicates' button. Confirm message now reads "Duplicate item(s) removed from batch number X: Y", all in bold. Signed-off-by: Hector Castro Rewording Ok for translatability purpose Signed-off-by: Marcel de Rooy --- koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt index eb89d6e..5d40dc7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-batch.tt @@ -39,7 +39,7 @@ var msg = "Are you sure you want to remove label number(s): " + item_msg + " from this batch?" } else { - alert(_("Please select at least label to delete.")); + alert(_("Please select at least one label to delete.")); return; // no item selected } var answer = confirm(msg); @@ -179,7 +179,7 @@ [% ELSIF ( duplicate_message ) %]
- [% duplicate_count %] duplicate item(s) found and removed from batch [% batch_id %]. + Duplicate item(s) removed from batch number [% batch_id %]: [% duplicate_count %]
[% END %] -- 1.7.10.4