|
@@ -18,9 +18,9 @@ return [
|
|
'active_url' => ':attribute no es una URL válida.',
|
|
'active_url' => ':attribute no es una URL válida.',
|
|
'after' => ':attribute debe ser una fecha posterior a :date.',
|
|
'after' => ':attribute debe ser una fecha posterior a :date.',
|
|
'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.',
|
|
'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.',
|
|
- 'alpha' => 'The :attribute must only contain letters.',
|
|
|
|
- 'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
|
|
|
|
- 'alpha_num' => 'The :attribute must only contain letters and numbers.',
|
|
|
|
|
|
+ 'alpha' => ':attribute solo puede contener letras.',
|
|
|
|
+ 'alpha_dash' => ':attribute solo puede contener letras, números, guiones y guiones bajos.',
|
|
|
|
+ 'alpha_num' => ':attribute solo puede contener letras y números.',
|
|
'array' => ':attribute debe ser un conjunto de datos.',
|
|
'array' => ':attribute debe ser un conjunto de datos.',
|
|
'before' => ':attribute debe ser una fecha anterior a :date.',
|
|
'before' => ':attribute debe ser una fecha anterior a :date.',
|
|
'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.',
|
|
'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.',
|
|
@@ -43,11 +43,11 @@ return [
|
|
'digits_between' => ':attribute debe tener entre :min y :max dígitos.',
|
|
'digits_between' => ':attribute debe tener entre :min y :max dígitos.',
|
|
'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.',
|
|
'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.',
|
|
'distinct' => 'El campo :attribute contiene un valor duplicado.',
|
|
'distinct' => 'El campo :attribute contiene un valor duplicado.',
|
|
- 'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
|
|
|
|
- 'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
|
|
|
|
|
+ 'doesnt_end_with' => ':attribute no puede finalizar con uno de los siguientes valores: :values.',
|
|
|
|
+ 'doesnt_start_with' => ':attribute no puede comenzar con uno de los siguientes valores: :values.',
|
|
'email' => ':attribute no es un correo válido.',
|
|
'email' => ':attribute no es un correo válido.',
|
|
'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes valores: :values',
|
|
'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes valores: :values',
|
|
- 'enum' => 'The selected :attribute is invalid.',
|
|
|
|
|
|
+ 'enum' => ':attribute no tiene el formato adecuado.',
|
|
'exists' => ':attribute es inválido.',
|
|
'exists' => ':attribute es inválido.',
|
|
'file' => 'El campo :attribute debe ser un archivo.',
|
|
'file' => 'El campo :attribute debe ser un archivo.',
|
|
'filled' => 'El campo :attribute es obligatorio.',
|
|
'filled' => 'El campo :attribute es obligatorio.',
|
|
@@ -59,9 +59,9 @@ return [
|
|
],
|
|
],
|
|
'gte' => [
|
|
'gte' => [
|
|
'array' => 'El campo :attribute debe tener como mínimo :value elementos.',
|
|
'array' => 'El campo :attribute debe tener como mínimo :value elementos.',
|
|
- 'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
|
|
|
|
- 'numeric' => 'The :attribute must be greater than or equal to :value.',
|
|
|
|
- 'string' => 'The :attribute must be greater than or equal to :value characters.',
|
|
|
|
|
|
+ 'file' => ':attribute debe ser mayor o igual a :value kilobytes.',
|
|
|
|
+ 'numeric' => ':attribute debe ser mayor o igual que :value.',
|
|
|
|
+ 'string' => ':attribute debe tener al menos :value caracteres.',
|
|
],
|
|
],
|
|
'image' => ':attribute debe ser una imagen.',
|
|
'image' => ':attribute debe ser una imagen.',
|
|
'in' => ':attribute es inválido.',
|
|
'in' => ':attribute es inválido.',
|
|
@@ -79,18 +79,18 @@ return [
|
|
],
|
|
],
|
|
'lte' => [
|
|
'lte' => [
|
|
'array' => 'El campo :attribute debe tener como máximo :value elementos.',
|
|
'array' => 'El campo :attribute debe tener como máximo :value elementos.',
|
|
- 'file' => 'The :attribute must be less than or equal to :value kilobytes.',
|
|
|
|
- 'numeric' => 'The :attribute must be less than or equal to :value.',
|
|
|
|
- 'string' => 'The :attribute must be less than or equal to :value characters.',
|
|
|
|
|
|
+ 'file' => ':attribute debe ser menor o igual que :value kilobytes.',
|
|
|
|
+ 'numeric' => ':attribute debe ser menor o igual que :value.',
|
|
|
|
+ 'string' => ':attribute debe tener como máximo :value caracteres.',
|
|
],
|
|
],
|
|
- 'mac_address' => 'The :attribute must be a valid MAC address.',
|
|
|
|
|
|
+ 'mac_address' => ':attribute debe ser una dirección MAC válida.',
|
|
'max' => [
|
|
'max' => [
|
|
- 'array' => 'The :attribute must not have more than :max items.',
|
|
|
|
- 'file' => 'The :attribute must not be greater than :max kilobytes.',
|
|
|
|
- 'numeric' => 'The :attribute must not be greater than :max.',
|
|
|
|
- 'string' => 'The :attribute must not be greater than :max characters.',
|
|
|
|
|
|
+ 'array' => 'El :attribute no debe contener más de :max elementos.',
|
|
|
|
+ 'file' => ':attribute no puede ser mayor que :max kilobytes.',
|
|
|
|
+ 'numeric' => ':attribute no debe ser mayor que :max.',
|
|
|
|
+ 'string' => ':attribute no debe contener más de :max caracteres.',
|
|
],
|
|
],
|
|
- 'max_digits' => 'The :attribute must not have more than :max digits.',
|
|
|
|
|
|
+ 'max_digits' => ':attribute no debe tener más de :max dígitos.',
|
|
'mimes' => ':attribute debe ser un archivo con formato: :values.',
|
|
'mimes' => ':attribute debe ser un archivo con formato: :values.',
|
|
'mimetypes' => ':attribute debe ser un archivo con formato: :values.',
|
|
'mimetypes' => ':attribute debe ser un archivo con formato: :values.',
|
|
'min' => [
|
|
'min' => [
|
|
@@ -99,17 +99,17 @@ return [
|
|
'numeric' => 'El tamaño de :attribute debe ser de al menos :min.',
|
|
'numeric' => 'El tamaño de :attribute debe ser de al menos :min.',
|
|
'string' => ':attribute debe contener al menos :min caracteres.',
|
|
'string' => ':attribute debe contener al menos :min caracteres.',
|
|
],
|
|
],
|
|
- 'min_digits' => 'The :attribute must have at least :min digits.',
|
|
|
|
|
|
+ 'min_digits' => ':attribute debe tener al menos :min dígitos.',
|
|
'multiple_of' => ':attribute debe ser un múltiplo de :value.',
|
|
'multiple_of' => ':attribute debe ser un múltiplo de :value.',
|
|
'not_in' => ':attribute es inválido.',
|
|
'not_in' => ':attribute es inválido.',
|
|
'not_regex' => 'El formato del campo :attribute no es válido.',
|
|
'not_regex' => 'El formato del campo :attribute no es válido.',
|
|
'numeric' => ':attribute debe ser numérico.',
|
|
'numeric' => ':attribute debe ser numérico.',
|
|
'password' => [
|
|
'password' => [
|
|
- 'letters' => 'The :attribute must contain at least one letter.',
|
|
|
|
- 'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
|
|
|
- 'numbers' => 'The :attribute must contain at least one number.',
|
|
|
|
- 'symbols' => 'The :attribute must contain at least one symbol.',
|
|
|
|
- 'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
|
|
|
|
|
+ 'letters' => ':attribute debe contener al menos una letra.',
|
|
|
|
+ 'mixed' => ':attribute debe contener al menos una mayúscula y una minúscula.',
|
|
|
|
+ 'numbers' => ':attribute debe contener al menos un número.',
|
|
|
|
+ 'symbols' => ':attribute debe contener al menos un símbolo.',
|
|
|
|
+ 'uncompromised' => 'El campo :attribute ha aparecido en una fuga de datos. Por favor, elige un nuevo valor.',
|
|
],
|
|
],
|
|
'present' => 'El campo :attribute debe estar presente.',
|
|
'present' => 'El campo :attribute debe estar presente.',
|
|
'prohibited' => 'El campo :attribute está prohibido.',
|
|
'prohibited' => 'El campo :attribute está prohibido.',
|
|
@@ -118,9 +118,9 @@ return [
|
|
'prohibits' => 'El campo :attribute prohíbe que :other esté presente.',
|
|
'prohibits' => 'El campo :attribute prohíbe que :other esté presente.',
|
|
'regex' => 'El formato de :attribute es inválido.',
|
|
'regex' => 'El formato de :attribute es inválido.',
|
|
'required' => 'El campo :attribute es obligatorio.',
|
|
'required' => 'El campo :attribute es obligatorio.',
|
|
- 'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
|
|
|
|
|
+ 'required_array_keys' => 'El campo :attribute debe contener entradas para: :values.',
|
|
'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.',
|
|
'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.',
|
|
- 'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
|
|
|
|
|
+ 'required_if_accepted' => 'El campo :attribute es obligatorio cuando :other se acepta.',
|
|
'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.',
|
|
'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.',
|
|
'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.',
|
|
'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.',
|
|
'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.',
|
|
'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.',
|
|
@@ -135,10 +135,10 @@ return [
|
|
],
|
|
],
|
|
'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values',
|
|
'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values',
|
|
'string' => 'El campo :attribute debe ser una cadena de caracteres.',
|
|
'string' => 'El campo :attribute debe ser una cadena de caracteres.',
|
|
- 'timezone' => 'The :attribute must be a valid timezone.',
|
|
|
|
|
|
+ 'timezone' => ':attribute debe ser una zona horaria válida.',
|
|
'unique' => 'El campo :attribute ya ha sido registrado.',
|
|
'unique' => 'El campo :attribute ya ha sido registrado.',
|
|
'uploaded' => 'Subir :attribute ha fallado.',
|
|
'uploaded' => 'Subir :attribute ha fallado.',
|
|
- 'url' => 'The :attribute must be a valid URL.',
|
|
|
|
|
|
+ 'url' => ':attribute debe ser una URL válida.',
|
|
'uuid' => 'El campo :attribute debe ser un UUID válido.',
|
|
'uuid' => 'El campo :attribute debe ser un UUID válido.',
|
|
|
|
|
|
'single' => 'Cuando se usa :attribute, éste debe ser el único parámetro en este cuerpo de la solicitud',
|
|
'single' => 'Cuando se usa :attribute, éste debe ser el único parámetro en este cuerpo de la solicitud',
|