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