@jiaozhiye/qm-design-react 1.7.43 → 1.7.44
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/lib/index.esm.js +1 -1
- package/lib/index.full.js +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/lang/en.d.ts +1 -0
- package/lib/locale/lang/en.js +6 -5
- package/lib/locale/lang/zh-cn.d.ts +1 -0
- package/lib/locale/lang/zh-cn.js +6 -5
- package/package.json +1 -1
package/lib/locale/lang/en.d.ts
CHANGED
package/lib/locale/lang/en.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: 焦质晔
|
|
3
|
-
* @Date: 2021-06-19 08:46:00
|
|
4
|
-
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time: 2023-09-11 14:48:15
|
|
1
|
+
/*
|
|
2
|
+
* @Author: 焦质晔
|
|
3
|
+
* @Date: 2021-06-19 08:46:00
|
|
4
|
+
* @Last Modified by: 焦质晔
|
|
5
|
+
* @Last Modified time: 2023-09-11 14:48:15
|
|
6
6
|
*/
|
|
7
7
|
export default {
|
|
8
8
|
name: 'en',
|
|
@@ -67,6 +67,7 @@ export default {
|
|
|
67
67
|
tooltip: 'Can only upload {type} format',
|
|
68
68
|
notType: 'Unsupported file types {type}',
|
|
69
69
|
sizeLimit: 'Size cannot exceed {size}M',
|
|
70
|
+
countLimit: 'Quantity cannot exceed {count}',
|
|
70
71
|
uploadError: 'Failed to upload files!',
|
|
71
72
|
downError: 'File download failed!',
|
|
72
73
|
text: 'click and upload'
|
package/lib/locale/lang/zh-cn.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @Author: 焦质晔
|
|
3
|
-
* @Date: 2021-06-19 08:45:54
|
|
4
|
-
* @Last Modified by: 焦质晔
|
|
5
|
-
* @Last Modified time: 2023-09-11 14:47:16
|
|
1
|
+
/*
|
|
2
|
+
* @Author: 焦质晔
|
|
3
|
+
* @Date: 2021-06-19 08:45:54
|
|
4
|
+
* @Last Modified by: 焦质晔
|
|
5
|
+
* @Last Modified time: 2023-09-11 14:47:16
|
|
6
6
|
*/
|
|
7
7
|
export default {
|
|
8
8
|
name: 'zh-cn',
|
|
@@ -67,6 +67,7 @@ export default {
|
|
|
67
67
|
tooltip: '只能上传 {type} 格式',
|
|
68
68
|
notType: '不支持的文件类型 {type}',
|
|
69
69
|
sizeLimit: '大小不能超过 {size}M',
|
|
70
|
+
countLimit: '数量不能超过 {count} 个',
|
|
70
71
|
uploadError: '文件上传失败!',
|
|
71
72
|
downError: '文件下载失败!',
|
|
72
73
|
text: '点击上传'
|