2018-02-20 14:37:12 -08:00
< ? php
2022-01-13 21:27:29 -08:00
return [
2018-02-20 14:37:12 -08:00
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class . Some of these rules have multiple versions such
| such as the size rules . Feel free to tweak each of these messages .
|
*/
2024-07-23 10:14:19 -07:00
'accepted' => 'El campo :attribute debe ser aceptado.' ,
'accepted_if' => 'El campo :attribute debe ser aceptado cuando :other es :value.' ,
'active_url' => 'El campo :attribute debe ser una dirección URL válida.' ,
'after' => 'El campo :attribute debe ser una fecha posterior a :date.' ,
'after_or_equal' => 'El campo :attribute debe ser una fecha posterior o igual a :date.' ,
'alpha' => 'El campo :attribute debe contener únicamente letras.' ,
'alpha_dash' => 'El campo :attribute debe contener únicamente letras, números, guiones y guiones bajos.' ,
'alpha_num' => 'El campo :attribute debe contener únicamente letras y números.' ,
'array' => 'El campo :attribute debe ser un arreglo.' ,
'ascii' => 'El campo :attribute debe contener únicamente caracteres y símbolos alfanuméricos de un byte.' ,
'before' => 'El campo :attribute debe ser una fecha anterior a :date.' ,
'before_or_equal' => 'El campo :attribute debe ser una fecha anterior o igual a :date.' ,
2024-07-19 09:47:22 -07:00
'between' => [
2024-07-23 10:14:19 -07:00
'array' => 'El campo :attribute debe tener elementos entre :min y :max.' ,
'file' => 'El campo :attribute debe tener entre :min y :max kilobytes.' ,
'numeric' => 'El campo :attribute debe estar entre :min y :max.' ,
'string' => 'El campo :attribute debe tener entre :min y :max caracteres.' ,
2018-02-20 14:37:12 -08:00
],
2024-07-23 10:14:19 -07:00
'boolean' => 'El campo :attribute debe ser verdadero o falso.' ,
'can' => 'El campo :attribute contiene un valor no autorizado.' ,
'confirmed' => 'La confirmación del campo :attribute no coincide.' ,
'contains' => 'Falta un valor obligatorio en el campo :attribute.' ,
'current_password' => 'La contraseña es incorrecta.' ,
'date' => 'El campo :attribute debe contener una fecha válida.' ,
'date_equals' => 'El campo :attribute debe ser una fecha igual a :date.' ,
'date_format' => 'El campo :attribute debe coincidir con el formato :format.' ,
'decimal' => 'El campo :attribute debe tener :decimal lugares decimales.' ,
'declined' => 'El campo :attribute debe ser rechazado.' ,
'declined_if' => 'El campo :attribute debe ser rechazado cuando :other es :value.' ,
'different' => 'Los campos :attribute y :other deben ser diferentes.' ,
'digits' => 'El campo :attribute debe tener :digits dígitos.' ,
'digits_between' => 'El campo :attribute debe tener entre :min y :max dígitos.' ,
'dimensions' => 'El campo :attribute tiene dimensiones de imagen no válidas.' ,
2024-07-19 09:47:22 -07:00
'distinct' => 'El campo :attribute tiene un valor duplicado.' ,
2024-07-23 10:14:19 -07:00
'doesnt_end_with' => 'El campo :attribute no debe finalizar con uno de los siguientes :values.' ,
'doesnt_start_with' => 'El campo :attribute no debe iniciar con uno de los siguientes :values.' ,
'email' => 'El campo :attribute debe ser una dirección de correo válida.' ,
'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes :values.' ,
2024-10-28 15:04:35 -07:00
'enum' => 'El :attribute seleccionado no es correcto.' ,
'exists' => 'El :attribute seleccionado no es correcto.' ,
2024-07-23 10:14:19 -07:00
'extensions' => 'El campo :attribute debe tener una de las siguientes extensiones :values.' ,
'file' => 'El campo :attribute debe ser un archivo.' ,
2024-07-19 09:47:22 -07:00
'filled' => 'El campo :attribute debe tener un valor.' ,
'gt' => [
2024-07-23 10:14:19 -07:00
'array' => 'El campo :attribute debe tener más de :value elementos.' ,
'file' => 'El campo :attribute debe ser mayor que :value kilobytes.' ,
'numeric' => 'El campo :attribute debe ser mayor que :value.' ,
'string' => 'El campo :attribute debe ser mayor que :value caracteres.' ,
2024-07-19 09:47:22 -07:00
],
'gte' => [
2024-07-23 10:14:19 -07:00
'array' => 'El campo :attribute debe tener :value elementos o más.' ,
'file' => 'El campo :attribute debe ser mayor que o igual a :value kilobytes.' ,
'numeric' => 'El campo :attribute debe ser mayor que o igual a :value.' ,
'string' => 'El campo :attribute debe ser mayor que o igual a :value caracteres.' ,
2024-07-19 09:47:22 -07:00
],
2024-07-23 10:14:19 -07:00
'hex_color' => 'El campo :attribute debe ser un color hexadecimal válido.' ,
'image' => 'El campo :attribute debe ser una imagen.' ,
2023-04-06 19:24:19 -07:00
'import_field_empty' => 'El valor para :fieldname no puede ser nulo.' ,
2024-07-19 09:47:22 -07:00
'in' => 'El :attribute seleccionado es inválido.' ,
2024-07-23 10:14:19 -07:00
'in_array' => 'El campo :attribute debe existir en :other.' ,
'integer' => 'El campo :attribute debe ser un valor entero.' ,
'ip' => 'El campo :attribute debe ser una dirección IP válida.' ,
'ipv4' => 'El campo :attribute debe ser una dirección IPv4 válida.' ,
'ipv6' => 'El campo :attribute debe ser una dirección IPv6 válida.' ,
'json' => 'El campo :attribute debe ser una cadena de texto JSON válida.' ,
'list' => 'The campo :attribute debe ser una lista.' ,
'lowercase' => 'El campo :attribute debe estar en minúsculas.' ,
2024-07-19 09:47:22 -07:00
'lt' => [
2024-07-23 10:14:19 -07:00
'array' => 'El campo :attribute debe tener menos que :value elementos.' ,
'file' => 'El campo :attribute debe ser menor que :value kilobytes.' ,
'numeric' => 'El campo :attribute debe ser menor que :value.' ,
'string' => 'El campo :attribute debe ser menor que :value caracteres.' ,
2018-02-20 14:37:12 -08:00
],
2024-07-19 09:47:22 -07:00
'lte' => [
2024-07-23 10:14:19 -07:00
'array' => 'El campo :attribute no debe tener más de :value elementos.' ,
'file' => 'El campo :attribute debe ser menor que o igual a :value kylobytes.' ,
'numeric' => 'El campo :attribute debe ser menor que o igual a :value.' ,
'string' => 'El campo :attribute debe ser menor que o igual a :value caracteres.' ,
2018-02-20 14:37:12 -08:00
],
2024-07-23 10:14:19 -07:00
'mac_address' => 'El campo :attribute debe ser una dirección MAC válida.' ,
2024-07-19 09:47:22 -07:00
'max' => [
2024-07-23 10:14:19 -07:00
'array' => 'El campo :attribute no debe tener más de :max elementos.' ,
'file' => 'El campo :attribute no debe ser mayor que :max kilobytes.' ,
'numeric' => 'El campo :attribute no debe ser mayor que :max.' ,
'string' => 'El campo :attribute no debe ser mayor que :max caracteres.' ,
2024-07-19 09:47:22 -07:00
],
2024-07-23 10:14:19 -07:00
'max_digits' => 'El campo :attribute no debe tener más de :max dígitos.' ,
'mimes' => 'El campo :attribute debe un archivo de tipo: :values.' ,
'mimetypes' => 'El campo :attribute debe un archivo de tipo: :values.' ,
2024-07-19 09:47:22 -07:00
'min' => [
2024-07-23 10:14:19 -07:00
'array' => 'El campo :attribute debe tener al menos :min elementos.' ,
'file' => 'El campo :attribute debe ser de al menos :min kilobytes.' ,
'numeric' => 'El campo :attribute debe ser al menos :min.' ,
'string' => 'El campo :attribute debe contener como mínimo :min caracteres.' ,
2018-02-20 14:37:12 -08:00
],
2024-07-23 10:14:19 -07:00
'min_digits' => 'El campo :attribute debe contener como mínimo :min dígitos.' ,
'missing' => 'El campo :attribute debe estar vacío.' ,
'missing_if' => 'El campo :attribute debe estar vacío cuando :other sea :value.' ,
'missing_unless' => 'El campo :attribute debe estar vacío a menos que :other sea :value.' ,
'missing_with' => 'El campo :attribute debe estar vacío cuando :values esté presente.' ,
'missing_with_all' => 'El campo :attribute debe estar vacío cuando :values estén presentes.' ,
'multiple_of' => 'El campo :attribute debe ser un múltiplo de :value.' ,
2024-07-19 09:47:22 -07:00
'not_in' => 'El :attribute seleccionado es inválido.' ,
2024-07-23 10:14:19 -07:00
'not_regex' => 'El campo :attribute no es válido.' ,
'numeric' => 'El campo :attribute debe ser un número.' ,
2024-07-19 09:47:22 -07:00
'password' => [
2024-07-23 10:14:19 -07:00
'letters' => 'El cammpo :attribute debe contener al menos una letra.' ,
'mixed' => 'El campo :attribute debe contener al menos una letra minúscula y una mayúscula.' ,
'numbers' => 'El campo :attribute debe contener al menos un número.' ,
'symbols' => 'El campo :attribute debe contener al menos un símbolo.' ,
'uncompromised' => 'El valor de :attribute ha aparecido en una fuga de datos. Por favor, seleccione un valor diferente para :attribute.' ,
2024-07-19 09:47:22 -07:00
],
2024-08-15 04:21:06 -07:00
'percent' => 'El mínimo de amortización debe estar entre 0 y 100 cuando el tipo de amortización es porcentual.' ,
2024-07-19 09:47:22 -07:00
'present' => 'El campo :attribute debe tener un valor.' ,
2024-07-23 10:14:19 -07:00
'present_if' => 'El campo :attribute debe estar presente cuando :other sea :value.' ,
'present_unless' => 'El campo :attribute debe estar presente a menos que :other sea :value.' ,
'present_with' => 'El campo :attribute debe estar presente cuando :values esté presente.' ,
'present_with_all' => 'El campo :attribute debe estar presente cuando :values estén presentes.' ,
'prohibited' => 'El campo :attribute está prohibido.' ,
'prohibited_if' => 'El campo :attribute está prohibido cuando :other sea :value.' ,
'prohibited_unless' => 'El campo :attribute está prohibido a menos que :other esté en :values.' ,
'prohibits' => 'El campo :attribute prohíbe la presencia de :other.' ,
'regex' => 'El formato del campo :attribute no es válido.' ,
2024-07-19 09:47:22 -07:00
'required' => 'El campo :attribute es obligatorio.' ,
2024-07-23 10:14:19 -07:00
'required_array_keys' => 'El campo :attribute debe contener valores para: :values.' ,
2024-07-19 09:47:22 -07:00
'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.' ,
2024-07-23 10:14:19 -07:00
'required_if_accepted' => 'El campo :attribute es obligatorio cuando se acepta :other.' ,
'required_if_declined' => 'El campo :attribute es requerido cuando :other es rechazado.' ,
2024-07-19 09:47:22 -07:00
'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.' ,
2024-10-28 15:04:35 -07:00
'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.' ,
2024-07-23 10:14:19 -07:00
'required_with_all' => 'El campo :attribute es requerido cuando :values están presentes.' ,
2024-07-19 09:47:22 -07:00
'required_without' => 'El :attribute es obligatrio cuando :values está presente.' ,
'required_without_all' => 'El campo :attribute es obligatorio cuando no está presente ninguno de los :values.' ,
2024-07-23 10:14:19 -07:00
'same' => 'El campo :attribute debe coincidir con :other.' ,
2024-07-19 09:47:22 -07:00
'size' => [
2024-07-23 10:14:19 -07:00
'array' => 'El campo :attribute debe contenter :size elementos.' ,
'file' => 'El campo :attribute debe ser de :size kilobytes.' ,
'numeric' => 'El campo :attribute debe ser :size.' ,
'string' => 'El campo :attribute debe ser de :size caracteres.' ,
2024-07-19 09:47:22 -07:00
],
2024-07-23 10:14:19 -07:00
'starts_with' => 'El campo :attribute debe iniciar con uno de los siguientes: :values.' ,
2018-03-22 20:01:45 -07:00
'string' => 'Este :attribute debe ser una cadena.' ,
2024-10-28 15:04:35 -07:00
'two_column_unique_undeleted' => ':attribute debe ser único entre la :table1 y :table2. ' ,
'unique_undeleted' => ':attribute debe ser único.' ,
2022-01-13 21:27:29 -08:00
'non_circular' => ':attribute no debe crear una referencia circular.' ,
2024-01-24 07:29:39 -08:00
'not_array' => ':attribute no puede ser una matriz.' ,
2024-01-03 15:12:29 -08:00
'disallow_same_pwd_as_user_fields' => 'La contraseña no puede ser la misma que el nombre de usuario.' ,
2022-08-08 15:29:28 -07:00
'letters' => 'La contraseña debe contener al menos una letra.' ,
'numbers' => 'La contraseña debe contener al menos un número.' ,
'case_diff' => 'La contraseña debe usar mayúsculas y minúsculas.' ,
'symbols' => 'La contraseña debe contener símbolos.' ,
2024-07-23 10:14:19 -07:00
'timezone' => 'El campo :attribute debe ser una zona horaria válida.' ,
2024-10-28 15:04:35 -07:00
'unique' => ':attribute ya está en uso.' ,
'uploaded' => ':attribute no se pudo cargar.' ,
2024-07-23 10:14:19 -07:00
'uppercase' => 'El campo :attribute debe estar en mayúsculas.' ,
'url' => 'El campo :attribute debe ser una URL válida.' ,
'ulid' => 'El campo :attribute debe ser un ULID válido.' ,
'uuid' => 'El campo :attribute debe ser un UUID válido.' ,
2018-02-20 14:37:12 -08:00
2024-10-28 15:04:35 -07:00
2018-02-20 14:37:12 -08:00
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention " attribute.rule " to name the lines . This makes it quick to
| specify a specific custom language line for a given attribute rule .
|
*/
'custom' => [
2024-10-28 15:04:35 -07:00
'alpha_space' => 'El campo :attribute contiene un carácter que no está permitido.' ,
2022-01-13 21:27:29 -08:00
'email_array' => 'Una o más direcciones de correo electrónico no son válidas.' ,
2024-07-08 07:51:19 -07:00
'hashed_pass' => 'Su contraseña actual es incorrecta' ,
2018-02-20 14:37:12 -08:00
'dumbpwd' => 'Esa contraseña es muy común.' ,
2022-01-13 21:27:29 -08:00
'statuslabel_type' => 'Debe seleccionar un tipo de etiqueta de estado válido' ,
2024-08-15 04:21:06 -07:00
'custom_field_not_found' => 'Este campo parece que no existe, por favor, compruebe los nombres de sus campos personalizados.' ,
'custom_field_not_found_on_model' => 'Este campo parece existir, pero no está disponible en este conjunto de campos para el modelo de activo.' ,
2023-02-21 03:54:55 -08:00
// date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :(
2024-10-28 15:04:35 -07:00
// We use this because the default error message for date_format reflects php Y-m-d, which non-PHP
2024-07-19 09:47:22 -07:00
// people won't know how to format.
2024-10-28 15:04:35 -07:00
'purchase_date.date_format' => ':attribute debe ser una fecha válida en formato AAAA-MM-DD' ,
'last_audit_date.date_format' => 'El campo :attribute debe ser una fecha válida en formato AAAA-MM-DD hh:mm:ss' ,
'expiration_date.date_format' => ':attribute debe ser una fecha válida en formato AAAA-MM-DD' ,
'termination_date.date_format' => ':attribute debe ser una fecha válida en formato AAAA-MM-DD' ,
'expected_checkin.date_format' => ':attribute debe ser una fecha válida en formato AAAA-MM-DD' ,
'start_date.date_format' => ':attribute debe ser una fecha válida en formato AAAA-MM-DD' ,
'end_date.date_format' => ':attribute debe ser una fecha válida en formato AAAA-MM-DD' ,
2024-07-19 09:47:22 -07:00
'checkboxes' => ':attribute contiene opciones no válidas.' ,
2024-07-23 10:14:19 -07:00
'radio_buttons' => 'El valor de :attribute no es válido.' ,
2024-07-19 09:47:22 -07:00
'invalid_value_in_field' => 'Valor no válido incluido en este campo' ,
2024-10-28 15:04:35 -07:00
'ldap_username_field' => [
'not_in' => '<code>sAMAccountName</code> (mezcla de mayúsculas y minúsculas) no funcionará. Debe utilizar <code>samaccountname</code> (minúsculas) en su lugar.'
],
'ldap_auth_filter_query' => [ 'not_in' => '<code>uid=samaccountname</code> probablemente no es un filtro de autenticación válido Probablemente quiera <code>uid=</code> ' ],
'ldap_filter' => [ 'regex' => 'Este valor probablemente no debería ir entre paréntesis.' ],
2024-07-19 09:47:22 -07:00
],
2018-02-20 14:37:12 -08:00
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place - holders
| with something more reader friendly such as E - Mail Address instead
| of " email " . This simply helps us make messages a little cleaner .
|
*/
'attributes' => [],
2024-03-27 11:59:28 -07:00
/*
|--------------------------------------------------------------------------
2024-07-19 09:47:22 -07:00
| Generic Validation Messages - we use these in the jquery validation where we don ' t have
| access to the : attribute
2024-03-27 11:59:28 -07:00
|--------------------------------------------------------------------------
*/
2024-07-19 09:47:22 -07:00
'generic' => [
'invalid_value_in_field' => 'Valor no válido incluido en este campo' ,
2024-07-23 10:14:19 -07:00
'required' => 'El campo es obligatorio' ,
'email' => 'Por favor, ingrese una dirección de correo electrónico válida.' ,
2024-07-19 09:47:22 -07:00
],
2022-01-13 21:27:29 -08:00
];