Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update spanish language file. #461

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 26 additions & 12 deletions dist/lang/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,53 @@ require=(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=
module.exports = {
accepted: 'El campo :attribute debe ser aceptado.',
after: 'El campo :attribute debe ser una fecha posterior a :after.',
after_or_equal: 'El campo :attribute debe ser una fecha igual o posterior a :after_or_equal.',
alpha: 'El campo :attribute solo debe contener letras.',
alpha_dash: 'El campo :attribute solo debe contener letras, números y guiones.',
alpha_num: 'El campo :attribute solo debe contener letras y números.',
attributes: {},
between: 'El campo :attribute tiene que estar entre :min - :max.',
before: 'El campo :attribute debe ser una fecha anterior a :before.',
before_or_equal: 'El campo :attribute debe ser una fecha igual o anterior a :before_or_equal.',
between: {
numeric: 'El campo :attribute tiene que estar entre :min - :max.',
string: 'El campo :attribute tiene que estar entre :min - :max caracteres.',
},
confirmed: 'La confirmación de :attribute no coincide.',
different: 'El campo :attribute y :other deben ser diferentes.',
email: 'El campo :attribute no es una dirección de correo válida.',
date: 'El campo :attribute no es una fecha válida.',
def: 'El campo :attribute tiene errores.',
digits: 'El campo :attribute debe tener :digits dígitos.',
digits_between: 'El campo :attribute debe tener entre :min y :max dígitos.',
email: 'El campo :attribute no es un correo válido.',
in: 'El campo :attribute es inválido.',
different: 'El campo :attribute y :different deben ser diferentes.',
in: 'El campo seleccionado :attribute es inválido.',
integer: 'El campo :attribute debe ser un número entero.',
hex: 'El campo :attribute debe tener formato hexadecimal.',
max: {
numeric: 'El campo :attribute no debe ser mayor a :max.',
string: 'El campo :attribute no debe ser mayor que :max caracteres.'
},
min: {
numeric: 'El tamaño del campo :attribute debe ser de al menos :min.',
string: 'El campo :attribute debe contener al menos :min caracteres.'
},
max: {
numeric: 'El campo :attribute no puede ser mayor a :max.',
string: 'El campo :attribute no puede ser mayor que :max caracteres.'
},
not_in: 'El campo :attribute es inválido.',
numeric: 'El campo :attribute debe ser numérico.',
present: 'El campo de :attribute debe estar presente (pero puede estar vacío).',
regex: 'El formato del campo :attribute es inválido.',
required: 'El campo :attribute es obligatorio.',
required_if: 'El campo :attribute es obligatorio cuando :other es :value.',
same: 'El campo :attribute y :other deben coincidir.',
required_unless: 'El campo :attribute es obligatorio cuando :other no es :value.',
required_with: 'El campo :attribute es obligatorio cuando :field no esta vacio.',
required_with_all: 'El campo :attribute es obligatorio cuando :fields no estan vacios.',
required_without: 'El campo :attribute es obligatorio cuando :field esta vacio.',
required_without_all: 'El campo :attribute es obligatorio cuando :fields estan vacios.',
same: 'El campo :attribute y :same deben coincidir.',
size: {
numeric: 'El tamaño del campo :attribute debe ser :size.',
string: 'El campo :attribute debe contener :size caracteres.'
},
url: 'El formato de :attribute es inválido.'
string: 'El campo :attribute debe ser de tipo texto.',
url: 'El formato de :attribute es inválido.',
regex: 'El formato del campo :attribute es inválido.',
attributes: {}
};

},{}]},{},[]);
2 changes: 1 addition & 1 deletion dist/validator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! validatorjs - 2020-12-03 */
/*! validatorjs - 2022-12-20 */
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.Validator = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
function AsyncResolvers(onFailedOne, onResolvedAll) {
this.onResolvedAll = onResolvedAll;
Expand Down
Loading