UNPKG

multiple-select

Version:

Multiple select is a jQuery plugin to select multiple elements with checkboxes :).

22 lines (19 loc) 466 B
/** * Multiple Select cz-CS translation * Author: Matej Puhony<info@puhony.eu> */ $.fn.multipleSelect.locales['cz-CS'] = { formatSelectAll () { return '[Vybrat vše]' }, formatAllSelected () { return 'Vše vybráno' }, formatCountSelected (count, total) { return `${count} z ${total} vybráno` }, formatNoMatchesFound () { return 'Nebylo nalezeno' } } $.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['cz-CS'])