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