/** * Multiple Select hu-HU translation * Author: Péter Báthory */ $.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'])