Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

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