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 nije ispravan URL.',
13 'after' => ':attribute mora biti datum 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 datum prije :date.',
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 karaktera.',
23 'array' => ':attribute mora imati između :min i :max stavki.',
25 'boolean' => ':attribute polje mora biti tačno ili netačno.',
26 'confirmed' => ':attribute potvrda se ne slaže.',
27 'date' => ':attribute nije ispravan datum.',
28 'date_format' => ':attribute ne odgovara formatu :format.',
29 'different' => ':attribute i :other moraju biti različiti.',
30 'digits' => ':attribute mora imati :digits brojeve.',
31 'digits_between' => ':attribute mora imati između :min i :max brojeva.',
32 'email' => ':attribute mora biti ispravna e-mail adresa.',
33 'ends_with' => ':attribute mora završavati sa jednom od sljedećih: :values',
34 'filled' => 'Polje :attribute je obavezno.',
36 'numeric' => ':attribute mora biti veći od :value.',
37 'file' => ':attribute mota biti veći od :value kilobajta.',
38 'string' => ':attribute mora imati više od :value karaktera.',
39 'array' => ':attribute mora imati više od :value stavki.',
42 'numeric' => ':attribute mora biti veći od ili jednak :value.',
43 'file' => ':attribute mora imati više od ili jednako :value kilobajta.',
44 'string' => ':attribute mora imati više od ili jednako :value karaktera.',
45 'array' => ':attribute mora imati :value stavki ili više.',
47 'exists' => 'Odabrani :attribute je neispravan.',
48 'image' => ':attribute mora biti slika.',
49 'image_extension' => ':attribute mora imati ispravnu i podržanu ekstenziju slike.',
50 'in' => 'Odabrani :attribute je neispravan.',
51 'integer' => ':attribute mora biti integer.',
52 'ip' => ':attribute mora biti ispravna IP adresa.',
53 'ipv4' => ':attribute mora biti ispravna IPv4 adresa.',
54 'ipv6' => ':attribute mora biti ispravna IPv6 adresa.',
55 'json' => ':attribute mora biti ispravan JSON string.',
57 'numeric' => ':attribute mora biti manji od :value.',
58 'file' => ':attribute mora imati manje od :value kilobajta.',
59 'string' => ':attribute mora imati manje od :value karaktera.',
60 'array' => ':attribute mora imati manje od :value stavki.',
63 'numeric' => ':attribute mora imati vrijednost manju od ili jednaku :value.',
64 'file' => ':attribute mora imati manje od ili jednako :value kilobajta.',
65 'string' => ':attribute mora imati manje od ili jednako :value karaktera.',
66 'array' => ':attribute ne smije imati više od :value stavki.',
69 'numeric' => ':attribute ne može biti veći od :max.',
70 'file' => ':attribute ne može imati više od :max kilobajta.',
71 'string' => ':attribute ne može imati više od :max karaktera.',
72 'array' => ':attribute ne može imati više od :max stavki.',
74 'mimes' => ':attribute mora biti fajl vrste: values.',
76 'numeric' => ':attribute mora biti najmanje :min.',
77 'file' => ':attribute mora imati najmanje :min kilobajta.',
78 'string' => ':attribute mora imati najmanje :min karaktera.',
79 'array' => ':attribute mora imati najmanje :min stavki.',
81 'not_in' => 'Odabrani :attribute je neispravan.',
82 'not_regex' => 'Format :attribute je neispravan.',
83 'numeric' => ':attribute mora biti broj.',
84 'regex' => 'Format :attribute je neispravan.',
85 'required' => 'Polje :attribute je obavezno.',
86 'required_if' => 'Polje :attribute je obavezno kada :other ima vrijednost :value.',
87 'required_with' => 'Polje :attribute je obavezno kada su prisutne :values.',
88 'required_with_all' => 'Polje :attribute je obavezno kada su prisutne :values.',
89 'required_without' => 'Polje :attribute je obavezno kada :values nisu prisutne.',
90 'required_without_all' => 'Polje :attribute je obavezno kada nijedno od :values nije prisutno.',
91 'same' => ':attribute i :other se moraju poklapati.',
92 'safe_url' => 'Navedeni link možda nije siguran.',
94 'numeric' => ':attribute mora biti :size.',
95 'file' => ':attribute mora imati :size kilobajta.',
96 'string' => ':attribute mora imati :size karaktera.',
97 'array' => ':attribute mora sadržavati :size stavki.',
99 'string' => ':attribute mora biti string.',
100 'timezone' => ':attribute mora biti ispravna zona.',
101 'unique' => ':attribute je zauzet.',
102 'url' => 'Format :attribute je neispravan.',
103 'uploaded' => 'Fajl nije učitan. Server ne prihvata fajlove ove veličine.',
105 // Custom validation lines
107 'password-confirm' => [
108 'required_with' => 'Zahtijeva se potvrda lozinke',
112 // Custom validation attributes