]> BookStack Code Mirror - bookstack/blob - resources/lang/ca/validation.php
Merge branch 'create-content-meta-tags' of https://github.com/james-geiger/BookStack...
[bookstack] / resources / 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 acceptis :attribute.',
12     'active_url'           => 'L\':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, números, guions i guions baixos.',
16     'alpha_num'            => 'El camp :attribute només pot contenir lletres i números.',
17     'array'                => 'El camp :attribute ha de ser un vector.',
18     'before'               => 'El camp :attribute ha de ser una data anterior a :date.',
19     'between'              => [
20         'numeric' => 'El camp :attribute ha d\'estar entre :min i :max.',
21         'file'    => 'El camp :attribute ha de tenir entre :min i :max kilobytes.',
22         'string'  => 'El camp :attribute ha de tenir entre :min i :max caràcters.',
23         'array'   => 'El camp :attribute ha de tenir entre :min i :max elements.',
24     ],
25     'boolean'              => 'El camp :attribute ha de ser cert o fals.',
26     'confirmed'            => 'La confirmació del camp :attribute no coincideix.',
27     'date'                 => 'El camp :attribute no és una data vàlida.',
28     'date_format'          => 'El camp :attribute no coincideix amb el format :format.',
29     'different'            => 'Els camps :attribute i :other han de ser diferents.',
30     'digits'               => 'El camp :attribute ha de tenir :digits dígits.',
31     'digits_between'       => 'El camp :attribute ha de tenir entre :min i :max dígits.',
32     'email'                => 'El camp :attribute ha de ser una adreça electrònica vàlida.',
33     'ends_with' => 'El camp :attribute ha d\'acabar amb un dels següents valors: :values',
34     'filled'               => 'El camp :attribute és obligatori.',
35     'gt'                   => [
36         'numeric' => 'El camp :attribute ha de ser més gran que :value.',
37         'file'    => 'El camp :attribute ha de tenir més de :value kilobytes.',
38         'string'  => 'El camp :attribute ha de tenir més de :value caràcters.',
39         'array'   => 'El camp :attribute ha de tenir més de :value elements.',
40     ],
41     'gte'                  => [
42         'numeric' => 'El camp :attribute ha de ser més gran o igual que :value.',
43         'file'    => 'El camp :attribute ha de tenir :value kilobytes o més.',
44         'string'  => 'El camp :attribute ha de tenir :value caràcters o més.',
45         'array'   => 'El camp :attribute ha de tenir :value elements o més.',
46     ],
47     'exists'               => 'El camp :attribute no és vàlid.',
48     'image'                => 'El camp :attribute ha de ser una imatge.',
49     'image_extension'      => 'El camp :attribute ha de tenir una extensió d\'imatge vàlida i suportada.',
50     'in'                   => 'El camp :attribute seleccionat no és vàlid.',
51     'integer'              => 'El camp :attribute ha de ser un enter.',
52     'ip'                   => 'El camp :attribute ha de ser una adreça IP vàlida.',
53     'ipv4'                 => 'El camp :attribute ha de ser una adreça IPv4 vàlida.',
54     'ipv6'                 => 'El camp :attribute ha de ser una adreça IPv6 vàlida.',
55     'json'                 => 'El camp :attribute ha de ser una cadena JSON vàlida.',
56     'lt'                   => [
57         'numeric' => 'El camp :attribute ha de ser menor que :value.',
58         'file'    => 'El camp :attribute ha de tenir menys de :value kilobytes.',
59         'string'  => 'El camp :attribute ha de tenir menys de :value caràcters.',
60         'array'   => 'El camp :attribute ha de tenir menys de :value elements.',
61     ],
62     'lte'                  => [
63         'numeric' => 'El camp :attribute ha de ser més petit o igual que :value.',
64         'file'    => 'El camp :attribute ha de tenir :value kilobytes o menys.',
65         'string'  => 'El camp :attribute ha de tenir :value caràcters o menys.',
66         'array'   => 'El camp :attribute ha de tenir :value elements o menys.',
67     ],
68     'max'                  => [
69         'numeric' => 'El camp :attribute no pot ser més gran que :max.',
70         'file'    => 'El camp :attribute no pot tenir més de :max kilobytes.',
71         'string'  => 'El camp :attribute no pot tenir més de :max caràcters.',
72         'array'   => 'El camp :attribute no pot tenir més de :max elements.',
73     ],
74     'mimes'                => 'El camp :attribute ha de ser un fitxer del tipus: :values.',
75     'min'                  => [
76         'numeric' => 'El camp :attribute no pot ser més petit que :min.',
77         'file'    => 'El camp :attribute no pot tenir menys de :min kilobytes.',
78         'string'  => 'El camp :attribute no pot tenir menys de :min caràcters.',
79         'array'   => 'El camp :attribute no pot tenir menys de :min elements.',
80     ],
81     'not_in'               => 'El camp :attribute seleccionat no és vàlid.',
82     'not_regex'            => 'El format del camp :attribute no és vàlid.',
83     'numeric'              => 'El camp :attribute ha de ser un número.',
84     'regex'                => 'El format del camp :attribute no és vàlid.',
85     'required'             => 'El camp :attribute és obligatori.',
86     'required_if'          => 'El camp :attribute és obligatori quan :other és :value.',
87     'required_with'        => 'El camp :attribute és obligatori quan hi ha aquest valor: :values.',
88     'required_with_all'    => 'El camp :attribute és obligatori quan hi ha algun d\'aquests valors: :values.',
89     'required_without'     => 'El camp :attribute és obligatori quan no hi ha aquest valor: :values.',
90     'required_without_all' => 'El camp :attribute és obligatori quan no hi ha cap d\'aquests valors: :values.',
91     'same'                 => 'Els camps :attribute i :other han de coincidir.',
92     'safe_url'             => 'L\'enllaç proporcionat podria no ser segur.',
93     'size'                 => [
94         'numeric' => 'El camp :attribute ha de ser :size.',
95         'file'    => 'El camp :attribute ha de tenir :size kilobytes.',
96         'string'  => 'El camp :attribute ha de tenir :size caràcters.',
97         'array'   => 'El camp :attribute ha de contenir :size elements.',
98     ],
99     'string'               => 'El camp :attribute ha de ser una cadena.',
100     'timezone'             => 'El camp :attribute ha de ser una zona vàlida.',
101     'unique'               => 'El camp :attribute ja està ocupat.',
102     'url'                  => 'El format del camp :attribute no és vàlid.',
103     'uploaded'             => 'No s\'ha pogut pujar el fitxer. És possible que el servidor no accepti fitxers d\'aquesta mida.',
104
105     // Custom validation lines
106     'custom' => [
107         'password-confirm' => [
108             'required_with' => 'Cal la confirmació de la contrasenya',
109         ],
110     ],
111
112     // Custom validation attributes
113     'attributes' => [],
114 ];