]> BookStack Code Mirror - bookstack/blob - lang/ca/validation.php
Merge pull request #5626 from BookStackApp/rubentalstra-development
[bookstack] / lang / ca / 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'             => 'Cal que accepteu el camp :attribute.',
12     'active_url'           => 'El camp :attribute no és un URL vàlid.',
13     'after'                => 'El camp :attribute ha de ser una data posterior a :date.',
14     'alpha'                => 'El camp :attribute només pot contenir lletres.',
15     'alpha_dash'           => 'El camp :attribute només pot contenir lletres, xifres, guionets i guions baixos.',
16     'alpha_num'            => 'El camp :attribute només pot contenir lletres, xifres.',
17     'array'                => 'El camp :attribute ha de ser una matriu.',
18     'backup_codes'         => 'El codi que heu proporcionat no és vàlid o ja s’ha utilitzat.',
19     'before'               => 'El camp :attribute ha de ser una data posterior a :date.',
20     'between'              => [
21         'numeric' => 'El camp :attribute ha de ser un nombre entre :min i :max.',
22         'file'    => 'El camp :attribute ha de tenir entre :min i :max kilobytes.',
23         'string'  => 'El camp :attribute ha de tenir entre :min i :max caràcters.',
24         'array'   => 'El camp :attribute ha de tenir entre :min i :max elements.',
25     ],
26     'boolean'              => 'El camp :attribute ha de ser cert o fals.',
27     'confirmed'            => 'La confirmació del camp :attribute no coincideix.',
28     'date'                 => 'El camp :attribute no és una data vàlida.',
29     'date_format'          => 'El camp :attribute no coincideix amb el format :format.',
30     'different'            => 'El camp :attribute i :other han de ser diferents.',
31     'digits'               => 'El camp :attribute ha de tenir :digits xifres.',
32     'digits_between'       => 'El camp :attribute ha de tenir entre :min i :max xifres.',
33     'email'                => 'El camp :attribute ha de ser un adreça electrònica vàlida.',
34     'ends_with' => 'El camp :attribute ha d’acabar amb un dels signes següents: :values',
35     'file'                 => 'El camp :attribute ha de ser un fitxer vàlid.',
36     'filled'               => 'El camp :attribute és obligatori.',
37     'gt'                   => [
38         'numeric' => 'El camp :attribute ha de ser més gran que :value.',
39         'file'    => 'El camp :attribute ha de tenir més de :value kilobytes.',
40         'string'  => 'El camp :attribute ha de tenir més de :value caràcters.',
41         'array'   => 'El camp :attribute ha de tenir més de :value elements.',
42     ],
43     'gte'                  => [
44         'numeric' => 'El camp :attribute ha de ser com a mínim :value.',
45         'file'    => 'El camp :attribute ha de tenir com a mínim :value kilobytes.',
46         'string'  => 'El camp :attribute ha de tenir com a mínim :value caràcters.',
47         'array'   => 'El camp :attribute ha de tenir com a mínim :value elements.',
48     ],
49     'exists'               => 'El camp :attribute seleccionat no és vàlid.',
50     'image'                => 'El camp :attribute ha de ser una imatge.',
51     'image_extension'      => 'El camp :attribute ha de tenir una extensió d’imatge compatible.',
52     'in'                   => 'El camp :attribute no és vàlid.',
53     'integer'              => 'El camp :attribute ha de ser un nombre enter.',
54     'ip'                   => 'El camp :attribute ha de ser un adreça IP vàlida.',
55     'ipv4'                 => 'El camp :attribute ha de ser un adreça IPv4 vàlida.',
56     'ipv6'                 => 'El camp :attribute ha de ser un adreça IPv6 vàlida.',
57     'json'                 => 'El camp :attribute ha de ser una cadena JSON vàlida.',
58     'lt'                   => [
59         'numeric' => 'El camp :attribute ha de ser més petit que :value.',
60         'file'    => 'El camp :attribute ha de tenir menys de :value kilobytes.',
61         'string'  => 'El camp :attribute ha de tenir menys de :value caràcters.',
62         'array'   => 'El camp :attribute ha de tenir menys de :value elements.',
63     ],
64     'lte'                  => [
65         'numeric' => 'El camp :attribute ha de ser com a màxim :value.',
66         'file'    => 'El camp :attribute ha de tenir com a màxim :value kilobytes.',
67         'string'  => 'El camp :attribute ha de tenir com a màxim :value caràcters.',
68         'array'   => 'El camp :attribute ha de tenir com a màxim :value elements.',
69     ],
70     'max'                  => [
71         'numeric' => 'El camp :attribute ha de ser com a màxim :max.',
72         'file'    => 'El camp :attribute ha de tenir com a màxim :max kilobytes.',
73         'string'  => 'El camp :attribute ha de tenir com a màxim :max caràcters.',
74         'array'   => 'El camp :attribute ha de tenir com a màxim :max elements.',
75     ],
76     'mimes'                => 'El camp :attribute ha de ser un fitxer del tipus: :values.',
77     'min'                  => [
78         'numeric' => 'El camp :attribute ha de ser com a mínim :min.',
79         'file'    => 'El camp :attribute ha de tenir com a mínim :min kilobytes.',
80         'string'  => 'El camp :attribute ha de tenir com a mínim :min caràcters.',
81         'array'   => 'El camp :attribute ha de tenir com a mínim :min elements.',
82     ],
83     'not_in'               => 'El camp :attribute no és vàlid.',
84     'not_regex'            => 'El format :attribute no és vàlid.',
85     'numeric'              => 'El camp :attribute ha de ser un nombre.',
86     'regex'                => 'El format :attribute no és vàlid.',
87     'required'             => 'El camp :attribute és obligatori.',
88     'required_if'          => 'El camp :attribute és obligatori quan :other és :value.',
89     'required_with'        => 'El camp :attribute és obligatori quan hi ha :values.',
90     'required_with_all'    => 'El camp :attribute és obligatori quan hi ha tots aquests valors: :values.',
91     'required_without'     => 'El camp :attribute és obligatori quan no hi ha :values.',
92     'required_without_all' => 'El camp :attribute és obligatori quan no hi ha cap d’aquests valors: :values.',
93     'same'                 => 'El camp :attribute i :other han de coincidir.',
94     'safe_url'             => 'És possible que l’enllaç proporcionat no sigui segur.',
95     'size'                 => [
96         'numeric' => 'El camp :attribute ha de ser :size.',
97         'file'    => 'El camp :attribute ha de tenir :size kilobytes.',
98         'string'  => 'El camp :attribute ha de tenir :size caràcters',
99         'array'   => 'El camp :attribute ha de tenir :size elements.',
100     ],
101     'string'               => 'El camp :attribute ha de ser una cadena de text.',
102     'timezone'             => 'El camp :attribute ha de ser un fus horari vàlid.',
103     'totp'                 => 'El codi proporcionat no és vàlid o ha caducat.',
104     'unique'               => 'El camp :attribute ja s’ha utilitzat.',
105     'url'                  => 'El format :attribute no és vàlid.',
106     'uploaded'             => 'No s’ha pogut pujar el fitxer. És possible que el servidor no admeti fitxers d’aquesta mida.',
107
108     'zip_file' => 'The :attribute needs to reference a file within the ZIP.',
109     'zip_file_mime' => 'The :attribute needs to reference a file of type :validTypes, found :foundType.',
110     'zip_model_expected' => 'Data object expected but ":type" found.',
111     'zip_unique' => 'The :attribute must be unique for the object type within the ZIP.',
112
113     // Custom validation lines
114     'custom' => [
115         'password-confirm' => [
116             'required_with' => 'Heu de confirmar la contrasenya.',
117         ],
118     ],
119
120     // Custom validation attributes
121     'attributes' => [],
122 ];
Morty Proxy This is a proxified and sanitized view of the page, visit original site.