@impelsys/validatorjs 3.22.3 → 3.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lang/en.js +1 -54
- package/dist/validator.js +2 -2183
- package/package.json +2 -2
- package/src/{async.js → async.mjs} +1 -1
- package/src/{attributes.js → attributes.mjs} +1 -1
- package/src/{errors.js → errors.mjs} +1 -1
- package/src/lang/{en.js → en.mjs} +1 -1
- package/src/{lang.js → lang.mjs} +3 -6
- package/src/{messages.js → messages.mjs} +2 -2
- package/src/{rules.js → rules.mjs} +4 -4
- package/src/{validator.js → validator.mjs} +7 -6
- package/src/lang/ar.js +0 -63
- package/src/lang/az.js +0 -101
- package/src/lang/be.js +0 -102
- package/src/lang/bg.js +0 -102
- package/src/lang/bs.js +0 -103
- package/src/lang/ca.js +0 -37
- package/src/lang/cs.js +0 -104
- package/src/lang/cy.js +0 -103
- package/src/lang/da.js +0 -48
- package/src/lang/de.js +0 -43
- package/src/lang/el.js +0 -40
- package/src/lang/es.js +0 -37
- package/src/lang/et.js +0 -103
- package/src/lang/eu.js +0 -103
- package/src/lang/fa.js +0 -39
- package/src/lang/fi.js +0 -48
- package/src/lang/fr.js +0 -37
- package/src/lang/hr.js +0 -103
- package/src/lang/hu.js +0 -103
- package/src/lang/id.js +0 -48
- package/src/lang/it.js +0 -38
- package/src/lang/ja.js +0 -51
- package/src/lang/ka.js +0 -103
- package/src/lang/ko.js +0 -103
- package/src/lang/lt.js +0 -103
- package/src/lang/lv.js +0 -103
- package/src/lang/mk.js +0 -103
- package/src/lang/mn.js +0 -103
- package/src/lang/ms.js +0 -103
- package/src/lang/nb_NO.js +0 -39
- package/src/lang/nl.js +0 -48
- package/src/lang/pl.js +0 -39
- package/src/lang/pt.js +0 -107
- package/src/lang/pt_BR.js +0 -102
- package/src/lang/ro.js +0 -48
- package/src/lang/ru.js +0 -37
- package/src/lang/se.js +0 -47
- package/src/lang/sl.js +0 -103
- package/src/lang/sq.js +0 -103
- package/src/lang/sr.js +0 -103
- package/src/lang/sv.js +0 -102
- package/src/lang/tr.js +0 -48
- package/src/lang/ua.js +0 -37
- package/src/lang/uk.js +0 -103
- package/src/lang/vi.js +0 -39
- package/src/lang/zh.js +0 -39
- package/src/lang/zh_TW.js +0 -39
package/src/lang/sq.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: ":attribute duhet të pranohet.",
|
|
3
|
-
active_url: ":attribute nuk është adresë e saktë.",
|
|
4
|
-
after: ":attribute duhet të jetë datë pas :date.",
|
|
5
|
-
after_or_equal: "The :attribute must be a date after or equal to :date.",
|
|
6
|
-
alpha: ":attribute mund të përmbajë vetëm shkronja.",
|
|
7
|
-
alpha_dash: ":attribute mund të përmbajë vetëm shkronja, numra, dhe viza.",
|
|
8
|
-
alpha_num: ":attribute mund të përmbajë vetëm shkronja dhe numra.",
|
|
9
|
-
attributes: {},
|
|
10
|
-
array: ":attribute duhet të jetë një bashkësi (array).",
|
|
11
|
-
before: ":attribute duhet të jetë datë para :date.",
|
|
12
|
-
before_or_equal: "The :attribute must be a date before or equal to :date.",
|
|
13
|
-
between: {
|
|
14
|
-
numeric: ":attribute duhet të jetë midis :min - :max.",
|
|
15
|
-
file: ":attribute duhet të jetë midis :min - :max kilobajtëve.",
|
|
16
|
-
string: ":attribute duhet të jetë midis :min - :max karaktereve.",
|
|
17
|
-
array: ":attribute duhet të jetë midis :min - :max elementëve."
|
|
18
|
-
},
|
|
19
|
-
boolean: "Fusha :attribute duhet të jetë e vërtetë ose e gabuar",
|
|
20
|
-
confirmed: ":attribute konfirmimi nuk përputhet.",
|
|
21
|
-
date: ":attribute nuk është një datë e saktë.",
|
|
22
|
-
date_format: ":attribute nuk i përshtatet formatit :format.",
|
|
23
|
-
different: ":attribute dhe :other duhet të jenë të ndryshme.",
|
|
24
|
-
digits: ":attribute duhet të jetë :digits shifra.",
|
|
25
|
-
digits_between: ":attribute duhet të jetë midis :min dhe :max shifra.",
|
|
26
|
-
dimensions: "The :attribute has invalid image dimensions.",
|
|
27
|
-
distinct: "The :attribute field has a duplicate value.",
|
|
28
|
-
email: ":attribute formati është i pasaktë.",
|
|
29
|
-
exists: ":attribute përzgjedhur është i/e pasaktë.",
|
|
30
|
-
file: "The :attribute must be a file.",
|
|
31
|
-
filled: "Fusha :attribute është e kërkuar.",
|
|
32
|
-
gt: {
|
|
33
|
-
numeric: "The :attribute must be greater than :value.",
|
|
34
|
-
file: "The :attribute must be greater than :value kilobytes.",
|
|
35
|
-
string: "The :attribute must be greater than :value characters.",
|
|
36
|
-
array: "The :attribute must have more than :value items."
|
|
37
|
-
},
|
|
38
|
-
gte: {
|
|
39
|
-
numeric: "The :attribute must be greater than or equal :value.",
|
|
40
|
-
file: "The :attribute must be greater than or equal :value kilobytes.",
|
|
41
|
-
string: "The :attribute must be greater than or equal :value characters.",
|
|
42
|
-
array: "The :attribute must have :value items or more."
|
|
43
|
-
},
|
|
44
|
-
hex: "The :attribute field should have hexadecimal format",
|
|
45
|
-
image: ":attribute duhet të jetë imazh.",
|
|
46
|
-
in: ":attribute përzgjedhur është i/e pasaktë.",
|
|
47
|
-
in_array: "The :attribute field does not exist in :other.",
|
|
48
|
-
integer: ":attribute duhet të jetë numër i plotë.",
|
|
49
|
-
ip: ":attribute duhet të jetë një IP adresë e saktë.",
|
|
50
|
-
ipv4: "The :attribute must be a valid IPv4 address.",
|
|
51
|
-
ipv6: "The :attribute must be a valid IPv6 address.",
|
|
52
|
-
json: "The :attribute must be a valid JSON string.",
|
|
53
|
-
lt: {
|
|
54
|
-
numeric: "The :attribute must be less than :value.",
|
|
55
|
-
file: "The :attribute must be less than :value kilobytes.",
|
|
56
|
-
string: "The :attribute must be less than :value characters.",
|
|
57
|
-
array: "The :attribute must have less than :value items."
|
|
58
|
-
},
|
|
59
|
-
lte: {
|
|
60
|
-
numeric: "The :attribute must be less than or equal :value.",
|
|
61
|
-
file: "The :attribute must be less than or equal :value kilobytes.",
|
|
62
|
-
string: "The :attribute must be less than or equal :value characters.",
|
|
63
|
-
array: "The :attribute must not have more than :value items."
|
|
64
|
-
},
|
|
65
|
-
max: {
|
|
66
|
-
numeric: ":attribute nuk mund të jetë më tepër se :max.",
|
|
67
|
-
file: ":attribute nuk mund të jetë më tepër se :max kilobajtë.",
|
|
68
|
-
string: ":attribute nuk mund të jetë më tepër se :max karaktere.",
|
|
69
|
-
array: ":attribute nuk mund të ketë më tepër se :max elemente."
|
|
70
|
-
},
|
|
71
|
-
mimes: ":attribute duhet të jetë një dokument i tipit: :values.",
|
|
72
|
-
mimetypes: ":attribute duhet të jetë një dokument i tipit: :values.",
|
|
73
|
-
min: {
|
|
74
|
-
numeric: ":attribute nuk mund të jetë më pak se :min.",
|
|
75
|
-
file: ":attribute nuk mund të jetë më pak se :min kilobajtë.",
|
|
76
|
-
string: ":attribute nuk mund të jetë më pak se :min karaktere.",
|
|
77
|
-
array: ":attribute nuk mund të ketë më pak se :min elemente."
|
|
78
|
-
},
|
|
79
|
-
not_in: ":attribute përzgjedhur është i/e pasaktë.",
|
|
80
|
-
not_regex: "The :attribute format is invalid.",
|
|
81
|
-
numeric: ":attribute duhet të jetë një numër.",
|
|
82
|
-
present: "The :attribute field must be present.",
|
|
83
|
-
regex: "Formati i :attribute është i pasaktë.",
|
|
84
|
-
required: "Fusha :attribute është e kërkuar.",
|
|
85
|
-
required_if: "Fusha :attribute është e kërkuar kur :other është :value.",
|
|
86
|
-
required_unless: "The :attribute field is required unless :other is in :values.",
|
|
87
|
-
required_with: "Fusha :attribute është e kërkuar kur :values ekziston.",
|
|
88
|
-
required_with_all: "Fusha :attribute është e kërkuar kur :values ekziston.",
|
|
89
|
-
required_without: "Fusha :attribute është e kërkuar kur :values nuk ekziston.",
|
|
90
|
-
required_without_all: "Fusha :attribute është e kërkuar kur nuk ekziston asnjë nga :values.",
|
|
91
|
-
same: ":attribute dhe :other duhet të përputhen.",
|
|
92
|
-
size: {
|
|
93
|
-
numeric: ":attribute duhet të jetë :size.",
|
|
94
|
-
file: ":attribute duhet të jetë :size kilobajtë.",
|
|
95
|
-
string: ":attribute duhet të jetë :size karaktere.",
|
|
96
|
-
array: ":attribute duhet të ketë :size elemente."
|
|
97
|
-
},
|
|
98
|
-
string: ":attribute duhet të jetë varg.",
|
|
99
|
-
timezone: ":attribute duhet të jetë zonë e saktë.",
|
|
100
|
-
unique: ":attribute është marrë tashmë.",
|
|
101
|
-
uploaded: "The :attribute failed to upload.",
|
|
102
|
-
url: "Formati i :attribute është i pasaktë."
|
|
103
|
-
};
|
package/src/lang/sr.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: "Polje :attribute mora biti prihvaćeno.",
|
|
3
|
-
active_url: "Polje :attribute nije validan URL.",
|
|
4
|
-
after: "Polje :attribute mora biti datum posle :date.",
|
|
5
|
-
after_or_equal: "The :attribute must be a date after or equal to :date.",
|
|
6
|
-
alpha: "Polje :attribute može sadržati samo slova.",
|
|
7
|
-
alpha_dash: "Polje :attribute može sadržati samo slova, brojeve i povlake.",
|
|
8
|
-
alpha_num: "Polje :attribute može sadržati samo slova i brojeve.",
|
|
9
|
-
attributes: {},
|
|
10
|
-
array: "Polje :attribute mora sadržati nekih niz stavki.",
|
|
11
|
-
before: "Polje :attribute mora biti datum pre :date.",
|
|
12
|
-
before_or_equal: "The :attribute must be a date before or equal to :date.",
|
|
13
|
-
between: {
|
|
14
|
-
numeric: "Polje :attribute mora biti između :min - :max.",
|
|
15
|
-
file: "Fajl :attribute mora biti između :min - :max kilobajta.",
|
|
16
|
-
string: "Polje :attribute mora biti između :min - :max karaktera.",
|
|
17
|
-
array: "Polje :attribute mora biti između :min - :max stavki."
|
|
18
|
-
},
|
|
19
|
-
boolean: "Polje :attribute mora biti tačno ili netačno",
|
|
20
|
-
confirmed: "Potvrda polja :attribute se ne poklapa.",
|
|
21
|
-
date: "Polje :attribute nije važeći datum.",
|
|
22
|
-
date_format: "Polje :attribute ne odgovora prema formatu :format.",
|
|
23
|
-
different: "Polja :attribute i :other moraju biti različita.",
|
|
24
|
-
digits: "Polje :attribute mora sadržati :digits šifri.",
|
|
25
|
-
digits_between: "Polje :attribute mora biti izemđu :min i :max šifri.",
|
|
26
|
-
dimensions: "The :attribute has invalid image dimensions.",
|
|
27
|
-
distinct: "The :attribute field has a duplicate value.",
|
|
28
|
-
email: "Format polja :attribute nije validan.",
|
|
29
|
-
exists: "Odabrano polje :attribute nije validno.",
|
|
30
|
-
file: "The :attribute must be a file.",
|
|
31
|
-
filled: "Polje :attribute je obavezno.",
|
|
32
|
-
gt: {
|
|
33
|
-
numeric: "The :attribute must be greater than :value.",
|
|
34
|
-
file: "The :attribute must be greater than :value kilobytes.",
|
|
35
|
-
string: "The :attribute must be greater than :value characters.",
|
|
36
|
-
array: "The :attribute must have more than :value items."
|
|
37
|
-
},
|
|
38
|
-
gte: {
|
|
39
|
-
numeric: "The :attribute must be greater than or equal :value.",
|
|
40
|
-
file: "The :attribute must be greater than or equal :value kilobytes.",
|
|
41
|
-
string: "The :attribute must be greater than or equal :value characters.",
|
|
42
|
-
array: "The :attribute must have :value items or more."
|
|
43
|
-
},
|
|
44
|
-
hex: "The :attribute field should have hexadecimal format",
|
|
45
|
-
image: "Polje :attribute mora biti slika.",
|
|
46
|
-
in: "Odabrano polje :attribute nije validno.",
|
|
47
|
-
in_array: "The :attribute field does not exist in :other.",
|
|
48
|
-
integer: "Polje :attribute mora biti broj.",
|
|
49
|
-
ip: "Polje :attribute mora biti validna IP adresa.",
|
|
50
|
-
ipv4: "The :attribute must be a valid IPv4 address.",
|
|
51
|
-
ipv6: "The :attribute must be a valid IPv6 address.",
|
|
52
|
-
json: "The :attribute must be a valid JSON string.",
|
|
53
|
-
lt: {
|
|
54
|
-
numeric: "The :attribute must be less than :value.",
|
|
55
|
-
file: "The :attribute must be less than :value kilobytes.",
|
|
56
|
-
string: "The :attribute must be less than :value characters.",
|
|
57
|
-
array: "The :attribute must have less than :value items."
|
|
58
|
-
},
|
|
59
|
-
lte: {
|
|
60
|
-
numeric: "The :attribute must be less than or equal :value.",
|
|
61
|
-
file: "The :attribute must be less than or equal :value kilobytes.",
|
|
62
|
-
string: "The :attribute must be less than or equal :value characters.",
|
|
63
|
-
array: "The :attribute must not have more than :value items."
|
|
64
|
-
},
|
|
65
|
-
max: {
|
|
66
|
-
numeric: "Polje :attribute mora biti manje od :max.",
|
|
67
|
-
file: "Polje :attribute mora biti manje od :max kilobajta.",
|
|
68
|
-
string: "Polje :attribute mora sadržati manje od :max karaktera.",
|
|
69
|
-
array: "Polje :attribute ne smije da image više od :max stavki."
|
|
70
|
-
},
|
|
71
|
-
mimes: "Polje :attribute mora biti fajl tipa: :values.",
|
|
72
|
-
mimetypes: "Polje :attribute mora biti fajl tipa: :values.",
|
|
73
|
-
min: {
|
|
74
|
-
numeric: "Polje :attribute mora biti najmanje :min.",
|
|
75
|
-
file: "Fajl :attribute mora biti najmanje :min kilobajta.",
|
|
76
|
-
string: "Polje :attribute mora sadržati najmanje :min karaktera.",
|
|
77
|
-
array: "Polje :attribute mora sadrzati najmanje :min stavku."
|
|
78
|
-
},
|
|
79
|
-
not_in: "Odabrani element polja :attribute nije validan.",
|
|
80
|
-
not_regex: "The :attribute format is invalid.",
|
|
81
|
-
numeric: "Polje :attribute mora biti broj.",
|
|
82
|
-
present: "The :attribute field must be present.",
|
|
83
|
-
regex: "Format polja :attribute nije validan.",
|
|
84
|
-
required: "Polje :attribute je obavezno.",
|
|
85
|
-
required_if: "Polje :attribute je potrebno kada polje :other sadrži :value.",
|
|
86
|
-
required_unless: "The :attribute field is required unless :other is in :values.",
|
|
87
|
-
required_with: "Polje :attribute je potrebno kada polje :values je prisutan.",
|
|
88
|
-
required_with_all: "Polje :attribute je obavezno kada je :values prikazano.",
|
|
89
|
-
required_without: "Polje :attribute je potrebno kada polje :values nije prisutan.",
|
|
90
|
-
required_without_all: "Polje :attribute je potrebno kada nijedan od sledeći polja :values nisu prisutni.",
|
|
91
|
-
same: "Polja :attribute i :other se moraju poklapati.",
|
|
92
|
-
size: {
|
|
93
|
-
numeric: "Polje :attribute mora biti :size.",
|
|
94
|
-
file: "Fajl :attribute mora biti :size kilobajta.",
|
|
95
|
-
string: "Polje :attribute mora biti :size karaktera.",
|
|
96
|
-
array: "Polje :attribute mora sadržati :size stavki."
|
|
97
|
-
},
|
|
98
|
-
string: "Polje :attribute mora sadržati slova.",
|
|
99
|
-
timezone: "Polje :attribute mora biti ispravna vremenska zona.",
|
|
100
|
-
unique: "Polje :attribute već postoji.",
|
|
101
|
-
uploaded: "The :attribute failed to upload.",
|
|
102
|
-
url: "Format polja :attribute ne važi."
|
|
103
|
-
};
|
package/src/lang/sv.js
DELETED
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: ":attribute måste accepteras.",
|
|
3
|
-
active_url: ":attribute är inte en giltig webbadress.",
|
|
4
|
-
after: ":attribute måste vara ett datum efter den :date.",
|
|
5
|
-
after_or_equal: ":attribute måste vara ett datum senare eller samma dag som :date.",
|
|
6
|
-
alpha: ":attribute får endast innehålla bokstäver.",
|
|
7
|
-
alpha_dash: ":attribute får endast innehålla bokstäver, siffror och bindestreck.",
|
|
8
|
-
alpha_num: ":attribute får endast innehålla bokstäver och siffror.",
|
|
9
|
-
array: ":attribute måste vara en array.",
|
|
10
|
-
before: ":attribute måste vara ett datum innan den :date.",
|
|
11
|
-
before_or_equal: ":attribute måste vara ett datum före eller samma dag som :date.",
|
|
12
|
-
between: {
|
|
13
|
-
numeric: ":attribute måste vara en siffra mellan :min och :max.",
|
|
14
|
-
file: ":attribute måste vara mellan :min till :max kilobyte stor.",
|
|
15
|
-
string: ":attribute måste innehålla :min till :max tecken.",
|
|
16
|
-
array: ":attribute måste innehålla mellan :min - :max objekt."
|
|
17
|
-
},
|
|
18
|
-
boolean: ":attribute måste vara sant eller falskt.",
|
|
19
|
-
confirmed: ":attribute bekräftelsen matchar inte.",
|
|
20
|
-
date: ":attribute är inte ett giltigt datum.",
|
|
21
|
-
date_format: ":attribute matchar inte formatet :format.",
|
|
22
|
-
different: ":attribute och :other får inte vara lika.",
|
|
23
|
-
digits: ":attribute måste vara :digits tecken.",
|
|
24
|
-
digits_between: ":attribute måste vara mellan :min och :max tecken.",
|
|
25
|
-
dimensions: ":attribute har felaktiga bilddimensioner.",
|
|
26
|
-
distinct: ":attribute innehåller fler än en repetition av samma element.",
|
|
27
|
-
email: ":attribute måste innehålla en korrekt e-postadress.",
|
|
28
|
-
exists: ":attribute är ogiltigt.",
|
|
29
|
-
file: ":attribute måste vara en fil.",
|
|
30
|
-
filled: ":attribute är obligatoriskt.",
|
|
31
|
-
gt: {
|
|
32
|
-
numeric: ":attribute måste vara större än :value.",
|
|
33
|
-
file: ":attribute måste vara större än :value kilobyte stor.",
|
|
34
|
-
string: ":attribute måste vara längre än :value tecken.",
|
|
35
|
-
array: ":attribute måste innehålla fler än :value objekt."
|
|
36
|
-
},
|
|
37
|
-
gte: {
|
|
38
|
-
numeric: ":attribute måste vara lika med eller större än :value.",
|
|
39
|
-
file: ":attribute måste vara lika med eller större än :value kilobyte stor.",
|
|
40
|
-
string: ":attribute måste vara lika med eller längre än :value tecken.",
|
|
41
|
-
array: ":attribute måste innehålla lika många eller fler än :value objekt."
|
|
42
|
-
},
|
|
43
|
-
hex: "The :attribute field should have hexadecimal format",
|
|
44
|
-
image: ":attribute måste vara en bild.",
|
|
45
|
-
in: ":attribute är ogiltigt.",
|
|
46
|
-
in_array: ":attribute finns inte i :other.",
|
|
47
|
-
integer: ":attribute måste vara en siffra.",
|
|
48
|
-
ip: ":attribute måste vara en giltig IP-adress.",
|
|
49
|
-
ipv4: ":attribute måste vara en giltig IPv4-adress.",
|
|
50
|
-
ipv6: ":attribute måste vara en giltig IPv6-adress.",
|
|
51
|
-
json: ":attribute måste vara en giltig JSON-sträng.",
|
|
52
|
-
lt: {
|
|
53
|
-
numeric: ":attribute måste vara mindre än :value.",
|
|
54
|
-
file: ":attribute måste vara mindre än :value kilobyte stor.",
|
|
55
|
-
string: ":attribute måste vara kortare än :value tecken.",
|
|
56
|
-
array: ":attribute måste innehålla färre än :value objekt."
|
|
57
|
-
},
|
|
58
|
-
lte: {
|
|
59
|
-
numeric: ":attribute måste vara lika med eller mindre än :value.",
|
|
60
|
-
file: ":attribute måste vara lika med eller mindre än :value kilobyte stor.",
|
|
61
|
-
string: ":attribute måste vara lika med eller kortare än :value tecken.",
|
|
62
|
-
array: ":attribute måste innehålla lika många eller färre än :value objekt."
|
|
63
|
-
},
|
|
64
|
-
max: {
|
|
65
|
-
numeric: ":attribute får inte vara större än :max.",
|
|
66
|
-
file: ":attribute får max vara :max kilobyte stor.",
|
|
67
|
-
string: ":attribute får max innehålla :max tecken.",
|
|
68
|
-
array: ":attribute får inte innehålla mer än :max objekt."
|
|
69
|
-
},
|
|
70
|
-
mimes: ":attribute måste vara en fil av typen: :values.",
|
|
71
|
-
mimetypes: ":attribute måste vara en fil av typen: :values.",
|
|
72
|
-
min: {
|
|
73
|
-
numeric: ":attribute måste vara större än :min.",
|
|
74
|
-
file: ":attribute måste vara minst :min kilobyte stor.",
|
|
75
|
-
string: ":attribute måste innehålla minst :min tecken.",
|
|
76
|
-
array: ":attribute måste innehålla minst :min objekt."
|
|
77
|
-
},
|
|
78
|
-
not_in: ":attribute är ogiltigt.",
|
|
79
|
-
not_regex: "Formatet för :attribute är ogiltigt.",
|
|
80
|
-
numeric: ":attribute måste vara en siffra.",
|
|
81
|
-
present: ":attribute måste finnas med.",
|
|
82
|
-
regex: ":attribute har ogiltigt format.",
|
|
83
|
-
required: ":attribute är obligatoriskt.",
|
|
84
|
-
required_if: ":attribute är obligatoriskt när :other är :value.",
|
|
85
|
-
required_unless: ":attribute är obligatoriskt när inte :other finns bland :values.",
|
|
86
|
-
required_with: ":attribute är obligatoriskt när :values är ifyllt.",
|
|
87
|
-
required_with_all: ":attribute är obligatoriskt när :values är ifyllt.",
|
|
88
|
-
required_without: ":attribute är obligatoriskt när :values ej är ifyllt.",
|
|
89
|
-
required_without_all: ":attribute är obligatoriskt när ingen av :values är ifyllt.",
|
|
90
|
-
same: ":attribute och :other måste vara lika.",
|
|
91
|
-
size: {
|
|
92
|
-
numeric: ":attribute måste vara :size.",
|
|
93
|
-
file: ":attribute får endast vara :size kilobyte stor.",
|
|
94
|
-
string: ":attribute måste innehålla :size tecken.",
|
|
95
|
-
array: ":attribute måste innehålla :size objekt."
|
|
96
|
-
},
|
|
97
|
-
string: ":attribute måste vara en sträng.",
|
|
98
|
-
timezone: ":attribute måste vara en giltig tidszon.",
|
|
99
|
-
unique: ":attribute används redan.",
|
|
100
|
-
uploaded: ":attribute kunde inte laddas upp.",
|
|
101
|
-
url: ":attribute har ett ogiltigt format."
|
|
102
|
-
};
|
package/src/lang/tr.js
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: ':attribute kabul edilmeli.',
|
|
3
|
-
after: ':attribute alanı :after alanından sonra olmalıdır.',
|
|
4
|
-
after_or_equal: ':attribute alanı :after_or_equal alanına eşit veya sonra olmalıdır.',
|
|
5
|
-
alpha: ':attribute alanı sadece harflerden oluşabilir.',
|
|
6
|
-
alpha_dash: ':attribute alanı sadece alfa-nümerik, tire ve alt çizgi karakterlerden oluşabilir.',
|
|
7
|
-
alpha_num: ':attribute alanı alfa-nümerik olmalıdır.',
|
|
8
|
-
before: ':attribute alanı :before alanından önce olmalıdır.',
|
|
9
|
-
before_or_equal: ':attribute alanı :before_or_equal alanına eşit veya önce olmalıdır.',
|
|
10
|
-
between: ':attribute alanı :min ile :max arasında olabilir.',
|
|
11
|
-
confirmed: ':attribute uyuşmuyor.',
|
|
12
|
-
email: ':attribute formatı geçersiz.',
|
|
13
|
-
date: ':attribute geöerli bir tarih alanı değil.',
|
|
14
|
-
def: ':attribute hatalar içeriyor.',
|
|
15
|
-
digits: ':attribute sadece rakamlardan oluşabilir.',
|
|
16
|
-
digits_between: ':attribute :min ile :max arasında rakam olmalıdır.',
|
|
17
|
-
different: ':attribute ve :different farklı olmalı.',
|
|
18
|
-
in: 'Seçilen :attribute geçerli değil.',
|
|
19
|
-
integer: ':attribute tam sayı olmalı.',
|
|
20
|
-
hex: ':attribute onaltılık formatta olmalı.',
|
|
21
|
-
min: {
|
|
22
|
-
numeric: ':attribute en az :min olmalı.',
|
|
23
|
-
string: ':attribute en az :min karakter uzunluğunda olmalı.'
|
|
24
|
-
},
|
|
25
|
-
max: {
|
|
26
|
-
numeric: ':attribute en çok :max olabilir.',
|
|
27
|
-
string: ':attribute uzunluğu en çok :max karakter uzunluğunda olabilir.'
|
|
28
|
-
},
|
|
29
|
-
not_in: 'Seçilen :attribute geçerli değil.',
|
|
30
|
-
numeric: ':attribute sayı olmalı.',
|
|
31
|
-
present: ':attribute alanı bulunmalıdır (ancak boş olabilir).',
|
|
32
|
-
required: ':attribute alanı gerekli.',
|
|
33
|
-
required_if: ':attribute alanı :other alanı :value olduğunda gerekli.',
|
|
34
|
-
required_unless: ':attribute alanı :other alanı :value değilse gereklidir.',
|
|
35
|
-
required_with: ':attribute alanı :field boş değilse gereklidir.',
|
|
36
|
-
required_with_all: ':attribute alanı :fields alanları boş değilse gereklidir.',
|
|
37
|
-
required_without: ':attribute alanı :field alanı boşsa gereklidir.',
|
|
38
|
-
required_without_all: ':attribute alanı :fields alanları boşsa gereklidir.',
|
|
39
|
-
same: ':attribute ve :same aynı olmalı.',
|
|
40
|
-
size: {
|
|
41
|
-
numeric: ':attribute :size olmalı.',
|
|
42
|
-
string: ':attribute :size karakter uzunluğunda olmalı.'
|
|
43
|
-
},
|
|
44
|
-
string: ':attribute alfa-numerik olmalı.',
|
|
45
|
-
url: ':attribute formatı geçersiz.',
|
|
46
|
-
regex: ':attribute formatı geçersiz.',
|
|
47
|
-
attributes: {}
|
|
48
|
-
};
|
package/src/lang/ua.js
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: ':attribute повиннен бути прийнятий.',
|
|
3
|
-
alpha: 'Поле :attribute може складатись тільки з літер.',
|
|
4
|
-
alpha_dash: 'Поле :attribute може складатись тільки з літер, чисел, дефісів та символів підкреслення.',
|
|
5
|
-
alpha_num: 'Поле :attribute може складатись тільки з літер та чисел.',
|
|
6
|
-
between: 'Значення поля :attribute повинно знаходитись між :min і :max.',
|
|
7
|
-
confirmed: 'Поле :attribute не співпадає з підтвердженням.',
|
|
8
|
-
email: 'Значення поля :attribute повинно бути існуючою електронною адресою.',
|
|
9
|
-
def: 'Поле :attribute містить помилки.',
|
|
10
|
-
digits: 'Довжина числового поля :attribute повинна бути :digits.',
|
|
11
|
-
digits_between: 'Довжина цифрового поля :attribute повинна бути від :min до :max.',
|
|
12
|
-
different: 'Поля :attribute і :different повинні відрізнятись.',
|
|
13
|
-
in: 'Обране значення для :attribute помилкове.',
|
|
14
|
-
integer: 'Значення поля :attribute повинно бути цілим числом.',
|
|
15
|
-
hex: 'Значення поля :attribute повинно бути шістнадцяткового формату',
|
|
16
|
-
min: {
|
|
17
|
-
numeric: 'Значення поля :attribute повинно бути більшим або рівним :min.',
|
|
18
|
-
string: 'Кількість символів в полі :attribute повинна бути не менше :min.'
|
|
19
|
-
},
|
|
20
|
-
max: {
|
|
21
|
-
numeric: 'Значення поля :attribute повинно бути менше або рівне :max.',
|
|
22
|
-
string: 'Кількість символів в полі :attribute не може превищувати :max.'
|
|
23
|
-
},
|
|
24
|
-
not_in: 'Обране значення для :attribute помилкове.',
|
|
25
|
-
numeric: 'Значення поля :attribute повинно бути числом.',
|
|
26
|
-
present: 'Поле :attribute повинно бути присутнім (але може бути пустим).',
|
|
27
|
-
required: 'Поле :attribute обов\'язкове для заповнення.',
|
|
28
|
-
required_if: 'Поле :attribute потрібне у випадку коли значення поля :other рівне :value.',
|
|
29
|
-
same: 'Значеня поля :attribute повинно співпадати з :same.',
|
|
30
|
-
size: {
|
|
31
|
-
numeric: 'Значення поля :attribute повинно бути рівним :size.',
|
|
32
|
-
string: 'Кількість символів в полі :attribute повинна бути рівною :size.'
|
|
33
|
-
},
|
|
34
|
-
url: 'Поле :attribute повинне містити валідний URL.',
|
|
35
|
-
regex: 'Неправильний формат значення :attribute.',
|
|
36
|
-
attributes: {}
|
|
37
|
-
};
|
package/src/lang/uk.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: "Ви повинні прийняти :attribute.",
|
|
3
|
-
active_url: "Поле :attribute не є правильним URL.",
|
|
4
|
-
after: "Поле :attribute має містити дату не раніше :date.",
|
|
5
|
-
after_or_equal: "Поле :attribute має містити дату не раніше або дорівнюватися :date.",
|
|
6
|
-
alpha: "Поле :attribute має містити лише літери.",
|
|
7
|
-
alpha_dash: "Поле :attribute має містити лише літери, цифри та підкреслення.",
|
|
8
|
-
alpha_num: "Поле :attribute має містити лише літери та цифри.",
|
|
9
|
-
attributes: {},
|
|
10
|
-
array: "Поле :attribute має бути масивом.",
|
|
11
|
-
before: "Поле :attribute має містити дату не пізніше :date.",
|
|
12
|
-
before_or_equal: "Поле :attribute має містити дату не пізніше або дорівнюватися :date.",
|
|
13
|
-
between: {
|
|
14
|
-
numeric: "Поле :attribute має бути між :min та :max.",
|
|
15
|
-
file: "Розмір файлу в полі :attribute має бути не менше :min та не більше :max кілобайт.",
|
|
16
|
-
string: "Текст в полі :attribute має бути не менше :min та не більше :max символів.",
|
|
17
|
-
array: "Поле :attribute має містити від :min до :max елементів."
|
|
18
|
-
},
|
|
19
|
-
boolean: "Поле :attribute повинне містити логічний тип.",
|
|
20
|
-
confirmed: "Поле :attribute не збігається з підтвердженням.",
|
|
21
|
-
date: "Поле :attribute не є датою.",
|
|
22
|
-
date_format: "Поле :attribute не відповідає формату :format.",
|
|
23
|
-
different: "Поля :attribute та :other повинні бути різними.",
|
|
24
|
-
digits: "Довжина цифрового поля :attribute повинна дорівнювати :digits.",
|
|
25
|
-
digits_between: "Довжина цифрового поля :attribute повинна бути від :min до :max.",
|
|
26
|
-
dimensions: "Поле :attribute містіть неприпустимі розміри зображення.",
|
|
27
|
-
distinct: "Поле :attribute містить значення, яке дублюється.",
|
|
28
|
-
email: "Поле :attribute повинне містити коректну електронну адресу.",
|
|
29
|
-
file: "Поле :attribute має містити файл.",
|
|
30
|
-
filled: "Поле :attribute є обов'язковим для заповнення.",
|
|
31
|
-
exists: "Вибране для :attribute значення не коректне.",
|
|
32
|
-
gt: {
|
|
33
|
-
numeric: "The :attribute must be greater than :value.",
|
|
34
|
-
file: "The :attribute must be greater than :value kilobytes.",
|
|
35
|
-
string: "The :attribute must be greater than :value characters.",
|
|
36
|
-
array: "The :attribute must have more than :value items."
|
|
37
|
-
},
|
|
38
|
-
gte: {
|
|
39
|
-
numeric: "The :attribute must be greater than or equal :value.",
|
|
40
|
-
file: "The :attribute must be greater than or equal :value kilobytes.",
|
|
41
|
-
string: "The :attribute must be greater than or equal :value characters.",
|
|
42
|
-
array: "The :attribute must have :value items or more."
|
|
43
|
-
},
|
|
44
|
-
hex: "The :attribute field should have hexadecimal format",
|
|
45
|
-
image: "Поле :attribute має містити зображення.",
|
|
46
|
-
in: "Вибране для :attribute значення не коректне.",
|
|
47
|
-
in_array: "Значення поля :attribute не міститься в :other.",
|
|
48
|
-
integer: "Поле :attribute має містити ціле число.",
|
|
49
|
-
ip: "Поле :attribute має містити IP адресу.",
|
|
50
|
-
ipv4: "Поле :attribute має містити IPv4 адресу.",
|
|
51
|
-
ipv6: "Поле :attribute має містити IPv6 адресу.",
|
|
52
|
-
json: "Дані поля :attribute мають бути в форматі JSON.",
|
|
53
|
-
lt: {
|
|
54
|
-
numeric: "The :attribute must be less than :value.",
|
|
55
|
-
file: "The :attribute must be less than :value kilobytes.",
|
|
56
|
-
string: "The :attribute must be less than :value characters.",
|
|
57
|
-
array: "The :attribute must have less than :value items."
|
|
58
|
-
},
|
|
59
|
-
lte: {
|
|
60
|
-
numeric: "The :attribute must be less than or equal :value.",
|
|
61
|
-
file: "The :attribute must be less than or equal :value kilobytes.",
|
|
62
|
-
string: "The :attribute must be less than or equal :value characters.",
|
|
63
|
-
array: "The :attribute must not have more than :value items."
|
|
64
|
-
},
|
|
65
|
-
max: {
|
|
66
|
-
numeric: "Поле :attribute має бути не більше :max.",
|
|
67
|
-
file: "Файл в полі :attribute має бути не більше :max кілобайт.",
|
|
68
|
-
string: "Текст в полі :attribute повинен мати довжину не більшу за :max.",
|
|
69
|
-
array: "Поле :attribute повинне містити не більше :max елементів."
|
|
70
|
-
},
|
|
71
|
-
mimes: "Поле :attribute повинне містити файл одного з типів: :values.",
|
|
72
|
-
mimetypes: "Поле :attribute повинне містити файл одного з типів: :values.",
|
|
73
|
-
min: {
|
|
74
|
-
numeric: "Поле :attribute повинне бути не менше :min.",
|
|
75
|
-
file: "Розмір файлу в полі :attribute має бути не меншим :min кілобайт.",
|
|
76
|
-
string: "Текст в полі :attribute повинен містити не менше :min символів.",
|
|
77
|
-
array: "Поле :attribute повинне містити не менше :min елементів."
|
|
78
|
-
},
|
|
79
|
-
not_in: "Вибране для :attribute значення не коректне.",
|
|
80
|
-
not_regex: "The :attribute format is invalid.",
|
|
81
|
-
numeric: "Поле :attribute повинно містити число.",
|
|
82
|
-
present: "Поле :attribute повинне бути присутнє.",
|
|
83
|
-
regex: "Поле :attribute має хибний формат.",
|
|
84
|
-
required: "Поле :attribute є обов'язковим для заповнення.",
|
|
85
|
-
required_if: "Поле :attribute є обов'язковим для заповнення, коли :other є рівним :value.",
|
|
86
|
-
required_unless: "Поле :attribute є обов'язковим для заповнення, коли :other відрізняється від :values",
|
|
87
|
-
required_with: "Поле :attribute є обов'язковим для заповнення, коли :values вказано.",
|
|
88
|
-
required_with_all: "Поле :attribute є обов'язковим для заповнення, коли :values вказано.",
|
|
89
|
-
required_without: "Поле :attribute є обов'язковим для заповнення, коли :values не вказано.",
|
|
90
|
-
required_without_all: "Поле :attribute є обов'язковим для заповнення, коли :values не вказано.",
|
|
91
|
-
same: "Поля :attribute та :other мають співпадати.",
|
|
92
|
-
size: {
|
|
93
|
-
numeric: "Поле :attribute має бути довжини :size.",
|
|
94
|
-
file: "Файл в полі :attribute має бути розміром :size кілобайт.",
|
|
95
|
-
string: "Текст в полі :attribute повинен містити :size символів.",
|
|
96
|
-
array: "Поле :attribute повинне містити :size елементів."
|
|
97
|
-
},
|
|
98
|
-
string: "Поле :attribute повинне містити текст.",
|
|
99
|
-
timezone: "Поле :attribute повинне містити коректну часову зону.",
|
|
100
|
-
unique: "Таке значення поля :attribute вже існує.",
|
|
101
|
-
uploaded: "Завантаження поля :attribute не вдалося.",
|
|
102
|
-
url: "Формат поля :attribute неправильний."
|
|
103
|
-
};
|
package/src/lang/vi.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: ':attribute phải được chấp nhận.',
|
|
3
|
-
alpha: 'Trường :attribute phải là ký tự',
|
|
4
|
-
alpha_dash: ':attribute chỉ chấp nhận ký tự chữ cái, số, dấu gạch chéo và gạch dưới.',
|
|
5
|
-
alpha_num: ':attribute phải là ký tự chữ cái hoặc chữ số.',
|
|
6
|
-
between: ':attribute phải nằm trong khoảng :min và :max.',
|
|
7
|
-
confirmed: ':attribute xác nhận không trùng khớp.',
|
|
8
|
-
email: ':attribute không phải là email.',
|
|
9
|
-
date: ':attribute không phải là ngày hợp lệ',
|
|
10
|
-
def: 'Thuộc tính :attribute có lỗi.',
|
|
11
|
-
digits: ':attribute phải là số và có chiều dài bằng :digits.',
|
|
12
|
-
digits_between: 'Độ dài của trường :attribute phải nằm trong khoảng :min and :max chữ số.',
|
|
13
|
-
different: 'Giá trị của hai trường :attribute và :different phải khác nhau.',
|
|
14
|
-
in: 'Giá trị được chọn của :attribute không hợp lệ.',
|
|
15
|
-
integer: ':attribute phải là số nguyên.',
|
|
16
|
-
hex: 'The :attribute should have hexadecimal format',
|
|
17
|
-
min: {
|
|
18
|
-
numeric: ':attribute phải lớn hơn hoặc bằng :min.',
|
|
19
|
-
string: ':attribute phải có ít nhất :min ký tự.'
|
|
20
|
-
},
|
|
21
|
-
max: {
|
|
22
|
-
numeric: ':attribute phải nhỏ hơn hoặc bằng :max.',
|
|
23
|
-
string: ':attribute phải có ít hơn :max ký tự.'
|
|
24
|
-
},
|
|
25
|
-
not_in: 'Giá trị được chọn của trường :attribute không hợp lệ.',
|
|
26
|
-
numeric: ':attribute phải là số.',
|
|
27
|
-
present: 'Trường :attribute phải có mặt (nhưng có thể để trống).',
|
|
28
|
-
required: ':attribute bắt buộc nhập.',
|
|
29
|
-
required_if: ':attribute là bắt buộc khi :other có giá trị :value.',
|
|
30
|
-
same: 'Giá trị của :attribute và :same phải như nhau.',
|
|
31
|
-
size: {
|
|
32
|
-
numeric: ':attribute phải có chiều dài của bằng :size.',
|
|
33
|
-
string: 'Số ký tự của :attribute phải là :size ký tự.'
|
|
34
|
-
},
|
|
35
|
-
string: ':attribute không phải là một chuỗi',
|
|
36
|
-
url: ':attribute không phải là một Url hợp lệ.',
|
|
37
|
-
regex: ':attribute không đúng định dạng',
|
|
38
|
-
attributes: {}
|
|
39
|
-
};
|
package/src/lang/zh.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: ':attribute必须是可接受的.',
|
|
3
|
-
alpha: ':attribute只能包含字母.',
|
|
4
|
-
alpha_dash: ':attribute只能包含字母,连字符和下划线.',
|
|
5
|
-
alpha_num: ':attribute只能包含字母和数字.',
|
|
6
|
-
between: ':attribute的(大小,长度等)只能在:min和:max之间.',
|
|
7
|
-
confirmed: ':attribute确认不一致.',
|
|
8
|
-
email: ':attribute格式不正确.',
|
|
9
|
-
date: ':attribute日期格式错误.',
|
|
10
|
-
def: ':attribute属性错误.',
|
|
11
|
-
digits: ':attribute必须是:digits位小数.',
|
|
12
|
-
digits_between: ':attribute 必须是介于 :min 和 :max 位的数字。',
|
|
13
|
-
different: ':attribute和:different必须不同.',
|
|
14
|
-
in: '选择的:attribute无效',
|
|
15
|
-
integer: ':attribute必须是一个整数.',
|
|
16
|
-
hex: 'The :attribute should have hexadecimal format',
|
|
17
|
-
min: {
|
|
18
|
-
numeric: ':attribute不能小于:min.',
|
|
19
|
-
string: ':attribute长度不能小于:min.'
|
|
20
|
-
},
|
|
21
|
-
max: {
|
|
22
|
-
numeric: ':attribute不能大于:max.',
|
|
23
|
-
string: ':attribute长度不能大于:max.'
|
|
24
|
-
},
|
|
25
|
-
not_in: '所选的:attribute无效.',
|
|
26
|
-
numeric: ':attribute必须是一个数字.',
|
|
27
|
-
present: 'The :attribute field must be present (but can be empty).',
|
|
28
|
-
required: ':attribute不能为空.',
|
|
29
|
-
required_if: '当:other是:value时,:attribute不能为空.',
|
|
30
|
-
same: ':attribute和:same必须一致.',
|
|
31
|
-
size: {
|
|
32
|
-
numeric: ':attribute必须等于:size.',
|
|
33
|
-
string: ':attribute的长度必须等于:size.'
|
|
34
|
-
},
|
|
35
|
-
string: ':attribute必须是一个字符串.',
|
|
36
|
-
url: ':attribute格式不正确.',
|
|
37
|
-
regex: ':attribute格式不正确.',
|
|
38
|
-
attributes: {}
|
|
39
|
-
};
|
package/src/lang/zh_TW.js
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: ':attribute必須接受。',
|
|
3
|
-
alpha: ':attribute只能包含字母。',
|
|
4
|
-
alpha_dash: ':attribute只能包含字母,連字符和下划線。',
|
|
5
|
-
alpha_num: ':attribute只能包含字母和數字。',
|
|
6
|
-
between: ':attribute的值只能在:min和:max之間。',
|
|
7
|
-
confirmed: ':attribute與確認輸入不一致。',
|
|
8
|
-
email: ':attribute的格式錯誤。',
|
|
9
|
-
date: ':attribute的日期格式錯誤。',
|
|
10
|
-
def: ':attribute屬性錯誤。',
|
|
11
|
-
digits: ':attribute必須是:digits位小數。',
|
|
12
|
-
digits_between: ':attribute 必須介於 :min 至 :max 位數字。',
|
|
13
|
-
different: ':attribute和:different必須不同。',
|
|
14
|
-
in: '選擇的:attribute無效',
|
|
15
|
-
integer: ':attribute必須是一個整數。',
|
|
16
|
-
hex: ':attribute 必須是十六進位格式',
|
|
17
|
-
min: {
|
|
18
|
-
numeric: ':attribute不能小於:min。',
|
|
19
|
-
string: ':attribute的長度不能小於:min.'
|
|
20
|
-
},
|
|
21
|
-
max: {
|
|
22
|
-
numeric: ':attribute不能大於:max。',
|
|
23
|
-
string: ':attribute的長度不能大於:max.'
|
|
24
|
-
},
|
|
25
|
-
not_in: '所選的:attribute無效。',
|
|
26
|
-
numeric: ':attribute必須是一個數字。',
|
|
27
|
-
present: ':attribute 一定要有值 (可以是空值)。',
|
|
28
|
-
required: ':attribute不能空白。',
|
|
29
|
-
required_if: '當:other是:value時,:attribute不能空白。',
|
|
30
|
-
same: ':attribute和:same必須一致。',
|
|
31
|
-
size: {
|
|
32
|
-
numeric: ':attribute必須等於:size。',
|
|
33
|
-
string: ':attribute的長度必須等於:size.'
|
|
34
|
-
},
|
|
35
|
-
string: ':attribute必須是一個字串。',
|
|
36
|
-
url: ':attribute格式不正確。',
|
|
37
|
-
regex: ':attribute格式不正確。',
|
|
38
|
-
attributes: {}
|
|
39
|
-
};
|