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

Update select2_locale_es.js

This commit is contained in:
LuisGP 2014-09-11 13:03:19 +02:00
parent d0d4bfb289
commit 438be4f537

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"); },