Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

40 lignes
1.7KB

  1. (function( factory ) {
  2. if ( typeof define === "function" && define.amd ) {
  3. define( ["jquery", "../jquery.validate"], factory );
  4. } else if (typeof module === "object" && module.exports) {
  5. module.exports = factory( require( "jquery" ) );
  6. } else {
  7. factory( jQuery );
  8. }
  9. }(function( $ ) {
  10. /*
  11. * Translated default messages for the jQuery validation plugin.
  12. * Locale: GL (Galician; Galego)
  13. */
  14. ( function( $ ) {
  15. $.extend( $.validator.messages, {
  16. required: "Este campo é obrigatorio.",
  17. remote: "Por favor, cubre este campo.",
  18. email: "Por favor, escribe unha dirección de correo válida.",
  19. url: "Por favor, escribe unha URL válida.",
  20. date: "Por favor, escribe unha data válida.",
  21. dateISO: "Por favor, escribe unha data (ISO) válida.",
  22. number: "Por favor, escribe un número válido.",
  23. digits: "Por favor, escribe só díxitos.",
  24. creditcard: "Por favor, escribe un número de tarxeta válido.",
  25. equalTo: "Por favor, escribe o mesmo valor de novo.",
  26. extension: "Por favor, escribe un valor cunha extensión aceptada.",
  27. maxlength: $.validator.format( "Por favor, non escribas máis de {0} caracteres." ),
  28. minlength: $.validator.format( "Por favor, non escribas menos de {0} caracteres." ),
  29. rangelength: $.validator.format( "Por favor, escribe un valor entre {0} e {1} caracteres." ),
  30. range: $.validator.format( "Por favor, escribe un valor entre {0} e {1}." ),
  31. max: $.validator.format( "Por favor, escribe un valor menor ou igual a {0}." ),
  32. min: $.validator.format( "Por favor, escribe un valor maior ou igual a {0}." ),
  33. nifES: "Por favor, escribe un NIF válido.",
  34. nieES: "Por favor, escribe un NIE válido.",
  35. cifES: "Por favor, escribe un CIF válido."
  36. } );
  37. }( jQuery ) );
  38. return $;
  39. }));