(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 it-IT translation * Author: Giuseppe Lodi Rizzini */ $.fn.multipleSelect.locales['it-IT'] = { formatSelectAll: function formatSelectAll() { return '[Seleziona tutti]'; }, formatAllSelected: function formatAllSelected() { return 'Tutti selezionati'; }, formatCountSelected: function formatCountSelected(count, total) { return count + ' di ' + total + ' selezionati'; }, formatNoMatchesFound: function formatNoMatchesFound() { return 'Nessun risultato'; } }; $.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['it-IT']); }));