2016-03-25 01:18:05 -07:00
< ? php
2022-01-13 21:27:29 -08:00
return [
2016-03-25 01:18:05 -07: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-09-10 06:41:08 -07:00
'accepted' => 'Il campo :attribute deve essere accettato.' ,
'accepted_if' => 'Il campo :attribute deve essere accettato quando :other è :value.' ,
'active_url' => 'Il campo :attribute deve essere un URL valido.' ,
'after' => 'Il campo :attribute deve essere una data successiva a :date.' ,
'after_or_equal' => 'Il campo :attribute deve essere una data successiva o uguale a :date.' ,
'alpha' => 'Il campo :attribute deve contenere solo lettere.' ,
'alpha_dash' => 'Il campo :attribute deve contenere solo lettere, numeri, trattini o trattini bassi.' ,
'alpha_num' => 'Il campo :attribute deve contenere solo lettere e numeri.' ,
'array' => 'Il campo :attribute deve essere un array.' ,
'ascii' => 'Il campo :attribute deve contenere solo caratteri alfanumerici e simboli a byte singolo.' ,
'before' => 'Il campo :attribute deve essere una data precedente il :date.' ,
2024-09-18 06:18:52 -07:00
'before_or_equal' => 'Il campo :attribute deve essere una data precedente o uguale al :date.' ,
2024-07-19 09:47:22 -07:00
'between' => [
2024-09-18 06:18:52 -07:00
'array' => 'Il campo :attribute deve avere tra :min e :max elementi.' ,
'file' => 'Il campo :attribute deve essere tra :min e :max kilobyte.' ,
'numeric' => 'Il campo :attribute deve essere tra :min e :max.' ,
'string' => 'Il campo :attribute deve essere lungo tra :min e :max caratteri.' ,
2017-09-06 18:05:32 -07:00
],
2024-07-19 09:47:22 -07:00
'boolean' => 'Il campo: attributo deve essere vero o falso.' ,
2024-09-18 06:18:52 -07:00
'can' => 'Il campo :attribute contiene un valore non autorizzato.' ,
'confirmed' => 'La conferma del campo :attribute non corrisponde.' ,
'contains' => 'Al campo :attribute manca un valore richiesto.' ,
'current_password' => 'La password non è corretta.' ,
'date' => 'Il campo :attribute deve essere una data valida.' ,
'date_equals' => 'Il campo :attribute deve essere una data uguale a :date.' ,
'date_format' => 'Il campo :attribute deve corrispondere al formato :format.' ,
'decimal' => 'Il campo :attribute deve avere :decimal decimali.' ,
'declined' => 'Il campo :attribute deve essere rifiutato.' ,
'declined_if' => 'Il campo :attribute deve essere rifiutato quando :other è :value.' ,
'different' => 'Il campo :attribute e :other devono essere diversi.' ,
'digits' => 'Il campo :attribute deve essere :digits cifre.' ,
'digits_between' => 'Il campo :attribute deve essere compreso tra :min e :max cifre.' ,
'dimensions' => 'Il campo :attribute ha una dimensione dell\'immagine non valida.' ,
2024-07-19 09:47:22 -07:00
'distinct' => 'Il campo :attribute ha un valore duplicato.' ,
2024-09-18 06:18:52 -07:00
'doesnt_end_with' => 'Il campo :attribute non deve terminare con uno dei seguenti: :values.' ,
'doesnt_start_with' => 'Il campo :attribute non deve iniziare con uno dei seguenti: :values.' ,
'email' => 'Il campo :attribute deve essere un indirizzo email valido.' ,
'ends_with' => 'Il campo :attribute deve terminare con uno dei seguenti: :values.' ,
2024-07-19 09:47:22 -07:00
'enum' => 'L\' :attribute selezionato è invalido.' ,
'exists' => ':attribute selezionato non è valido.' ,
2024-09-18 06:18:52 -07:00
'extensions' => 'Il campo :attribute deve avere una delle seguenti estensioni: :values.' ,
'file' => 'Il campo :attribute deve essere un file.' ,
2024-07-19 09:47:22 -07:00
'filled' => 'Il campo :attribute deve avere un valore.' ,
'gt' => [
2024-09-18 06:18:52 -07:00
'array' => 'Il campo :attribute deve avere più di :value elementi.' ,
'file' => 'Il campo :attribute deve essere maggiore di :value kilobytes.' ,
'numeric' => 'Il campo :attribute deve essere maggiore di :value.' ,
'string' => 'Il campo :attribute deve essere maggiore di :value caratteri.' ,
2024-07-19 09:47:22 -07:00
],
'gte' => [
2024-09-18 06:18:52 -07:00
'array' => 'Il campo :attribute deve avere :value o più elementi.' ,
'file' => 'Il campo :attribute deve essere maggiore o uguale a :value kilobytes.' ,
'numeric' => 'Il campo :attribute deve essere maggiore o uguale a :value.' ,
'string' => 'Il campo :attribute deve essere maggiore o uguale a :value caratteri.' ,
2024-07-19 09:47:22 -07:00
],
2024-09-18 06:18:52 -07:00
'hex_color' => 'Il campo :attribute deve essere un colore esadecimale valido.' ,
'image' => 'Il campo :attribute deve essere un\'immagine.' ,
2023-11-27 06:43:16 -08:00
'import_field_empty' => ':fieldname non può essere vuoto.' ,
2024-07-19 09:47:22 -07:00
'in' => ':attribute selezionato non è valido.' ,
2024-09-18 06:18:52 -07:00
'in_array' => 'Il campo :attribute deve esistere in :other.' ,
'integer' => 'Il campo :attribute deve essere un numero intero.' ,
'ip' => 'Il campo :attribute deve essere un indirizzo IP valido.' ,
'ipv4' => 'Il campo :attribute deve essere un indirizzo IPv4 valido.' ,
'ipv6' => 'Il campo :attribute deve essere un indirizzo IPv6 valido.' ,
'json' => 'Il campo :attribute deve essere una stringa JSON valida.' ,
'list' => 'Il campo :attribute deve essere una lista.' ,
'lowercase' => 'Il campo :attribute deve essere minuscolo.' ,
2024-07-19 09:47:22 -07:00
'lt' => [
2024-09-18 06:18:52 -07:00
'array' => 'Il campo :attribute deve avere meno di :value elementi.' ,
'file' => 'Il campo :attribute deve essere inferiore a :value kilobytes.' ,
'numeric' => 'Il campo :attribute deve essere inferiore a :value.' ,
'string' => 'Il campo :attribute deve essere inferiore a :value caratteri.' ,
2017-09-06 18:05:32 -07:00
],
2024-07-19 09:47:22 -07:00
'lte' => [
2024-09-18 06:18:52 -07:00
'array' => 'Il campo :attribute non deve avere più di :value elementi.' ,
'file' => 'Il campo :attribute deve essere inferiore o uguale a :value kilobytes.' ,
'numeric' => 'Il campo :attribute deve essere minore o uguale a :value.' ,
'string' => 'Il campo :attribute deve essere inferiore o uguale a :value caratteri.' ,
2017-09-06 18:05:32 -07:00
],
2024-09-18 06:18:52 -07:00
'mac_address' => 'Il campo :attribute deve essere un indirizzo MAC valido.' ,
2024-07-19 09:47:22 -07:00
'max' => [
2024-09-18 06:18:52 -07:00
'array' => 'Il campo :attribute non deve avere più di :max elementi.' ,
'file' => 'Il campo :attribute non deve essere maggiore di :max kilobytes.' ,
'numeric' => 'Il campo :attribute non deve essere maggiore di :max.' ,
'string' => 'Il campo :attribute non deve avere più di :max caratteri.' ,
2024-07-19 09:47:22 -07:00
],
2024-09-18 06:18:52 -07:00
'max_digits' => 'Il campo :attribute non deve avere più di :max cifre.' ,
'mimes' => 'Il campo :attribute deve essere un file di tipo: :values.' ,
'mimetypes' => 'Il campo :attribute deve essere un file di tipo: :values.' ,
2024-07-19 09:47:22 -07:00
'min' => [
2024-09-18 06:18:52 -07:00
'array' => 'Il campo :attribute deve avere almeno :min elementi.' ,
'file' => 'Il campo :attribute deve essere almeno :min kilobytes.' ,
'numeric' => 'Il campo :attribute deve essere almeno :min.' ,
'string' => 'Il campo :attribute deve avere almeno :min caratteri.' ,
2024-07-19 09:47:22 -07:00
],
2024-09-10 06:41:08 -07:00
'min_digits' => 'Il campo :attribute deve avere almeno :min cifre.' ,
'missing' => 'Il campo :attribute deve mancare.' ,
2024-09-18 06:18:52 -07:00
'missing_if' => 'Il campo :attribute deve mancare quando :other è :value.' ,
'missing_unless' => 'Il campo :attribute deve essere mancante a meno che :other non sia :value.' ,
'missing_with' => 'Il campo :attribute deve mancare quando :values è presente.' ,
'missing_with_all' => 'Il campo :attribute deve mancare quando :values sono presenti.' ,
'multiple_of' => 'Il campo :attribute deve essere multiplo di :value.' ,
2024-07-19 09:47:22 -07:00
'not_in' => ':attribute selezionato non è valido.' ,
2024-09-18 06:18:52 -07:00
'not_regex' => 'Il formato del campo :attribute non è valido.' ,
2024-09-10 06:41:08 -07:00
'numeric' => 'Il campo :attribute deve essere un numero.' ,
2024-07-19 09:47:22 -07:00
'password' => [
2024-09-10 06:41:08 -07:00
'letters' => 'Il campo :attribute deve contenere almeno una lettera.' ,
2024-09-18 06:18:52 -07:00
'mixed' => 'Il campo :attribute deve contenere almeno una lettera maiuscola e una lettera minuscola.' ,
'numbers' => 'Il campo :attribute deve contenere almeno un numero.' ,
'symbols' => 'Il campo :attribute deve contenere almeno un simbolo.' ,
'uncompromised' => 'Il valore :attribute fornito è comparso in un data leak. Si prega di scegliere un :attribute differente.' ,
2024-07-19 09:47:22 -07:00
],
2024-10-01 12:30:58 -07:00
'percent' => 'Il deprezzamento minimo deve essere tra 0 e 100 quando il tipo di deprezzamento è Percentuale.' ,
2024-08-15 04:21:06 -07:00
2024-07-19 09:47:22 -07:00
'present' => 'Il campo :attribute deve essere presente.' ,
2024-09-18 06:18:52 -07:00
'present_if' => 'Il campo :attribute deve essere presente quando :other è :value.' ,
'present_unless' => 'Il campo :attribute deve essere presente a meno che :other non sia :value.' ,
'present_with' => 'Il campo :attribute deve essere presente quando :values è presente.' ,
'present_with_all' => 'Il campo :attribute deve essere presente quando :values sono presenti.' ,
'prohibited' => 'Il campo :attribute è vietato.' ,
'prohibited_if' => 'Il campo :attribute è vietato quando :other è :value.' ,
'prohibited_unless' => 'Il campo :attribute è vietato a meno che :other non sia in :values.' ,
'prohibits' => 'Il campo :attribute inibisce la presenza di :other.' ,
'regex' => 'Il formato del campo :attribute non è valido.' ,
2024-07-19 09:47:22 -07:00
'required' => 'Il campo :attribute è obbligatorio.' ,
2024-09-18 06:18:52 -07:00
'required_array_keys' => 'Il campo :attribute deve contenere voci per: :values.' ,
2024-07-19 09:47:22 -07:00
'required_if' => 'Il campo :attribute è obbligatorio quando :other è :value.' ,
2024-09-18 06:18:52 -07:00
'required_if_accepted' => 'Il campo :attribute è obbligatorio quando :other è accettato.' ,
'required_if_declined' => 'Il campo :attribute è obbligatorio quando :other è rifiutato.' ,
2024-07-19 09:47:22 -07:00
'required_unless' => 'Il campo :attribute è obbligatorio a meno che :other sia in :values.' ,
'required_with' => 'Il campo :attribute è obbligatorio quando :values è presente.' ,
2024-09-18 06:18:52 -07:00
'required_with_all' => 'Il campo :attribute è obbligatorio quando :values sono presenti.' ,
2024-07-19 09:47:22 -07:00
'required_without' => 'Il campo :attribute è obbligatorio quando :values non è presente.' ,
2023-11-27 06:43:16 -08:00
'required_without_all' => 'Il campo :attribute è obbligatorio quando nessuno dei valori :values è presente.' ,
2024-09-18 06:18:52 -07:00
'same' => 'Il campo :attribute deve corrispondere a :other.' ,
2024-07-19 09:47:22 -07:00
'size' => [
2024-09-18 06:18:52 -07:00
'array' => 'Il campo :attribute deve contenere :size elementi.' ,
'file' => 'Il campo :attribute deve essere :size kilobytes.' ,
'numeric' => 'Il campo :attribute deve essere :size.' ,
'string' => 'Il campo :attribute deve avere :size caratteri.' ,
2017-09-06 18:05:32 -07:00
],
2024-09-18 06:18:52 -07:00
'starts_with' => 'Il campo :attribute deve iniziare con uno dei seguenti: :values.' ,
2023-11-27 06:43:16 -08:00
'string' => ':attribute deve essere una stringa.' ,
'two_column_unique_undeleted' => ':attribute deve essere univoco tra :table1 e :table2 . ' ,
'unique_undeleted' => ':attribute deve essere unico.' ,
2022-01-13 21:27:29 -08:00
'non_circular' => ':attribute non deve creare un riferimento circolare.' ,
2024-01-24 07:29:39 -08:00
'not_array' => ':attribute non può essere un array.' ,
2022-07-05 16:18:53 -07:00
'disallow_same_pwd_as_user_fields' => 'La password non può essere uguale al nome utente.' ,
'letters' => 'La password deve contenere almeno una lettera.' ,
'numbers' => 'La password deve contenere almeno un numero.' ,
'case_diff' => 'La password deve utilizzare maiuscole e minuscole.' ,
'symbols' => 'La password deve contenere simboli.' ,
2024-09-18 06:18:52 -07:00
'timezone' => 'Il campo :attribute deve essere un fuso orario valido.' ,
2024-07-19 09:47:22 -07:00
'unique' => ':attribute è già stato preso.' ,
'uploaded' => 'Non è stato possibile caricare :attribute.' ,
2024-09-18 06:18:52 -07:00
'uppercase' => 'Il campo :attribute deve essere maiuscolo.' ,
2024-09-10 06:41:08 -07:00
'url' => 'Il campo :attribute deve essere un URL valido.' ,
2024-09-18 06:18:52 -07:00
'ulid' => 'Il campo :attribute deve essere un ULID valido.' ,
'uuid' => 'Il campo :attribute deve essere un UUID valido.' ,
2017-09-06 18:05:32 -07:00
2024-10-28 15:04:35 -07:00
2016-03-25 01:18:05 -07: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 .
|
*/
2017-09-06 18:05:32 -07:00
'custom' => [
2023-11-27 06:43:16 -08:00
'alpha_space' => 'Il campo :attribute contiene un carattere non consentito.' ,
2022-01-13 21:27:29 -08:00
'email_array' => 'Uno o più indirizzi email non sono validi.' ,
2023-11-27 06:43:16 -08:00
'hashed_pass' => 'La tua attuale password non è corretta' ,
'dumbpwd' => 'Questa password è troppo comune.' ,
2022-01-13 21:27:29 -08:00
'statuslabel_type' => 'È necessario selezionare un tipo di etichetta di stato valido' ,
2024-08-15 04:21:06 -07:00
'custom_field_not_found' => 'Questo campo non sembra esistere, si prega di ricontrollare i nomi dei campi personalizzati.' ,
'custom_field_not_found_on_model' => 'Sembra che questo campo esista, ma non è disponibile tra i campi di questo Modello di Bene.' ,
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.
2023-11-27 06:43:16 -08:00
'purchase_date.date_format' => ':attribute deve essere in formato AAAA-MM-GG' ,
'last_audit_date.date_format' => ':attribute deve essere in formato AAAA-MM-GG hh:mm:ss' ,
'expiration_date.date_format' => ':attribute deve essere in formato AAAA-MM-GG' ,
'termination_date.date_format' => ':attribute deve essere in formato AAAA-MM-GG' ,
'expected_checkin.date_format' => ':attribute deve essere in formato AAAA-MM-GG' ,
'start_date.date_format' => ':attribute deve essere in formato AAAA-MM-GG' ,
'end_date.date_format' => ':attribute deve essere in formato AAAA-MM-GG' ,
2024-07-19 09:47:22 -07:00
'checkboxes' => ':attribute contiene opzioni non valide.' ,
'radio_buttons' => ':attribute non è valido.' ,
'invalid_value_in_field' => 'Valore non valido incluso in questo campo' ,
2024-10-28 15:04:35 -07:00
'ldap_username_field' => [
'not_in' => '<code>sAMAccountName</code> (grafìa mista) non va bene. Dovresti piuttosto usare <code>samaccountname</code> (minuscolo).'
],
'ldap_auth_filter_query' => [ 'not_in' => 'Probabilmente <code>uid=samaccountname</code> non è un filtro di l\'autenticazione valido. Forse è meglio <code>uid=</code> ' ],
'ldap_filter' => [ 'regex' => 'Questo valore probabilmente non dovrebbe stare tra parentesi.' ],
2024-07-19 09:47:22 -07:00
],
2016-03-25 01:18:05 -07: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 .
|
*/
2017-09-06 18:05:32 -07:00
'attributes' => [],
2016-03-25 01:18:05 -07:00
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' => 'Valore non valido incluso in questo campo' ,
2024-09-10 06:41:08 -07:00
'required' => 'Questo campo è obbligatorio' ,
'email' => 'Inserire un indirizzo e-mail valido' ,
2024-07-19 09:47:22 -07:00
],
2022-01-13 21:27:29 -08:00
];