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