multiple-select
Version:
Multiple select is a jQuery plugin to select multiple elements with checkboxes :).
31 lines (28 loc) • 691 B
JavaScript
/**
* Multiple Select vi-VN translation
* Author: hoangbaovu <ineo.vn>
*/
$.fn.multipleSelect.locales['vi-VN'] = $.fn.multipleSelect.locales['vi'] = {
formatSelectAll () {
return '[Tất cả]'
},
formatAllSelected () {
return 'Chọn tất cả'
},
formatCountSelected (count, total) {
return `Đã chọn ${count} trong ${total}`
},
formatNoMatchesFound () {
return 'Không tìm thấy kết quả.'
},
formatFilterAll () {
return 'Tất cả'
},
formatFilterSelected () {
return 'Đã chọn'
},
formatFilterUnselected () {
return 'Chưa chọn'
}
}
$.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['vi-VN'])