]> BookStack Code Mirror - bookstack/blob - resources/lang/hr/validation.php
Fixes padding issues of the sidebar's items
[bookstack] / resources / lang / hr / 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 prihvaćen.',
12     'active_url'           => ':attribute nema valjan URL.',
13     'after'                => ':attribute mora biti nakon :date.',
14     'alpha'                => ':attribute može sadržavati samo slova.',
15     'alpha_dash'           => ':attribute  može sadržavati samo slova, brojeve, crtice i donje crtice.',
16     'alpha_num'            => ':attribute može sadržavati samo slova i brojeve.',
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 prije :date.',
20     'between'              => [
21         'numeric' => ':attribute mora biti između :min i :max.',
22         'file'    => ':attribute mora biti između :min i :max kilobajta.',
23         'string'  => ':attribute mora biti između :min i :max znakova.',
24         'array'   => ':attribute mora biti između :min i :max stavki',
25     ],
26     'boolean'              => ':attribute mora biti točno ili netočno.',
27     'confirmed'            => ':attribute potvrde se ne podudaraju.',
28     'date'                 => ':attribute nema valjani datum.',
29     'date_format'          => ':attribute ne odgovara formatu :format.',
30     'different'            => ':attribute i :other se moraju razlikovati.',
31     'digits'               => ':attribute mora biti :digits znakova.',
32     'digits_between'       => ':attribute mora biti između :min i :max znamenki.',
33     'email'                => ':attribute mora biti valjana email adresa.',
34     'ends_with' => ':attribute mora završiti s :values',
35     'filled'               => ':attribute polje je obavezno.',
36     'gt'                   => [
37         'numeric' => ':attribute mora biti veći od :value.',
38         'file'    => ':attribute mora biti veći od :value  kilobajta.',
39         'string'  => ':attribute mora biti veći od :value znakova',
40         'array'   => ':attribute mora biti veći od :value stavki.',
41     ],
42     'gte'                  => [
43         'numeric' => ':attribute mora biti veći ili jednak :value.',
44         'file'    => ':attribute mora biti veći ili jednak :value kilobajta.',
45         'string'  => ':attribute mora biti veći ili jednak :value znakova.',
46         'array'   => ':attribute mora imati :value stavki ili više.',
47     ],
48     'exists'               => 'Odabrani :attribute ne vrijedi.',
49     'image'                => ':attribute mora biti slika.',
50     'image_extension'      => ':attribute mora imati valjanu i podržanu ekstenziju.',
51     'in'                   => 'Odabrani :attribute ne vrijedi.',
52     'integer'              => ':attribute mora biti cijeli broj.',
53     'ip'                   => ':attribute mora biti valjana IP adresa.',
54     'ipv4'                 => ':attribute mora biti valjana IPv4 adresa.',
55     'ipv6'                 => ':attribute mora biti valjana IPv6 adresa.',
56     'json'                 => ':attribute mora biti valjani JSON niz.',
57     'lt'                   => [
58         'numeric' => ':attribute mora biti manji od :value.',
59         'file'    => ':attribute mora biti manji od :value kilobajta.',
60         'string'  => ':attribute mora biti manji od :value znakova.',
61         'array'   => ':attribute mora biti manji od :value stavki.',
62     ],
63     'lte'                  => [
64         'numeric' => ':attribute mora biti manji ili jednak :value.',
65         'file'    => ':attribute mora biti manji ili jednak :value kilobajta.',
66         'string'  => ':attribute mora biti manji ili jednak :value znakova.',
67         'array'   => ':attribute mora imati više od :value stavki.',
68     ],
69     'max'                  => [
70         'numeric' => ':attribute ne smije biti veći od :max.',
71         'file'    => ':attribute ne smije biti veći od :max kilobajta.',
72         'string'  => ':attribute ne smije biti duži od :max znakova.',
73         'array'   => ':attribute ne smije imati više od :max stavki.',
74     ],
75     'mimes'                => ':attribute mora biti datoteka tipa: :values.',
76     'min'                  => [
77         'numeric' => ':attribute mora biti najmanje :min.',
78         'file'    => ':attribute mora imati najmanje :min kilobajta.',
79         'string'  => ':attribute mora imati najmanje :min znakova.',
80         'array'   => ':attribute mora imati najmanje :min stavki.',
81     ],
82     'not_in'               => 'Odabrani :attribute ne vrijedi.',
83     'not_regex'            => 'Format :attribute nije valjan.',
84     'numeric'              => ':attribute mora biti broj.',
85     'regex'                => 'Format :attribute nije valjan.',
86     'required'             => ':attribute polje je obavezno.',
87     'required_if'          => 'Polje :attribute je obavezno kada :other je :value.',
88     'required_with'        => 'Polje :attribute je potrebno kada :values je sadašnjost.',
89     'required_with_all'    => 'Polje :attribute je potrebno kada :values je sadašnjost.',
90     'required_without'     => 'Polje :attribute je potrebno kada :values nije sadašnjost.',
91     'required_without_all' => 'Polje :attribute je potrebno kada ništa od :values nije sadašnjost.',
92     'same'                 => ':attribute i :other se moraju podudarati.',
93     'safe_url'             => 'Navedena veza možda nije sigurna.',
94     'size'                 => [
95         'numeric' => ':attribute mora biti :size.',
96         'file'    => ':attribute mora biti :size kilobajta.',
97         'string'  => ':attribute mora biti :size znakova.',
98         'array'   => ':attribute mora sadržavati :size stavki.',
99     ],
100     'string'               => ':attribute mora biti niz.',
101     'timezone'             => ':attribute mora biti valjan.',
102     'totp'                 => 'The provided code is not valid or has expired.',
103     'unique'               => ':attribute se već koristi.',
104     'url'                  => 'Format :attribute nije valjan.',
105     'uploaded'             => 'Datoteka se ne može prenijeti. Server možda ne prihvaća datoteke te veličine.',
106
107     // Custom validation lines
108     'custom' => [
109         'password-confirm' => [
110             'required_with' => 'Potrebna potvrda lozinke',
111         ],
112     ],
113
114     // Custom validation attributes
115     'attributes' => [],
116 ];