@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/ko.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은(는) true 또는 false 이어야 합니다.",
|
|
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
|
-
exists: "선택된 :attribute은(는) 유효하지 않습니다.",
|
|
30
|
-
file: ":attribute은(는) 파일이어야 합니다.",
|
|
31
|
-
filled: ":attribute 필드는 값이 있어야 합니다.",
|
|
32
|
-
gt: {
|
|
33
|
-
numeric: ":attribute의 값은 :value보다 커야 합니다.",
|
|
34
|
-
file: ":attribute의 용량은 :value킬로바이트보다 커야 합니다.",
|
|
35
|
-
string: ":attribute의 길이는 :value보다 길어야 합니다.",
|
|
36
|
-
array: ":attribute의 항목수는 :value개 보다 많아야 합니다."
|
|
37
|
-
},
|
|
38
|
-
gte: {
|
|
39
|
-
numeric: ":attribute의 값은 :value보다 같거나 커야 합니다.",
|
|
40
|
-
file: ":attribute의 용량은 :value킬로바이트보다 같거나 커야 합니다.",
|
|
41
|
-
string: ":attribute의 길이는 :value보다 같거나 길어야 합니다.",
|
|
42
|
-
array: ":attribute의 항목수는 :value개 보다 같거나 많아야 합니다."
|
|
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: ":attribute의 값은 :value보다 작아야 합니다.",
|
|
55
|
-
file: ":attribute의 용량은 :value킬로바이트보다 작아야 합니다.",
|
|
56
|
-
string: ":attribute의 길이는 :value보다 짧아야 합니다.",
|
|
57
|
-
array: ":attribute의 항목수는 :value개 보다 작아야 합니다."
|
|
58
|
-
},
|
|
59
|
-
lte: {
|
|
60
|
-
numeric: ":attribute의 값은 :value보다 같거나 작아야 합니다.",
|
|
61
|
-
file: ":attribute의 용량은 :value킬로바이트보다 같거나 작아야 합니다.",
|
|
62
|
-
string: ":attribute의 길이는 :value보다 같거나 짧아야 합니다.",
|
|
63
|
-
array: ":attribute의 항목수는 :value개 보다 같거나 작아야 합니다."
|
|
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: ":attribute의 형식이 올바르지 않습니다.",
|
|
81
|
-
numeric: ":attribute은(는) 숫자여야 합니다.",
|
|
82
|
-
present: ":attribute 필드가 있어야 합니다.",
|
|
83
|
-
regex: ":attribute 형식이 유효하지 않습니다.",
|
|
84
|
-
required: ":attribute 필드는 필수입니다.",
|
|
85
|
-
required_if: ":other이(가) :value 일 때 :attribute 필드는 필수입니다.",
|
|
86
|
-
required_unless: ":other이(가) :value에 없다면 :attribute 필드는 필수입니다.",
|
|
87
|
-
required_with: ":values이(가) 있는 경우 :attribute 필드는 필수입니다.",
|
|
88
|
-
required_with_all: ":values이(가) 모두 있는 경우 :attribute 필드는 필수입니다.",
|
|
89
|
-
required_without: ":values이(가) 없는 경우 :attribute 필드는 필수입니다.",
|
|
90
|
-
required_without_all: ":values이(가) 모두 없는 경우 :attribute 필드는 필수입니다.",
|
|
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/lt.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: "Laukas :attribute turi būti priimtas.",
|
|
3
|
-
active_url: "Laukas :attribute nėra galiojantis internetinis adresas.",
|
|
4
|
-
after: "Lauko :attribute reikšmė turi būti po :date datos.",
|
|
5
|
-
after_or_equal: "The :attribute must be a date after or equal to :date.",
|
|
6
|
-
alpha: "Laukas :attribute gali turėti tik raides.",
|
|
7
|
-
alpha_dash: "Laukas :attribute gali turėti tik raides, skaičius ir brūkšnelius.",
|
|
8
|
-
alpha_num: "Laukas :attribute gali turėti tik raides ir skaičius.",
|
|
9
|
-
attributes: {},
|
|
10
|
-
array: "Laukas :attribute turi būti masyvas.",
|
|
11
|
-
before: "Laukas :attribute turi būti data prieš :date.",
|
|
12
|
-
before_or_equal: "The :attribute must be a date before or equal to :date.",
|
|
13
|
-
between: {
|
|
14
|
-
numeric: "Lauko :attribute reikšmė turi būti tarp :min ir :max.",
|
|
15
|
-
file: "Failo dydis lauke :attribute turi būti tarp :min ir :max kilobaitų.",
|
|
16
|
-
string: "Simbolių skaičius lauke :attribute turi būti tarp :min ir :max.",
|
|
17
|
-
array: "Elementų skaičius lauke :attribute turi turėti nuo :min iki :max."
|
|
18
|
-
},
|
|
19
|
-
boolean: "Lauko reikšmė :attribute turi būti 'taip' arba 'ne'.",
|
|
20
|
-
confirmed: "Lauko :attribute patvirtinimas nesutampa.",
|
|
21
|
-
date: "Lauko :attribute reikšmė nėra galiojanti data.",
|
|
22
|
-
date_format: "Lauko :attribute reikšmė neatitinka formato :format.",
|
|
23
|
-
different: "Laukų :attribute ir :other reikšmės turi skirtis.",
|
|
24
|
-
digits: "Laukas :attribute turi būti sudarytas iš :digits skaitmenų.",
|
|
25
|
-
digits_between: "Laukas :attribute tuti turėti nuo :min iki :max skaitmenų.",
|
|
26
|
-
dimensions: "Lauke :attribute įkeltas paveiksliukas neatitinka išmatavimų reikalavimo.",
|
|
27
|
-
distinct: "Laukas :attribute pasikartoja.",
|
|
28
|
-
email: "Lauko :attribute reikšmė turi būti galiojantis el. pašto adresas.",
|
|
29
|
-
file: "The :attribute must be a file.",
|
|
30
|
-
filled: "Laukas :attribute turi būti užpildytas.",
|
|
31
|
-
exists: "Pasirinkta negaliojanti :attribute reikšmė.",
|
|
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: "Lauko :attribute reikšmė turi būti paveikslėlis.",
|
|
46
|
-
in: "Pasirinkta negaliojanti :attribute reikšmė.",
|
|
47
|
-
in_array: "Laukas :attribute neegzistuoja :other lauke.",
|
|
48
|
-
integer: "Lauko :attribute reikšmė turi būti sveikasis skaičius.",
|
|
49
|
-
ip: "Lauko :attribute reikšmė turi būti galiojantis IP adresas.",
|
|
50
|
-
ipv4: "The :attribute must be a valid IPv4 address.",
|
|
51
|
-
ipv6: "The :attribute must be a valid IPv6 address.",
|
|
52
|
-
json: "Lauko :attribute reikšmė turi būti JSON tekstas.",
|
|
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: "Lauko :attribute reikšmė negali būti didesnė nei :max.",
|
|
67
|
-
file: "Failo dydis lauke :attribute reikšmė negali būti didesnė nei :max kilobaitų.",
|
|
68
|
-
string: "Simbolių kiekis lauke :attribute reikšmė negali būti didesnė nei :max simbolių.",
|
|
69
|
-
array: "Elementų kiekis lauke :attribute negali turėti daugiau nei :max elementų."
|
|
70
|
-
},
|
|
71
|
-
mimes: "Lauko reikšmė :attribute turi būti failas vieno iš sekančių tipų: :values.",
|
|
72
|
-
mimetypes: "Lauko reikšmė :attribute turi būti failas vieno iš sekančių tipų: :values.",
|
|
73
|
-
min: {
|
|
74
|
-
numeric: "Lauko :attribute reikšmė turi būti ne mažesnė nei :min.",
|
|
75
|
-
file: "Failo dydis lauke :attribute turi būti ne mažesnis nei :min kilobaitų.",
|
|
76
|
-
string: "Simbolių kiekis lauke :attribute turi būti ne mažiau nei :min.",
|
|
77
|
-
array: "Elementų kiekis lauke :attribute turi būti ne mažiau nei :min."
|
|
78
|
-
},
|
|
79
|
-
not_in: "Pasirinkta negaliojanti reikšmė :attribute.",
|
|
80
|
-
not_regex: "The :attribute format is invalid.",
|
|
81
|
-
numeric: "Lauko :attribute reikšmė turi būti skaičius.",
|
|
82
|
-
present: "Laukas :attribute turi egzistuoti.",
|
|
83
|
-
regex: "Negaliojantis lauko :attribute formatas.",
|
|
84
|
-
required: "Privaloma užpildyti lauką :attribute.",
|
|
85
|
-
required_if: "Privaloma užpildyti lauką :attribute kai :other yra :value.",
|
|
86
|
-
required_unless: "Laukas :attribute yra privalomas, nebent :other yra tarp :values reikšmių.",
|
|
87
|
-
required_with: "Privaloma užpildyti lauką :attribute kai pateikta :values.",
|
|
88
|
-
required_with_all: "Privaloma užpildyti lauką :attribute kai pateikta :values.",
|
|
89
|
-
required_without: "Privaloma užpildyti lauką :attribute kai nepateikta :values.",
|
|
90
|
-
required_without_all: "Privaloma užpildyti lauką :attribute kai nepateikta nei viena iš reikšmių :values.",
|
|
91
|
-
same: "Laukai :attribute ir :other turi sutapti.",
|
|
92
|
-
size: {
|
|
93
|
-
numeric: "Lauko :attribute reikšmė turi būti :size.",
|
|
94
|
-
file: "Failo dydis lauke :attribute turi būti :size kilobaitai.",
|
|
95
|
-
string: "Simbolių skaičius lauke :attribute turi būti :size.",
|
|
96
|
-
array: "Elementų kiekis lauke :attribute turi būti :size."
|
|
97
|
-
},
|
|
98
|
-
string: "Laukas :attribute turi būti tekstinis.",
|
|
99
|
-
timezone: "Lauko :attribute reikšmė turi būti galiojanti laiko zona.",
|
|
100
|
-
unique: "Tokia :attribute reikšmė jau pasirinkta.",
|
|
101
|
-
uploaded: "The :attribute failed to upload.",
|
|
102
|
-
url: "Negaliojantis lauko :attribute formatas."
|
|
103
|
-
};
|
package/src/lang/lv.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: " :attribute ir jābūt pieņemtam.",
|
|
3
|
-
active_url: " :attribute ir ar nederīgu linku.",
|
|
4
|
-
after: " :attribute ir jābūt ar datumu pēc :datums.",
|
|
5
|
-
after_or_equal: " :attribute ir jābūt ar datumu pēc vai vienādu ar :datums.",
|
|
6
|
-
alpha: " :attribute var saturēt tikai burtus.",
|
|
7
|
-
alpha_dash: " :attribute var saturēt tikai burtus, nummurus un atstarpes.",
|
|
8
|
-
alpha_num: " :attribute var tikai saturēt burtus un nummurus.",
|
|
9
|
-
attributes: {},
|
|
10
|
-
array: " :attribute ir jābūt sakārtotam.",
|
|
11
|
-
before: " :attribute ir jābūt ar datumu pirms :datums.",
|
|
12
|
-
before_or_equal: " :attribute ir jābūt ar datumu pirms vai vienādu ar :datums.",
|
|
13
|
-
between: {
|
|
14
|
-
numeric: " :attribute jābūt starp :min un :max.",
|
|
15
|
-
file: " :attribute jābūt starp :min un :max kilobaiti.",
|
|
16
|
-
string: " :attribute jābūt no :min līdz :max zīmēm.",
|
|
17
|
-
array: " :attribute jābūt no :min līdz :max vienībām."
|
|
18
|
-
},
|
|
19
|
-
boolean: " :attribute laiciņam jābūt atbilstošam vai neatbilstošam.",
|
|
20
|
-
confirmed: " :attribute apstiprinājums neatbilst.",
|
|
21
|
-
date: " :attribute nav derīgs.",
|
|
22
|
-
date_format: " :attribute neatbilst formātam :format.",
|
|
23
|
-
different: " :attribute un :other ir jābūt citiem.",
|
|
24
|
-
digits: " :attribute ir jābūt :digits ciparam.",
|
|
25
|
-
digits_between: " :attribute ir jābūt :min un :max ciparam.",
|
|
26
|
-
dimensions: " :attribute ir nederīgs attēla izmērs.",
|
|
27
|
-
distinct: " :attribute laikam ir dubulta vērtība.",
|
|
28
|
-
email: " :attribute derīgam e-pastam.",
|
|
29
|
-
exists: "Izvēlētais :attribute ir nederīgs.",
|
|
30
|
-
file: " :attribute jābūt failam.",
|
|
31
|
-
filled: ":attribute lauks ir nepieciešams.",
|
|
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 jābūt attēlam.",
|
|
46
|
-
in: "Izvēlētais :attribute ir nederīgs.",
|
|
47
|
-
in_array: " :attribute laiks neeksistē :cits.",
|
|
48
|
-
integer: " :attribute ir jabūt skaitim.",
|
|
49
|
-
ip: " :attribute jābūt derīgai IP adresei.",
|
|
50
|
-
ipv4: "The :attribute must be a valid IPv4 address.",
|
|
51
|
-
ipv6: "The :attribute must be a valid IPv6 address.",
|
|
52
|
-
json: " :attribute jābūt derīgai JSON virknei.",
|
|
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 nedrīkst pārsniegt :max.",
|
|
67
|
-
file: " :attribute nedrīkst pārsniegt :max kilobaiti.",
|
|
68
|
-
string: " :attribute nedrīkst pārsniegt :max zīmes.",
|
|
69
|
-
array: " :attribute nedrīkst pārsniegt :max vienības."
|
|
70
|
-
},
|
|
71
|
-
mimes: " :attribute jābūt faila tipam: :values",
|
|
72
|
-
mimetypes: " :attribute jābūt faile tipam: :values.",
|
|
73
|
-
min: {
|
|
74
|
-
numeric: " :attribute jābūt vismaz :min.",
|
|
75
|
-
file: " :attribute jābūt vismaz :min kilobaiti.",
|
|
76
|
-
string: " :attribute jābūt vismaz :min zīmes.",
|
|
77
|
-
array: " :attribute jāsatur vismaz :min vienības."
|
|
78
|
-
},
|
|
79
|
-
not_in: " izvēlieties :attribute ir nederīgs.",
|
|
80
|
-
not_regex: "The :attribute format is invalid.",
|
|
81
|
-
numeric: " :attribute jābūt skaitlim.",
|
|
82
|
-
present: " :attribute laikums ir nepieciešams.",
|
|
83
|
-
regex: " :attribute formāts ir nederīgs.",
|
|
84
|
-
required: " :attribute laukums ir nepieciešams.",
|
|
85
|
-
required_if: " :attribute laukums ir nepieciešams, ja vien :other ir :values.",
|
|
86
|
-
required_unless: " :attribute laukums ir nepieciešams, ja vien :other ir :values.",
|
|
87
|
-
required_with: " :attribute laukums ir nepieciešams, kad :values ir pieejama.",
|
|
88
|
-
required_with_all: " :attribute laukums ir nepieciešams, kad :values ir pieejama.",
|
|
89
|
-
required_without: " :attribute laukums ir nepieciešams, kad :values nav pieejama.",
|
|
90
|
-
required_without_all: " :attribute laukums ir nepieciešams, kad neviena no :values nav pieejama.",
|
|
91
|
-
same: " :attribute un :citiem ir jāsakrīt.",
|
|
92
|
-
size: {
|
|
93
|
-
numeric: " :attribute jābūt :size.",
|
|
94
|
-
file: " :attribute jābūt :size kilobaiti.",
|
|
95
|
-
string: " :attribute jābūt :size zīmes.",
|
|
96
|
-
array: " :attribute jāsatur :size vienības."
|
|
97
|
-
},
|
|
98
|
-
string: " :attribute jābūt virknē.",
|
|
99
|
-
timezone: " :attribute jābūt derīgā zonā.",
|
|
100
|
-
unique: " :attribute jau ir aizņemts.",
|
|
101
|
-
uploaded: " :attribute netika augšuplādēts.",
|
|
102
|
-
url: " :attribute formāts ir nederīgs."
|
|
103
|
-
};
|
package/src/lang/mk.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: "The :attribute must be a date after or equal to :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: "The :attribute must be a date before or equal to :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: "The :attribute field must be true or false",
|
|
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: "The :attribute has invalid image dimensions.",
|
|
27
|
-
distinct: "The :attribute field has a duplicate value.",
|
|
28
|
-
email: "Полето :attribute не е во валиден формат.",
|
|
29
|
-
exists: "Избранато поле :attribute веќе постои.",
|
|
30
|
-
file: "The :attribute must be a file.",
|
|
31
|
-
filled: "Полето :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: "The :attribute field does not exist in :other.",
|
|
48
|
-
integer: "Полето :attribute мора да биде цел број.",
|
|
49
|
-
ip: "Полето :attribute мора да биде IP адреса.",
|
|
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 мора да биде помало од :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: "The :attribute field must be present.",
|
|
83
|
-
regex: "Полето :attribute е во невалиден формат.",
|
|
84
|
-
required: "Полето :attribute е задолжително.",
|
|
85
|
-
required_if: "Полето :attribute е задолжително, кога :other е :value.",
|
|
86
|
-
required_unless: "The :attribute field is required unless :other is in :values.",
|
|
87
|
-
required_with: "Полето :attribute е задолжително, кога е внесено :values.",
|
|
88
|
-
required_with_all: "The :attribute field is required when :values is present.",
|
|
89
|
-
required_without: "Полето :attribute е задолжително, кога не е внесено :values.",
|
|
90
|
-
required_without_all: "The :attribute field is required when none of :values are present.",
|
|
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: "The :attribute must be a string.",
|
|
99
|
-
timezone: "The :attribute must be a valid zone.",
|
|
100
|
-
unique: "Полето :attribute веќе постои.",
|
|
101
|
-
uploaded: "The :attribute failed to upload.",
|
|
102
|
-
url: "Полето :attribute не е во валиден формат."
|
|
103
|
-
};
|
package/src/lang/mn.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
|
-
exists: "Сонгогдсон :attribute буруу байна.",
|
|
30
|
-
file: ":Attribute талбарт файл оруулах шаардлагатай.",
|
|
31
|
-
filled: ":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: "The :attribute must be a valid IPv4 address.",
|
|
51
|
-
ipv6: "The :attribute must be a valid IPv6 address.",
|
|
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: "Хэрэв :other :value бол :attribute табларт утга оруулах шаардлагатай.",
|
|
86
|
-
required_unless: ":other :values дотор байхгүй бол :attribute талбарт утга оруулах шаардлагатай.",
|
|
87
|
-
required_with: ":values утгуудийн аль нэг байвал :attribute талбар шаардлагатай.",
|
|
88
|
-
required_with_all: ":values утгууд байвал :attribute талбар шаардлагатай.",
|
|
89
|
-
required_without: "The :attribute field is required when :values is not present.",
|
|
90
|
-
required_without_all: "The :attribute field is required when none of :values are present.",
|
|
91
|
-
same: "The :attribute and :other must match.",
|
|
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 зөв url хаяг оруулна уу."
|
|
103
|
-
};
|
package/src/lang/ms.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
accepted: ":attribute mesti diterima pakai.",
|
|
3
|
-
active_url: ":attribute bukan URL yang sah.",
|
|
4
|
-
after: ":attribute mesti tarikh selepas :date.",
|
|
5
|
-
after_or_equal: ":attribute mesti tarikh selepas atau sama dengan :date.",
|
|
6
|
-
alpha: ":attribute hanya boleh mengandungi huruf.",
|
|
7
|
-
alpha_dash: ":attribute boleh mengandungi huruf, nombor, dan sengkang.",
|
|
8
|
-
alpha_num: ":attribute boleh mengandungi huruf dan nombor.",
|
|
9
|
-
attributes: {},
|
|
10
|
-
array: ":attribute mesti jujukan.",
|
|
11
|
-
before: ":attribute mesti tarikh sebelum :date.",
|
|
12
|
-
before_or_equal: ":attribute mesti tarikh sebelum atau sama dengan :date.",
|
|
13
|
-
between: {
|
|
14
|
-
numeric: ":attribute mesti mengandungi antara :min dan :max.",
|
|
15
|
-
file: ":attribute mesti mengandungi antara :min dan :max kilobait.",
|
|
16
|
-
string: ":attribute mesti mengandungi antara :min dan :max aksara.",
|
|
17
|
-
array: ":attribute mesti mengandungi antara :min dan :max perkara."
|
|
18
|
-
},
|
|
19
|
-
boolean: ":attribute mesti benar atau salah.",
|
|
20
|
-
confirmed: ":attribute pengesahan yang tidak sepadan.",
|
|
21
|
-
date: ":attribute bukan tarikh yang sah.",
|
|
22
|
-
date_format: ":attribute tidak mengikut format :format.",
|
|
23
|
-
different: ":attribute dan :other mesti berlainan.",
|
|
24
|
-
dimensions: ":attribute tidak sah",
|
|
25
|
-
digits: ":attribute mesti :digits.",
|
|
26
|
-
digits_between: ":attribute mesti mengandungi antara :min dan :max digits.",
|
|
27
|
-
distinct: ":attribute adalah nilai yang berulang",
|
|
28
|
-
email: ":attribute tidak sah.",
|
|
29
|
-
exists: ":attribute tidak sah.",
|
|
30
|
-
file: ":attribute mesti fail yang sah.",
|
|
31
|
-
filled: ":attribute diperlukan.",
|
|
32
|
-
gt: {
|
|
33
|
-
numeric: ":attribute mesti melebihi :value.",
|
|
34
|
-
file: ":attribute mesti melebihi :value kilobait.",
|
|
35
|
-
string: ":attribute mesti melebihi :value aksara.",
|
|
36
|
-
array: ":attribute mesti mengandungi lebih daripada :value perkara."
|
|
37
|
-
},
|
|
38
|
-
gte: {
|
|
39
|
-
numeric: ":attribute mesti melebihi atau bersamaan :value.",
|
|
40
|
-
file: ":attribute mesti melebihi atau bersamaan :value kilobait.",
|
|
41
|
-
string: ":attribute mesti melebihi atau bersamaan :value aksara.",
|
|
42
|
-
array: ":attribute mesti mengandungi :value perkara atau lebih."
|
|
43
|
-
},
|
|
44
|
-
hex: "The :attribute field should have hexadecimal format",
|
|
45
|
-
image: ":attribute mesti imej.",
|
|
46
|
-
in: ":attribute tidak sah.",
|
|
47
|
-
in_array: ":attribute tidak wujud dalam :other.",
|
|
48
|
-
integer: ":attribute mesti integer.",
|
|
49
|
-
ip: ":attribute mesti alamat IP yang sah.",
|
|
50
|
-
ipv4: ":attribute mesti alamat IPv4 yang sah.",
|
|
51
|
-
ipv6: ":attribute mesti alamat IPv6 yang sah",
|
|
52
|
-
json: ":attribute mesti JSON yang sah.",
|
|
53
|
-
lt: {
|
|
54
|
-
numeric: ":attribute mesti kurang daripada :value.",
|
|
55
|
-
file: ":attribute mesti kurang daripada :value kilobait.",
|
|
56
|
-
string: ":attribute mesti kurang daripada :value aksara.",
|
|
57
|
-
array: ":attribute mesti mengandungi kurang daripada :value perkara."
|
|
58
|
-
},
|
|
59
|
-
lte: {
|
|
60
|
-
numeric: ":attribute mesti kurang daripada atau bersamaan dengan :value.",
|
|
61
|
-
file: ":attribute mesti kurang daripada atau bersamaan dengan :value kilobait.",
|
|
62
|
-
string: ":attribute mesti kurang daripada atau bersamaan dengan :value aksara.",
|
|
63
|
-
array: ":attribute mesti mengandungi kurang daripada atau bersamaan dengan :value perkara."
|
|
64
|
-
},
|
|
65
|
-
max: {
|
|
66
|
-
numeric: "Jumlah :attribute mesti tidak melebihi :max.",
|
|
67
|
-
file: "Jumlah :attribute mesti tidak melebihi :max kilobait.",
|
|
68
|
-
string: "Jumlah :attribute mesti tidak melebihi :max aksara.",
|
|
69
|
-
array: "Jumlah :attribute mesti tidak melebihi :max perkara."
|
|
70
|
-
},
|
|
71
|
-
mimes: ":attribute mesti fail type: :values.",
|
|
72
|
-
mimetypes: ":attribute mesti fail type: :values.",
|
|
73
|
-
min: {
|
|
74
|
-
numeric: "Jumlah :attribute mesti sekurang-kurangnya :min.",
|
|
75
|
-
file: "Jumlah :attribute mesti sekurang-kurangnya :min kilobait.",
|
|
76
|
-
string: "Jumlah :attribute mesti sekurang-kurangnya :min aksara.",
|
|
77
|
-
array: "Jumlah :attribute mesti sekurang-kurangnya :min perkara."
|
|
78
|
-
},
|
|
79
|
-
not_in: ":attribute tidak sah.",
|
|
80
|
-
not_regex: "Format :attribute adalah tidak sah.",
|
|
81
|
-
numeric: ":attribute mesti nombor.",
|
|
82
|
-
present: ":attribute mesti wujud.",
|
|
83
|
-
regex: "Format :attribute tidak sah.",
|
|
84
|
-
required: "Ruangan :attribute diperlukan.",
|
|
85
|
-
required_if: "Ruangan :attribute diperlukan bila :other sama dengan :value.",
|
|
86
|
-
required_unless: "Ruangan :attribute diperlukan sekiranya :other ada dalam :values.",
|
|
87
|
-
required_with: "Ruangan :attribute diperlukan bila :values wujud.",
|
|
88
|
-
required_with_all: "Ruangan :attribute diperlukan bila :values wujud.",
|
|
89
|
-
required_without: "Ruangan :attribute diperlukan bila :values tidak wujud.",
|
|
90
|
-
required_without_all: "Ruangan :attribute diperlukan bila kesemua :values wujud.",
|
|
91
|
-
same: "Ruangan :attribute dan :other mesti sepadan.",
|
|
92
|
-
size: {
|
|
93
|
-
numeric: "Saiz :attribute mesti :size.",
|
|
94
|
-
file: "Saiz :attribute mesti :size kilobait.",
|
|
95
|
-
string: "Saiz :attribute mesti :size aksara.",
|
|
96
|
-
array: "Saiz :attribute mesti mengandungi :size perkara."
|
|
97
|
-
},
|
|
98
|
-
string: ":attribute mesti aksara.",
|
|
99
|
-
timezone: ":attribute mesti zon masa yang sah.",
|
|
100
|
-
unique: ":attribute telah wujud.",
|
|
101
|
-
uploaded: ":attribute gagal dimuat naik.",
|
|
102
|
-
url: ":attribute format tidak sah."
|
|
103
|
-
};
|