UNPKG

2.31 kBJavaScriptView Raw
1(function (global, factory) {
2 typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) :
3 typeof define === 'function' && define.amd ? define(['jquery'], factory) :
4 (global = global || self, factory(global.jQuery));
5}(this, function ($) { 'use strict';
6
7 $ = $ && $.hasOwnProperty('default') ? $['default'] : $;
8
9 /**
10 * Multiple Select English translation
11 * Author: Zhixin Wen<wenzhixin2010@gmail.com>
12 */
13
14 $.fn.multipleSelect.locales['en-US'] = {
15 formatSelectAll: function formatSelectAll() {
16 return '[Select all]';
17 },
18 formatAllSelected: function formatAllSelected() {
19 return 'All selected';
20 },
21 formatCountSelected: function formatCountSelected(count, total) {
22 return count + ' of ' + total + ' selected';
23 },
24 formatNoMatchesFound: function formatNoMatchesFound() {
25 return 'No matches found';
26 }
27 };
28 $.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['en-US']);
29
30 /**
31 * Multiple Select English translation
32 * Author: Zhixin Wen<wenzhixin2010@gmail.com>
33 */
34
35 $.fn.multipleSelect.locales['zh-CN'] = {
36 formatSelectAll: function formatSelectAll() {
37 return '[全选]';
38 },
39 formatAllSelected: function formatAllSelected() {
40 return '已选择所有记录';
41 },
42 formatCountSelected: function formatCountSelected(count, total) {
43 return '已从' + total + '条记录中选择' + count + '条';
44 },
45 formatNoMatchesFound: function formatNoMatchesFound() {
46 return '没有找到记录';
47 }
48 };
49 $.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['zh-CN']);
50
51 /**
52 * Multiple Select English translation
53 * Author: Zhixin Wen<wenzhixin2010@gmail.com>
54 */
55
56 $.fn.multipleSelect.locales['zh-TW'] = {
57 formatSelectAll: function formatSelectAll() {
58 return '[全選]';
59 },
60 formatAllSelected: function formatAllSelected() {
61 return '已選擇所有記錄';
62 },
63 formatCountSelected: function formatCountSelected(count, total) {
64 return '已從' + total + '條記錄中選擇' + count + '條';
65 },
66 formatNoMatchesFound: function formatNoMatchesFound() {
67 return '沒有找到記錄';
68 }
69 };
70 $.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['zh-TW']);
71
72}));