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.
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' => 'Navedeni kod nije valjan ili je već korišten.',
19 'before' => ':attribute mora biti prije :date.',
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',
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 'file' => 'Polje :attribute mora biti priloženo kao valjana datoteka.',
36 'filled' => ':attribute polje je obavezno.',
38 'numeric' => ':attribute mora biti veći od :value.',
39 'file' => ':attribute mora biti veći od :value kilobajta.',
40 'string' => ':attribute mora biti veći od :value znakova',
41 'array' => ':attribute mora biti veći od :value stavki.',
44 'numeric' => ':attribute mora biti veći ili jednak :value.',
45 'file' => ':attribute mora biti veći ili jednak :value kilobajta.',
46 'string' => ':attribute mora biti veći ili jednak :value znakova.',
47 'array' => ':attribute mora imati :value stavki ili više.',
49 'exists' => 'Odabrani :attribute ne vrijedi.',
50 'image' => ':attribute mora biti slika.',
51 'image_extension' => ':attribute mora imati valjanu i podržanu ekstenziju.',
52 'in' => 'Odabrani :attribute ne vrijedi.',
53 'integer' => ':attribute mora biti cijeli broj.',
54 'ip' => ':attribute mora biti valjana IP adresa.',
55 'ipv4' => ':attribute mora biti valjana IPv4 adresa.',
56 'ipv6' => ':attribute mora biti valjana IPv6 adresa.',
57 'json' => ':attribute mora biti valjani JSON niz.',
59 'numeric' => ':attribute mora biti manji od :value.',
60 'file' => ':attribute mora biti manji od :value kilobajta.',
61 'string' => ':attribute mora biti manji od :value znakova.',
62 'array' => ':attribute mora biti manji od :value stavki.',
65 'numeric' => ':attribute mora biti manji ili jednak :value.',
66 'file' => ':attribute mora biti manji ili jednak :value kilobajta.',
67 'string' => ':attribute mora biti manji ili jednak :value znakova.',
68 'array' => ':attribute mora imati više od :value stavki.',
71 'numeric' => ':attribute ne smije biti veći od :max.',
72 'file' => ':attribute ne smije biti veći od :max kilobajta.',
73 'string' => ':attribute ne smije biti duži od :max znakova.',
74 'array' => ':attribute ne smije imati više od :max stavki.',
76 'mimes' => ':attribute mora biti datoteka tipa: :values.',
78 'numeric' => ':attribute mora biti najmanje :min.',
79 'file' => ':attribute mora imati najmanje :min kilobajta.',
80 'string' => ':attribute mora imati najmanje :min znakova.',
81 'array' => ':attribute mora imati najmanje :min stavki.',
83 'not_in' => 'Odabrani :attribute ne vrijedi.',
84 'not_regex' => 'Format :attribute nije valjan.',
85 'numeric' => ':attribute mora biti broj.',
86 'regex' => 'Format :attribute nije valjan.',
87 'required' => ':attribute polje je obavezno.',
88 'required_if' => 'Polje :attribute je obavezno kada :other je :value.',
89 'required_with' => 'Polje :attribute je potrebno kada :values je sadašnjost.',
90 'required_with_all' => 'Polje :attribute je potrebno kada :values je sadašnjost.',
91 'required_without' => 'Polje :attribute je potrebno kada :values nije sadašnjost.',
92 'required_without_all' => 'Polje :attribute je potrebno kada ništa od :values nije sadašnjost.',
93 'same' => ':attribute i :other se moraju podudarati.',
94 'safe_url' => 'Navedena veza možda nije sigurna.',
96 'numeric' => ':attribute mora biti :size.',
97 'file' => ':attribute mora biti :size kilobajta.',
98 'string' => ':attribute mora biti :size znakova.',
99 'array' => ':attribute mora sadržavati :size stavki.',
101 'string' => ':attribute mora biti niz.',
102 'timezone' => ':attribute mora biti valjan.',
103 'totp' => 'Navedeni kod nije valjan ili je istekao.',
104 'unique' => ':attribute se već koristi.',
105 'url' => 'Format :attribute nije valjan.',
106 'uploaded' => 'Datoteka se ne može prenijeti. Server možda ne prihvaća datoteke te veličine.',
108 'zip_file' => 'The :attribute needs to reference a file within the ZIP.',
109 'zip_file_mime' => 'The :attribute needs to reference a file of type :validTypes, found :foundType.',
110 'zip_model_expected' => 'Data object expected but ":type" found.',
111 'zip_unique' => 'The :attribute must be unique for the object type within the ZIP.',
113 // Custom validation lines
115 'password-confirm' => [
116 'required_with' => 'Potrebna potvrda lozinke',
120 // Custom validation attributes