]> BookStack Code Mirror - bookstack/blob - resources/lang/sl/validation.php
Fixes padding issues of the sidebar's items
[bookstack] / resources / lang / sl / 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 mora biti potrjen.',
12     'active_url'           => ':attribute ni veljaven URL.',
13     'after'                => ':attribute mora biti datum po :date.',
14     'alpha'                => ':attribute lahko vsebuje samo črke.',
15     'alpha_dash'           => ':attribute lahko vsebuje samo ?rke, ?tevilke in ?rtice.',
16     'alpha_num'            => ':attribute lahko vsebuje samo črke in številke.',
17     'array'                => ':attribute mora biti niz.',
18     'backup_codes'         => 'The provided code is not valid or has already been used.',
19     'before'               => ':attribute mora biti datum pred :date.',
20     'between'              => [
21         'numeric' => ':attribute mora biti med :min in :max.',
22         'file'    => ':attribute mora biti med :min in :max kilobajti.',
23         'string'  => ':attribute mora biti med :min in :max znaki.',
24         'array'   => ':attribute mora imeti med :min in :max elementov.',
25     ],
26     'boolean'              => ':attribute polje mora biti pravilno ali napačno.',
27     'confirmed'            => ':attribute potrditev se ne ujema.',
28     'date'                 => ':attribute ni veljaven datum.',
29     'date_format'          => ':attribute se ne ujema z obliko :format.',
30     'different'            => ':attribute in :other morata biti različna.',
31     'digits'               => 'Atribut mora biti: števnik.',
32     'digits_between'       => ':attribute mora biti med :min in :max števkami.',
33     'email'                => ':attribute mora biti veljaven e-naslov.',
34     'ends_with' => 'The :attribute se mora končati z eno od določenih: :vrednost/values',
35     'filled'               => 'Polje ne sme biti prazno.',
36     'gt'                   => [
37         'numeric' => ':attribute mora biti večji kot :vrednost.',
38         'file'    => ':attribute mora biti večji kot :vrednost kilobytes',
39         'string'  => ':attribute mora biti večji kot :vrednost znakov',
40         'array'   => ':attribute mora biti večji kot :vrednost znakov',
41     ],
42     'gte'                  => [
43         'numeric' => ':attribute mora biti večji kot ali enak :vrednost.',
44         'file'    => ':attribute mora biti večji kot ali enak :vrednost kilobytes',
45         'string'  => ':attribute mora biti večji kot ali enak :vrednost znakov',
46         'array'   => ':attribute mora imeti :vrednost znakov ali več',
47     ],
48     'exists'               => 'Izbrani atribut je neveljaven.',
49     'image'                => ':attribute mora biti slika.',
50     'image_extension'      => ':attribute mora imeti veljavno & podprto slikovno pripono',
51     'in'                   => 'izbran :attribute je neveljaven.',
52     'integer'              => ':attribute mora biti celo število.',
53     'ip'                   => ':attribute mora biti veljaven IP naslov.',
54     'ipv4'                 => ':attribute mora biti veljaven IPv4 naslov.',
55     'ipv6'                 => ':attribute mora biti veljaven IPv6 naslov.',
56     'json'                 => ':attribute mora biti veljavna JSON povezava.',
57     'lt'                   => [
58         'numeric' => ':attribute mora biti manj kot :vrednost.',
59         'file'    => ':attribute mora biti manj kot :vrednost kilobytes',
60         'string'  => ':attribute mora biti manj kot :vrednost znakov',
61         'array'   => ':attribute mora imeti manj kot :vrednost znakov',
62     ],
63     'lte'                  => [
64         'numeric' => ':attribute mora biti manj kot ali enak :vrednost.',
65         'file'    => ':attribute mora biti manj kot ali enak :vrednost kilobytes',
66         'string'  => ':attribute mora biti manj kot ali enak :vrednost znakov',
67         'array'   => ':attribute ne sme imeti več kot :vrednost elementov',
68     ],
69     'max'                  => [
70         'numeric' => ':attribute ne sme biti večja od :max.',
71         'file'    => ':attribute ne sme biti večja od :max kilobytes.',
72         'string'  => 'Atribut naj ne bo večji od: max znakov.',
73         'array'   => ':attribute ne sme imeti več kot :max elementov.',
74     ],
75     'mimes'                => 'Atribut mora biti datoteka vrste:: vrednost.',
76     'min'                  => [
77         'numeric' => ':attribute mora biti najmanj :min.',
78         'file'    => ':attribute mora biti najmanj :min KB.',
79         'string'  => ':attribute mora biti najmanj :min znakov.',
80         'array'   => ':attribute mora imeti vsaj :min elementov.',
81     ],
82     'not_in'               => 'Izbrani atribut je neveljaven.',
83     'not_regex'            => ':attribute oblika ni veljavna.',
84     'numeric'              => 'Atribut mora biti število.',
85     'regex'                => ':attribute oblika ni veljavna.',
86     'required'             => 'Polje :attribute je obvezno.',
87     'required_if'          => 'Polje atributa je obvezno, če: drugo je: vrednost.',
88     'required_with'        => 'Polje atributa je obvezno, ko: so prisotne vrednosti.',
89     'required_with_all'    => 'Polje atributa je obvezno, ko: so prisotne vrednosti.',
90     'required_without'     => 'Polje atributa je obvezno, če: vrednosti niso prisotne.',
91     'required_without_all' => 'Polje atributa je obvezno, če nobena od: vrednosti ni prisotna.',
92     'same'                 => 'Atribut in: drugi se morajo ujemati.',
93     'safe_url'             => 'Podana povezava morda ni varna.',
94     'size'                 => [
95         'numeric' => ':attribute mora biti :velikost.',
96         'file'    => ':attribute mora biti :velikost KB.',
97         'string'  => 'Atribut mora biti: velikost znakov.',
98         'array'   => ':attribute mora vsebovati :velikost elementov.',
99     ],
100     'string'               => ':attribute mora biti niz.',
101     'timezone'             => ':attribute mora biti veljavna cona.',
102     'totp'                 => 'The provided code is not valid or has expired.',
103     'unique'               => ':attribute je že zaseden.',
104     'url'                  => ':attribute oblika ni veljavna.',
105     'uploaded'             => 'Datoteke ni bilo mogoče naložiti. Strežnik morda ne sprejema datotek te velikosti.',
106
107     // Custom validation lines
108     'custom' => [
109         'password-confirm' => [
110             'required_with' => 'Potrditev gesla',
111         ],
112     ],
113
114     // Custom validation attributes
115     'attributes' => [],
116 ];