yc-design-vue 1.7.9 → 1.8.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/es/Calendar/Calendar.vue.js +15 -14
- package/es/Calendar/CalendarMonth.vue.js +11 -1
- package/es/Calendar/CalendarYear.vue.js +20 -16
- package/es/ColorPicker/ColorList.vue.js +4 -2
- package/es/ColorPicker/ColorPanel.vue.js +6 -4
- package/es/ConfigProvider/index.d.ts +3 -0
- package/es/ConfigProvider/index.vue.d.ts +1 -0
- package/es/ConfigProvider/index.vue.js +13 -2
- package/es/ConfigProvider/type.d.ts +1 -0
- package/es/Drawer/Drawer.vue.js +6 -4
- package/es/Drawer/DrawerService.vue.js +2 -2
- package/es/Empty/index.vue.js +11 -4
- package/es/Image/Image.vue.js +4 -2
- package/es/Image/ImagePreviewToolbar.vue.js +13 -29
- package/es/Layout/hooks/useTheme.js +0 -1
- package/es/Modal/Modal.vue.js +6 -4
- package/es/Modal/ModalService.vue.js +2 -2
- package/es/Pagination/Pagination.vue.js +5 -3
- package/es/Pagination/hooks/useContext.d.ts +5 -0
- package/es/Pagination/hooks/useContext.js +5 -2
- package/es/Popconfirm/index.vue.js +6 -4
- package/es/Transfer/TransferPanel.vue.js +2 -2
- package/es/Typography/TypographyBase.vue.js +7 -6
- package/es/_shared/icons/IconCopy.vue.js +1 -17
- package/es/_shared/icons/IconCopy.vue2.js +17 -1
- package/es/_shared/icons/IconDelete.vue.js +1 -17
- package/es/_shared/icons/IconDelete.vue2.js +17 -1
- package/es/_shared/icons/IconEdit.vue.js +1 -17
- package/es/_shared/icons/IconEdit.vue2.js +17 -1
- package/es/_shared/icons/IconSearch.vue.js +1 -17
- package/es/_shared/icons/IconSearch.vue2.js +17 -1
- package/es/_shared/locale/i18n.d.ts +256 -0
- package/es/_shared/locale/i18n.js +35 -0
- package/es/_shared/locale/lang/ar-eg.d.ts +205 -0
- package/es/_shared/locale/lang/ar-eg.js +153 -0
- package/es/_shared/locale/lang/de-de.d.ts +205 -0
- package/es/_shared/locale/lang/de-de.js +153 -0
- package/es/_shared/locale/lang/en-us.d.ts +253 -0
- package/es/_shared/locale/lang/en-us.js +158 -0
- package/es/_shared/locale/lang/es-es.d.ts +205 -0
- package/es/_shared/locale/lang/es-es.js +153 -0
- package/es/_shared/locale/lang/fr-fr.d.ts +205 -0
- package/es/_shared/locale/lang/fr-fr.js +153 -0
- package/es/_shared/locale/lang/id-id.d.ts +205 -0
- package/es/_shared/locale/lang/id-id.js +153 -0
- package/es/_shared/locale/lang/it-it.d.ts +205 -0
- package/es/_shared/locale/lang/it-it.js +153 -0
- package/es/_shared/locale/lang/ja-jp.d.ts +253 -0
- package/es/_shared/locale/lang/ja-jp.js +201 -0
- package/es/_shared/locale/lang/km-kh.d.ts +205 -0
- package/es/_shared/locale/lang/km-kh.js +153 -0
- package/es/_shared/locale/lang/ko-kr.d.ts +205 -0
- package/es/_shared/locale/lang/ko-kr.js +153 -0
- package/es/_shared/locale/lang/ms-my.d.ts +205 -0
- package/es/_shared/locale/lang/ms-my.js +153 -0
- package/es/_shared/locale/lang/nl-nl.d.ts +253 -0
- package/es/_shared/locale/lang/nl-nl.js +201 -0
- package/es/_shared/locale/lang/pt-pt.d.ts +205 -0
- package/es/_shared/locale/lang/pt-pt.js +153 -0
- package/es/_shared/locale/lang/ru-ru.d.ts +253 -0
- package/es/_shared/locale/lang/ru-ru.js +201 -0
- package/es/_shared/locale/lang/th-th.d.ts +205 -0
- package/es/_shared/locale/lang/th-th.js +153 -0
- package/es/_shared/locale/lang/vi-vn.d.ts +205 -0
- package/es/_shared/locale/lang/vi-vn.js +153 -0
- package/es/_shared/locale/lang/zh-cn.d.ts +253 -0
- package/es/_shared/locale/lang/zh-cn.js +201 -0
- package/es/_shared/locale/lang/zh-tw.d.ts +253 -0
- package/es/_shared/locale/lang/zh-tw.js +201 -0
- package/es/_shared/utils/time.js +1 -1
- package/es/_virtual/dynamic-import-helper.js +19 -0
- package/es/index.js +2 -0
- package/es/node_modules/@intlify/core-base/dist/core-base.js +1129 -0
- package/es/node_modules/@intlify/message-compiler/dist/message-compiler.js +65 -0
- package/es/node_modules/@intlify/shared/dist/shared.js +199 -0
- package/es/node_modules/@intlify/vue-i18n-core/dist/vue-i18n-core.js +1381 -0
- package/es/node_modules/@vue/devtools-api/lib/esm/const.js +6 -0
- package/es/node_modules/@vue/devtools-api/lib/esm/env.js +12 -0
- package/es/node_modules/@vue/devtools-api/lib/esm/index.js +26 -0
- package/es/node_modules/@vue/devtools-api/lib/esm/proxy.js +103 -0
- package/es/node_modules/@vue/devtools-api/lib/esm/time.js +25 -0
- package/es/node_modules/b-validate/es/is.js +27 -0
- package/es/node_modules/b-validate/es/locale/en-US.js +50 -0
- package/es/node_modules/b-validate/es/rules/base.js +86 -0
- package/es/node_modules/b-validate/es/util.js +25 -0
- package/lib/Calendar/Calendar.vue.js +1 -1
- package/lib/Calendar/CalendarMonth.vue.js +1 -1
- package/lib/Calendar/CalendarYear.vue.js +1 -1
- package/lib/ColorPicker/ColorList.vue.js +1 -1
- package/lib/ColorPicker/ColorPanel.vue.js +1 -1
- package/lib/ConfigProvider/index.d.ts +3 -0
- package/lib/ConfigProvider/index.vue.d.ts +1 -0
- package/lib/ConfigProvider/index.vue.js +1 -1
- package/lib/ConfigProvider/type.d.ts +1 -0
- package/lib/Drawer/Drawer.vue.js +1 -1
- package/lib/Drawer/DrawerService.vue.js +1 -1
- package/lib/Empty/index.vue.js +1 -1
- package/lib/Image/Image.vue.js +1 -1
- package/lib/Image/ImagePreviewToolbar.vue.js +1 -1
- package/lib/Modal/Modal.vue.js +1 -1
- package/lib/Modal/ModalService.vue.js +1 -1
- package/lib/Pagination/Pagination.vue.js +1 -1
- package/lib/Pagination/hooks/useContext.d.ts +5 -0
- package/lib/Pagination/hooks/useContext.js +1 -1
- package/lib/Popconfirm/index.vue.js +1 -1
- package/lib/Transfer/TransferPanel.vue.js +1 -1
- package/lib/Typography/TypographyBase.vue.js +1 -1
- package/lib/_shared/icons/IconCopy.vue.js +1 -1
- package/lib/_shared/icons/IconCopy.vue2.js +1 -1
- package/lib/_shared/icons/IconDelete.vue.js +1 -1
- package/lib/_shared/icons/IconDelete.vue2.js +1 -1
- package/lib/_shared/icons/IconEdit.vue.js +1 -1
- package/lib/_shared/icons/IconEdit.vue2.js +1 -1
- package/lib/_shared/icons/IconSearch.vue.js +1 -1
- package/lib/_shared/icons/IconSearch.vue2.js +1 -1
- package/lib/_shared/locale/i18n.d.ts +256 -0
- package/lib/_shared/locale/i18n.js +1 -0
- package/lib/_shared/locale/lang/ar-eg.d.ts +205 -0
- package/lib/_shared/locale/lang/ar-eg.js +1 -0
- package/lib/_shared/locale/lang/de-de.d.ts +205 -0
- package/lib/_shared/locale/lang/de-de.js +1 -0
- package/lib/_shared/locale/lang/en-us.d.ts +253 -0
- package/lib/_shared/locale/lang/en-us.js +1 -0
- package/lib/_shared/locale/lang/es-es.d.ts +205 -0
- package/lib/_shared/locale/lang/es-es.js +1 -0
- package/lib/_shared/locale/lang/fr-fr.d.ts +205 -0
- package/lib/_shared/locale/lang/fr-fr.js +1 -0
- package/lib/_shared/locale/lang/id-id.d.ts +205 -0
- package/lib/_shared/locale/lang/id-id.js +1 -0
- package/lib/_shared/locale/lang/it-it.d.ts +205 -0
- package/lib/_shared/locale/lang/it-it.js +1 -0
- package/lib/_shared/locale/lang/ja-jp.d.ts +253 -0
- package/lib/_shared/locale/lang/ja-jp.js +1 -0
- package/lib/_shared/locale/lang/km-kh.d.ts +205 -0
- package/lib/_shared/locale/lang/km-kh.js +1 -0
- package/lib/_shared/locale/lang/ko-kr.d.ts +205 -0
- package/lib/_shared/locale/lang/ko-kr.js +1 -0
- package/lib/_shared/locale/lang/ms-my.d.ts +205 -0
- package/lib/_shared/locale/lang/ms-my.js +1 -0
- package/lib/_shared/locale/lang/nl-nl.d.ts +253 -0
- package/lib/_shared/locale/lang/nl-nl.js +1 -0
- package/lib/_shared/locale/lang/pt-pt.d.ts +205 -0
- package/lib/_shared/locale/lang/pt-pt.js +1 -0
- package/lib/_shared/locale/lang/ru-ru.d.ts +253 -0
- package/lib/_shared/locale/lang/ru-ru.js +1 -0
- package/lib/_shared/locale/lang/th-th.d.ts +205 -0
- package/lib/_shared/locale/lang/th-th.js +1 -0
- package/lib/_shared/locale/lang/vi-vn.d.ts +205 -0
- package/lib/_shared/locale/lang/vi-vn.js +1 -0
- package/lib/_shared/locale/lang/zh-cn.d.ts +253 -0
- package/lib/_shared/locale/lang/zh-cn.js +1 -0
- package/lib/_shared/locale/lang/zh-tw.d.ts +253 -0
- package/lib/_shared/locale/lang/zh-tw.js +1 -0
- package/lib/_shared/utils/time.js +1 -1
- package/lib/_virtual/dynamic-import-helper.js +1 -0
- package/lib/index.js +1 -1
- package/lib/node_modules/@intlify/core-base/dist/core-base.js +1 -0
- package/lib/node_modules/@intlify/message-compiler/dist/message-compiler.js +6 -0
- package/lib/node_modules/@intlify/shared/dist/shared.js +7 -0
- package/lib/node_modules/@intlify/vue-i18n-core/dist/vue-i18n-core.js +1 -0
- package/lib/node_modules/@vue/devtools-api/lib/esm/const.js +1 -0
- package/lib/node_modules/@vue/devtools-api/lib/esm/env.js +1 -0
- package/lib/node_modules/@vue/devtools-api/lib/esm/index.js +1 -0
- package/lib/node_modules/@vue/devtools-api/lib/esm/proxy.js +1 -0
- package/lib/node_modules/@vue/devtools-api/lib/esm/time.js +1 -0
- package/lib/node_modules/b-validate/es/is.js +1 -0
- package/lib/node_modules/b-validate/es/locale/en-US.js +1 -0
- package/lib/node_modules/b-validate/es/rules/base.js +1 -0
- package/lib/node_modules/b-validate/es/util.js +1 -0
- package/package.json +3 -2
@@ -0,0 +1,205 @@
|
|
1
|
+
declare const lang: {
|
2
|
+
empty: {
|
3
|
+
description: string;
|
4
|
+
};
|
5
|
+
drawer: {
|
6
|
+
okText: string;
|
7
|
+
cancelText: string;
|
8
|
+
};
|
9
|
+
popconfirm: {
|
10
|
+
okText: string;
|
11
|
+
cancelText: string;
|
12
|
+
};
|
13
|
+
modal: {
|
14
|
+
okText: string;
|
15
|
+
cancelText: string;
|
16
|
+
};
|
17
|
+
pagination: {
|
18
|
+
goto: string;
|
19
|
+
page: string;
|
20
|
+
countPerPage: string;
|
21
|
+
total: string;
|
22
|
+
};
|
23
|
+
table: {
|
24
|
+
okText: string;
|
25
|
+
resetText: string;
|
26
|
+
};
|
27
|
+
upload: {
|
28
|
+
start: string;
|
29
|
+
cancel: string;
|
30
|
+
delete: string;
|
31
|
+
retry: string;
|
32
|
+
buttonText: string;
|
33
|
+
preview: string;
|
34
|
+
drag: string;
|
35
|
+
dragHover: string;
|
36
|
+
error: string;
|
37
|
+
};
|
38
|
+
calendar: {
|
39
|
+
formatYear: string;
|
40
|
+
formatMonth: string;
|
41
|
+
today: string;
|
42
|
+
view: {
|
43
|
+
month: string;
|
44
|
+
year: string;
|
45
|
+
week: string;
|
46
|
+
day: string;
|
47
|
+
};
|
48
|
+
month: {
|
49
|
+
long: {
|
50
|
+
January: string;
|
51
|
+
February: string;
|
52
|
+
March: string;
|
53
|
+
April: string;
|
54
|
+
May: string;
|
55
|
+
June: string;
|
56
|
+
July: string;
|
57
|
+
August: string;
|
58
|
+
September: string;
|
59
|
+
October: string;
|
60
|
+
November: string;
|
61
|
+
December: string;
|
62
|
+
};
|
63
|
+
short: {
|
64
|
+
January: string;
|
65
|
+
February: string;
|
66
|
+
March: string;
|
67
|
+
April: string;
|
68
|
+
May: string;
|
69
|
+
June: string;
|
70
|
+
July: string;
|
71
|
+
August: string;
|
72
|
+
September: string;
|
73
|
+
October: string;
|
74
|
+
November: string;
|
75
|
+
December: string;
|
76
|
+
};
|
77
|
+
};
|
78
|
+
week: {
|
79
|
+
long: {
|
80
|
+
self: string;
|
81
|
+
monday: string;
|
82
|
+
tuesday: string;
|
83
|
+
wednesday: string;
|
84
|
+
thursday: string;
|
85
|
+
friday: string;
|
86
|
+
saturday: string;
|
87
|
+
sunday: string;
|
88
|
+
};
|
89
|
+
short: {
|
90
|
+
self: string;
|
91
|
+
monday: string;
|
92
|
+
tuesday: string;
|
93
|
+
wednesday: string;
|
94
|
+
thursday: string;
|
95
|
+
friday: string;
|
96
|
+
saturday: string;
|
97
|
+
sunday: string;
|
98
|
+
};
|
99
|
+
};
|
100
|
+
};
|
101
|
+
datePicker: {
|
102
|
+
view: {
|
103
|
+
month: string;
|
104
|
+
year: string;
|
105
|
+
week: string;
|
106
|
+
day: string;
|
107
|
+
};
|
108
|
+
month: {
|
109
|
+
long: {
|
110
|
+
January: string;
|
111
|
+
February: string;
|
112
|
+
March: string;
|
113
|
+
April: string;
|
114
|
+
May: string;
|
115
|
+
June: string;
|
116
|
+
July: string;
|
117
|
+
August: string;
|
118
|
+
September: string;
|
119
|
+
October: string;
|
120
|
+
November: string;
|
121
|
+
December: string;
|
122
|
+
};
|
123
|
+
short: {
|
124
|
+
January: string;
|
125
|
+
February: string;
|
126
|
+
March: string;
|
127
|
+
April: string;
|
128
|
+
May: string;
|
129
|
+
June: string;
|
130
|
+
July: string;
|
131
|
+
August: string;
|
132
|
+
September: string;
|
133
|
+
October: string;
|
134
|
+
November: string;
|
135
|
+
December: string;
|
136
|
+
};
|
137
|
+
};
|
138
|
+
week: {
|
139
|
+
long: {
|
140
|
+
self: string;
|
141
|
+
monday: string;
|
142
|
+
tuesday: string;
|
143
|
+
wednesday: string;
|
144
|
+
thursday: string;
|
145
|
+
friday: string;
|
146
|
+
saturday: string;
|
147
|
+
sunday: string;
|
148
|
+
};
|
149
|
+
short: {
|
150
|
+
self: string;
|
151
|
+
monday: string;
|
152
|
+
tuesday: string;
|
153
|
+
wednesday: string;
|
154
|
+
thursday: string;
|
155
|
+
friday: string;
|
156
|
+
saturday: string;
|
157
|
+
sunday: string;
|
158
|
+
};
|
159
|
+
};
|
160
|
+
placeholder: {
|
161
|
+
date: string;
|
162
|
+
week: string;
|
163
|
+
month: string;
|
164
|
+
year: string;
|
165
|
+
quarter: string;
|
166
|
+
time: string;
|
167
|
+
};
|
168
|
+
rangePlaceholder: {
|
169
|
+
date: string[];
|
170
|
+
week: string[];
|
171
|
+
month: string[];
|
172
|
+
year: string[];
|
173
|
+
quarter: string[];
|
174
|
+
time: string[];
|
175
|
+
};
|
176
|
+
selectTime: string;
|
177
|
+
today: string;
|
178
|
+
now: string;
|
179
|
+
ok: string;
|
180
|
+
};
|
181
|
+
image: {
|
182
|
+
loading: string;
|
183
|
+
};
|
184
|
+
imagePreview: {
|
185
|
+
fullScreen: string;
|
186
|
+
rotateRight: string;
|
187
|
+
rotateLeft: string;
|
188
|
+
zoomIn: string;
|
189
|
+
zoomOut: string;
|
190
|
+
originalSize: string;
|
191
|
+
};
|
192
|
+
typography: {
|
193
|
+
copy: string;
|
194
|
+
copied: string;
|
195
|
+
edit: string;
|
196
|
+
collapse: string;
|
197
|
+
expand: string;
|
198
|
+
};
|
199
|
+
colorPicker: {
|
200
|
+
history: string;
|
201
|
+
preset: string;
|
202
|
+
empty: string;
|
203
|
+
};
|
204
|
+
};
|
205
|
+
export default lang;
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";const e={formatYear:"YYYY",formatMonth:"MMM YYYY",today:"요즘",view:{month:"달",year:"년",week:"주",day:"일"},month:{long:{January:"일월",February:"이월",March:"행진",April:"사월",May:"오월",June:"유월",July:"칠월",August:"팔월",September:"구월",October:"시월",November:"십일월",December:"십이월"},short:{January:"일월",February:"이월",March:"행진",April:"사월",May:"오월",June:"유월",July:"칠월",August:"팔월",September:"구월",October:"시월",November:"십일월",December:"십이월"}},week:{long:{self:"주",monday:"월요일",tuesday:"화요일",wednesday:"수요일",thursday:"목요일",friday:"금요일",saturday:"토요일",sunday:"일요일"},short:{self:"주",monday:"월",tuesday:"화",wednesday:"수",thursday:"목",friday:"금",saturday:"토",sunday:"일"}}},t={empty:{description:"데이터 없음"},drawer:{okText:"결정",cancelText:"취소"},popconfirm:{okText:"결정",cancelText:"취소"},modal:{okText:"결정",cancelText:"취소"},pagination:{goto:"이동",page:"페이지",countPerPage:"기입 / 페이지",total:"총 {0}"},table:{okText:"결정",resetText:"초기화"},upload:{start:"스타트",cancel:"취소",delete:"지우다",retry:"다시 시도를 클릭",buttonText:"클릭 업로드",preview:"시사",drag:"여기에서 업로드 할 파일을 클릭하거나 드래그하세요",dragHover:"파일을 해제하고 업로드 시작",error:"업로드 실패"},calendar:e,datePicker:{view:e.view,month:e.month,week:e.week,placeholder:{date:"날짜를 선택하세요",week:"주를 선택하세요",month:"달을 선택하세요",year:"연도를 선택하세요",quarter:"분기를 선택하세요",time:"선택 기간"},rangePlaceholder:{date:["시작일","종료일"],week:["주 시작","주 종료"],month:["시작 월","종료 월"],year:["시작 년도","연말"],quarter:["분기 시작","분기 종료"],time:["시작 시간","종료 시간"]},selectTime:"선택 기간",today:"요즘",now:"지금",ok:"결정"},image:{loading:"로딩"},imagePreview:{fullScreen:"전체 화면",rotateRight:"오른쪽으로 회전",rotateLeft:"왼쪽으로 회전",zoomIn:"확대",zoomOut:"축소",originalSize:"원래 크기"},typography:{copy:"복사",copied:"복사 됨",edit:"편집하다",collapse:"겹",expand:"전개 하 다"},colorPicker:{history:"최근 색상 사용",preset:"시스템 기본 색상",empty:"데이터 없음"}};module.exports=t;
|
@@ -0,0 +1,205 @@
|
|
1
|
+
declare const lang: {
|
2
|
+
empty: {
|
3
|
+
description: string;
|
4
|
+
};
|
5
|
+
drawer: {
|
6
|
+
okText: string;
|
7
|
+
cancelText: string;
|
8
|
+
};
|
9
|
+
popconfirm: {
|
10
|
+
okText: string;
|
11
|
+
cancelText: string;
|
12
|
+
};
|
13
|
+
modal: {
|
14
|
+
okText: string;
|
15
|
+
cancelText: string;
|
16
|
+
};
|
17
|
+
pagination: {
|
18
|
+
goto: string;
|
19
|
+
page: string;
|
20
|
+
countPerPage: string;
|
21
|
+
total: string;
|
22
|
+
};
|
23
|
+
table: {
|
24
|
+
okText: string;
|
25
|
+
resetText: string;
|
26
|
+
};
|
27
|
+
upload: {
|
28
|
+
start: string;
|
29
|
+
cancel: string;
|
30
|
+
delete: string;
|
31
|
+
retry: string;
|
32
|
+
buttonText: string;
|
33
|
+
preview: string;
|
34
|
+
drag: string;
|
35
|
+
dragHover: string;
|
36
|
+
error: string;
|
37
|
+
};
|
38
|
+
calendar: {
|
39
|
+
formatYear: string;
|
40
|
+
formatMonth: string;
|
41
|
+
today: string;
|
42
|
+
view: {
|
43
|
+
month: string;
|
44
|
+
year: string;
|
45
|
+
week: string;
|
46
|
+
day: string;
|
47
|
+
};
|
48
|
+
month: {
|
49
|
+
long: {
|
50
|
+
January: string;
|
51
|
+
February: string;
|
52
|
+
March: string;
|
53
|
+
April: string;
|
54
|
+
May: string;
|
55
|
+
June: string;
|
56
|
+
July: string;
|
57
|
+
August: string;
|
58
|
+
September: string;
|
59
|
+
October: string;
|
60
|
+
November: string;
|
61
|
+
December: string;
|
62
|
+
};
|
63
|
+
short: {
|
64
|
+
January: string;
|
65
|
+
February: string;
|
66
|
+
March: string;
|
67
|
+
April: string;
|
68
|
+
May: string;
|
69
|
+
June: string;
|
70
|
+
July: string;
|
71
|
+
August: string;
|
72
|
+
September: string;
|
73
|
+
October: string;
|
74
|
+
November: string;
|
75
|
+
December: string;
|
76
|
+
};
|
77
|
+
};
|
78
|
+
week: {
|
79
|
+
long: {
|
80
|
+
self: string;
|
81
|
+
monday: string;
|
82
|
+
tuesday: string;
|
83
|
+
wednesday: string;
|
84
|
+
thursday: string;
|
85
|
+
friday: string;
|
86
|
+
saturday: string;
|
87
|
+
sunday: string;
|
88
|
+
};
|
89
|
+
short: {
|
90
|
+
self: string;
|
91
|
+
monday: string;
|
92
|
+
tuesday: string;
|
93
|
+
wednesday: string;
|
94
|
+
thursday: string;
|
95
|
+
friday: string;
|
96
|
+
saturday: string;
|
97
|
+
sunday: string;
|
98
|
+
};
|
99
|
+
};
|
100
|
+
};
|
101
|
+
datePicker: {
|
102
|
+
view: {
|
103
|
+
month: string;
|
104
|
+
year: string;
|
105
|
+
week: string;
|
106
|
+
day: string;
|
107
|
+
};
|
108
|
+
month: {
|
109
|
+
long: {
|
110
|
+
January: string;
|
111
|
+
February: string;
|
112
|
+
March: string;
|
113
|
+
April: string;
|
114
|
+
May: string;
|
115
|
+
June: string;
|
116
|
+
July: string;
|
117
|
+
August: string;
|
118
|
+
September: string;
|
119
|
+
October: string;
|
120
|
+
November: string;
|
121
|
+
December: string;
|
122
|
+
};
|
123
|
+
short: {
|
124
|
+
January: string;
|
125
|
+
February: string;
|
126
|
+
March: string;
|
127
|
+
April: string;
|
128
|
+
May: string;
|
129
|
+
June: string;
|
130
|
+
July: string;
|
131
|
+
August: string;
|
132
|
+
September: string;
|
133
|
+
October: string;
|
134
|
+
November: string;
|
135
|
+
December: string;
|
136
|
+
};
|
137
|
+
};
|
138
|
+
week: {
|
139
|
+
long: {
|
140
|
+
self: string;
|
141
|
+
monday: string;
|
142
|
+
tuesday: string;
|
143
|
+
wednesday: string;
|
144
|
+
thursday: string;
|
145
|
+
friday: string;
|
146
|
+
saturday: string;
|
147
|
+
sunday: string;
|
148
|
+
};
|
149
|
+
short: {
|
150
|
+
self: string;
|
151
|
+
monday: string;
|
152
|
+
tuesday: string;
|
153
|
+
wednesday: string;
|
154
|
+
thursday: string;
|
155
|
+
friday: string;
|
156
|
+
saturday: string;
|
157
|
+
sunday: string;
|
158
|
+
};
|
159
|
+
};
|
160
|
+
placeholder: {
|
161
|
+
date: string;
|
162
|
+
week: string;
|
163
|
+
month: string;
|
164
|
+
year: string;
|
165
|
+
quarter: string;
|
166
|
+
time: string;
|
167
|
+
};
|
168
|
+
rangePlaceholder: {
|
169
|
+
date: string[];
|
170
|
+
week: string[];
|
171
|
+
month: string[];
|
172
|
+
year: string[];
|
173
|
+
quarter: string[];
|
174
|
+
time: string[];
|
175
|
+
};
|
176
|
+
selectTime: string;
|
177
|
+
today: string;
|
178
|
+
now: string;
|
179
|
+
ok: string;
|
180
|
+
};
|
181
|
+
image: {
|
182
|
+
loading: string;
|
183
|
+
};
|
184
|
+
imagePreview: {
|
185
|
+
fullScreen: string;
|
186
|
+
rotateRight: string;
|
187
|
+
rotateLeft: string;
|
188
|
+
zoomIn: string;
|
189
|
+
zoomOut: string;
|
190
|
+
originalSize: string;
|
191
|
+
};
|
192
|
+
typography: {
|
193
|
+
copy: string;
|
194
|
+
copied: string;
|
195
|
+
edit: string;
|
196
|
+
expand: string;
|
197
|
+
collapse: string;
|
198
|
+
};
|
199
|
+
colorPicker: {
|
200
|
+
history: string;
|
201
|
+
preset: string;
|
202
|
+
empty: string;
|
203
|
+
};
|
204
|
+
};
|
205
|
+
export default lang;
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";const a={formatYear:"YYYY",formatMonth:"MMM YYYY",today:"hari ini",view:{month:"bulan",year:"tahun",week:"minggu",day:"hari"},month:{long:{January:"Januari",February:"Februari",March:"Mac",April:"April",May:"Mei",June:"Jun",July:"Julai",August:"Ogos",September:"September",October:"Oktober",November:"November",December:"Disember"},short:{January:"Jan",February:"Feb",March:"Mac",April:"Apr",May:"Mei",June:"Jun",July:"Jul",August:"Ogos",September:"Sept",October:"Okt",November:"Nov",December:"Dis"}},week:{long:{self:"Minggu",monday:"Isnin",tuesday:"Selasa",wednesday:"Rabu",thursday:"Khamis",friday:"Jumaat",saturday:"Sabtu",sunday:"Ahad"},short:{self:"Minggu",monday:"Isn",tuesday:"Sel",wednesday:"Rab",thursday:"Kha",friday:"Jum",saturday:"Sab",sunday:"Ahd"}}},e={empty:{description:"Tiada data"},drawer:{okText:"okey",cancelText:"batalkan"},popconfirm:{okText:"okey",cancelText:"batalkan"},modal:{okText:"okey",cancelText:"batalkan"},pagination:{goto:"pergi ke",page:"Halaman",countPerPage:"Artikel / Halaman",total:"Jumlah {0}"},table:{okText:"okey",resetText:"set semula"},upload:{start:"mulakan",cancel:"batalkan",delete:"padam",retry:"Klik untuk mencuba lagi",buttonText:"Klik untuk memuat naik",preview:"pratonton",drag:"Klik atau seret fail untuk memuat naik di sini",dragHover:"Kosongkan fail dan mula memuat naik",error:"muatnaik gagal"},calendar:a,datePicker:{view:a.view,month:a.month,week:a.week,placeholder:{date:"Sila pilih tarikh",week:"Sila pilih seminggu",month:"Sila pilih bulan",year:"Sila pilih tahun",quarter:"Sila pilih suku",time:"Sila pilih masa"},rangePlaceholder:{date:["tarikh mula","tarikh tamat"],week:["minggu mula","hujung minggu"],month:["bulan permulaan","akhir bulan"],year:["tahun mula","akhir tahun"],quarter:["suku mula","akhir suku tahun"],time:["Masa mula","Masa tamat"]},selectTime:"tempoh pemilihan",today:"hari ini",now:"sekarang",ok:"okey"},image:{loading:"memuatkan"},imagePreview:{fullScreen:"skrin penuh",rotateRight:"putar ke kanan",rotateLeft:"berputar ke kiri",zoomIn:"besarkan",zoomOut:"zum keluar",originalSize:"saiz asal"},typography:{copy:"salinan",copied:"disalin",edit:"edit",expand:"lipat",collapse:"mengembang"},colorPicker:{history:"Warna yang digunakan baru-baru ini",preset:"Warna lalai sistem",empty:"Tiada data"}};module.exports=e;
|
@@ -0,0 +1,253 @@
|
|
1
|
+
declare const lang: {
|
2
|
+
empty: {
|
3
|
+
description: string;
|
4
|
+
};
|
5
|
+
drawer: {
|
6
|
+
okText: string;
|
7
|
+
cancelText: string;
|
8
|
+
};
|
9
|
+
popconfirm: {
|
10
|
+
okText: string;
|
11
|
+
cancelText: string;
|
12
|
+
};
|
13
|
+
modal: {
|
14
|
+
okText: string;
|
15
|
+
cancelText: string;
|
16
|
+
};
|
17
|
+
pagination: {
|
18
|
+
goto: string;
|
19
|
+
page: string;
|
20
|
+
countPerPage: string;
|
21
|
+
total: string;
|
22
|
+
};
|
23
|
+
table: {
|
24
|
+
okText: string;
|
25
|
+
resetText: string;
|
26
|
+
};
|
27
|
+
upload: {
|
28
|
+
start: string;
|
29
|
+
cancel: string;
|
30
|
+
delete: string;
|
31
|
+
retry: string;
|
32
|
+
buttonText: string;
|
33
|
+
preview: string;
|
34
|
+
drag: string;
|
35
|
+
dragHover: string;
|
36
|
+
error: string;
|
37
|
+
};
|
38
|
+
calendar: {
|
39
|
+
formatYear: string;
|
40
|
+
formatMonth: string;
|
41
|
+
today: string;
|
42
|
+
view: {
|
43
|
+
month: string;
|
44
|
+
year: string;
|
45
|
+
week: string;
|
46
|
+
day: string;
|
47
|
+
};
|
48
|
+
month: {
|
49
|
+
long: {
|
50
|
+
January: string;
|
51
|
+
February: string;
|
52
|
+
March: string;
|
53
|
+
April: string;
|
54
|
+
May: string;
|
55
|
+
June: string;
|
56
|
+
July: string;
|
57
|
+
August: string;
|
58
|
+
September: string;
|
59
|
+
October: string;
|
60
|
+
November: string;
|
61
|
+
December: string;
|
62
|
+
};
|
63
|
+
short: {
|
64
|
+
January: string;
|
65
|
+
February: string;
|
66
|
+
March: string;
|
67
|
+
April: string;
|
68
|
+
May: string;
|
69
|
+
June: string;
|
70
|
+
July: string;
|
71
|
+
August: string;
|
72
|
+
September: string;
|
73
|
+
October: string;
|
74
|
+
November: string;
|
75
|
+
December: string;
|
76
|
+
};
|
77
|
+
};
|
78
|
+
week: {
|
79
|
+
long: {
|
80
|
+
self: string;
|
81
|
+
monday: string;
|
82
|
+
tuesday: string;
|
83
|
+
wednesday: string;
|
84
|
+
thursday: string;
|
85
|
+
friday: string;
|
86
|
+
saturday: string;
|
87
|
+
sunday: string;
|
88
|
+
};
|
89
|
+
short: {
|
90
|
+
self: string;
|
91
|
+
monday: string;
|
92
|
+
tuesday: string;
|
93
|
+
wednesday: string;
|
94
|
+
thursday: string;
|
95
|
+
friday: string;
|
96
|
+
saturday: string;
|
97
|
+
sunday: string;
|
98
|
+
};
|
99
|
+
};
|
100
|
+
};
|
101
|
+
datePicker: {
|
102
|
+
view: {
|
103
|
+
month: string;
|
104
|
+
year: string;
|
105
|
+
week: string;
|
106
|
+
day: string;
|
107
|
+
};
|
108
|
+
month: {
|
109
|
+
long: {
|
110
|
+
January: string;
|
111
|
+
February: string;
|
112
|
+
March: string;
|
113
|
+
April: string;
|
114
|
+
May: string;
|
115
|
+
June: string;
|
116
|
+
July: string;
|
117
|
+
August: string;
|
118
|
+
September: string;
|
119
|
+
October: string;
|
120
|
+
November: string;
|
121
|
+
December: string;
|
122
|
+
};
|
123
|
+
short: {
|
124
|
+
January: string;
|
125
|
+
February: string;
|
126
|
+
March: string;
|
127
|
+
April: string;
|
128
|
+
May: string;
|
129
|
+
June: string;
|
130
|
+
July: string;
|
131
|
+
August: string;
|
132
|
+
September: string;
|
133
|
+
October: string;
|
134
|
+
November: string;
|
135
|
+
December: string;
|
136
|
+
};
|
137
|
+
};
|
138
|
+
week: {
|
139
|
+
long: {
|
140
|
+
self: string;
|
141
|
+
monday: string;
|
142
|
+
tuesday: string;
|
143
|
+
wednesday: string;
|
144
|
+
thursday: string;
|
145
|
+
friday: string;
|
146
|
+
saturday: string;
|
147
|
+
sunday: string;
|
148
|
+
};
|
149
|
+
short: {
|
150
|
+
self: string;
|
151
|
+
monday: string;
|
152
|
+
tuesday: string;
|
153
|
+
wednesday: string;
|
154
|
+
thursday: string;
|
155
|
+
friday: string;
|
156
|
+
saturday: string;
|
157
|
+
sunday: string;
|
158
|
+
};
|
159
|
+
};
|
160
|
+
placeholder: {
|
161
|
+
date: string;
|
162
|
+
week: string;
|
163
|
+
month: string;
|
164
|
+
year: string;
|
165
|
+
quarter: string;
|
166
|
+
time: string;
|
167
|
+
};
|
168
|
+
rangePlaceholder: {
|
169
|
+
date: string[];
|
170
|
+
week: string[];
|
171
|
+
month: string[];
|
172
|
+
year: string[];
|
173
|
+
quarter: string[];
|
174
|
+
time: string[];
|
175
|
+
};
|
176
|
+
selectTime: string;
|
177
|
+
today: string;
|
178
|
+
now: string;
|
179
|
+
ok: string;
|
180
|
+
};
|
181
|
+
image: {
|
182
|
+
loading: string;
|
183
|
+
};
|
184
|
+
imagePreview: {
|
185
|
+
fullScreen: string;
|
186
|
+
rotateRight: string;
|
187
|
+
rotateLeft: string;
|
188
|
+
zoomIn: string;
|
189
|
+
zoomOut: string;
|
190
|
+
originalSize: string;
|
191
|
+
};
|
192
|
+
typography: {
|
193
|
+
copied: string;
|
194
|
+
copy: string;
|
195
|
+
expand: string;
|
196
|
+
collapse: string;
|
197
|
+
edit: string;
|
198
|
+
};
|
199
|
+
form: {
|
200
|
+
validateMessages: {
|
201
|
+
required: string;
|
202
|
+
type: {
|
203
|
+
string: string;
|
204
|
+
number: string;
|
205
|
+
boolean: string;
|
206
|
+
array: string;
|
207
|
+
object: string;
|
208
|
+
url: string;
|
209
|
+
email: string;
|
210
|
+
ip: string;
|
211
|
+
};
|
212
|
+
number: {
|
213
|
+
min: string;
|
214
|
+
max: string;
|
215
|
+
equal: string;
|
216
|
+
range: string;
|
217
|
+
positive: string;
|
218
|
+
negative: string;
|
219
|
+
};
|
220
|
+
array: {
|
221
|
+
length: string;
|
222
|
+
minLength: string;
|
223
|
+
maxLength: string;
|
224
|
+
includes: string;
|
225
|
+
deepEqual: string;
|
226
|
+
empty: string;
|
227
|
+
};
|
228
|
+
string: {
|
229
|
+
minLength: string;
|
230
|
+
maxLength: string;
|
231
|
+
length: string;
|
232
|
+
match: string;
|
233
|
+
uppercase: string;
|
234
|
+
lowercase: string;
|
235
|
+
};
|
236
|
+
object: {
|
237
|
+
deepEqual: string;
|
238
|
+
hasKeys: string;
|
239
|
+
empty: string;
|
240
|
+
};
|
241
|
+
boolean: {
|
242
|
+
true: string;
|
243
|
+
false: string;
|
244
|
+
};
|
245
|
+
};
|
246
|
+
};
|
247
|
+
colorPicker: {
|
248
|
+
history: string;
|
249
|
+
preset: string;
|
250
|
+
empty: string;
|
251
|
+
};
|
252
|
+
};
|
253
|
+
export default lang;
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";const e={formatYear:"YYYY",formatMonth:"MM-YYYY",today:"Vandaag",view:{month:"Maand",year:"Jaar",week:"Week",day:"Dag"},month:{long:{January:"januari",February:"februari",March:"maart",April:"april",May:"mei",June:"juni",July:"juli",August:"augustus",September:"september",October:"oktober",November:"november",December:"december"},short:{January:"jan",February:"feb",March:"mrt",April:"apr",May:"mei",June:"jun",July:"jul",August:"aug",September:"sep",October:"okt",November:"nov",December:"dec"}},week:{long:{self:"Week",monday:"maandag",tuesday:"dinsdag",wednesday:"woensdag",thursday:"donderdag",friday:"vrijdag",saturday:"zaterdag",sunday:"zondag"},short:{self:"Week",monday:"ma",tuesday:"di",wednesday:"woe",thursday:"do",friday:"vr",saturday:"za",sunday:"zo"}}},a={empty:{description:"Geen gegevens"},drawer:{okText:"OK",cancelText:"Annuleren"},popconfirm:{okText:"OK",cancelText:"Annuleren"},modal:{okText:"OK",cancelText:"Annuleren"},pagination:{goto:"Ga naar",page:"pagina",countPerPage:"/ pagina",total:"Totaal: {0}"},table:{okText:"OK",resetText:"Resetten"},upload:{start:"Start",cancel:"Annuleren",delete:"Verwijderen",retry:"Opnieuw proberen",buttonText:"Klik om te uploaden",preview:"Voorbeeld",drag:"Sleep bestanden naar hier om te uploaden",dragHover:"Laat los om te uploaden",error:"Upload mislukt"},calendar:e,datePicker:{view:e.view,month:e.month,week:e.week,placeholder:{date:"Selecteer datum",week:"Selecteer week",month:"Selecteer maand",year:"Selecteer jaar",quarter:"Selecteer kwartaal",time:"Selecteer tijd"},rangePlaceholder:{date:["Startdatum","Einddatum"],week:["Startweek","Eindweek"],month:["Startmaand","Eindmaand"],year:["Startjaar","Eindjaar"],quarter:["Startkwartaal","Eindkwartaal"],time:["Starttijd","Eindtijd"]},selectTime:"Selecteer tijd",today:"Vandaag",now:"Nu",ok:"OK"},image:{loading:"Laden"},imagePreview:{fullScreen:"Volledig scherm",rotateRight:"Draai rechtsom",rotateLeft:"Draai linksom",zoomIn:"Inzoomen",zoomOut:"Uitzoomen",originalSize:"Originele grootte"},typography:{copied:"Gekopieerd",copy:"Kopiëren",expand:"Uitklappen",collapse:"Inklappen",edit:"Bewerken"},form:{validateMessages:{required:"#{field} is verplicht",type:{string:"#{field} is geen geldige tekst",number:"#{field} is geen geldig nummer",boolean:"#{field} is geen geldige boolean",array:"#{field} is geen geldige array",object:"#{field} is geen geldig object",url:"#{field} is geen geldige URL",email:"#{field} is geen geldig e-mailadres",ip:"#{field} is geen geldig IP-adres"},number:{min:"#{value} is kleiner dan minimum #{min}",max:"#{value} is groter dan maximum #{max}",equal:"#{value} is niet gelijk aan #{equal}",range:"#{value} valt niet binnen #{min} ~ #{max}",positive:"#{value} is geen positief getal",negative:"#{value} is geen negatief getal"},array:{length:"#{field} heeft niet #{length} items",minLength:"#{field} heeft minimaal #{minLength} items nodig",maxLength:"#{field} heeft maximaal #{maxLength} items",includes:"#{field} bevat niet #{includes}",deepEqual:"#{field} is niet gelijk aan #{deepEqual}",empty:"#{field} is geen lege array"},string:{minLength:"Minimaal #{minLength} tekens",maxLength:"Maximaal #{maxLength} tekens",length:"Moet #{length} tekens bevatten",match:"#{value} voldoet niet aan patroon #{pattern}",uppercase:"#{value} moet volledig hoofdletters zijn",lowercase:"#{value} moet volledig kleine letters zijn"},object:{deepEqual:"#{field} is niet gelijk aan verwachte waarde",hasKeys:"#{field} mist verplichte velden",empty:"#{field} is geen object"},boolean:{true:"Moet true zijn",false:"Moet false zijn"}}},colorPicker:{history:"Recent gebruikte kleuren",preset:"Systeem kleuren",empty:"Geen"}};module.exports=a;
|