-
-
Notifications
You must be signed in to change notification settings - Fork 651
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #473 from wenzhixin/develop
1.4.1
- Loading branch information
Showing
107 changed files
with
5,649 additions
and
1,984 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
$ = $ && $.hasOwnProperty('default') ? $['default'] : $; | ||
|
||
/** | ||
* Multiple Select English translation | ||
* Multiple Select en-US translation | ||
* Author: Zhixin Wen<[email protected]> | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* multiple-select - Multiple select is a jQuery plugin to select multiple elements with checkboxes :). | ||
* | ||
* @version v1.4.0 | ||
* @version v1.4.1 | ||
* @homepage http://multiple-select.wenzhixin.net.cn | ||
* @author wenzhixin <[email protected]> (http://wenzhixin.net.cn/) | ||
* @license MIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
(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 es-ES translation | ||
* Author: Zhixin Wen<[email protected]> | ||
*/ | ||
|
||
$.fn.multipleSelect.locales['es-ES'] = { | ||
formatSelectAll: function formatSelectAll() { | ||
return '[Seleccionar todo]'; | ||
}, | ||
formatAllSelected: function formatAllSelected() { | ||
return 'Todos seleccionados'; | ||
}, | ||
formatCountSelected: function formatCountSelected(count, total) { | ||
return count + ' de ' + total + ' seleccionado'; | ||
}, | ||
formatNoMatchesFound: function formatNoMatchesFound() { | ||
return 'No se encontraron coincidencias'; | ||
} | ||
}; | ||
$.extend($.fn.multipleSelect.defaults, $.fn.multipleSelect.locales['es-ES']); | ||
|
||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* multiple-select - Multiple select is a jQuery plugin to select multiple elements with checkboxes :). | ||
* | ||
* @version v1.4.1 | ||
* @homepage http://multiple-select.wenzhixin.net.cn | ||
* @author wenzhixin <[email protected]> (http://wenzhixin.net.cn/) | ||
* @license MIT | ||
*/ | ||
|
||
(function(a,b){"object"==typeof exports&&"undefined"!=typeof module?b(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],b):(a=a||self,b(a.jQuery))})(this,function(a){'use strict';a=a&&a.hasOwnProperty("default")?a["default"]:a,a.fn.multipleSelect.locales["es-ES"]={formatSelectAll:function(){return"[Seleccionar todo]"},formatAllSelected:function(){return"Todos seleccionados"},formatCountSelected:function(a,b){return a+" de "+b+" seleccionado"},formatNoMatchesFound:function(){return"No se encontraron coincidencias"}},a.extend(a.fn.multipleSelect.defaults,a.fn.multipleSelect.locales["es-ES"])}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
$ = $ && $.hasOwnProperty('default') ? $['default'] : $; | ||
|
||
/** | ||
* Multiple Select English translation | ||
* Multiple Select zh-CN translation | ||
* Author: Zhixin Wen<[email protected]> | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* multiple-select - Multiple select is a jQuery plugin to select multiple elements with checkboxes :). | ||
* | ||
* @version v1.4.0 | ||
* @version v1.4.1 | ||
* @homepage http://multiple-select.wenzhixin.net.cn | ||
* @author wenzhixin <[email protected]> (http://wenzhixin.net.cn/) | ||
* @license MIT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
$ = $ && $.hasOwnProperty('default') ? $['default'] : $; | ||
|
||
/** | ||
* Multiple Select English translation | ||
* Multiple Select zh-TW translation | ||
* Author: Zhixin Wen<[email protected]> | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* multiple-select - Multiple select is a jQuery plugin to select multiple elements with checkboxes :). | ||
* | ||
* @version v1.4.0 | ||
* @version v1.4.1 | ||
* @homepage http://multiple-select.wenzhixin.net.cn | ||
* @author wenzhixin <[email protected]> (http://wenzhixin.net.cn/) | ||
* @license MIT | ||
|
Oops, something went wrong.