5 |--------------------------------------------------------------------------
6 | Validation Language Lines
7 |--------------------------------------------------------------------------
9 | The following language lines contain the default error messages used by
10 | the validator class. Some of these rules have multiple versions such
11 | as the size rules. Feel free to tweak each of these messages.
15 'accepted' => ':attribute musí být přijat.',
16 'active_url' => ':attribute není platnou URL adresou.',
17 'after' => ':attribute musí být datum po :date.',
18 'after_or_equal' => ':attribute musí být datum :date nebo pozdější.',
19 'alpha' => ':attribute může obsahovat pouze písmena.',
20 'alpha_dash' => ':attribute může obsahovat pouze písmena, číslice, pomlčky a podtržítka. České znaky (á, é, í, ó, ú, ů, ž, š, č, ř, ď, ť, ň) nejsou podporovány.',
21 'alpha_num' => ':attribute může obsahovat pouze písmena a číslice.',
22 'array' => ':attribute musí být pole.',
23 'before' => ':attribute musí být datum před :date.',
24 'before_or_equal' => 'Datum :attribute musí být před nebo rovno :date.',
26 'numeric' => ':attribute musí být hodnota mezi :min a :max.',
27 'file' => ':attribute musí být větší než :min a menší než :max Kilobytů.',
28 'string' => ':attribute musí být delší než :min a kratší než :max znaků.',
29 'array' => ':attribute musí obsahovat nejméně :min a nesmí obsahovat více než :max prvků.',
31 'boolean' => ':attribute musí být true nebo false',
32 'confirmed' => ':attribute nesouhlasí.',
33 'date' => ':attribute musí být platné datum.',
34 'date_equals' => 'The :attribute must be a date equal to :date.',
35 'date_format' => ':attribute není platný formát data podle :format.',
36 'different' => ':attribute a :other se musí lišit.',
37 'digits' => ':attribute musí být :digits pozic dlouhé.',
38 'digits_between' => ':attribute musí být dlouhé nejméně :min a nejvíce :max pozic.',
39 'dimensions' => ':attribute má neplatné rozměry.',
40 'distinct' => ':attribute má duplicitní hodnotu.',
41 'email' => ':attribute není platný formát.',
42 'exists' => 'Zvolená hodnota pro :attribute není platná.',
43 'file' => ':attribute musí být soubor.',
44 'filled' => ':attribute musí být vyplněno.',
46 'numeric' => ':attribute musí být větší než :value.',
47 'file' => 'Velikost souboru :attribute musí být větší než :value kB.',
48 'string' => 'Počet znaků :attribute musí být větší :value.',
49 'array' => 'Pole :attribute musí mít více prvků než :value.',
52 'numeric' => ':attribute musí být větší nebo rovno :value.',
53 'file' => 'Velikost souboru :attribute musí být větší nebo rovno :value kB.',
54 'string' => 'Počet znaků :attribute musí být větší nebo rovno :value.',
55 'array' => 'Pole :attribute musí mít :value prvků nebo více.',
57 'image' => ':attribute musí být obrázek.',
58 'in' => 'Zvolená hodnota pro :attribute je neplatná.',
59 'in_array' => ':attribute není obsažen v :other.',
60 'integer' => ':attribute musí být celé číslo.',
61 'ip' => ':attribute musí být platnou IP adresou.',
62 'ipv4' => ':attribute musí být platná IPv4 adresa.',
63 'ipv6' => ':attribute musí být platná IPv6 adresa.',
64 'json' => ':attribute musí být platný JSON řetězec.',
66 'numeric' => ':attribute musí být menší než :value.',
67 'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
68 'string' => ':attribute musí obsahovat méně než :value znaků.',
69 'array' => ':attribute by měl obsahovat méně než :value položek.',
72 'numeric' => ':attribute musí být menší nebo rovno než :value.',
73 'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
74 'string' => ':attribute nesmí být delší než :value znaků.',
75 'array' => ':attribute by měl obsahovat maximálně :value položek.',
78 'numeric' => ':attribute nemůže být větší než :max.',
79 'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
80 'string' => ':attribute nemůže být delší než :max znaků.',
81 'array' => ':attribute nemůže obsahovat více než :max prvků.',
83 'mimes' => ':attribute musí být jeden z následujících datových typů :values.',
84 'mimetypes' => ':attribute musí být jeden z následujících datových typů :values.',
86 'numeric' => ':attribute musí být větší než :min.',
87 'file' => ':attribute musí být větší než :min kB.',
88 'string' => ':attribute musí být delší než :min znaků.',
89 'array' => ':attribute musí obsahovat více než :min prvků.',
91 'not_in' => 'Zvolená hodnota pro :attribute je neplatná.',
92 'not_regex' => ':attribute musí být regulární výraz.',
93 'numeric' => ':attribute musí být číslo.',
94 'present' => ':attribute musí být vyplněno.',
95 'regex' => ':attribute nemá správný formát.',
96 'required' => ':attribute musí být vyplněno.',
97 'required_if' => ':attribute musí být vyplněno pokud :other je :value.',
98 'required_unless' => ':attribute musí být vyplněno dokud :other je v :values.',
99 'required_with' => ':attribute musí být vyplněno pokud :values je vyplněno.',
100 'required_with_all' => ':attribute musí být vyplněno pokud :values je zvoleno.',
101 'required_without' => ':attribute musí být vyplněno pokud :values není vyplněno.',
102 'required_without_all' => ':attribute musí být vyplněno pokud není žádné z :values zvoleno.',
103 'same' => ':attribute a :other se musí shodovat.',
105 'numeric' => ':attribute musí být přesně :size.',
106 'file' => ':attribute musí mít přesně :size Kilobytů.',
107 'string' => ':attribute musí být přesně :size znaků dlouhý.',
108 'array' => ':attribute musí obsahovat právě :size prvků.',
110 'starts_with' => 'The :attribute must start with one of the following: :values',
111 'string' => ':attribute musí být řetězec znaků.',
112 'timezone' => ':attribute musí být platná časová zóna.',
113 'unique' => ':attribute musí být unikátní.',
114 'uploaded' => 'Nahrávání :attribute se nezdařilo.',
115 'url' => 'Formát :attribute je neplatný.',
116 'uuid' => ':attribute musí být validní UUID.',
119 |--------------------------------------------------------------------------
120 | Custom Validation Language Lines
121 |--------------------------------------------------------------------------
123 | Here you may specify custom validation messages for attributes using the
124 | convention "attribute.rule" to name the lines. This makes it quick to
125 | specify a specific custom language line for a given attribute rule.
130 'attribute-name' => [
131 'rule-name' => 'custom-message',
133 'password-confirm' => [
134 'required_with' => 'Password confirmation required',
139 |--------------------------------------------------------------------------
140 | Custom Validation Attributes
141 |--------------------------------------------------------------------------
143 | The following language lines are used to swap attribute place-holders
144 | with something more reader friendly such as E-Mail Address instead
145 | of "email". This simply helps us make messages a little cleaner.
150 'password' => 'heslo',