(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 en-US translation * Author: Zhixin Wen */ $.fn.multipleSelect.locales['en-US'] = { formatSelectAll: function formatSelectAll() { return '[Select all]'; }, formatAllSelected: function formatAllSelected() { return 'All selected'; }, formatCountSelected: function formatCountSelected(count, total) { return count + ' of ' + total + ' selected'; }, formatNoMatchesFound: function formatNoMatchesFound() { return 'No matches found'; } }; $.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['en-US']); }));