Bug 18433: Display the number of selected items

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Jonathan Druart 2020-02-18 09:57:45 +01:00 committed by Martin Renvoize
parent 7b0ad20f69
commit a810971053
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -524,7 +524,7 @@
var caret = ' <span class="caret">';
if (itemnumbers.size > 0) {
$('#export-button').html(_("Export selected results to") + caret);
$('#export-button').html(_("Export selected results (%s) to").format(itemnumbers.size) + caret);
} else {
$('#export-button').html(_("Export all results to") + caret);
}