6 |--------------------------------------------------------------------------
7 | Validation Language Lines
8 |--------------------------------------------------------------------------
10 | The following language lines contain the default error messages used by
11 | the validator class. Some of these rules have multiple versions such
12 | as the size rules. Feel free to tweak each of these messages here.
16 'accepted' => ':attribute musí byť akceptovaný.',
17 'active_url' => ':attribute nie je platná URL.',
18 'after' => ':attribute musí byť dátum po :date.',
19 'alpha' => ':attribute môže obsahovať iba písmená.',
20 'alpha_dash' => ':attribute môže obsahovať iba písmená, čísla a pomlčky.',
21 'alpha_num' => ':attribute môže obsahovať iba písmená a čísla.',
22 'array' => ':attribute musí byť pole.',
23 'before' => ':attribute musí byť dátum pred :date.',
25 'numeric' => ':attribute musí byť medzi :min a :max.',
26 'file' => ':attribute musí byť medzi :min a :max kilobajtmi.',
27 'string' => ':attribute musí byť medzi :min a :max znakmi.',
28 'array' => ':attribute musí byť medzi :min a :max položkami.',
30 'boolean' => ':attribute pole musí byť true alebo false.',
31 'confirmed' => ':attribute potvrdenie nesedí.',
32 'date' => ':attribute nie je platný dátum.',
33 'date_format' => ':attribute nesedí s formátom :format.',
34 'different' => ':attribute a :other musia byť rozdielne.',
35 'digits' => ':attribute musí mať :digits číslic.',
36 'digits_between' => ':attribute musí mať medzi :min a :max číslicami.',
37 'email' => ':attribute musí byť platná emailová adresa.',
38 'filled' => 'Políčko :attribute je povinné.',
39 'exists' => 'Vybraný :attribute nie je platný.',
40 'image' => ':attribute musí byť obrázok.',
41 'in' => 'Vybraný :attribute je neplatný.',
42 'integer' => ':attribute musí byť celé číslo.',
43 'ip' => ':attribute musí byť platná IP adresa.',
45 'numeric' => ':attribute nesmie byť väčší ako :max.',
46 'file' => ':attribute nesmie byť väčší ako :max kilobajtov.',
47 'string' => ':attribute nesmie byť dlhší ako :max znakov.',
48 'array' => ':attribute nesmie mať viac ako :max položiek.',
50 'mimes' => ':attribute musí byť súbor typu: :values.',
52 'numeric' => ':attribute musí byť aspoň :min.',
53 'file' => ':attribute musí mať aspoň :min kilobajtov.',
54 'string' => ':attribute musí mať aspoň :min znakov.',
55 'array' => ':attribute musí mať aspoň :min položiek.',
57 'not_in' => 'Vybraný :attribute je neplatný.',
58 'numeric' => ':attribute musí byť číslo.',
59 'regex' => ':attribute formát je neplatný.',
60 'required' => 'Políčko :attribute je povinné.',
61 'required_if' => 'Políčko :attribute je povinné ak :other je :value.',
62 'required_with' => 'Políčko :attribute je povinné ak :values existuje.',
63 'required_with_all' => 'Políčko :attribute je povinné ak :values existuje.',
64 'required_without' => 'Políčko :attribute je povinné aj :values neexistuje.',
65 'required_without_all' => 'Políčko :attribute je povinné ak ani jedno z :values neexistuje.',
66 'same' => ':attribute a :other musia byť rovnaké.',
68 'numeric' => ':attribute musí byť :size.',
69 'file' => ':attribute musí mať :size kilobajtov.',
70 'string' => ':attribute musí mať :size znakov.',
71 'array' => ':attribute musí obsahovať :size položiek.',
73 'string' => ':attribute musí byť reťazec.',
74 'timezone' => ':attribute musí byť plantá časová zóna.',
75 'unique' => ':attribute je už použité.',
76 'url' => ':attribute formát je neplatný.',
79 |--------------------------------------------------------------------------
80 | Custom Validation Language Lines
81 |--------------------------------------------------------------------------
83 | Here you may specify custom validation messages for attributes using the
84 | convention "attribute.rule" to name the lines. This makes it quick to
85 | specify a specific custom language line for a given attribute rule.
90 'password-confirm' => [
91 'required_with' => 'Vyžaduje sa potvrdenie hesla',
96 |--------------------------------------------------------------------------
97 | Custom Validation Attributes
98 |--------------------------------------------------------------------------
100 | The following language lines are used to swap attribute place-holders
101 | with something more reader friendly such as E-Mail Address instead
102 | of "email". This simply helps us make messages a little cleaner.