]> BookStack Code Mirror - bookstack/blob - lang/it/validation.php
Followed Laravel 9 update steps and file changes
[bookstack] / lang / it / validation.php
1 <?php
2 /**
3  * Validation Lines
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.
7  */
8 return [
9
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.',
20     'between'              => [
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.',
25     ],
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     'file'                 => ':attribute deve essere fornito come file valido.',
36     'filled'               => 'Il campo :attribute field is required.',
37     'gt'                   => [
38         'numeric' => ':attribute deve essere maggiore di :value.',
39         'file'    => ':attribute deve essere maggiore di :value kilobytes.',
40         'string'  => ':attribute deve essere maggiore di :value caratteri.',
41         'array'   => ':attribute deve avere più di :value elementi.',
42     ],
43     'gte'                  => [
44         'numeric' => ':attribute deve essere maggiore o uguale a :value.',
45         'file'    => ':attribute deve essere maggiore o uguale a :value kilobytes.',
46         'string'  => ':attribute deve essere maggiore o uguale a :value caratteri.',
47         'array'   => ':attribute deve avere :value elementi o più.',
48     ],
49     'exists'               => 'Il campo :attribute non è valido.',
50     'image'                => 'Il campo :attribute deve essere un\'immagine.',
51     'image_extension'      => ':attribute deve avere un\'estensione immagine valida e supportata.',
52     'in'                   => 'Il campo :attribute selezionato non è valido.',
53     'integer'              => 'Il campo :attribute deve essere un intero.',
54     'ip'                   => 'Il campo :attribute deve essere un indirizzo IP valido.',
55     'ipv4'                 => ':attribute deve essere un indirizzo IPv4 valido.',
56     'ipv6'                 => ':attribute deve essere un indirizzo IPv6 valido.',
57     'json'                 => ':attribute deve essere una stringa JSON valida.',
58     'lt'                   => [
59         'numeric' => ':attribute deve essere inferiore a :value.',
60         'file'    => ':attribute deve essere inferiore a :value kilobytes.',
61         'string'  => ':attribute deve essere inferiore a :value caratteri.',
62         'array'   => ':attribute deve avere meno di :value elementi.',
63     ],
64     'lte'                  => [
65         'numeric' => ':attribute deve essere minore o uguale :value.',
66         'file'    => ':attribute deve essere minore o uguale a :value kilobytes.',
67         'string'  => ':attribute deve essere minore o uguale a :value caratteri.',
68         'array'   => ':attribute non deve avere più di :value elementi.',
69     ],
70     'max'                  => [
71         'numeric' => 'Il campo :attribute non deve essere maggiore di :max.',
72         'file'    => 'Il campo :attribute non deve essere maggiore di :max kilobytes.',
73         'string'  => 'Il campo :attribute non deve essere maggiore di :max caratteri.',
74         'array'   => 'Il campo :attribute non deve avere più di :max oggetti.',
75     ],
76     'mimes'                => 'Il campo :attribute deve essere: :values.',
77     'min'                  => [
78         'numeric' => 'Il campo :attribute deve essere almeno :min.',
79         'file'    => 'Il campo :attribute deve essere almeno :min kilobytes.',
80         'string'  => 'Il campo :attribute deve essere almeno :min caratteri.',
81         'array'   => 'Il campo :attribute deve contenere almeno :min elementi.',
82     ],
83     'not_in'               => 'Il :attribute selezionato non è valido.',
84     'not_regex'            => 'Il formato di :attribute non è valido.',
85     'numeric'              => ':attribute deve essere un numero.',
86     'regex'                => 'Il formato di :attribute non è valido.',
87     'required'             => 'Il campo :attribute è richiesto.',
88     'required_if'          => 'Il campo :attribute è richiesto quando :other è :value.',
89     'required_with'        => 'Il campo :attribute è richiesto quando :values è presente.',
90     'required_with_all'    => 'Il campo :attribute è richiesto quando :values sono presenti.',
91     'required_without'     => 'Il campo :attribute è richiesto quando :values non è presente.',
92     'required_without_all' => 'Il campo :attribute è richiesto quando nessuno dei :values sono presenti.',
93     'same'                 => ':attribute e :other devono corrispondere.',
94     'safe_url'             => 'Il link inserito potrebbe non essere sicuro.',
95     'size'                 => [
96         'numeric' => 'Il campo :attribute deve essere :size.',
97         'file'    => 'Il campo :attribute deve essere :size kilobytes.',
98         'string'  => 'Il campo :attribute deve essere di :size caratteri.',
99         'array'   => 'Il campo :attribute deve contenere :size elementi.',
100     ],
101     'string'               => ':attribute deve essere una stringa.',
102     'timezone'             => ':attribute deve essere una zona valida.',
103     'totp'                 => 'Il codice fornito non è valido o è scaduto.',
104     'unique'               => ':attribute è già preso.',
105     'url'                  => 'Il formato :attribute non è valido.',
106     'uploaded'             => 'Il file non può essere caricato. Il server potrebbe non accettare file di questa dimensione.',
107
108     // Custom validation lines
109     'custom' => [
110         'password-confirm' => [
111             'required_with' => 'Conferma della password richiesta',
112         ],
113     ],
114
115     // Custom validation attributes
116     'attributes' => [],
117 ];