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' => '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 'backup_codes' => 'The provided code is not valid or has already been used.',
19 'before' => 'El camp :attribute ha de ser una data anterior a :date.',
21 'numeric' => 'El camp :attribute ha d\'estar 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.',
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' => 'Els camps :attribute i :other han de ser diferents.',
31 'digits' => 'El camp :attribute ha de tenir :digits dígits.',
32 'digits_between' => 'El camp :attribute ha de tenir entre :min i :max dígits.',
33 'email' => 'El camp :attribute ha de ser una adreça electrònica vàlida.',
34 'ends_with' => 'El camp :attribute ha d\'acabar amb un dels següents valors: :values',
35 'file' => 'The :attribute must be provided as a valid file.',
36 'filled' => 'El camp :attribute és obligatori.',
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.',
44 'numeric' => 'El camp :attribute ha de ser més gran o igual que :value.',
45 'file' => 'El camp :attribute ha de tenir :value kilobytes o més.',
46 'string' => 'El camp :attribute ha de tenir :value caràcters o més.',
47 'array' => 'El camp :attribute ha de tenir :value elements o més.',
49 'exists' => 'El camp :attribute 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 vàlida i suportada.',
52 'in' => 'El camp :attribute seleccionat no és vàlid.',
53 'integer' => 'El camp :attribute ha de ser un enter.',
54 'ip' => 'El camp :attribute ha de ser una adreça IP vàlida.',
55 'ipv4' => 'El camp :attribute ha de ser una adreça IPv4 vàlida.',
56 'ipv6' => 'El camp :attribute ha de ser una adreça IPv6 vàlida.',
57 'json' => 'El camp :attribute ha de ser una cadena JSON vàlida.',
59 'numeric' => 'El camp :attribute ha de ser menor 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.',
65 'numeric' => 'El camp :attribute ha de ser més petit o igual que :value.',
66 'file' => 'El camp :attribute ha de tenir :value kilobytes o menys.',
67 'string' => 'El camp :attribute ha de tenir :value caràcters o menys.',
68 'array' => 'El camp :attribute ha de tenir :value elements o menys.',
71 'numeric' => 'El camp :attribute no pot ser més gran que :max.',
72 'file' => 'El camp :attribute no pot tenir més de :max kilobytes.',
73 'string' => 'El camp :attribute no pot tenir més de :max caràcters.',
74 'array' => 'El camp :attribute no pot tenir més de :max elements.',
76 'mimes' => 'El camp :attribute ha de ser un fitxer del tipus: :values.',
78 'numeric' => 'El camp :attribute no pot ser més petit que :min.',
79 'file' => 'El camp :attribute no pot tenir menys de :min kilobytes.',
80 'string' => 'El camp :attribute no pot tenir menys de :min caràcters.',
81 'array' => 'El camp :attribute no pot tenir menys de :min elements.',
83 'not_in' => 'El camp :attribute seleccionat no és vàlid.',
84 'not_regex' => 'El format del camp :attribute no és vàlid.',
85 'numeric' => 'El camp :attribute ha de ser un número.',
86 'regex' => 'El format del camp :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 aquest valor: :values.',
90 'required_with_all' => 'El camp :attribute és obligatori quan hi ha algun d\'aquests valors: :values.',
91 'required_without' => 'El camp :attribute és obligatori quan no hi ha aquest valor: :values.',
92 'required_without_all' => 'El camp :attribute és obligatori quan no hi ha cap d\'aquests valors: :values.',
93 'same' => 'Els camps :attribute i :other han de coincidir.',
94 'safe_url' => 'L\'enllaç proporcionat podria no ser segur.',
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 contenir :size elements.',
101 'string' => 'El camp :attribute ha de ser una cadena.',
102 'timezone' => 'El camp :attribute ha de ser una zona vàlida.',
103 'totp' => 'The provided code is not valid or has expired.',
104 'unique' => 'El camp :attribute ja està ocupat.',
105 'url' => 'El format del camp :attribute no és vàlid.',
106 'uploaded' => 'No s\'ha pogut pujar el fitxer. És possible que el servidor no accepti fitxers d\'aquesta mida.',
108 // Custom validation lines
110 'password-confirm' => [
111 'required_with' => 'Cal la confirmació de la contrasenya',
115 // Custom validation attributes