-
-
Notifications
You must be signed in to change notification settings - Fork 3k
/
validation.php
161 lines (159 loc) · 9.31 KB
/
validation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
return [
'accepted' => 'Polje :attribute mora biti prihvaćeno.',
'active_url' => 'Polje :attribute nije validan URL.',
'after' => 'Polje :attribute mora biti datum posle :date.',
'after_or_equal' => 'Polje :attribute mora da bude :date ili kasniji datum.',
'alpha' => 'Polje :attribute može sadržati samo slova.',
'alpha_dash' => 'Polje :attribute može sadržati samo slova, brojeve i povlake.',
'alpha_num' => 'Polje :attribute može sadržati samo slova i brojeve.',
'array' => 'Polje :attribute mora sadržati nekih niz stavki.',
'attached' => 'This :attribute is already attached.',
'before' => 'Polje :attribute mora biti datum pre :date.',
'before_or_equal' => ':attribute mora da bude :date ili raniji datum.',
'between' => [
'array' => 'Polje :attribute mora biti između :min - :max stavki.',
'file' => 'Fajl :attribute mora biti između :min - :max kilobajta.',
'numeric' => 'Polje :attribute mora biti između :min - :max.',
'string' => 'Polje :attribute mora biti između :min - :max karaktera.',
],
'boolean' => 'Polje :attribute mora biti tačno ili netačno',
'confirmed' => 'Potvrda polja :attribute se ne poklapa.',
'date' => 'Polje :attribute nije važeći datum.',
'date_equals' => 'Polje :attribute mora da bude datum: :date.',
'date_format' => 'Polje :attribute ne odgovora prema formatu :format.',
'different' => 'Polja :attribute i :other moraju biti različita.',
'digits' => 'Polje :attribute mora sadržati :digits šifri.',
'digits_between' => 'Polje :attribute mora biti izemđu :min i :max šifri.',
'dimensions' => 'Polje :attribute ime nedozvoljene dimenzije slike.',
'distinct' => 'Polje :attribute ima dupliranu vrednost.',
'email' => 'Format polja :attribute nije validan.',
'ends_with' => 'Polje :attribute mora da se završi sa nečim od sledećeg: :values.',
'exists' => 'Odabrano polje :attribute nije validno.',
'file' => ':attribute mora da bude datoteka.',
'filled' => 'Polje :attribute je obavezno.',
'gt' => [
'array' => 'Polje :attribute mora da sadrži više od :value stavke.',
'file' => 'Polje :attribute mora da bude veći od :value kilobajta.',
'numeric' => 'Polje :attribute mora da bude veći od :value.',
'string' => 'Polje :attribute mora da sadrži više od :value znakova.',
],
'gte' => [
'array' => 'Polje :attribute mora da sadrži :value stavki ili više.',
'file' => 'Polje :attribute mora da ima :value ili više kilobajta.',
'numeric' => 'Polje :attribute mora da bude :value ili veći.',
'string' => 'Polje :attribute mora da sadrži :value ili više znakova.',
],
'image' => 'Polje :attribute mora biti slika.',
'in' => 'Polje Odabrano polje :attribute nije validno.',
'in_array' => 'Polje :attribute ne postoji u :other.',
'integer' => 'Polje :attribute mora biti broj.',
'ip' => 'Polje :attribute mora biti validna IP adresa.',
'ipv4' => 'Polje :attribute mora da bude važeća IPv4 adresa.',
'ipv6' => 'Polje :attribute mora da bude važeća IPv6 adresa.',
'json' => 'Polje :attribute mora da bude važeća JSON niska.',
'lt' => [
'array' => 'Polje :attribute mora da sadrži manje od :value stavki.',
'file' => 'Polje :attribute mora da bude manji od :value kilobajta.',
'numeric' => 'Polje :attribute mora da bude manji od :value.',
'string' => 'Polje :attribute mora da sadrži manje od :value znakova.',
],
'lte' => [
'array' => 'Polje :attribute ne sme da sadrži više od :value stavki.',
'file' => 'Polje :attribute mora da bude manji od :value kilobajta.',
'numeric' => 'Polje :attribute mora da bude :value ili manji.',
'string' => 'Polje :attribute mora da sadrži :value ili manje znakova.',
],
'max' => [
'array' => 'Polje :attribute ne smije da image više od :max stavki.',
'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
'numeric' => 'Polje :attribute mora biti manje od :max.',
'string' => 'Polje :attribute mora sadržati manje od :max karaktera.',
],
'mimes' => 'Polje :attribute mora biti fajl tipa: :values.',
'mimetypes' => 'Polje :attribute mora biti fajl tipa: :values.',
'min' => [
'array' => 'Polje :attribute mora sadrzati najmanje :min stavku.',
'file' => 'Fajl :attribute mora biti najmanje :min kilobajta.',
'numeric' => 'Polje :attribute mora biti najmanje :min.',
'string' => 'Polje :attribute mora sadržati najmanje :min karaktera.',
],
'multiple_of' => 'The :attribute must be a multiple of :value',
'not_in' => 'Odabrani element polja :attribute nije validan.',
'not_regex' => 'Format :attribute je nevažeći.',
'numeric' => 'Polje :attribute mora biti broj.',
'password' => 'Pogrešna lozinka',
'present' => 'Polje :attribute mora da bude prisutno.',
'prohibited' => 'The :attribute field is prohibited.',
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
'regex' => 'Format polja :attribute nije validan.',
'relatable' => 'This :attribute may not be associated with this resource.',
'required' => 'Polje :attribute je obavezno.',
'required_if' => 'Polje :attribute je potrebno kada polje :other sadrži :value.',
'required_unless' => 'Polje :attribute je obavezno, osim ako je :other u :values.',
'required_with' => 'Polje :attribute je potrebno kada polje :values je prisutan.',
'required_with_all' => 'Polje :attribute je obavezno kada je :values prikazano.',
'required_without' => 'Polje :attribute je potrebno kada polje :values nije prisutan.',
'required_without_all' => 'Polje :attribute je potrebno kada nijedan od sledeći polja :values nisu prisutni.',
'same' => 'Polja :attribute i :other se moraju poklapati.',
'size' => [
'array' => 'Polje :attribute mora sadržati :size stavki.',
'file' => 'Fajl :attribute mora biti :size kilobajta.',
'numeric' => 'Polje :attribute mora biti :size.',
'string' => 'Polje :attribute mora biti :size karaktera.',
],
'starts_with' => 'Polje :attribute mora da počne sa: :values',
'string' => 'Polje :attribute mora sadržati slova.',
'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
'unique' => 'Polje :attribute već postoji.',
'uploaded' => ':attribute nije otpremljen.',
'url' => 'Format polja :attribute ne važi.',
'uuid' => ':attribute mora da bude važeći UUID.',
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
'attributes' => [
'address' => 'adresa',
'age' => 'godine',
'body' => 'telo poruke',
'city' => 'grad',
'country' => 'država',
'date' => 'datum',
'day' => 'dan',
'description' => 'opis',
'email' => 'email',
'excerpt' => 'izvod',
'first_name' => 'ime',
'gender' => 'pol',
'hour' => 'sat',
'last_name' => 'prezime',
'message' => 'poruka',
'minute' => 'minut',
'mobile' => 'mobilni',
'month' => 'mesec',
'name' => 'ime',
'password' => 'password',
'password_confirmation' => 'ponovi password',
'phone' => 'telefon',
'second' => 'sekunda',
'sex' => 'pol',
'subject' => 'naslov',
'time' => 'vreme',
'title' => 'naslov',
'username' => 'username',
'year' => 'godina',
],
];