multiple-select
Version:
Multiple select is a jQuery plugin to select multiple elements with checkboxes :).
22 lines (19 loc) • 496 B
JavaScript
/**
* Multiple Select hu-HU translation
* Author: Péter Báthory<bathory86p@gmail.com>
*/
$.fn.multipleSelect.locales['hu-HU'] = {
formatSelectAll () {
return '[Összes kiválasztása]'
},
formatAllSelected () {
return 'Összes kiválasztva'
},
formatCountSelected (count, total) {
return `${count} / ${total} kiválasztva`
},
formatNoMatchesFound () {
return 'Nincs találat'
}
}
$.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['hu-HU'])