UNPKG

473 BJavaScriptView Raw
1/**
2 * Multiple Select en-US translation
3 * Author: Zhixin Wen<wenzhixin2010@gmail.com>
4 */
5
6$.fn.multipleSelect.locales['en-US'] = {
7 formatSelectAll () {
8 return '[Select all]'
9 },
10 formatAllSelected () {
11 return 'All selected'
12 },
13 formatCountSelected (count, total) {
14 return `${count} of ${total} selected`
15 },
16 formatNoMatchesFound () {
17 return 'No matches found'
18 }
19}
20
21$.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['en-US'])