فهرست منبع

Update select2_locale_es.js

LuisGP 10 سال پیش
والد
کامیت
438be4f537
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      select2_locale_es.js

+ 1 - 0
select2_locale_es.js

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