1
0
mirror of synced 2024-11-22 04:56:08 +03:00

Update select2_locale_es.js

Added formatAjaxError string
This commit is contained in:
LuisGP 2014-09-11 13:10:17 +02:00
parent d0d4bfb289
commit ef284de8b3

View File

@ -10,7 +10,8 @@
formatInputTooLong: function (input, max) { var n = input.length - max; return "Por favor, elimine " + n + " car" + (n == 1? "ácter" : "acteres"); },
formatSelectionTooBig: function (limit) { return "Sólo puede seleccionar " + limit + " elemento" + (limit == 1 ? "" : "s"); },
formatLoadMore: function (pageNumber) { return "Cargando más resultados…"; },
formatSearching: function () { return "Buscando…"; }
formatSearching: function () { return "Buscando…"; },
formatAjaxError: function() { return "La carga falló"; }
};
$.extend($.fn.select2.defaults, $.fn.select2.locales['es']);