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' => ':attribute elfogadott kell legyen.',
12 'active_url' => ':attribute nem érvényes webcím.',
13 'after' => ':attribute dátumnak :date utáninak kell lennie.',
14 'alpha' => ':attribute csak betűket tartalmazhat.',
15 'alpha_dash' => ':attribute csak betűket, számokat és kötőjeleket tartalmazhat.',
16 'alpha_num' => ':attribute csak betűket és számokat tartalmazhat.',
17 'array' => ':attribute tömb kell legyen.',
18 'backup_codes' => 'The provided code is not valid or has already been used.',
19 'before' => ':attribute dátumnak :date előttinek kell lennie.',
21 'numeric' => ':attribute értékének :min és :max között kell lennie.',
22 'file' => ':attribute értékének :min és :max kilobájt között kell lennie.',
23 'string' => ':attribute hosszának :min és :max karakter között kell lennie.',
24 'array' => ':attribute mennyiségének :min és :max elem között kell lennie.',
26 'boolean' => ':attribute mezőnek igaznak vagy hamisnak kell lennie.',
27 'confirmed' => ':attribute megerősítés nem egyezik.',
28 'date' => ':attribute nem érvényes dátum.',
29 'date_format' => ':attribute nem egyezik :format formátummal.',
30 'different' => ':attribute és :other értékének különböznie kell.',
31 'digits' => ':attribute :digits számból kell álljon.',
32 'digits_between' => ':attribute hosszának :min és :max számjegy között kell lennie.',
33 'email' => ':attribute érvényes email cím kell legyen.',
34 'ends_with' => ':attribute attribútumnak a következők egyikével kell végződnie: :values',
35 'file' => 'The :attribute must be provided as a valid file.',
36 'filled' => ':attribute mező kötelező.',
38 'numeric' => ':attribute nagyobb kell, hogy legyen, mint :value.',
39 'file' => ':attribute nagyobb kell, hogy legyen, mint :value kilobájt.',
40 'string' => ':attribute nagyobb kell legyen mint :value karakter.',
41 'array' => ':attribute több, mint :value elemet kell, hogy tartalmazzon.',
44 'numeric' => ':attribute attribútumnak :value értéknél nagyobbnak vagy vele egyenlőnek kell lennie.',
45 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
46 'string' => 'The :attribute must be greater than or equal :value characters.',
47 'array' => 'The :attribute must have :value items or more.',
49 'exists' => 'A kiválasztott :attribute érvénytelen.',
50 'image' => ':attribute kép kell legyen.',
51 'image_extension' => 'A :attribute kép kiterjesztése érvényes és támogatott kell legyen.',
52 'in' => 'A kiválasztott :attribute érvénytelen.',
53 'integer' => ':attribute egész szám kell legyen.',
54 'ip' => ':attribute érvényes IP cím kell legyen.',
55 'ipv4' => 'The :attribute must be a valid IPv4 address.',
56 'ipv6' => 'The :attribute must be a valid IPv6 address.',
57 'json' => 'The :attribute must be a valid JSON string.',
59 'numeric' => 'The :attribute must be less than :value.',
60 'file' => 'The :attribute must be less than :value kilobytes.',
61 'string' => 'The :attribute must be less than :value characters.',
62 'array' => 'The :attribute must have less than :value items.',
65 'numeric' => 'The :attribute must be less than or equal :value.',
66 'file' => 'The :attribute must be less than or equal :value kilobytes.',
67 'string' => 'The :attribute must be less than or equal :value characters.',
68 'array' => 'The :attribute must not have more than :value items.',
71 'numeric' => ':attribute nem lehet nagyobb mint :max.',
72 'file' => ':attribute nem lehet nagyobb mint :max kilobájt.',
73 'string' => ':attribute nem lehet nagyobb mint :max karakter.',
74 'array' => ':attribute mennyisége nem lehet több mint :max elem.',
76 'mimes' => 'A :attribute típusa csak :values lehet.',
78 'numeric' => ':attribute legalább :min kell legyen.',
79 'file' => ':attribute legalább :min kilobájt kell legyen.',
80 'string' => ':attribute legalább :min karakter kell legyen.',
81 'array' => ':attribute legalább :min elem kell legyen.',
83 'not_in' => 'A kiválasztott :attribute érvénytelen.',
84 'not_regex' => ':attribute formátuma érvénytelen.',
85 'numeric' => ':attribute szám kell legyen.',
86 'regex' => ':attribute formátuma érvénytelen.',
87 'required' => ':attribute mező kötelező.',
88 'required_if' => ':attribute mező kötelező ha :other értéke :value.',
89 'required_with' => ':attribute mező kötelező ha :values be van állítva.',
90 'required_with_all' => ':attribute mező kötelező ha van :value.',
91 'required_without' => ':attribute mező kötelező ha :values nincs beállítva.',
92 'required_without_all' => ':attribute mező kötelező ha egyik :values sincs beállítva.',
93 'same' => ':attribute és :other értékének egyeznie kell.',
94 'safe_url' => 'The provided link may not be safe.',
96 'numeric' => ':attribute :size méretű kell legyen.',
97 'file' => ':attribute :size kilobájt méretű kell legyen.',
98 'string' => ':attribute :size karakter kell legyen.',
99 'array' => ':attribute : size elemet kell tartalmazzon.',
101 'string' => ':attribute karaktersorozatnak kell legyen.',
102 'timezone' => ':attribute érvényes zóna kell legyen.',
103 'totp' => 'The provided code is not valid or has expired.',
104 'unique' => ':attribute már elkészült.',
105 'url' => ':attribute formátuma érvénytelen.',
106 'uploaded' => 'A fájlt nem lehet feltölteni. A kiszolgáló nem fogad el ilyen méretű fájlokat.',
108 // Custom validation lines
110 'password-confirm' => [
111 'required_with' => 'Jelszó megerősítés szükséges',
115 // Custom validation attributes