Added Spanish translation and fixed the example
This commit is contained in:
parent
69fb428e01
commit
c7e8f81595
@ -9,7 +9,8 @@ module.exports = function (grunt) {
|
|||||||
];
|
];
|
||||||
|
|
||||||
fullIncludes = [
|
fullIncludes = [
|
||||||
'jquery'
|
'jquery',
|
||||||
|
'select2/compat/matcher'
|
||||||
].concat(includes);
|
].concat(includes);
|
||||||
|
|
||||||
var i18nModules = [];
|
var i18nModules = [];
|
||||||
|
1
dist/js/i18n/es.js
vendored
Normal file
1
dist/js/i18n/es.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
window.$=window.$||{},function(){$&&$.fn&&$.fn.select2&&$.fn.select2.amd&&(define=$.fn.select2.amd.define,require=$.fn.select2.amd.require),define("select2/i18n/es",[],function(){return{inputTooShort:function(e){var t="Por favor, introduzca "+remainingChars+" car";return remainingChars==1?t+="ácter":t+="acteres",t},loadingMore:function(){return"Cargando más resultados…"},noResults:function(){return"No se encontraron resultados"}}}),require("jquery.select2"),$.fn.select2.amd={define:define,require:require}}();
|
89
dist/js/select2.amd.full.js
vendored
89
dist/js/select2.amd.full.js
vendored
@ -1636,49 +1636,6 @@ define('select2/i18n/en',[],function () {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
define('select2/compat/matcher',[
|
|
||||||
|
|
||||||
], function () {
|
|
||||||
function oldMatcher (matcher) {
|
|
||||||
function wrappedMatcher (params, data) {
|
|
||||||
var match = $.extend(true, {}, data);
|
|
||||||
|
|
||||||
if (params.term == null || $.trim(params.term) === '') {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (data.children) {
|
|
||||||
for (var c = data.children.length - 1; c >= 0; c--) {
|
|
||||||
var child = data.children[c];
|
|
||||||
|
|
||||||
// Check if the child object matches
|
|
||||||
// The old matcher returned a boolean true or false
|
|
||||||
var doesMatch = matcher(params.term, child.text, child);
|
|
||||||
|
|
||||||
// If the child didn't match, pop it off
|
|
||||||
if (!doesMatch) {
|
|
||||||
match.children.splice(c, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (match.children.length > 0) {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (matcher(params.term, data.text, data)) {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return wrappedMatcher;
|
|
||||||
}
|
|
||||||
|
|
||||||
return oldMatcher;
|
|
||||||
});
|
|
||||||
|
|
||||||
define('select2/defaults',[
|
define('select2/defaults',[
|
||||||
'jquery',
|
'jquery',
|
||||||
'./results',
|
'./results',
|
||||||
@ -1701,8 +1658,7 @@ define('select2/defaults',[
|
|||||||
'./dropdown/hidePlaceholder',
|
'./dropdown/hidePlaceholder',
|
||||||
'./dropdown/infiniteScroll',
|
'./dropdown/infiniteScroll',
|
||||||
|
|
||||||
'./i18n/en',
|
'./i18n/en'
|
||||||
'./compat/matcher'
|
|
||||||
], function ($, ResultsList,
|
], function ($, ResultsList,
|
||||||
SingleSelection, MultipleSelection, Placeholder,
|
SingleSelection, MultipleSelection, Placeholder,
|
||||||
Utils, Translation,
|
Utils, Translation,
|
||||||
@ -2218,6 +2174,49 @@ define('select2/core',[
|
|||||||
return Select2;
|
return Select2;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
define('select2/compat/matcher',[
|
||||||
|
|
||||||
|
], function () {
|
||||||
|
function oldMatcher (matcher) {
|
||||||
|
function wrappedMatcher (params, data) {
|
||||||
|
var match = $.extend(true, {}, data);
|
||||||
|
|
||||||
|
if (params.term == null || $.trim(params.term) === '') {
|
||||||
|
return match;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.children) {
|
||||||
|
for (var c = data.children.length - 1; c >= 0; c--) {
|
||||||
|
var child = data.children[c];
|
||||||
|
|
||||||
|
// Check if the child object matches
|
||||||
|
// The old matcher returned a boolean true or false
|
||||||
|
var doesMatch = matcher(params.term, child.text, child);
|
||||||
|
|
||||||
|
// If the child didn't match, pop it off
|
||||||
|
if (!doesMatch) {
|
||||||
|
match.children.splice(c, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (match.children.length > 0) {
|
||||||
|
return match;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (matcher(params.term, data.text, data)) {
|
||||||
|
return match;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return wrappedMatcher;
|
||||||
|
}
|
||||||
|
|
||||||
|
return oldMatcher;
|
||||||
|
});
|
||||||
|
|
||||||
define('jquery.select2',[
|
define('jquery.select2',[
|
||||||
'jquery',
|
'jquery',
|
||||||
'select2/core'
|
'select2/core'
|
||||||
|
46
dist/js/select2.amd.js
vendored
46
dist/js/select2.amd.js
vendored
@ -1636,49 +1636,6 @@ define('select2/i18n/en',[],function () {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
define('select2/compat/matcher',[
|
|
||||||
|
|
||||||
], function () {
|
|
||||||
function oldMatcher (matcher) {
|
|
||||||
function wrappedMatcher (params, data) {
|
|
||||||
var match = $.extend(true, {}, data);
|
|
||||||
|
|
||||||
if (params.term == null || $.trim(params.term) === '') {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (data.children) {
|
|
||||||
for (var c = data.children.length - 1; c >= 0; c--) {
|
|
||||||
var child = data.children[c];
|
|
||||||
|
|
||||||
// Check if the child object matches
|
|
||||||
// The old matcher returned a boolean true or false
|
|
||||||
var doesMatch = matcher(params.term, child.text, child);
|
|
||||||
|
|
||||||
// If the child didn't match, pop it off
|
|
||||||
if (!doesMatch) {
|
|
||||||
match.children.splice(c, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (match.children.length > 0) {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (matcher(params.term, data.text, data)) {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return wrappedMatcher;
|
|
||||||
}
|
|
||||||
|
|
||||||
return oldMatcher;
|
|
||||||
});
|
|
||||||
|
|
||||||
define('select2/defaults',[
|
define('select2/defaults',[
|
||||||
'jquery',
|
'jquery',
|
||||||
'./results',
|
'./results',
|
||||||
@ -1701,8 +1658,7 @@ define('select2/defaults',[
|
|||||||
'./dropdown/hidePlaceholder',
|
'./dropdown/hidePlaceholder',
|
||||||
'./dropdown/infiniteScroll',
|
'./dropdown/infiniteScroll',
|
||||||
|
|
||||||
'./i18n/en',
|
'./i18n/en'
|
||||||
'./compat/matcher'
|
|
||||||
], function ($, ResultsList,
|
], function ($, ResultsList,
|
||||||
SingleSelection, MultipleSelection, Placeholder,
|
SingleSelection, MultipleSelection, Placeholder,
|
||||||
Utils, Translation,
|
Utils, Translation,
|
||||||
|
89
dist/js/select2.full.js
vendored
89
dist/js/select2.full.js
vendored
@ -11171,49 +11171,6 @@ define('select2/i18n/en',[],function () {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
define('select2/compat/matcher',[
|
|
||||||
|
|
||||||
], function () {
|
|
||||||
function oldMatcher (matcher) {
|
|
||||||
function wrappedMatcher (params, data) {
|
|
||||||
var match = $.extend(true, {}, data);
|
|
||||||
|
|
||||||
if (params.term == null || $.trim(params.term) === '') {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (data.children) {
|
|
||||||
for (var c = data.children.length - 1; c >= 0; c--) {
|
|
||||||
var child = data.children[c];
|
|
||||||
|
|
||||||
// Check if the child object matches
|
|
||||||
// The old matcher returned a boolean true or false
|
|
||||||
var doesMatch = matcher(params.term, child.text, child);
|
|
||||||
|
|
||||||
// If the child didn't match, pop it off
|
|
||||||
if (!doesMatch) {
|
|
||||||
match.children.splice(c, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (match.children.length > 0) {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (matcher(params.term, data.text, data)) {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return wrappedMatcher;
|
|
||||||
}
|
|
||||||
|
|
||||||
return oldMatcher;
|
|
||||||
});
|
|
||||||
|
|
||||||
define('select2/defaults',[
|
define('select2/defaults',[
|
||||||
'jquery',
|
'jquery',
|
||||||
'./results',
|
'./results',
|
||||||
@ -11236,8 +11193,7 @@ define('select2/defaults',[
|
|||||||
'./dropdown/hidePlaceholder',
|
'./dropdown/hidePlaceholder',
|
||||||
'./dropdown/infiniteScroll',
|
'./dropdown/infiniteScroll',
|
||||||
|
|
||||||
'./i18n/en',
|
'./i18n/en'
|
||||||
'./compat/matcher'
|
|
||||||
], function ($, ResultsList,
|
], function ($, ResultsList,
|
||||||
SingleSelection, MultipleSelection, Placeholder,
|
SingleSelection, MultipleSelection, Placeholder,
|
||||||
Utils, Translation,
|
Utils, Translation,
|
||||||
@ -11753,6 +11709,49 @@ define('select2/core',[
|
|||||||
return Select2;
|
return Select2;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
define('select2/compat/matcher',[
|
||||||
|
|
||||||
|
], function () {
|
||||||
|
function oldMatcher (matcher) {
|
||||||
|
function wrappedMatcher (params, data) {
|
||||||
|
var match = $.extend(true, {}, data);
|
||||||
|
|
||||||
|
if (params.term == null || $.trim(params.term) === '') {
|
||||||
|
return match;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data.children) {
|
||||||
|
for (var c = data.children.length - 1; c >= 0; c--) {
|
||||||
|
var child = data.children[c];
|
||||||
|
|
||||||
|
// Check if the child object matches
|
||||||
|
// The old matcher returned a boolean true or false
|
||||||
|
var doesMatch = matcher(params.term, child.text, child);
|
||||||
|
|
||||||
|
// If the child didn't match, pop it off
|
||||||
|
if (!doesMatch) {
|
||||||
|
match.children.splice(c, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (match.children.length > 0) {
|
||||||
|
return match;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (matcher(params.term, data.text, data)) {
|
||||||
|
return match;
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return wrappedMatcher;
|
||||||
|
}
|
||||||
|
|
||||||
|
return oldMatcher;
|
||||||
|
});
|
||||||
|
|
||||||
define('jquery.select2',[
|
define('jquery.select2',[
|
||||||
'jquery',
|
'jquery',
|
||||||
'select2/core'
|
'select2/core'
|
||||||
|
2
dist/js/select2.full.min.js
vendored
2
dist/js/select2.full.min.js
vendored
File diff suppressed because one or more lines are too long
46
dist/js/select2.js
vendored
46
dist/js/select2.js
vendored
@ -2064,49 +2064,6 @@ define('select2/i18n/en',[],function () {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
define('select2/compat/matcher',[
|
|
||||||
|
|
||||||
], function () {
|
|
||||||
function oldMatcher (matcher) {
|
|
||||||
function wrappedMatcher (params, data) {
|
|
||||||
var match = $.extend(true, {}, data);
|
|
||||||
|
|
||||||
if (params.term == null || $.trim(params.term) === '') {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (data.children) {
|
|
||||||
for (var c = data.children.length - 1; c >= 0; c--) {
|
|
||||||
var child = data.children[c];
|
|
||||||
|
|
||||||
// Check if the child object matches
|
|
||||||
// The old matcher returned a boolean true or false
|
|
||||||
var doesMatch = matcher(params.term, child.text, child);
|
|
||||||
|
|
||||||
// If the child didn't match, pop it off
|
|
||||||
if (!doesMatch) {
|
|
||||||
match.children.splice(c, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (match.children.length > 0) {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (matcher(params.term, data.text, data)) {
|
|
||||||
return match;
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return wrappedMatcher;
|
|
||||||
}
|
|
||||||
|
|
||||||
return oldMatcher;
|
|
||||||
});
|
|
||||||
|
|
||||||
define('select2/defaults',[
|
define('select2/defaults',[
|
||||||
'jquery',
|
'jquery',
|
||||||
'./results',
|
'./results',
|
||||||
@ -2129,8 +2086,7 @@ define('select2/defaults',[
|
|||||||
'./dropdown/hidePlaceholder',
|
'./dropdown/hidePlaceholder',
|
||||||
'./dropdown/infiniteScroll',
|
'./dropdown/infiniteScroll',
|
||||||
|
|
||||||
'./i18n/en',
|
'./i18n/en'
|
||||||
'./compat/matcher'
|
|
||||||
], function ($, ResultsList,
|
], function ($, ResultsList,
|
||||||
SingleSelection, MultipleSelection, Placeholder,
|
SingleSelection, MultipleSelection, Placeholder,
|
||||||
Utils, Translation,
|
Utils, Translation,
|
||||||
|
2
dist/js/select2.min.js
vendored
2
dist/js/select2.min.js
vendored
File diff suppressed because one or more lines are too long
@ -4,6 +4,8 @@ title: Examples - Select2
|
|||||||
slug: examples
|
slug: examples
|
||||||
---
|
---
|
||||||
|
|
||||||
|
<script type="text/javascript" src="dist/js/i18n/es.js"></script>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<section id="basic" class="row">
|
<section id="basic" class="row">
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
@ -343,7 +345,9 @@ $.select2.amd.require(['select2/compat/matcher'], function (oldMatcher) {
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
Select2 supports displaying the messages in different languages, as well
|
Select2 supports displaying the messages in different languages, as well
|
||||||
as provding your own custom messages that can be displayed.
|
as provding your own
|
||||||
|
<a href="options.html#language">custom messages</a>
|
||||||
|
that can be displayed.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
@ -352,11 +356,10 @@ $.select2.amd.require(['select2/compat/matcher'], function (oldMatcher) {
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Note that when tagging is enabled the user can select from pre-existing
|
The language does not have to be defined when Select2 is being
|
||||||
options or create a new tag by picking the first choice, which is what
|
initialized, but instead can be defined in the <code>[lang]</code>
|
||||||
the user has typed into the search box so far.
|
attribute of any parent elements as <code>[lang="es"]</code>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<h2>Example code</h2>
|
<h2>Example code</h2>
|
||||||
@ -565,7 +568,7 @@ $.fn.select2.amd.require(
|
|||||||
});
|
});
|
||||||
|
|
||||||
$language.select2({
|
$language.select2({
|
||||||
language: "en"
|
language: "es"
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
3
src/js/select2/defaults.js
vendored
3
src/js/select2/defaults.js
vendored
@ -20,8 +20,7 @@ define([
|
|||||||
'./dropdown/hidePlaceholder',
|
'./dropdown/hidePlaceholder',
|
||||||
'./dropdown/infiniteScroll',
|
'./dropdown/infiniteScroll',
|
||||||
|
|
||||||
'./i18n/en',
|
'./i18n/en'
|
||||||
'./compat/matcher'
|
|
||||||
], function ($, ResultsList,
|
], function ($, ResultsList,
|
||||||
SingleSelection, MultipleSelection, Placeholder,
|
SingleSelection, MultipleSelection, Placeholder,
|
||||||
Utils, Translation,
|
Utils, Translation,
|
||||||
|
21
src/js/select2/i18n/es.js
vendored
Normal file
21
src/js/select2/i18n/es.js
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
define(function () {
|
||||||
|
return {
|
||||||
|
inputTooShort: function (args) {
|
||||||
|
var message = 'Por favor, introduzca ' + remainingChars + ' car';
|
||||||
|
|
||||||
|
if (remainingChars == 1) {
|
||||||
|
message += 'ácter';
|
||||||
|
} else {
|
||||||
|
message += 'acteres';
|
||||||
|
}
|
||||||
|
|
||||||
|
return message;
|
||||||
|
},
|
||||||
|
loadingMore: function () {
|
||||||
|
return 'Cargando más resultados…';
|
||||||
|
},
|
||||||
|
noResults: function () {
|
||||||
|
return 'No se encontraron resultados';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user