]> BookStack Code Mirror - bookstack/blob - resources/lang/sl/validation.php
Added tests and translations for dark-mode components
[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     'before'               => ':attribute mora biti datum pred :date.',
19     'between'              => [
20         'numeric' => ':attribute mora biti med :min in :max.',
21         'file'    => ':attribute mora biti med :min in :max kilobajti.',
22         'string'  => ':attribute mora biti med :min in :max znaki.',
23         'array'   => ':attribute mora imeti med :min in :max elementov.',
24     ],
25     'boolean'              => ':attribute polje mora biti pravilno ali napačno.',
26     'confirmed'            => ':attribute potrditev se ne ujema.',
27     'date'                 => ':attribute ni veljaven datum.',
28     'date_format'          => ':attribute se ne ujema z obliko :format.',
29     'different'            => ':attribute in :other morata biti različna.',
30     'digits'               => 'Atribut mora biti: števnik.',
31     'digits_between'       => ':attribute mora biti med :min in :max števkami.',
32     'email'                => ':attribute mora biti veljaven e-naslov.',
33     'ends_with' => 'The :attribute se mora končati z eno od določenih: :vrednost/values',
34     'filled'               => 'Polje ne sme biti prazno.',
35     'gt'                   => [
36         'numeric' => ':attribute mora biti večji kot :vrednost.',
37         'file'    => ':attribute mora biti večji kot :vrednost kilobytes',
38         'string'  => ':attribute mora biti večji kot :vrednost znakov',
39         'array'   => ':attribute mora biti večji kot :vrednost znakov',
40     ],
41     'gte'                  => [
42         'numeric' => ':attribute mora biti večji kot ali enak :vrednost.',
43         'file'    => ':attribute mora biti večji kot ali enak :vrednost kilobytes',
44         'string'  => ':attribute mora biti večji kot ali enak :vrednost znakov',
45         'array'   => ':attribute mora imeti :vrednost znakov ali več',
46     ],
47     'exists'               => 'Izbrani atribut je neveljaven.',
48     'image'                => ':attribute mora biti slika.',
49     'image_extension'      => ':attribute mora imeti veljavno & podprto slikovno pripono',
50     'in'                   => 'izbran :attribute je neveljaven.',
51     'integer'              => ':attribute mora biti celo število.',
52     'ip'                   => ':attribute mora biti veljaven IP naslov.',
53     'ipv4'                 => ':attribute mora biti veljaven IPv4 naslov.',
54     'ipv6'                 => ':attribute mora biti veljaven IPv6 naslov.',
55     'json'                 => ':attribute mora biti veljavna JSON povezava.',
56     'lt'                   => [
57         'numeric' => ':attribute mora biti manj kot :vrednost.',
58         'file'    => ':attribute mora biti manj kot :vrednost kilobytes',
59         'string'  => ':attribute mora biti manj kot :vrednost znakov',
60         'array'   => ':attribute mora imeti manj kot :vrednost znakov',
61     ],
62     'lte'                  => [
63         'numeric' => ':attribute mora biti manj kot ali enak :vrednost.',
64         'file'    => ':attribute mora biti manj kot ali enak :vrednost kilobytes',
65         'string'  => ':attribute mora biti manj kot ali enak :vrednost znakov',
66         'array'   => ':attribute ne sme imeti več kot :vrednost elementov',
67     ],
68     'max'                  => [
69         'numeric' => ':attribute ne sme biti večja od :max.',
70         'file'    => ':attribute ne sme biti večja od :max kilobytes.',
71         'string'  => 'Atribut naj ne bo večji od: max znakov.',
72         'array'   => ':attribute ne sme imeti več kot :max elementov.',
73     ],
74     'mimes'                => 'Atribut mora biti datoteka vrste:: vrednost.',
75     'min'                  => [
76         'numeric' => ':attribute mora biti najmanj :min.',
77         'file'    => ':attribute mora biti najmanj :min KB.',
78         'string'  => ':attribute mora biti najmanj :min znakov.',
79         'array'   => ':attribute mora imeti vsaj :min elementov.',
80     ],
81     'no_double_extension'  => ':attribute mora imeti samo eno razširitveno datoteko',
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     'size'                 => [
94         'numeric' => ':attribute mora biti :velikost.',
95         'file'    => ':attribute mora biti :velikost KB.',
96         'string'  => 'Atribut mora biti: velikost znakov.',
97         'array'   => ':attribute mora vsebovati :velikost elementov.',
98     ],
99     'string'               => ':attribute mora biti niz.',
100     'timezone'             => ':attribute mora biti veljavna cona.',
101     'unique'               => ':attribute je že zaseden.',
102     'url'                  => ':attribute oblika ni veljavna.',
103     'uploaded'             => 'Datoteke ni bilo mogoče naložiti. Strežnik morda ne sprejema datotek te velikosti.',
104
105     // Custom validation lines
106     'custom' => [
107         'password-confirm' => [
108             'required_with' => 'Potrditev gesla',
109         ],
110     ],
111
112     // Custom validation attributes
113     'attributes' => [],
114 ];