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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences.tt (-2 / +7 lines)
Lines 17-23 Link Here
17
        });[% END %]
17
        });[% END %]
18
18
19
    $(document).ready(function(){
19
    $(document).ready(function(){
20
        $("select[multiple='multiple']").multipleSelect( { placeholder: _("Please select ...") } );
20
        $("select[multiple='multiple']").multipleSelect( {
21
            placeholder: _("Please select ..."),
22
            selectAllText: _("Select all"),
23
            allSelected: _("All selected"),
24
            countSelected: _("# of % selected"),
25
            noMatchesFound: _("No matches found")
26
        } );
21
    });
27
    });
22
    // This is here because of its dependence on template variables, everything else should go in js/pages/preferences.js - jpw
28
    // This is here because of its dependence on template variables, everything else should go in js/pages/preferences.js - jpw
23
    var to_highlight = "[% searchfield |replace("'", "\'") |replace('"', '\"') |replace('\n', '\\n') |replace('\r', '\\r') %]";
29
    var to_highlight = "[% searchfield |replace("'", "\'") |replace('"', '\"') |replace('\n', '\\n') |replace('\r', '\\r') %]";
24
- 

Return to bug 9043