UNPKG

multiple-select

Version:

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

29 lines (25 loc) 854 B
(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) : typeof define === 'function' && define.amd ? define(['jquery'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.jQuery)); })(this, (function ($) { 'use strict'; /** * 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']); }));