(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('jquery')) : typeof define === 'function' && define.amd ? define(['jquery'], factory) : (global = global || self, factory(global.jQuery)); }(this, function ($) { 'use strict'; $ = $ && $.hasOwnProperty('default') ? $['default'] : $; /** * Multiple Select zh-TW translation * Author: Zhixin Wen */ $.fn.multipleSelect.locales['zh-TW'] = { formatSelectAll: function formatSelectAll() { return '[全選]'; }, formatAllSelected: function formatAllSelected() { return '已選擇所有記錄'; }, formatCountSelected: function formatCountSelected(count, total) { return '已從' + total + '條記錄中選擇' + count + '條'; }, formatNoMatchesFound: function formatNoMatchesFound() { return '沒有找到記錄'; } }; $.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['zh-TW']); }));