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 'before' => ':attribute deve essere una data prima del :date.',
20 'numeric' => 'Il campo :attribute deve essere tra :min e :max.',
21 'file' => 'Il campo :attribute deve essere tra :min e :max kilobytes.',
22 'string' => 'Il campo :attribute deve essere tra :min e :max caratteri.',
23 'array' => 'Il campo :attribute deve essere tra :min e :max oggetti.',
25 'boolean' => ':attribute deve contenere vero o falso.',
26 'confirmed' => 'La conferma di :attribute non corrisponde.',
27 'date' => ':attribute non è una data valida.',
28 'date_format' => 'Il campo :attribute non corrisponde al formato :format.',
29 'different' => 'Il campo :attribute e :other devono essere differenti.',
30 'digits' => 'Il campo :attribute deve essere di :digits numeri.',
31 'digits_between' => 'Il campo :attribute deve essere tra i numeri :min e :max.',
32 'email' => 'Il campo :attribute deve essere un indirizzo email valido.',
33 'ends_with' => ':attribute deve terminare con uno dei seguenti: :values',
34 'filled' => 'Il campo :attribute field is required.',
36 'numeric' => ':attribute deve essere maggiore di :value.',
37 'file' => ':attribute deve essere maggiore di :value kilobytes.',
38 'string' => ':attribute deve essere maggiore di :value caratteri.',
39 'array' => ':attribute deve avere più di :value elementi.',
42 'numeric' => ':attribute deve essere maggiore o uguale a :value.',
43 'file' => ':attribute deve essere maggiore o uguale a :value kilobytes.',
44 'string' => ':attribute deve essere maggiore o uguale a :value caratteri.',
45 'array' => ':attribute deve avere :value elementi o più.',
47 'exists' => 'Il campo :attribute non è valido.',
48 'image' => 'Il campo :attribute deve essere un\'immagine.',
49 'image_extension' => ':attribute deve avere un\'estensione immagine valida e supportata.',
50 'in' => 'Il campo :attribute selezionato non è valido.',
51 'integer' => 'Il campo :attribute deve essere un intero.',
52 'ip' => 'Il campo :attribute deve essere un indirizzo IP valido.',
53 'ipv4' => ':attribute deve essere un indirizzo IPv4 valido.',
54 'ipv6' => ':attribute deve essere un indirizzo IPv6 valido.',
55 'json' => ':attribute deve essere una stringa JSON valida.',
57 'numeric' => ':attribute deve essere inferiore a :value.',
58 'file' => ':attribute deve essere inferiore a :value kilobytes.',
59 'string' => ':attribute deve essere inferiore a :value caratteri.',
60 'array' => ':attribute deve avere meno di :value elementi.',
63 'numeric' => ':attribute deve essere minore o uguale :value.',
64 'file' => ':attribute deve essere minore o uguale a :value kilobytes.',
65 'string' => ':attribute deve essere minore o uguale a :value caratteri.',
66 'array' => ':attribute non deve avere più di :value elementi.',
69 'numeric' => 'Il campo :attribute non deve essere maggiore di :max.',
70 'file' => 'Il campo :attribute non deve essere maggiore di :max kilobytes.',
71 'string' => 'Il campo :attribute non deve essere maggiore di :max caratteri.',
72 'array' => 'Il campo :attribute non deve avere più di :max oggetti.',
74 'mimes' => 'Il campo :attribute deve essere: :values.',
76 'numeric' => 'Il campo :attribute deve essere almeno :min.',
77 'file' => 'Il campo :attribute deve essere almeno :min kilobytes.',
78 'string' => 'Il campo :attribute deve essere almeno :min caratteri.',
79 'array' => 'Il campo :attribute deve contenere almeno :min elementi.',
81 'no_double_extension' => ':attribute deve avere solo un\'estensione.',
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.',
94 'numeric' => 'Il campo :attribute deve essere :size.',
95 'file' => 'Il campo :attribute deve essere :size kilobytes.',
96 'string' => 'Il campo :attribute deve essere di :size caratteri.',
97 'array' => 'Il campo :attribute deve contenere :size elementi.',
99 'string' => ':attribute deve essere una stringa.',
100 'timezone' => ':attribute deve essere una zona valida.',
101 'unique' => ':attribute è già preso.',
102 'url' => 'Il formato :attribute non è valido.',
103 'uploaded' => 'Il file non può essere caricato. Il server potrebbe non accettare file di questa dimensione.',
105 // Custom validation lines
107 'password-confirm' => [
108 'required_with' => 'Conferma della password richiesta',
112 // Custom validation attributes