select2_locale_gl.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * Select2 Galician translation
  3. *
  4. * Author: Leandro Regueiro <leandro.regueiro@gmail.com>
  5. */
  6. (function ($) {
  7. "use strict";
  8. $.extend($.fn.select2.defaults, {
  9. formatNoMatches: function () {
  10. return "Non se atoparon resultados";
  11. },
  12. formatInputTooShort: function (input, min) {
  13. var n = min - input.length;
  14. if (n === 1) {
  15. return "Engada un carácter";
  16. } else {
  17. return "Engada " + n + " caracteres";
  18. }
  19. },
  20. formatInputTooLong: function (input, max) {
  21. var n = input.length - max;
  22. if (n === 1) {
  23. return "Elimine un carácter";
  24. } else {
  25. return "Elimine " + n + " caracteres";
  26. }
  27. },
  28. formatSelectionTooBig: function (limit) {
  29. if (limit === 1 ) {
  30. return "Só pode seleccionar un elemento";
  31. } else {
  32. return "Só pode seleccionar " + limit + " elementos";
  33. }
  34. },
  35. formatLoadMore: function (pageNumber) {
  36. return "Cargando máis resultados...";
  37. },
  38. formatSearching: function () {
  39. return "Buscando...";
  40. }
  41. });
  42. })(jQuery);