| 1 |
/* |
| 2 |
* Translated default messages for the jQuery validation plugin. |
| 3 |
* Language: ES |
| 4 |
* Author: David Esperalta - http://www.dec.gesbit.com/ |
| 5 |
*/ |
| 6 |
jQuery.extend(jQuery.validator.messages, { |
| 7 |
required: "Este campo es obligatorio.", |
| 8 |
remote: "Por favor, rellena esta 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 una valor con una extensión aceptada.", |
| 18 |
maxlength: jQuery.validator.format("Por favor, no escribas más de {0} caracteres."), |
| 19 |
minlength: jQuery.validator.format("Por favor, no escribas menos de {0} caracteres."), |
| 20 |
rangelength: jQuery.validator.format("Por favor, escribe un valor entre {0} y {1} caracteres."), |
| 21 |
range: jQuery.validator.format("Por favor, escribe un valor entre {0} y {1}."), |
| 22 |
max: jQuery.validator.format("Por favor, escribe un valor igual o menor que {0}."), |
| 23 |
min: jQuery.validator.format("Por favor, escribe un valor igual o mayor que {0}.") |
| 24 |
}); |