hjg
2024-07-09 30304784e82d4bba24121328da8eb8490aec4f4f
提交 | 用户 | 时间
58d006 1 /*
A 2  * Translated default messages for the jQuery validation plugin.
3  * Locale: ES (Spanish; Español)
4  */
5 (function ($) {
6     $.extend($.validator.messages, {
7         required: "Este campo es obligatorio.",
8         remote: "Por favor, rellena este campo.",
9         email: "Por favor, escribe una dirección de correo válida",
10         url: "Por favor, escribe una URL válida.",
11         date: "Por favor, escribe una fecha válida.",
12         dateISO: "Por favor, escribe una fecha (ISO) válida.",
13         number: "Por favor, escribe un número entero válido.",
14         digits: "Por favor, escribe sólo dígitos.",
15         creditcard: "Por favor, escribe un número de tarjeta válido.",
16         equalTo: "Por favor, escribe el mismo valor de nuevo.",
17         accept: "Por favor, escribe un valor con una extensión aceptada.",
18         maxlength: $.validator.format("Por favor, no escribas más de {0} caracteres."),
19         minlength: $.validator.format("Por favor, no escribas menos de {0} caracteres."),
20         rangelength: $.validator.format("Por favor, escribe un valor entre {0} y {1} caracteres."),
21         range: $.validator.format("Por favor, escribe un valor entre {0} y {1}."),
22         max: $.validator.format("Por favor, escribe un valor menor o igual a {0}."),
23         min: $.validator.format("Por favor, escribe un valor mayor o igual a {0}.")
24     });
25 }(jQuery));