diff options
Diffstat (limited to 'script/jquery-validate/localization/messages_es_PE.js')
-rw-r--r-- | script/jquery-validate/localization/messages_es_PE.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/script/jquery-validate/localization/messages_es_PE.js b/script/jquery-validate/localization/messages_es_PE.js new file mode 100644 index 0000000..61e92a6 --- /dev/null +++ b/script/jquery-validate/localization/messages_es_PE.js @@ -0,0 +1,27 @@ +/* + * Translated default messages for the jQuery validation plugin. + * Locale: ES (Spanish; Español) + * Region: PE (Perú) + */ +jQuery.extend( jQuery.validator.messages, { + required: "Este campo es obligatorio.", + remote: "Por favor, llene este campo.", + email: "Por favor, escriba un correo electrónico válido.", + url: "Por favor, escriba una URL válida.", + date: "Por favor, escriba una fecha válida.", + dateISO: "Por favor, escriba una fecha (ISO) válida.", + number: "Por favor, escriba un número válido.", + digits: "Por favor, escriba sólo dígitos.", + creditcard: "Por favor, escriba un número de tarjeta válido.", + equalTo: "Por favor, escriba el mismo valor de nuevo.", + extension: "Por favor, escriba un valor con una extensión permitida.", + maxlength: jQuery.validator.format( "Por favor, no escriba más de {0} caracteres." ), + minlength: jQuery.validator.format( "Por favor, no escriba menos de {0} caracteres." ), + rangelength: jQuery.validator.format( "Por favor, escriba un valor entre {0} y {1} caracteres." ), + range: jQuery.validator.format( "Por favor, escriba un valor entre {0} y {1}." ), + max: jQuery.validator.format( "Por favor, escriba un valor menor o igual a {0}." ), + min: jQuery.validator.format( "Por favor, escriba un valor mayor o igual a {0}." ), + nifES: "Por favor, escriba un NIF válido.", + nieES: "Por favor, escriba un NIE válido.", + cifES: "Por favor, escriba un CIF válido." +} ); |