]> BookStack Code Mirror - bookstack/blob - resources/lang/sk/validation.php
Updated SAML ACS post to retain user session
[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     'backup_codes'         => 'The provided code is not valid or has already been used.',
19     'before'               => ':attribute musí byť dátum pred :date.',
20     'between'              => [
21         'numeric' => ':attribute musí byť medzi :min a :max.',
22         'file'    => ':attribute musí byť medzi :min a :max kilobajtmi.',
23         'string'  => ':attribute musí byť medzi :min a :max znakmi.',
24         'array'   => ':attribute musí byť medzi :min a :max položkami.',
25     ],
26     'boolean'              => ':attribute pole musí byť true alebo false.',
27     'confirmed'            => ':attribute potvrdenie nesedí.',
28     'date'                 => ':attribute nie je platný dátum.',
29     'date_format'          => ':attribute nesedí s formátom :format.',
30     'different'            => ':attribute a :other musia byť rozdielne.',
31     'digits'               => ':attribute musí mať :digits číslic.',
32     'digits_between'       => ':attribute musí mať medzi :min a :max číslicami.',
33     'email'                => ':attribute musí byť platná emailová adresa.',
34     'ends_with' => 'The :attribute must end with one of the following: :values',
35     'filled'               => 'Políčko :attribute je povinné.',
36     'gt'                   => [
37         'numeric' => 'The :attribute must be greater than :value.',
38         'file'    => 'The :attribute must be greater than :value kilobytes.',
39         'string'  => 'The :attribute must be greater than :value characters.',
40         'array'   => 'The :attribute must have more than :value items.',
41     ],
42     'gte'                  => [
43         'numeric' => 'The :attribute must be greater than or equal :value.',
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.',
47     ],
48     'exists'               => 'Vybraný :attribute nie je platný.',
49     'image'                => ':attribute musí byť obrázok.',
50     'image_extension'      => 'The :attribute must have a valid & supported image extension.',
51     'in'                   => 'Vybraný :attribute je neplatný.',
52     'integer'              => ':attribute musí byť celé číslo.',
53     'ip'                   => ':attribute musí byť platná IP adresa.',
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.',
57     'lt'                   => [
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.',
62     ],
63     'lte'                  => [
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.',
68     ],
69     'max'                  => [
70         'numeric' => ':attribute nesmie byť väčší ako :max.',
71         'file'    => ':attribute nesmie byť väčší ako :max kilobajtov.',
72         'string'  => ':attribute nesmie byť dlhší ako :max znakov.',
73         'array'   => ':attribute nesmie mať viac ako :max položiek.',
74     ],
75     'mimes'                => ':attribute musí byť súbor typu: :values.',
76     'min'                  => [
77         'numeric' => ':attribute musí byť aspoň :min.',
78         'file'    => ':attribute musí mať aspoň :min kilobajtov.',
79         'string'  => ':attribute musí mať aspoň :min znakov.',
80         'array'   => ':attribute musí mať aspoň :min položiek.',
81     ],
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     'safe_url'             => 'The provided link may not be safe.',
94     'size'                 => [
95         'numeric' => ':attribute musí byť :size.',
96         'file'    => ':attribute musí mať :size kilobajtov.',
97         'string'  => ':attribute musí mať :size znakov.',
98         'array'   => ':attribute musí obsahovať :size položiek.',
99     ],
100     'string'               => ':attribute musí byť reťazec.',
101     'timezone'             => ':attribute musí byť plantá časová zóna.',
102     'totp'                 => 'The provided code is not valid or has expired.',
103     'unique'               => ':attribute je už použité.',
104     'url'                  => ':attribute formát je neplatný.',
105     'uploaded'             => 'The file could not be uploaded. The server may not accept files of this size.',
106
107     // Custom validation lines
108     'custom' => [
109         'password-confirm' => [
110             'required_with' => 'Vyžaduje sa potvrdenie hesla',
111         ],
112     ],
113
114     // Custom validation attributes
115     'attributes' => [],
116 ];