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 'filled' => ':attribute mező kötelező.',
37 'numeric' => ':attribute nagyobb kell, hogy legyen, mint :value.',
38 'file' => ':attribute nagyobb kell, hogy legyen, mint :value kilobájt.',
39 'string' => ':attribute nagyobb kell legyen mint :value karakter.',
40 'array' => ':attribute több, mint :value elemet kell, hogy tartalmazzon.',
43 'numeric' => ':attribute attribútumnak :value értéknél nagyobbnak vagy vele egyenlőnek kell lennie.',
44 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
45 'string' => 'The :attribute must be greater than or equal :value characters.',
46 'array' => 'The :attribute must have :value items or more.',
48 'exists' => 'A kiválasztott :attribute érvénytelen.',
49 'image' => ':attribute kép kell legyen.',
50 'image_extension' => 'A :attribute kép kiterjesztése érvényes és támogatott kell legyen.',
51 'in' => 'A kiválasztott :attribute érvénytelen.',
52 'integer' => ':attribute egész szám kell legyen.',
53 'ip' => ':attribute érvényes IP cím kell legyen.',
54 'ipv4' => 'The :attribute must be a valid IPv4 address.',
55 'ipv6' => 'The :attribute must be a valid IPv6 address.',
56 'json' => 'The :attribute must be a valid JSON string.',
58 'numeric' => 'The :attribute must be less than :value.',
59 'file' => 'The :attribute must be less than :value kilobytes.',
60 'string' => 'The :attribute must be less than :value characters.',
61 'array' => 'The :attribute must have less than :value items.',
64 'numeric' => 'The :attribute must be less than or equal :value.',
65 'file' => 'The :attribute must be less than or equal :value kilobytes.',
66 'string' => 'The :attribute must be less than or equal :value characters.',
67 'array' => 'The :attribute must not have more than :value items.',
70 'numeric' => ':attribute nem lehet nagyobb mint :max.',
71 'file' => ':attribute nem lehet nagyobb mint :max kilobájt.',
72 'string' => ':attribute nem lehet nagyobb mint :max karakter.',
73 'array' => ':attribute mennyisége nem lehet több mint :max elem.',
75 'mimes' => 'A :attribute típusa csak :values lehet.',
77 'numeric' => ':attribute legalább :min kell legyen.',
78 'file' => ':attribute legalább :min kilobájt kell legyen.',
79 'string' => ':attribute legalább :min karakter kell legyen.',
80 'array' => ':attribute legalább :min elem kell legyen.',
82 'not_in' => 'A kiválasztott :attribute érvénytelen.',
83 'not_regex' => ':attribute formátuma érvénytelen.',
84 'numeric' => ':attribute szám kell legyen.',
85 'regex' => ':attribute formátuma érvénytelen.',
86 'required' => ':attribute mező kötelező.',
87 'required_if' => ':attribute mező kötelező ha :other értéke :value.',
88 'required_with' => ':attribute mező kötelező ha :values be van állítva.',
89 'required_with_all' => ':attribute mező kötelező ha van :value.',
90 'required_without' => ':attribute mező kötelező ha :values nincs beállítva.',
91 'required_without_all' => ':attribute mező kötelező ha egyik :values sincs beállítva.',
92 'same' => ':attribute és :other értékének egyeznie kell.',
93 'safe_url' => 'The provided link may not be safe.',
95 'numeric' => ':attribute :size méretű kell legyen.',
96 'file' => ':attribute :size kilobájt méretű kell legyen.',
97 'string' => ':attribute :size karakter kell legyen.',
98 'array' => ':attribute : size elemet kell tartalmazzon.',
100 'string' => ':attribute karaktersorozatnak kell legyen.',
101 'timezone' => ':attribute érvényes zóna kell legyen.',
102 'totp' => 'The provided code is not valid or has expired.',
103 'unique' => ':attribute már elkészült.',
104 'url' => ':attribute formátuma érvénytelen.',
105 'uploaded' => 'A fájlt nem lehet feltölteni. A kiszolgáló nem fogad el ilyen méretű fájlokat.',
107 // Custom validation lines
109 'password-confirm' => [
110 'required_with' => 'Jelszó megerősítés szükséges',
114 // Custom validation attributes