@univerjs/design 0.20.1 → 0.21.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/lib/cjs/index.js +4212 -25
- package/lib/cjs/locale/ca-ES.js +54 -1
- package/lib/cjs/locale/en-US.js +69 -1
- package/lib/cjs/locale/es-ES.js +54 -1
- package/lib/cjs/locale/fa-IR.js +54 -1
- package/lib/cjs/locale/fr-FR.js +54 -1
- package/lib/cjs/locale/ja-JP.js +54 -1
- package/lib/cjs/locale/ko-KR.js +54 -1
- package/lib/cjs/locale/ru-RU.js +54 -1
- package/lib/cjs/locale/sk-SK.js +54 -1
- package/lib/cjs/locale/vi-VN.js +54 -1
- package/lib/cjs/locale/zh-CN.js +54 -1
- package/lib/cjs/locale/zh-TW.js +54 -1
- package/lib/es/index.js +4146 -25
- package/lib/es/locale/ca-ES.js +53 -1
- package/lib/es/locale/en-US.js +68 -1
- package/lib/es/locale/es-ES.js +53 -1
- package/lib/es/locale/fa-IR.js +53 -1
- package/lib/es/locale/fr-FR.js +53 -1
- package/lib/es/locale/ja-JP.js +53 -1
- package/lib/es/locale/ko-KR.js +53 -1
- package/lib/es/locale/ru-RU.js +53 -1
- package/lib/es/locale/sk-SK.js +53 -1
- package/lib/es/locale/vi-VN.js +53 -1
- package/lib/es/locale/zh-CN.js +53 -1
- package/lib/es/locale/zh-TW.js +53 -1
- package/lib/index.js +4146 -25
- package/lib/locale/ca-ES.js +53 -1
- package/lib/locale/en-US.js +68 -1
- package/lib/locale/es-ES.js +53 -1
- package/lib/locale/fa-IR.js +53 -1
- package/lib/locale/fr-FR.js +53 -1
- package/lib/locale/ja-JP.js +53 -1
- package/lib/locale/ko-KR.js +53 -1
- package/lib/locale/ru-RU.js +53 -1
- package/lib/locale/sk-SK.js +53 -1
- package/lib/locale/vi-VN.js +53 -1
- package/lib/locale/zh-CN.js +53 -1
- package/lib/locale/zh-TW.js +53 -1
- package/lib/umd/index.js +23 -23
- package/package.json +4 -4
package/lib/locale/ca-ES.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/ca-ES.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "cancel·la",
|
|
5
|
+
confirm: "ok"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "Cap" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"dg",
|
|
12
|
+
"dl",
|
|
13
|
+
"dt",
|
|
14
|
+
"dc",
|
|
15
|
+
"dj",
|
|
16
|
+
"dv",
|
|
17
|
+
"ds"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"gener",
|
|
21
|
+
"febrer",
|
|
22
|
+
"març",
|
|
23
|
+
"abril",
|
|
24
|
+
"maig",
|
|
25
|
+
"juny",
|
|
26
|
+
"juliol",
|
|
27
|
+
"agost",
|
|
28
|
+
"setembre",
|
|
29
|
+
"octubre",
|
|
30
|
+
"novembre",
|
|
31
|
+
"desembre"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "Cap" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "Més colors",
|
|
37
|
+
cancel: "cancel·la",
|
|
38
|
+
confirm: "ok"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "Lineal",
|
|
42
|
+
radial: "Radial",
|
|
43
|
+
angular: "Angular",
|
|
44
|
+
diamond: "Diamant",
|
|
45
|
+
offset: "Desplaçament",
|
|
46
|
+
angle: "Angle",
|
|
47
|
+
flip: "Girar",
|
|
48
|
+
delete: "Eliminar"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/en-US.js
CHANGED
|
@@ -1 +1,68 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/en-US.ts
|
|
2
|
+
/**
|
|
3
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
const locale = { design: {
|
|
18
|
+
Confirm: {
|
|
19
|
+
cancel: "cancel",
|
|
20
|
+
confirm: "ok"
|
|
21
|
+
},
|
|
22
|
+
CascaderList: { empty: "None" },
|
|
23
|
+
Calendar: {
|
|
24
|
+
year: "",
|
|
25
|
+
weekDays: [
|
|
26
|
+
"Sun",
|
|
27
|
+
"Mon",
|
|
28
|
+
"Tue",
|
|
29
|
+
"Wed",
|
|
30
|
+
"Thu",
|
|
31
|
+
"Fri",
|
|
32
|
+
"Sat"
|
|
33
|
+
],
|
|
34
|
+
months: [
|
|
35
|
+
"Jan",
|
|
36
|
+
"Feb",
|
|
37
|
+
"Mar",
|
|
38
|
+
"Apr",
|
|
39
|
+
"May",
|
|
40
|
+
"Jun",
|
|
41
|
+
"Jul",
|
|
42
|
+
"Aug",
|
|
43
|
+
"Sep",
|
|
44
|
+
"Oct",
|
|
45
|
+
"Nov",
|
|
46
|
+
"Dec"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
Select: { empty: "None" },
|
|
50
|
+
ColorPicker: {
|
|
51
|
+
more: "More Colors",
|
|
52
|
+
cancel: "cancel",
|
|
53
|
+
confirm: "ok"
|
|
54
|
+
},
|
|
55
|
+
GradientColorPicker: {
|
|
56
|
+
linear: "Linear",
|
|
57
|
+
radial: "Radial",
|
|
58
|
+
angular: "Angular",
|
|
59
|
+
diamond: "Diamond",
|
|
60
|
+
offset: "Offset",
|
|
61
|
+
angle: "Angle",
|
|
62
|
+
flip: "Flip",
|
|
63
|
+
delete: "Delete"
|
|
64
|
+
}
|
|
65
|
+
} };
|
|
66
|
+
|
|
67
|
+
//#endregion
|
|
68
|
+
export { locale as default };
|
package/lib/locale/es-ES.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/es-ES.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "cancel·la",
|
|
5
|
+
confirm: "ok"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "Cap" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"Dg",
|
|
12
|
+
"Dl",
|
|
13
|
+
"Dt",
|
|
14
|
+
"Dc",
|
|
15
|
+
"Dj",
|
|
16
|
+
"Dv",
|
|
17
|
+
"Ds"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"Gener",
|
|
21
|
+
"Febrer",
|
|
22
|
+
"Març",
|
|
23
|
+
"Abril",
|
|
24
|
+
"Maig",
|
|
25
|
+
"Juny",
|
|
26
|
+
"Juliol",
|
|
27
|
+
"Agost",
|
|
28
|
+
"Setembre",
|
|
29
|
+
"Octubre",
|
|
30
|
+
"Novembre",
|
|
31
|
+
"Desembre"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "Cap" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "Més colors",
|
|
37
|
+
cancel: "cancel·la",
|
|
38
|
+
confirm: "ok"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "Lineal",
|
|
42
|
+
radial: "Radial",
|
|
43
|
+
angular: "Angular",
|
|
44
|
+
diamond: "Diamant",
|
|
45
|
+
offset: "Desplaçament",
|
|
46
|
+
angle: "Angle",
|
|
47
|
+
flip: "Girar",
|
|
48
|
+
delete: "Eliminar"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/fa-IR.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/fa-IR.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "لغو",
|
|
5
|
+
confirm: "باشه"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "هیچ کدام" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "سال",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"ش",
|
|
12
|
+
"ی",
|
|
13
|
+
"د",
|
|
14
|
+
"س",
|
|
15
|
+
"چ",
|
|
16
|
+
"پ",
|
|
17
|
+
"ج"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"فروردین",
|
|
21
|
+
"اردیبهشت",
|
|
22
|
+
"خرداد",
|
|
23
|
+
"تیر",
|
|
24
|
+
"مرداد",
|
|
25
|
+
"شهریور",
|
|
26
|
+
"مهر",
|
|
27
|
+
"آبان",
|
|
28
|
+
"آذر",
|
|
29
|
+
"دی",
|
|
30
|
+
"بهمن",
|
|
31
|
+
"اسفند"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "هیچکدام" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "رنگهای بیشتر",
|
|
37
|
+
cancel: "لغو",
|
|
38
|
+
confirm: "باشه"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "خطی",
|
|
42
|
+
radial: "شعاعی",
|
|
43
|
+
angular: "زاویهای",
|
|
44
|
+
diamond: "الماسی",
|
|
45
|
+
offset: "افست",
|
|
46
|
+
angle: "زاویه",
|
|
47
|
+
flip: "برگردان",
|
|
48
|
+
delete: "حذف"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/fr-FR.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/fr-FR.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "annuler",
|
|
5
|
+
confirm: "ok"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "Aucun" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"Dim",
|
|
12
|
+
"Lun",
|
|
13
|
+
"Mar",
|
|
14
|
+
"Mer",
|
|
15
|
+
"Jeu",
|
|
16
|
+
"Ven",
|
|
17
|
+
"Sam"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"Janvier",
|
|
21
|
+
"Février",
|
|
22
|
+
"Mars",
|
|
23
|
+
"Avril",
|
|
24
|
+
"Mai",
|
|
25
|
+
"Juin",
|
|
26
|
+
"Juillet",
|
|
27
|
+
"Août",
|
|
28
|
+
"Septembre",
|
|
29
|
+
"Octobre",
|
|
30
|
+
"Novembre",
|
|
31
|
+
"Décembre"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "Aucun" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "Plus de couleurs",
|
|
37
|
+
cancel: "annuler",
|
|
38
|
+
confirm: "ok"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "Linéaire",
|
|
42
|
+
radial: "Radial",
|
|
43
|
+
angular: "Angulaire",
|
|
44
|
+
diamond: "Diamant",
|
|
45
|
+
offset: "Décalage",
|
|
46
|
+
angle: "Angle",
|
|
47
|
+
flip: "Retourner",
|
|
48
|
+
delete: "Supprimer"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/ja-JP.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/ja-JP.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "キャンセル",
|
|
5
|
+
confirm: "確認"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "該当なし" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "年",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"日",
|
|
12
|
+
"月",
|
|
13
|
+
"火",
|
|
14
|
+
"水",
|
|
15
|
+
"木",
|
|
16
|
+
"金",
|
|
17
|
+
"土"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"1月",
|
|
21
|
+
"2月",
|
|
22
|
+
"3月",
|
|
23
|
+
"4月",
|
|
24
|
+
"5月",
|
|
25
|
+
"6月",
|
|
26
|
+
"7月",
|
|
27
|
+
"8月",
|
|
28
|
+
"9月",
|
|
29
|
+
"10月",
|
|
30
|
+
"11月",
|
|
31
|
+
"12月"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "該当なし" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "その他の色",
|
|
37
|
+
cancel: "キャンセル",
|
|
38
|
+
confirm: "確認"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "線形",
|
|
42
|
+
radial: "円形",
|
|
43
|
+
angular: "角度",
|
|
44
|
+
diamond: "菱形",
|
|
45
|
+
offset: "オフセット",
|
|
46
|
+
angle: "角度",
|
|
47
|
+
flip: "反転",
|
|
48
|
+
delete: "削除"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/ko-KR.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/ko-KR.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "취소",
|
|
5
|
+
confirm: "확인"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "없음" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "년",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"일",
|
|
12
|
+
"월",
|
|
13
|
+
"화",
|
|
14
|
+
"수",
|
|
15
|
+
"목",
|
|
16
|
+
"금",
|
|
17
|
+
"토"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"1월",
|
|
21
|
+
"2월",
|
|
22
|
+
"3월",
|
|
23
|
+
"4월",
|
|
24
|
+
"5월",
|
|
25
|
+
"6월",
|
|
26
|
+
"7월",
|
|
27
|
+
"8월",
|
|
28
|
+
"9월",
|
|
29
|
+
"10월",
|
|
30
|
+
"11월",
|
|
31
|
+
"12월"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "없음" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "추가 색상",
|
|
37
|
+
cancel: "취소",
|
|
38
|
+
confirm: "확인"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "선형",
|
|
42
|
+
radial: "방사형",
|
|
43
|
+
angular: "각도형",
|
|
44
|
+
diamond: "다이아몬드형",
|
|
45
|
+
offset: "오프셋",
|
|
46
|
+
angle: "각도",
|
|
47
|
+
flip: "뒤집기",
|
|
48
|
+
delete: "삭제"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/ru-RU.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/ru-RU.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "отмена",
|
|
5
|
+
confirm: "ок"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "Нет" },
|
|
8
|
+
Select: { empty: "Нет" },
|
|
9
|
+
Calendar: {
|
|
10
|
+
year: "",
|
|
11
|
+
weekDays: [
|
|
12
|
+
"Вс",
|
|
13
|
+
"Пн",
|
|
14
|
+
"Вт",
|
|
15
|
+
"Ср",
|
|
16
|
+
"Чт",
|
|
17
|
+
"Пт",
|
|
18
|
+
"Сб"
|
|
19
|
+
],
|
|
20
|
+
months: [
|
|
21
|
+
"Январь",
|
|
22
|
+
"Февраль",
|
|
23
|
+
"Март",
|
|
24
|
+
"Апрель",
|
|
25
|
+
"Май",
|
|
26
|
+
"Июнь",
|
|
27
|
+
"Июль",
|
|
28
|
+
"Август",
|
|
29
|
+
"Сентябрь",
|
|
30
|
+
"Октябрь",
|
|
31
|
+
"Ноябрь",
|
|
32
|
+
"Декабрь"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "Больше цветов",
|
|
37
|
+
cancel: "отмена",
|
|
38
|
+
confirm: "ок"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "линейный",
|
|
42
|
+
radial: "радиальный",
|
|
43
|
+
angular: "угловой",
|
|
44
|
+
diamond: "ромбовидный",
|
|
45
|
+
offset: "смещение",
|
|
46
|
+
angle: "угол",
|
|
47
|
+
flip: "перевернуть",
|
|
48
|
+
delete: "удалить"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/sk-SK.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/sk-SK.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "zrušiť",
|
|
5
|
+
confirm: "ok"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "Žiadne" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"Ne",
|
|
12
|
+
"Po",
|
|
13
|
+
"Ut",
|
|
14
|
+
"St",
|
|
15
|
+
"Št",
|
|
16
|
+
"Pi",
|
|
17
|
+
"So"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"Jan",
|
|
21
|
+
"Feb",
|
|
22
|
+
"Mar",
|
|
23
|
+
"Apr",
|
|
24
|
+
"Máj",
|
|
25
|
+
"Jún",
|
|
26
|
+
"Júl",
|
|
27
|
+
"Aug",
|
|
28
|
+
"Sep",
|
|
29
|
+
"Okt",
|
|
30
|
+
"Nov",
|
|
31
|
+
"Dec"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "Žiadne" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "Viac farieb",
|
|
37
|
+
cancel: "zrušiť",
|
|
38
|
+
confirm: "ok"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "Lineárny",
|
|
42
|
+
radial: "Radiálny",
|
|
43
|
+
angular: "Uhlový",
|
|
44
|
+
diamond: "Diamantový",
|
|
45
|
+
offset: "Posun",
|
|
46
|
+
angle: "Uhol",
|
|
47
|
+
flip: "Prevrátiť",
|
|
48
|
+
delete: "Odstrániť"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/vi-VN.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/vi-VN.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "Hủy bỏ",
|
|
5
|
+
confirm: "Xác nhận"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "Không có" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "Năm",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"CN",
|
|
12
|
+
"T2",
|
|
13
|
+
"T3",
|
|
14
|
+
"T4",
|
|
15
|
+
"T5",
|
|
16
|
+
"T6",
|
|
17
|
+
"T7"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"Tháng 1",
|
|
21
|
+
"Tháng 2",
|
|
22
|
+
"Tháng 3",
|
|
23
|
+
"Tháng 4",
|
|
24
|
+
"Tháng 5",
|
|
25
|
+
"Tháng 6",
|
|
26
|
+
"Tháng 7",
|
|
27
|
+
"Tháng 8",
|
|
28
|
+
"Tháng 9",
|
|
29
|
+
"Tháng 10",
|
|
30
|
+
"Tháng 11",
|
|
31
|
+
"Tháng 12"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "Không có" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "Màu sắc khác",
|
|
37
|
+
cancel: "Hủy bỏ",
|
|
38
|
+
confirm: "Xác nhận"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "Tuyến tính",
|
|
42
|
+
radial: "Tỏa ra",
|
|
43
|
+
angular: "Góc",
|
|
44
|
+
diamond: "Hình thoi",
|
|
45
|
+
offset: "Độ lệch",
|
|
46
|
+
angle: "Góc",
|
|
47
|
+
flip: "Lật",
|
|
48
|
+
delete: "Xóa"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/zh-CN.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/zh-CN.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "取消",
|
|
5
|
+
confirm: "确定"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "无" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "年",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"日",
|
|
12
|
+
"一",
|
|
13
|
+
"二",
|
|
14
|
+
"三",
|
|
15
|
+
"四",
|
|
16
|
+
"五",
|
|
17
|
+
"六"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"一月",
|
|
21
|
+
"二月",
|
|
22
|
+
"三月",
|
|
23
|
+
"四月",
|
|
24
|
+
"五月",
|
|
25
|
+
"六月",
|
|
26
|
+
"七月",
|
|
27
|
+
"八月",
|
|
28
|
+
"九月",
|
|
29
|
+
"十月",
|
|
30
|
+
"十一月",
|
|
31
|
+
"十二月"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "无" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "更多颜色",
|
|
37
|
+
cancel: "取消",
|
|
38
|
+
confirm: "确定"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "线性",
|
|
42
|
+
radial: "径向",
|
|
43
|
+
angular: "角向",
|
|
44
|
+
diamond: "菱形",
|
|
45
|
+
offset: "偏移",
|
|
46
|
+
angle: "角度",
|
|
47
|
+
flip: "翻转",
|
|
48
|
+
delete: "删除"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|
package/lib/locale/zh-TW.js
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
//#region src/locale/zh-TW.ts
|
|
2
|
+
const locale = { design: {
|
|
3
|
+
Confirm: {
|
|
4
|
+
cancel: "取消",
|
|
5
|
+
confirm: "確定"
|
|
6
|
+
},
|
|
7
|
+
CascaderList: { empty: "無" },
|
|
8
|
+
Calendar: {
|
|
9
|
+
year: "年",
|
|
10
|
+
weekDays: [
|
|
11
|
+
"日",
|
|
12
|
+
"一",
|
|
13
|
+
"二",
|
|
14
|
+
"三",
|
|
15
|
+
"四",
|
|
16
|
+
"五",
|
|
17
|
+
"六"
|
|
18
|
+
],
|
|
19
|
+
months: [
|
|
20
|
+
"一月",
|
|
21
|
+
"二月",
|
|
22
|
+
"三月",
|
|
23
|
+
"四月",
|
|
24
|
+
"五月",
|
|
25
|
+
"六月",
|
|
26
|
+
"七月",
|
|
27
|
+
"八月",
|
|
28
|
+
"九月",
|
|
29
|
+
"十月",
|
|
30
|
+
"十一月",
|
|
31
|
+
"十二月"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
Select: { empty: "無" },
|
|
35
|
+
ColorPicker: {
|
|
36
|
+
more: "更多顏色",
|
|
37
|
+
cancel: "取消",
|
|
38
|
+
confirm: "確定"
|
|
39
|
+
},
|
|
40
|
+
GradientColorPicker: {
|
|
41
|
+
linear: "線性",
|
|
42
|
+
radial: "徑向",
|
|
43
|
+
angular: "角向",
|
|
44
|
+
diamond: "菱形",
|
|
45
|
+
offset: "偏移",
|
|
46
|
+
angle: "角度",
|
|
47
|
+
flip: "翻轉",
|
|
48
|
+
delete: "刪除"
|
|
49
|
+
}
|
|
50
|
+
} };
|
|
51
|
+
|
|
52
|
+
//#endregion
|
|
53
|
+
export { locale as default };
|