y-admin-ui 0.2.4 → 0.2.5
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/lang/en.ts +41 -0
- package/lib/lang/zh-cn.ts +41 -0
- package/lib/lang/zh-tw.ts +41 -0
- package/package.json +1 -1
package/lib/lang/en.ts
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
/** 英语 */
|
2
|
+
import lang from 'element-plus/dist/locale/en';
|
3
|
+
|
4
|
+
export default {
|
5
|
+
...lang,
|
6
|
+
y: {
|
7
|
+
name: 'en',
|
8
|
+
upload: {
|
9
|
+
uploading: 'Uploading',
|
10
|
+
exception: 'Exception',
|
11
|
+
retry: 'Retry'
|
12
|
+
},
|
13
|
+
proTable: {
|
14
|
+
emptyText: 'No Data',
|
15
|
+
},
|
16
|
+
tableTools: {
|
17
|
+
refresh: 'refresh',
|
18
|
+
size: 'size',
|
19
|
+
fullscreen: 'fullscreen',
|
20
|
+
sizeOption: {
|
21
|
+
large: 'large',
|
22
|
+
default: 'medium',
|
23
|
+
small: 'small',
|
24
|
+
},
|
25
|
+
columns: 'columns',
|
26
|
+
columnsOption: {
|
27
|
+
columns: 'columns',
|
28
|
+
reset: 'reset',
|
29
|
+
index: 'index',
|
30
|
+
selection: 'selection',
|
31
|
+
untitled: 'untitled'
|
32
|
+
},
|
33
|
+
},
|
34
|
+
tour: {
|
35
|
+
skip: 'skip',
|
36
|
+
prev: 'prev',
|
37
|
+
next: 'next',
|
38
|
+
finish: 'finish'
|
39
|
+
},
|
40
|
+
},
|
41
|
+
};
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/** 简体中文 */
|
2
|
+
import lang from 'element-plus/dist/locale/zh-cn';
|
3
|
+
|
4
|
+
export default {
|
5
|
+
...lang,
|
6
|
+
y: {
|
7
|
+
name: 'zh-cn',
|
8
|
+
upload: {
|
9
|
+
uploading: '上传中',
|
10
|
+
exception: '上传失败',
|
11
|
+
retry: '重试'
|
12
|
+
},
|
13
|
+
proTable: {
|
14
|
+
emptyText: '没有更多的数据哦~',
|
15
|
+
},
|
16
|
+
tableTools: {
|
17
|
+
refresh: '刷新',
|
18
|
+
size: '密度',
|
19
|
+
fullscreen: '全屏',
|
20
|
+
sizeOption: {
|
21
|
+
large: '宽松',
|
22
|
+
default: '默认',
|
23
|
+
small: '中等',
|
24
|
+
},
|
25
|
+
columns: '列设置',
|
26
|
+
columnsOption: {
|
27
|
+
columns: '列展示',
|
28
|
+
reset: '重置',
|
29
|
+
index: 'index',
|
30
|
+
selection: 'selection',
|
31
|
+
untitled: 'untitled'
|
32
|
+
},
|
33
|
+
},
|
34
|
+
tour: {
|
35
|
+
skip: '跳过',
|
36
|
+
prev: '上一步',
|
37
|
+
next: '下一步',
|
38
|
+
finish: '完成'
|
39
|
+
},
|
40
|
+
},
|
41
|
+
};
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/** 繁体中文 */
|
2
|
+
import lang from 'element-plus/dist/locale/zh-tw';
|
3
|
+
|
4
|
+
export default {
|
5
|
+
...lang,
|
6
|
+
y: {
|
7
|
+
name: 'zh-tw',
|
8
|
+
upload: {
|
9
|
+
uploading: '上傳中',
|
10
|
+
exception: '上傳失敗',
|
11
|
+
retry: '重試'
|
12
|
+
},
|
13
|
+
proTable: {
|
14
|
+
emptyText: '沒有更多的數據哦~',
|
15
|
+
},
|
16
|
+
tableTools: {
|
17
|
+
refresh: '刷新',
|
18
|
+
size: '密度',
|
19
|
+
fullscreen: '全屏',
|
20
|
+
sizeOption: {
|
21
|
+
large: '寬鬆',
|
22
|
+
default: '默認',
|
23
|
+
small: '中等',
|
24
|
+
},
|
25
|
+
columns: '列設置',
|
26
|
+
columnsOption: {
|
27
|
+
columns: '列展示',
|
28
|
+
reset: '重置',
|
29
|
+
index: 'index',
|
30
|
+
selection: 'selection',
|
31
|
+
untitled: 'untitled'
|
32
|
+
},
|
33
|
+
},
|
34
|
+
tour: {
|
35
|
+
skip: '跳過',
|
36
|
+
prev: '上一步',
|
37
|
+
next: '下一步',
|
38
|
+
finish: '完成'
|
39
|
+
},
|
40
|
+
},
|
41
|
+
};
|