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.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2017-09-06 18:05:32 -07:00
|
|
|
'accepted' => 'il :attribute è stato accettato.',
|
|
|
|
'active_url' => ':attribute non è un URL valido.',
|
|
|
|
'after' => ':attribute deve essere una data oltre il :date.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'after_or_equal' => 'L\'attributo deve essere una data dopo o uguale a: data.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'alpha' => ':attribute può contenere solo lettere.',
|
|
|
|
'alpha_dash' => ':attribute può contenere solo lettere numeri e trattini.',
|
|
|
|
'alpha_num' => ':attribute può contenere solo lettere e numeri.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'L\'attributo: deve essere un array.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'before' => ':attribute deve essere una data dopo :date.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'before_or_equal' => 'L\'attributo deve essere una data precedente o uguale a: data.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'between' => [
|
|
|
|
'numeric' => ':attribute deve essere tra :min - :max.',
|
|
|
|
'file' => 'il :attribute deve essere tra :min - :max kilobytes.',
|
|
|
|
'string' => 'il :attribute deve essere tra :min - :max caratteri.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'L\'attributo deve avere tra: min e: max elementi.',
|
2017-09-06 18:05:32 -07:00
|
|
|
],
|
2017-10-17 18:52:20 -07:00
|
|
|
'boolean' => 'Il campo: attributo deve essere vero o falso.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'confirmed' => 'il :attribute non corrisponde.',
|
|
|
|
'date' => 'la :attribute non è valida.',
|
|
|
|
'date_format' => 'il :attribute non corrisponde al :format.',
|
|
|
|
'different' => 'il :attribute e :other devono essere differenti.',
|
|
|
|
'digits' => 'il :attribute deve essere :digits digits.',
|
|
|
|
'digits_between' => 'il :attribute deve essere tra :min e :max digits.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'dimensions' => 'L\'attributo: ha dimensioni di immagine non valide.',
|
|
|
|
'distinct' => 'Il campo attributo ha un valore duplicato.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'email' => 'il formato del :attribute è invalido.',
|
|
|
|
'exists' => ':attribute selezzionato è invalido.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'file' => 'L\'attributo: deve essere un file.',
|
|
|
|
'filled' => 'Il campo: attributo deve avere un valore.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'image' => 'il :attribute deve essere un immagine.',
|
|
|
|
'in' => 'Il selezionato :attribute è invalido.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'in_array' => 'Il campo attributo non esiste in: altro.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'integer' => 'L\' :attribute deve essere un numero intero.',
|
|
|
|
'ip' => 'L\' :attribute deve essere un indirizzo IP valido.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'ipv4' => 'L\'attributo: deve essere un indirizzo IPv4 valido.',
|
|
|
|
'ipv6' => 'L\'attributo: deve essere un indirizzo IPv6 valido.',
|
|
|
|
'json' => 'L\'attributo: deve essere una stringa JSON valida.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'max' => [
|
|
|
|
'numeric' => 'L\' :attribute non può essere superiore di :max.',
|
|
|
|
'file' => 'L\' :attribute non può essere maggiore di :max kilobytes.',
|
|
|
|
'string' => 'L\' :attribute non può essere maggiore di :max caratteri.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'L\'attributo: non può avere più di: elementi max.',
|
2017-09-06 18:05:32 -07:00
|
|
|
],
|
|
|
|
'mimes' => 'L\' :attribute deve essere un file di type: :values.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'mimetypes' => 'L\'attributo: deve essere un file di tipo:: valori.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'min' => [
|
|
|
|
'numeric' => 'L\' :attribute deve essere almeno :min.',
|
|
|
|
'file' => 'L\' :attribute deve essere almeno :min kilobytes.',
|
|
|
|
'string' => 'L\' :attribute deve essere almeno :min caratteri.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'L\'attributo deve avere almeno: elementi min.',
|
2017-09-06 18:05:32 -07:00
|
|
|
],
|
2022-01-13 21:27:29 -08:00
|
|
|
'starts_with' => 'Attributo :attribute deve iniziare con uno dei seguenti: :values.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'not_in' => 'L\' :attribute selezionato è invalido.',
|
|
|
|
'numeric' => 'L\' :attribute deve essere un numero.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'present' => 'Il campo attributo deve essere presente.',
|
2018-03-22 20:01:45 -07:00
|
|
|
'valid_regex' => 'Questa non è una regex valida. ',
|
2017-09-06 18:05:32 -07:00
|
|
|
'regex' => 'Il formato dell\' :attribute è invalido.',
|
|
|
|
'required' => 'Il campo :attribute è obblogatorio.',
|
|
|
|
'required_if' => 'L\' :attribute è richiesto quando :other è :value.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'required_unless' => 'Il campo: attributo è obbligatorio a meno che: l\'altro sia in: valori.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'required_with' => 'Il campo :attribute è richiesto quando :values è presente.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'required_with_all' => 'Il campo attributo è necessario quando: i valori sono presenti.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'required_without_all' => 'Il campo attributo è richiesto quando nessuno dei valori è presente.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'same' => 'L\' :attribute e :other devono corrispondere.',
|
|
|
|
'size' => [
|
|
|
|
'numeric' => 'L\' :attribute deve essere :size.',
|
|
|
|
'file' => 'L\' :attribute deve essere :size kilobytes.',
|
|
|
|
'string' => 'L\' :attribute deve essere :size characters.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'array' => 'L\'attributo: deve contenere: elementi di dimensioni.',
|
2017-09-06 18:05:32 -07:00
|
|
|
],
|
2017-10-17 18:52:20 -07:00
|
|
|
'string' => 'L\'attributo: deve essere una stringa.',
|
|
|
|
'timezone' => 'L\'attributo: deve essere una zona valida.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'unique' => 'L\' :attribute è già stato preso.',
|
2017-10-17 18:52:20 -07:00
|
|
|
'uploaded' => 'L\'attributo: non è riuscito a caricare.',
|
2017-09-06 18:05:32 -07:00
|
|
|
'url' => 'Il formato dell\' :attribute è invalido.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'unique_undeleted' => 'L\'attributo deve essere univoco.',
|
|
|
|
'non_circular' => ':attribute non deve creare un riferimento circolare.',
|
2022-06-30 17:34:46 -07:00
|
|
|
'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.',
|
|
|
|
'letters' => 'Password must contain at least one letter.',
|
|
|
|
'numbers' => 'Password must contain at least one number.',
|
|
|
|
'case_diff' => 'Password must use mixed case.',
|
|
|
|
'symbols' => 'Password must contain symbols.',
|
2022-05-24 15:07:14 -07:00
|
|
|
'gte' => [
|
2022-06-30 17:34:46 -07:00
|
|
|
'numeric' => 'Il valore non può essere negativo'
|
2022-05-24 15:07:14 -07:00
|
|
|
],
|
|
|
|
|
2017-09-06 18:05:32 -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.
|
|
|
|
|
|
|
|
|
*/
|
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' => [
|
2022-01-13 21:27:29 -08:00
|
|
|
'alpha_space' => 'Il campo attributo contiene un carattere non consentito.',
|
|
|
|
'email_array' => 'Uno o più indirizzi email non sono validi.',
|
|
|
|
'hashed_pass' => 'La tua password corrente non è corretta',
|
2017-10-17 18:52:20 -07:00
|
|
|
'dumbpwd' => 'Quella password è troppo comune.',
|
2022-01-13 21:27:29 -08:00
|
|
|
'statuslabel_type' => 'È necessario selezionare un tipo di etichetta di stato valido',
|
2017-09-06 18:05:32 -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
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
];
|