6 |--------------------------------------------------------------------------
7 | Validation Language Lines
8 |--------------------------------------------------------------------------
10 | The following language lines contain the default error messages used by
11 | the validator class. Some of these rules have multiple versions such
12 | as the size rules. Feel free to tweak each of these messages here.
16 'accepted' => ':attribute deve essere accettato.',
17 'active_url' => ':attribute non è uno URL valido.',
18 'after' => ':attribute deve essere una data dopo il :date.',
19 'alpha' => ':attribute deve contenere solo lettere.',
20 'alpha_dash' => ':attribute deve contenere solo lettere, numeri e meno.',
21 'alpha_num' => ':attribute deve contenere solo lettere e numeri.',
22 'array' => ':attribute deve essere un array.',
23 'before' => ':attribute deve essere una data prima del :date.',
25 'numeric' => 'Il campo :attribute deve essere tra :min e :max.',
26 'file' => 'Il campo :attribute deve essere tra :min e :max kilobytes.',
27 'string' => 'Il campo :attribute deve essere tra :min e :max caratteri.',
28 'array' => 'Il campo :attribute deve essere tra :min e :max oggetti.',
30 'boolean' => ':attribute deve contenere vero o falso.',
31 'confirmed' => 'La conferma di :attribute non corrisponde.',
32 'date' => ':attribute non è una data valida.',
33 'date_format' => 'Il campo :attribute non corrisponde al formato :format.',
34 'different' => 'Il campo :attribute e :other devono essere differenti.',
35 'digits' => 'Il campo :attribute deve essere di :digits numeri.',
36 'digits_between' => 'Il campo :attribute deve essere tra i numeri :min e :max.',
37 'email' => 'Il campo :attribute deve essere un indirizzo email valido.',
38 'filled' => 'Il campo :attribute field is required.',
39 'exists' => 'Il campo :attribute non è valido.',
40 'image' => 'Il campo :attribute deve essere un\'immagine.',
41 'in' => 'Il campo :attribute selezionato non è valido.',
42 'integer' => 'Il campo :attribute deve essere un intero.',
43 'ip' => 'Il campo :attribute deve essere un indirizzo IP valido.',
45 'numeric' => 'Il campo :attribute non deve essere maggiore di :max.',
46 'file' => 'Il campo :attribute non deve essere maggiore di :max kilobytes.',
47 'string' => 'Il campo :attribute non deve essere maggiore di :max caratteri.',
48 'array' => 'Il campo :attribute non deve avere più di :max oggetti.',
50 'mimes' => 'Il campo :attribute deve essere: :values.',
52 'numeric' => 'Il campo :attribute deve essere almeno :min.',
53 'file' => 'Il campo :attribute deve essere almeno :min kilobytes.',
54 'string' => 'Il campo :attribute deve essere almeno :min caratteri.',
55 'array' => 'Il campo :attribute deve contenere almeno :min elementi.',
57 'not_in' => 'Il :attribute selezionato non è valido.',
58 'numeric' => ':attribute deve essere un numero.',
59 'regex' => 'Il formato di :attribute non è valido.',
60 'required' => 'Il campo :attribute è richiesto.',
61 'required_if' => 'Il campo :attribute è richiesto quando :other è :value.',
62 'required_with' => 'Il campo :attribute è richiesto quando :values è presente.',
63 'required_with_all' => 'Il campo :attribute è richiesto quando :values sono presenti.',
64 'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.',
65 'required_without_all' => 'Il campo :attribute è richiesto quando nessuno dei :values sono presenti.',
66 'same' => ':attribute e :other devono corrispondere.',
68 'numeric' => 'Il campo :attribute deve essere :size.',
69 'file' => 'Il campo :attribute deve essere :size kilobytes.',
70 'string' => 'Il campo :attribute deve essere di :size caratteri.',
71 'array' => 'Il campo :attribute deve contenere :size elementi.',
73 'string' => ':attribute deve essere una stringa.',
74 'timezone' => ':attribute deve essere una zona valida.',
75 'unique' => ':attribute è già preso.',
76 'url' => 'Il formato :attribute non è valido.',
79 |--------------------------------------------------------------------------
80 | Custom Validation Language Lines
81 |--------------------------------------------------------------------------
83 | Here you may specify custom validation messages for attributes using the
84 | convention "attribute.rule" to name the lines. This makes it quick to
85 | specify a specific custom language line for a given attribute rule.
90 'password-confirm' => [
91 'required_with' => 'Conferma della password richiesta',
96 |--------------------------------------------------------------------------
97 | Custom Validation Attributes
98 |--------------------------------------------------------------------------
100 | The following language lines are used to swap attribute place-holders
101 | with something more reader friendly such as E-Mail Address instead
102 | of "email". This simply helps us make messages a little cleaner.