iglooform 2.5.27 → 2.5.28
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/es/input/input.js +16 -0
- package/es/locale/en-US/messages.json +5 -4
- package/es/locale/id-ID/messages.json +4 -3
- package/es/locale/th-TH/messages.json +4 -3
- package/es/locale/vi-VN/messages.json +4 -3
- package/es/locale/zh-CN/messages.json +4 -3
- package/es/locale/zh-TW/messages.json +4 -3
- package/lib/input/input.js +16 -0
- package/lib/locale/en-US/messages.json +5 -4
- package/lib/locale/id-ID/messages.json +4 -3
- package/lib/locale/th-TH/messages.json +4 -3
- package/lib/locale/vi-VN/messages.json +4 -3
- package/lib/locale/zh-CN/messages.json +4 -3
- package/lib/locale/zh-TW/messages.json +4 -3
- package/package.json +1 -1
package/es/input/input.js
CHANGED
|
@@ -24,10 +24,26 @@ var IglooInput = /*#__PURE__*/forwardRef(function (props, ref) {
|
|
|
24
24
|
IglooInput.formItemPropsHandler = function (config) {
|
|
25
25
|
var maxLength = config.maxLength,
|
|
26
26
|
minLength = config.minLength,
|
|
27
|
+
length = config.length,
|
|
27
28
|
pattern = config.pattern,
|
|
28
29
|
label = config.label;
|
|
29
30
|
var rules = [];
|
|
30
31
|
|
|
32
|
+
if (length !== undefined) {
|
|
33
|
+
rules.push({
|
|
34
|
+
validator: function validator(_, value) {
|
|
35
|
+
if (value === undefined || value === null || value.length === length) return Promise.resolve();
|
|
36
|
+
return Promise.reject(formatMessage({
|
|
37
|
+
id: '{label} must be {length} characters.',
|
|
38
|
+
values: {
|
|
39
|
+
length: length,
|
|
40
|
+
label: label
|
|
41
|
+
}
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
|
|
31
47
|
if (maxLength !== undefined && minLength !== undefined) {
|
|
32
48
|
rules.push({
|
|
33
49
|
validator: function validator(_, value) {
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count} files attached.",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} of {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber} files imported.",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label} must be at least {minLength} characters.",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label} must be at least {minLength} digits.",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label} must be less than {maxLength} characters.",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label} must be less than {maxLength} digits.",
|
|
101
|
+
"{label} must be {length} characters.": "{label} must be {length} characters.",
|
|
99
102
|
"{label} must be {length} digits.": "{label} must be {length} digits.",
|
|
100
|
-
"{label} must be {minLength} - {maxLength} digits.": "{label} must be {minLength} - {maxLength} digits.",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label} must be at least {minLength} characters.",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label} must be less than {maxLength} characters.",
|
|
103
|
-
"{label} must match the pattern {pattern}.": "{label} must match ther pattern {pattern}.",
|
|
104
103
|
"{label} must be {minLength} - {maxLength} characters.": "{label} must be {minLength} - {maxLength} characters.",
|
|
104
|
+
"{label} must be {minLength} - {maxLength} digits.": "{label} must be {minLength} - {maxLength} digits.",
|
|
105
|
+
"{label} must match the pattern {pattern}.": "{label} must match the pattern {pattern}.",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber} files in progress..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count} file terlampir.",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} dari {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber} data terunggah.",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label} minimal harus {minLength} karakter.",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label} minimal harus {minLength} digit.",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label} harus kurang dari {maxLength} karakter.",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label} harus kurang dari {maxLength} digit.",
|
|
101
|
+
"{label} must be {length} characters.": "{label} harus {length} karakter.",
|
|
99
102
|
"{label} must be {length} digits.": "{label} harus {length} digit.",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "{label} harus {minLength} - {maxLength} karakter.",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "{label} harus {minLength} - {maxLength} digit.",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label} minimal harus {minLength} karakter.",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label} harus kurang dari {maxLength} karakter.",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "{label} harus sesuai dengan pola {pattern}.",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "{label} harus {minLength} - {maxLength} karakter.",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber} data dalam proses..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count} ไฟล์ที่แนบมา",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} จาก {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber} ไฟล์นำเข้าเสร็จแล้ว",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label} ต้องมีอย่างน้อย {minLength} ตัวอักษร",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label} ต้องมีอย่างน้อย {minLength} หลัก",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label} ต้องน้อยกว่า {maxLength} ตัวอักษร",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label} ต้องน้อยกว่า {maxLength} หลัก",
|
|
101
|
+
"{label} must be {length} characters.": "{label} ต้องเป็น {length} ตัวอักษร",
|
|
99
102
|
"{label} must be {length} digits.": "{label} ต้องเป็น {length} หลัก",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "{label} ต้องเป็น {minLength} - {maxLength} ตัวอักษร",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "{label} ต้องเป็น {minLength} - {maxLength} หลัก",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label} ต้องมีอย่างน้อย {minLength} ตัวอักษร",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label} ต้องน้อยกว่า {maxLength} ตัวอักษร",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "{label} ต้องตรงกับรูปแบบ {pattern}.",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "{label} ต้องเป็น {minLength} - {maxLength} ตัวอักษร",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber} ไฟล์กำลังดำเนินการ..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count} tập tin đính kèm.",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} trong {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber} tệp đã được nhập.",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label} phải có ít nhất {minLength} nhân vật.",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label} phải có ít nhất {minLength} chữ số.",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label} phải có ít hơn {maxLength} nhân vật.",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label} phải có ít hơn {maxLength} chữ số.",
|
|
101
|
+
"{label} must be {length} characters.": "{label} phải là {length} nhân vật.",
|
|
99
102
|
"{label} must be {length} digits.": "{label} phải là {length} chữ số.",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "{label} phải là {minLength} - {maxLength} nhân vật.",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "{label} phải là {minLength} - {maxLength} chữ số.",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label} phải có ít nhất {minLength} nhân vật.",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label} phải có ít hơn {maxLength} nhân vật.",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "{label} phải khớp với mẫu {pattern}.",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "{label} phải là {minLength} - {maxLength} nhân vật.",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber} đang được xử lý..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count}个文件已上传。",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} / {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber}个文件已导入。",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label}应至少为{minLength}位字符。",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label}应至少为{minLength}位数字。",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label}应少于{maxLength}位字符。",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label}应少于{maxLength}位数字。",
|
|
101
|
+
"{label} must be {length} characters.": "{label}应为{length}位字符。",
|
|
99
102
|
"{label} must be {length} digits.": "{label}应为{length}位数字。",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "{label}应为{length}位字符。",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "{label}应为{minLength}至{maxLength}位数字。",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label}应至少为{minLength}位字符。",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label}应少于{maxLength}位字符。",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "{label}与模式{pattern}不匹配。",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "{label}应为{length}位字符。",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber}个文件正在处理..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count}附加文件。",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} / {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber}導入的文件。",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "",
|
|
101
|
+
"{label} must be {length} characters.": "",
|
|
99
102
|
"{label} must be {length} digits.": "",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber}正在進行的文件。。。"
|
|
106
107
|
}
|
package/lib/input/input.js
CHANGED
|
@@ -40,10 +40,26 @@ var IglooInput = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
|
40
40
|
IglooInput.formItemPropsHandler = function (config) {
|
|
41
41
|
var maxLength = config.maxLength,
|
|
42
42
|
minLength = config.minLength,
|
|
43
|
+
length = config.length,
|
|
43
44
|
pattern = config.pattern,
|
|
44
45
|
label = config.label;
|
|
45
46
|
var rules = [];
|
|
46
47
|
|
|
48
|
+
if (length !== undefined) {
|
|
49
|
+
rules.push({
|
|
50
|
+
validator: function validator(_, value) {
|
|
51
|
+
if (value === undefined || value === null || value.length === length) return Promise.resolve();
|
|
52
|
+
return Promise.reject((0, _locale.staticFormatMessage)({
|
|
53
|
+
id: '{label} must be {length} characters.',
|
|
54
|
+
values: {
|
|
55
|
+
length: length,
|
|
56
|
+
label: label
|
|
57
|
+
}
|
|
58
|
+
}));
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
|
|
47
63
|
if (maxLength !== undefined && minLength !== undefined) {
|
|
48
64
|
rules.push({
|
|
49
65
|
validator: function validator(_, value) {
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count} files attached.",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} of {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber} files imported.",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label} must be at least {minLength} characters.",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label} must be at least {minLength} digits.",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label} must be less than {maxLength} characters.",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label} must be less than {maxLength} digits.",
|
|
101
|
+
"{label} must be {length} characters.": "{label} must be {length} characters.",
|
|
99
102
|
"{label} must be {length} digits.": "{label} must be {length} digits.",
|
|
100
|
-
"{label} must be {minLength} - {maxLength} digits.": "{label} must be {minLength} - {maxLength} digits.",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label} must be at least {minLength} characters.",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label} must be less than {maxLength} characters.",
|
|
103
|
-
"{label} must match the pattern {pattern}.": "{label} must match ther pattern {pattern}.",
|
|
104
103
|
"{label} must be {minLength} - {maxLength} characters.": "{label} must be {minLength} - {maxLength} characters.",
|
|
104
|
+
"{label} must be {minLength} - {maxLength} digits.": "{label} must be {minLength} - {maxLength} digits.",
|
|
105
|
+
"{label} must match the pattern {pattern}.": "{label} must match the pattern {pattern}.",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber} files in progress..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count} file terlampir.",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} dari {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber} data terunggah.",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label} minimal harus {minLength} karakter.",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label} minimal harus {minLength} digit.",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label} harus kurang dari {maxLength} karakter.",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label} harus kurang dari {maxLength} digit.",
|
|
101
|
+
"{label} must be {length} characters.": "{label} harus {length} karakter.",
|
|
99
102
|
"{label} must be {length} digits.": "{label} harus {length} digit.",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "{label} harus {minLength} - {maxLength} karakter.",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "{label} harus {minLength} - {maxLength} digit.",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label} minimal harus {minLength} karakter.",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label} harus kurang dari {maxLength} karakter.",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "{label} harus sesuai dengan pola {pattern}.",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "{label} harus {minLength} - {maxLength} karakter.",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber} data dalam proses..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count} ไฟล์ที่แนบมา",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} จาก {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber} ไฟล์นำเข้าเสร็จแล้ว",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label} ต้องมีอย่างน้อย {minLength} ตัวอักษร",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label} ต้องมีอย่างน้อย {minLength} หลัก",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label} ต้องน้อยกว่า {maxLength} ตัวอักษร",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label} ต้องน้อยกว่า {maxLength} หลัก",
|
|
101
|
+
"{label} must be {length} characters.": "{label} ต้องเป็น {length} ตัวอักษร",
|
|
99
102
|
"{label} must be {length} digits.": "{label} ต้องเป็น {length} หลัก",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "{label} ต้องเป็น {minLength} - {maxLength} ตัวอักษร",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "{label} ต้องเป็น {minLength} - {maxLength} หลัก",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label} ต้องมีอย่างน้อย {minLength} ตัวอักษร",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label} ต้องน้อยกว่า {maxLength} ตัวอักษร",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "{label} ต้องตรงกับรูปแบบ {pattern}.",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "{label} ต้องเป็น {minLength} - {maxLength} ตัวอักษร",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber} ไฟล์กำลังดำเนินการ..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count} tập tin đính kèm.",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} trong {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber} tệp đã được nhập.",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label} phải có ít nhất {minLength} nhân vật.",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label} phải có ít nhất {minLength} chữ số.",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label} phải có ít hơn {maxLength} nhân vật.",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label} phải có ít hơn {maxLength} chữ số.",
|
|
101
|
+
"{label} must be {length} characters.": "{label} phải là {length} nhân vật.",
|
|
99
102
|
"{label} must be {length} digits.": "{label} phải là {length} chữ số.",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "{label} phải là {minLength} - {maxLength} nhân vật.",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "{label} phải là {minLength} - {maxLength} chữ số.",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label} phải có ít nhất {minLength} nhân vật.",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label} phải có ít hơn {maxLength} nhân vật.",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "{label} phải khớp với mẫu {pattern}.",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "{label} phải là {minLength} - {maxLength} nhân vật.",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber} đang được xử lý..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count}个文件已上传。",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} / {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber}个文件已导入。",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "{label}应至少为{minLength}位字符。",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "{label}应至少为{minLength}位数字。",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "{label}应少于{maxLength}位字符。",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "{label}应少于{maxLength}位数字。",
|
|
101
|
+
"{label} must be {length} characters.": "{label}应为{length}位字符。",
|
|
99
102
|
"{label} must be {length} digits.": "{label}应为{length}位数字。",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "{label}应为{length}位字符。",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "{label}应为{minLength}至{maxLength}位数字。",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "{label}应至少为{minLength}位字符。",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "{label}应少于{maxLength}位字符。",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "{label}与模式{pattern}不匹配。",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "{label}应为{length}位字符。",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber}个文件正在处理..."
|
|
106
107
|
}
|
|
@@ -94,13 +94,14 @@
|
|
|
94
94
|
"{count} files attached.": "{count}附加文件。",
|
|
95
95
|
"{currentStep} of {allSteps}": "{currentStep} / {allSteps}",
|
|
96
96
|
"{doneNumber} files imported.": "{doneNumber}導入的文件。",
|
|
97
|
+
"{label} must be at least {minLength} characters.": "",
|
|
97
98
|
"{label} must be at least {minLength} digits.": "",
|
|
99
|
+
"{label} must be less than {maxLength} characters.": "",
|
|
98
100
|
"{label} must be less than {maxLength} digits.": "",
|
|
101
|
+
"{label} must be {length} characters.": "",
|
|
99
102
|
"{label} must be {length} digits.": "",
|
|
103
|
+
"{label} must be {minLength} - {maxLength} characters.": "",
|
|
100
104
|
"{label} must be {minLength} - {maxLength} digits.": "",
|
|
101
|
-
"{label} must be at least {minLength} characters.": "",
|
|
102
|
-
"{label} must be less than {maxLength} characters.": "",
|
|
103
105
|
"{label} must match the pattern {pattern}.": "",
|
|
104
|
-
"{label} must be {minLength} - {maxLength} characters.": "",
|
|
105
106
|
"{processingNumber} files in progress...": "{processingNumber}正在進行的文件。。。"
|
|
106
107
|
}
|