UNPKG

multiple-select

Version:

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

31 lines (28 loc) 696 B
/** * Multiple Select ja-JP translation * Author: Nozomi Anzai<nozomi.anzai@gmail.com> */ $.fn.multipleSelect.locales['ja-JP'] = $.fn.multipleSelect.locales['ja'] = { formatSelectAll () { return '[すべて選択]' }, formatAllSelected () { return 'すべて選択' }, formatCountSelected (count, total) { return `${total} 件中 ${count} 件選択` }, formatNoMatchesFound () { return '見つかりません' }, formatFilterAll () { return 'すべて' }, formatFilterSelected () { return '選択済み' }, formatFilterUnselected () { return '未選択' } } $.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['ja-JP'])