/** * Multiple Select vi-VN translation * Author: hoangbaovu */ $.fn.multipleSelect.locales['vi-VN'] = { 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ả.' } } $.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['vi-VN'])