4 * The following language lines contain the default error messages used by
5 * the validator class. Some of these rules have multiple versions such
6 * as the size rules. Feel free to tweak each of these messages here.
10 // Standard laravel validation lines
11 'accepted' => ':attribute deve essere accettato.',
12 'active_url' => ':attribute non è uno URL valido.',
13 'after' => ':attribute deve essere una data dopo il :date.',
14 'alpha' => ':attribute deve contenere solo lettere.',
15 'alpha_dash' => ':attribute deve contenere solo lettere, numeri e meno.',
16 'alpha_num' => ':attribute deve contenere solo lettere e numeri.',
17 'array' => ':attribute deve essere un array.',
18 'backup_codes' => 'Il codice fornito non è valido o è già stato utilizzato.',
19 'before' => ':attribute deve essere una data prima del :date.',
21 'numeric' => 'Il campo :attribute deve essere tra :min e :max.',
22 'file' => 'Il campo :attribute deve essere tra :min e :max kilobytes.',
23 'string' => 'Il campo :attribute deve essere tra :min e :max caratteri.',
24 'array' => 'Il campo :attribute deve essere tra :min e :max oggetti.',
26 'boolean' => ':attribute deve contenere vero o falso.',
27 'confirmed' => 'La conferma di :attribute non corrisponde.',
28 'date' => ':attribute non è una data valida.',
29 'date_format' => 'Il campo :attribute non corrisponde al formato :format.',
30 'different' => 'Il campo :attribute e :other devono essere differenti.',
31 'digits' => 'Il campo :attribute deve essere di :digits numeri.',
32 'digits_between' => 'Il campo :attribute deve essere tra i numeri :min e :max.',
33 'email' => 'Il campo :attribute deve essere un indirizzo email valido.',
34 'ends_with' => ':attribute deve terminare con uno dei seguenti: :values',
35 'filled' => 'Il campo :attribute field is required.',
37 'numeric' => ':attribute deve essere maggiore di :value.',
38 'file' => ':attribute deve essere maggiore di :value kilobytes.',
39 'string' => ':attribute deve essere maggiore di :value caratteri.',
40 'array' => ':attribute deve avere più di :value elementi.',
43 'numeric' => ':attribute deve essere maggiore o uguale a :value.',
44 'file' => ':attribute deve essere maggiore o uguale a :value kilobytes.',
45 'string' => ':attribute deve essere maggiore o uguale a :value caratteri.',
46 'array' => ':attribute deve avere :value elementi o più.',
48 'exists' => 'Il campo :attribute non è valido.',
49 'image' => 'Il campo :attribute deve essere un\'immagine.',
50 'image_extension' => ':attribute deve avere un\'estensione immagine valida e supportata.',
51 'in' => 'Il campo :attribute selezionato non è valido.',
52 'integer' => 'Il campo :attribute deve essere un intero.',
53 'ip' => 'Il campo :attribute deve essere un indirizzo IP valido.',
54 'ipv4' => ':attribute deve essere un indirizzo IPv4 valido.',
55 'ipv6' => ':attribute deve essere un indirizzo IPv6 valido.',
56 'json' => ':attribute deve essere una stringa JSON valida.',
58 'numeric' => ':attribute deve essere inferiore a :value.',
59 'file' => ':attribute deve essere inferiore a :value kilobytes.',
60 'string' => ':attribute deve essere inferiore a :value caratteri.',
61 'array' => ':attribute deve avere meno di :value elementi.',
64 'numeric' => ':attribute deve essere minore o uguale :value.',
65 'file' => ':attribute deve essere minore o uguale a :value kilobytes.',
66 'string' => ':attribute deve essere minore o uguale a :value caratteri.',
67 'array' => ':attribute non deve avere più di :value elementi.',
70 'numeric' => 'Il campo :attribute non deve essere maggiore di :max.',
71 'file' => 'Il campo :attribute non deve essere maggiore di :max kilobytes.',
72 'string' => 'Il campo :attribute non deve essere maggiore di :max caratteri.',
73 'array' => 'Il campo :attribute non deve avere più di :max oggetti.',
75 'mimes' => 'Il campo :attribute deve essere: :values.',
77 'numeric' => 'Il campo :attribute deve essere almeno :min.',
78 'file' => 'Il campo :attribute deve essere almeno :min kilobytes.',
79 'string' => 'Il campo :attribute deve essere almeno :min caratteri.',
80 'array' => 'Il campo :attribute deve contenere almeno :min elementi.',
82 'not_in' => 'Il :attribute selezionato non è valido.',
83 'not_regex' => 'Il formato di :attribute non è valido.',
84 'numeric' => ':attribute deve essere un numero.',
85 'regex' => 'Il formato di :attribute non è valido.',
86 'required' => 'Il campo :attribute è richiesto.',
87 'required_if' => 'Il campo :attribute è richiesto quando :other è :value.',
88 'required_with' => 'Il campo :attribute è richiesto quando :values è presente.',
89 'required_with_all' => 'Il campo :attribute è richiesto quando :values sono presenti.',
90 'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.',
91 'required_without_all' => 'Il campo :attribute è richiesto quando nessuno dei :values sono presenti.',
92 'same' => ':attribute e :other devono corrispondere.',
93 'safe_url' => 'Il link inserito potrebbe non essere sicuro.',
95 'numeric' => 'Il campo :attribute deve essere :size.',
96 'file' => 'Il campo :attribute deve essere :size kilobytes.',
97 'string' => 'Il campo :attribute deve essere di :size caratteri.',
98 'array' => 'Il campo :attribute deve contenere :size elementi.',
100 'string' => ':attribute deve essere una stringa.',
101 'timezone' => ':attribute deve essere una zona valida.',
102 'totp' => 'Il codice fornito non è valido o è scaduto.',
103 'unique' => ':attribute è già preso.',
104 'url' => 'Il formato :attribute non è valido.',
105 'uploaded' => 'Il file non può essere caricato. Il server potrebbe non accettare file di questa dimensione.',
107 // Custom validation lines
109 'password-confirm' => [
110 'required_with' => 'Conferma della password richiesta',
114 // Custom validation attributes