Estoy usando el plugin select2 para el autocompletado en un campo, lo que necesito hacer es cambiar el texto que dice:
Please enter "1" more characters por " Ingrese mínimo 3 caracteres " sin editar el archivo fuente del plugin.
Este seria el código de ejemplo, escucho sugerencias para solucionar desde ya gracias.
Código Javascript:
Ver original
$(".js-data-example-ajax").select2({ ajax: { url: "https://api.github.com/search/repositories", dataType: 'json', delay: 250, data: function (params) { return { q: params.term, // search term page: params.page }; }, processResults: function (data, params) { // parse the results into the format expected by Select2 // since we are using custom formatting functions we do not need to // alter the remote JSON data, except to indicate that infinite // scrolling can be used params.page = params.page || 1; return { results: data.items, pagination: { more: (params.page * 30) < data.total_count } }; }, cache: true }, minimumInputLength: 1, formatInputTooShort: function(input, min) { //no funciona return "Ingrese mínimo 3 caracteres"; } });