View | Details | Raw Unified | Return to bug 39032
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt (-2 / +1 lines)
Lines 370-376 Link Here
370
        function showItemSelections( number ){
370
        function showItemSelections( number ){
371
            let caret = ' <span class="caret">';
371
            let caret = ' <span class="caret">';
372
            if( number > 0 ){
372
            if( number > 0 ){
373
                $("#table_search_selections").show().find("span").text(_("Items selected: " + number ) );
373
                $("#table_search_selections").show().find("span").html(_("Items selected: ") + number );
374
                $("#batch_mod_menu").removeClass("disabled").prop("disabled", false);
374
                $("#batch_mod_menu").removeClass("disabled").prop("disabled", false);
375
                $("#export-button").html(_("Export selected results (%s) to").format  ( number ) + caret);
375
                $("#export-button").html(_("Export selected results (%s) to").format  ( number ) + caret);
376
            } else {
376
            } else {
377
- 

Return to bug 39032