1
0
mirror of synced 2025-02-03 21:59:24 +03:00

Merge pull request #2673 from LuisGP/patch-1

Update select2_locale_es.js
This commit is contained in:
Kevin Brown 2014-09-11 07:50:00 -04:00
commit dc6b987def

View File

@ -5,6 +5,7 @@
"use strict";
$.fn.select2.locales['es'] = {
formatMatches: function (matches) { if (matches === 1) { return "Un resultado disponible, presione enter para seleccionarlo."; } return matches + " resultados disponibles, use las teclas de dirección para navegar."; },
formatNoMatches: function () { return "No se encontraron resultados"; },
formatInputTooShort: function (input, min) { var n = min - input.length; return "Por favor, introduzca " + n + " car" + (n == 1? "ácter" : "acteres"); },
formatInputTooLong: function (input, max) { var n = input.length - max; return "Por favor, elimine " + n + " car" + (n == 1? "ácter" : "acteres"); },