]> BookStack Code Mirror - bookstack/blob - resources/lang/sk/validation.php
Add footer element, styles, and associated settings
[bookstack] / resources / lang / sk / validation.php
1 <?php
2 /**
3  * Validation Lines
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.
7  */
8 return [
9
10     // Standard laravel validation lines
11     'accepted'             => ':attribute musí byť akceptovaný.',
12     'active_url'           => ':attribute nie je platná URL.',
13     'after'                => ':attribute musí byť dátum po :date.',
14     'alpha'                => ':attribute môže obsahovať iba písmená.',
15     'alpha_dash'           => ':attribute môže obsahovať iba písmená, čísla a pomlčky.',
16     'alpha_num'            => ':attribute môže obsahovať iba písmená a čísla.',
17     'array'                => ':attribute musí byť pole.',
18     'before'               => ':attribute musí byť dátum pred :date.',
19     'between'              => [
20         'numeric' => ':attribute musí byť medzi :min a :max.',
21         'file'    => ':attribute musí byť medzi :min a :max kilobajtmi.',
22         'string'  => ':attribute musí byť medzi :min a :max znakmi.',
23         'array'   => ':attribute musí byť medzi :min a :max položkami.',
24     ],
25     'boolean'              => ':attribute pole musí byť true alebo false.',
26     'confirmed'            => ':attribute potvrdenie nesedí.',
27     'date'                 => ':attribute nie je platný dátum.',
28     'date_format'          => ':attribute nesedí s formátom :format.',
29     'different'            => ':attribute a :other musia byť rozdielne.',
30     'digits'               => ':attribute musí mať :digits číslic.',
31     'digits_between'       => ':attribute musí mať medzi :min a :max číslicami.',
32     'email'                => ':attribute musí byť platná emailová adresa.',
33     'ends_with' => 'The :attribute must end with one of the following: :values',
34     'filled'               => 'Políčko :attribute je povinné.',
35     'gt'                   => [
36         'numeric' => 'The :attribute must be greater than :value.',
37         'file'    => 'The :attribute must be greater than :value kilobytes.',
38         'string'  => 'The :attribute must be greater than :value characters.',
39         'array'   => 'The :attribute must have more than :value items.',
40     ],
41     'gte'                  => [
42         'numeric' => 'The :attribute must be greater than or equal :value.',
43         'file'    => 'The :attribute must be greater than or equal :value kilobytes.',
44         'string'  => 'The :attribute must be greater than or equal :value characters.',
45         'array'   => 'The :attribute must have :value items or more.',
46     ],
47     'exists'               => 'Vybraný :attribute nie je platný.',
48     'image'                => ':attribute musí byť obrázok.',
49     'image_extension'      => 'The :attribute must have a valid & supported image extension.',
50     'in'                   => 'Vybraný :attribute je neplatný.',
51     'integer'              => ':attribute musí byť celé číslo.',
52     'ip'                   => ':attribute musí byť platná IP adresa.',
53     'ipv4'                 => 'The :attribute must be a valid IPv4 address.',
54     'ipv6'                 => 'The :attribute must be a valid IPv6 address.',
55     'json'                 => 'The :attribute must be a valid JSON string.',
56     'lt'                   => [
57         'numeric' => 'The :attribute must be less than :value.',
58         'file'    => 'The :attribute must be less than :value kilobytes.',
59         'string'  => 'The :attribute must be less than :value characters.',
60         'array'   => 'The :attribute must have less than :value items.',
61     ],
62     'lte'                  => [
63         'numeric' => 'The :attribute must be less than or equal :value.',
64         'file'    => 'The :attribute must be less than or equal :value kilobytes.',
65         'string'  => 'The :attribute must be less than or equal :value characters.',
66         'array'   => 'The :attribute must not have more than :value items.',
67     ],
68     'max'                  => [
69         'numeric' => ':attribute nesmie byť väčší ako :max.',
70         'file'    => ':attribute nesmie byť väčší ako :max kilobajtov.',
71         'string'  => ':attribute nesmie byť dlhší ako :max znakov.',
72         'array'   => ':attribute nesmie mať viac ako :max položiek.',
73     ],
74     'mimes'                => ':attribute musí byť súbor typu: :values.',
75     'min'                  => [
76         'numeric' => ':attribute musí byť aspoň :min.',
77         'file'    => ':attribute musí mať aspoň :min kilobajtov.',
78         'string'  => ':attribute musí mať aspoň :min znakov.',
79         'array'   => ':attribute musí mať aspoň :min položiek.',
80     ],
81     'no_double_extension'  => 'The :attribute must only have a single file extension.',
82     'not_in'               => 'Vybraný :attribute je neplatný.',
83     'not_regex'            => 'The :attribute format is invalid.',
84     'numeric'              => ':attribute musí byť číslo.',
85     'regex'                => ':attribute formát je neplatný.',
86     'required'             => 'Políčko :attribute je povinné.',
87     'required_if'          => 'Políčko :attribute je povinné ak :other je :value.',
88     'required_with'        => 'Políčko :attribute je povinné ak :values existuje.',
89     'required_with_all'    => 'Políčko :attribute je povinné ak :values existuje.',
90     'required_without'     => 'Políčko :attribute je povinné aj :values neexistuje.',
91     'required_without_all' => 'Políčko :attribute je povinné ak ani jedno z :values neexistuje.',
92     'same'                 => ':attribute a :other musia byť rovnaké.',
93     'size'                 => [
94         'numeric' => ':attribute musí byť :size.',
95         'file'    => ':attribute musí mať :size kilobajtov.',
96         'string'  => ':attribute musí mať :size znakov.',
97         'array'   => ':attribute musí obsahovať :size položiek.',
98     ],
99     'string'               => ':attribute musí byť reťazec.',
100     'timezone'             => ':attribute musí byť plantá časová zóna.',
101     'unique'               => ':attribute je už použité.',
102     'url'                  => ':attribute formát je neplatný.',
103     'uploaded'             => 'The file could not be uploaded. The server may not accept files of this size.',
104
105     // Custom validation lines
106     'custom' => [
107         'password-confirm' => [
108             'required_with' => 'Vyžaduje sa potvrdenie hesla',
109         ],
110     ],
111
112     // Custom validation attributes
113     'attributes' => [],
114 ];