@liujitcn/kratos-admin-core 0.0.21 → 0.0.24

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.
Files changed (85) hide show
  1. package/dist/package/declarations/src/api/base/language.d.ts +3 -3
  2. package/dist/package/declarations/src/components/Dict/index.vue.d.ts +4 -3
  3. package/dist/package/declarations/src/components/Dict/value.d.ts +11 -0
  4. package/dist/package/declarations/src/locales/generated.d.ts +3382 -0
  5. package/dist/package/declarations/src/locales/index.d.ts +11 -21
  6. package/dist/package/declarations/src/rpc/base/v1/config.d.ts +11 -1
  7. package/dist/package/declarations/src/rpc/base/v1/language.d.ts +7 -13
  8. package/dist/package/declarations/src/rpc/base/v1/login.d.ts +13 -1
  9. package/dist/package/declarations/src/rpc/system/admin/v1/auth.d.ts +1 -1
  10. package/dist/package/declarations/src/rpc/system/admin/v1/base_dict.d.ts +7 -77
  11. package/dist/package/declarations/src/rpc/system/admin/v1/base_translation.d.ts +54 -81
  12. package/dist/package/declarations/src/rpc/system/admin/v1/common.d.ts +13 -0
  13. package/dist/package/declarations/src/stores/modules/auth.d.ts +6 -6
  14. package/dist/package/declarations/src/utils/passwordCrypto.d.ts +1 -1
  15. package/dist/package/src/App.vue +2 -8
  16. package/dist/package/src/api/base/language.ts +4 -4
  17. package/dist/package/src/bootstrap.ts +1 -1
  18. package/dist/package/src/components/CronExpression/index.vue +19 -19
  19. package/dist/package/src/components/Dialog/FormDialog.vue +1 -1
  20. package/dist/package/src/components/Dict/index.vue +21 -7
  21. package/dist/package/src/components/Dict/value.ts +18 -0
  22. package/dist/package/src/components/ImportExcel/index.vue +10 -10
  23. package/dist/package/src/components/LocaleSwitch/index.vue +1 -1
  24. package/dist/package/src/components/ProForm/components/DynamicList.vue +1 -1
  25. package/dist/package/src/components/ProForm/components/KvList.vue +2 -2
  26. package/dist/package/src/components/ProForm/index.vue +2 -2
  27. package/dist/package/src/components/ProTable/components/ColSetting.vue +3 -3
  28. package/dist/package/src/components/ProTable/components/TableColumn.vue +1 -1
  29. package/dist/package/src/components/ProTable/index.vue +4 -4
  30. package/dist/package/src/components/SearchForm/components/SearchFormItem.vue +2 -2
  31. package/dist/package/src/components/SelectFilter/index.vue +1 -1
  32. package/dist/package/src/components/TreeFilter/index.vue +4 -4
  33. package/dist/package/src/components/Upload/File.vue +6 -6
  34. package/dist/package/src/components/Upload/Files.vue +7 -7
  35. package/dist/package/src/components/Upload/Img.vue +4 -4
  36. package/dist/package/src/components/Upload/Imgs.vue +5 -5
  37. package/dist/package/src/components/WangEditor/index.vue +1 -1
  38. package/dist/package/src/hooks/useDownload.ts +1 -1
  39. package/dist/package/src/hooks/useHandleData.ts +2 -2
  40. package/dist/package/src/hooks/useTheme.ts +1 -1
  41. package/dist/package/src/layouts/components/Header/components/AssemblySize.vue +1 -1
  42. package/dist/package/src/layouts/components/Header/components/Avatar.vue +5 -5
  43. package/dist/package/src/layouts/components/Header/components/Breadcrumb.vue +2 -2
  44. package/dist/package/src/layouts/components/Header/components/Fullscreen.vue +2 -2
  45. package/dist/package/src/layouts/components/Header/components/PasswordDialog.vue +1 -1
  46. package/dist/package/src/layouts/components/Header/components/SearchMenu.vue +3 -3
  47. package/dist/package/src/layouts/components/Main/index.vue +1 -0
  48. package/dist/package/src/layouts/components/Tabs/components/MoreButton.vue +5 -5
  49. package/dist/package/src/layouts/components/Tabs/index.vue +15 -1
  50. package/dist/package/src/layouts/components/ThemeDrawer/index.vue +7 -7
  51. package/dist/package/src/locales/README.md +2 -2
  52. package/dist/package/src/locales/en-US.json +142 -117
  53. package/dist/package/src/locales/es-ES.json +226 -201
  54. package/dist/package/src/locales/fr-FR.json +226 -201
  55. package/dist/package/src/locales/generated.ts +57 -0
  56. package/dist/package/src/locales/index.ts +54 -55
  57. package/dist/package/src/locales/ja-JP.json +177 -152
  58. package/dist/package/src/locales/ko-KR.json +221 -196
  59. package/dist/package/src/locales/zh-CN.json +142 -117
  60. package/dist/package/src/locales/zh-TW.json +147 -122
  61. package/dist/package/src/modules/kratosAdmin.ts +3 -17
  62. package/dist/package/src/routers/modules/dynamicRouter.ts +4 -4
  63. package/dist/package/src/routers/modules/staticRouter.ts +2 -2
  64. package/dist/package/src/rpc/base/v1/config.ts +12 -1
  65. package/dist/package/src/rpc/base/v1/language.ts +7 -13
  66. package/dist/package/src/rpc/base/v1/login.ts +14 -1
  67. package/dist/package/src/rpc/system/admin/v1/auth.ts +1 -1
  68. package/dist/package/src/rpc/system/admin/v1/base_dict.ts +7 -79
  69. package/dist/package/src/rpc/system/admin/v1/base_translation.ts +54 -81
  70. package/dist/package/src/rpc/system/admin/v1/common.ts +21 -0
  71. package/dist/package/src/stores/modules/config.ts +2 -2
  72. package/dist/package/src/stores/modules/user.ts +1 -1
  73. package/dist/package/src/styles/element.scss +2 -0
  74. package/dist/package/src/utils/color.ts +4 -4
  75. package/dist/package/src/utils/eleValidate.ts +2 -2
  76. package/dist/package/src/utils/index.ts +3 -3
  77. package/dist/package/src/utils/passwordCrypto.ts +2 -2
  78. package/dist/package/src/utils/request.ts +6 -6
  79. package/dist/package/src/views/login/components/LoginForm.vue +15 -12
  80. package/package.json +2 -2
  81. package/vite.config.ts +12 -8
  82. package/dist/package/declarations/src/rpc/base/v1/enum.d.ts +0 -43
  83. package/dist/package/declarations/src/rpc/system/common/v1/enum.d.ts +0 -67
  84. package/dist/package/src/rpc/base/v1/enum.ts +0 -54
  85. package/dist/package/src/rpc/system/common/v1/enum.ts +0 -80
@@ -0,0 +1,3382 @@
1
+ import "dayjs/locale/zh-cn";
2
+ import "dayjs/locale/en";
3
+ import "dayjs/locale/es";
4
+ import "dayjs/locale/fr";
5
+ import "dayjs/locale/ja";
6
+ import "dayjs/locale/ko";
7
+ import "dayjs/locale/zh-tw";
8
+ export declare const LOCALE_MESSAGES: {
9
+ readonly "zh-CN": {
10
+ "common.action.back": string;
11
+ "common.action.cancel": string;
12
+ "common.action.close": string;
13
+ "common.action.confirm": string;
14
+ "common.action.create": string;
15
+ "common.action.delete": string;
16
+ "common.action.download": string;
17
+ "common.action.edit": string;
18
+ "common.action.expand": string;
19
+ "common.action.collapse": string;
20
+ "common.action.login": string;
21
+ "common.action.logout": string;
22
+ "common.action.reset": string;
23
+ "common.action.save": string;
24
+ "common.action.search": string;
25
+ "common.action.view": string;
26
+ "common.field.end_time": string;
27
+ "common.field.language": string;
28
+ "common.field.operation": string;
29
+ "common.field.parameter_name": string;
30
+ "common.field.parameter_value": string;
31
+ "common.field.phone": string;
32
+ "common.field.start_time": string;
33
+ "common.language.en-US": string;
34
+ "common.language.ja-JP": string;
35
+ "common.language.zh-CN": string;
36
+ "common.language.zh-TW": string;
37
+ "common.language.ko-KR": string;
38
+ "common.language.fr-FR": string;
39
+ "common.language.es-ES": string;
40
+ "common.message.no_data": string;
41
+ "common.message.operation_success": string;
42
+ "common.message.system_error": string;
43
+ "common.validation.phone_invalid": string;
44
+ "common.validation.phone_required": string;
45
+ "common.title.notice": string;
46
+ "common.title.warning": string;
47
+ "common.placeholder.input": string;
48
+ "common.placeholder.input_content": string;
49
+ "common.placeholder.select": string;
50
+ "common.status.disabled": string;
51
+ "common.status.enabled": string;
52
+ "common.value.female": string;
53
+ "common.value.male": string;
54
+ "common.value.all": string;
55
+ "core.auth.login_again": string;
56
+ "core.auth.refresh_token_missing": string;
57
+ "core.auth.session_expired": string;
58
+ "core.auth.no_menu_permission": string;
59
+ "core.auth.no_permission": string;
60
+ "core.clipboard.success": string;
61
+ "core.cron.cycle_unit.day": string;
62
+ "core.cron.cycle_unit.hour": string;
63
+ "core.cron.cycle_unit.minute": string;
64
+ "core.cron.cycle_unit.month": string;
65
+ "core.cron.cycle_unit.second": string;
66
+ "core.cron.cycle_unit.year": string;
67
+ "core.cron.description.every": string;
68
+ "core.cron.description.range": string;
69
+ "core.cron.description.specific": string;
70
+ "core.cron.description.step": string;
71
+ "core.cron.description.unspecified": string;
72
+ "core.cron.description.weekday": string;
73
+ "core.cron.description_separator": string;
74
+ "core.cron.edit": string;
75
+ "core.cron.every_unit": string;
76
+ "core.cron.expression": string;
77
+ "core.cron.from": string;
78
+ "core.cron.last_day": string;
79
+ "core.cron.nearest_workday": string;
80
+ "core.cron.not_configured": string;
81
+ "core.cron.placeholder": string;
82
+ "core.cron.preset.daily_eight": string;
83
+ "core.cron.preset.daily_midnight": string;
84
+ "core.cron.preset.every_five_minutes": string;
85
+ "core.cron.preset.every_hour": string;
86
+ "core.cron.preset.every_minute": string;
87
+ "core.cron.preset.monthly_first": string;
88
+ "core.cron.preset.next_year_daily": string;
89
+ "core.cron.presets": string;
90
+ "core.cron.range": string;
91
+ "core.cron.repeat": string;
92
+ "core.cron.run_once": string;
93
+ "core.cron.segment.day": string;
94
+ "core.cron.segment.hour": string;
95
+ "core.cron.segment.minute": string;
96
+ "core.cron.segment.month": string;
97
+ "core.cron.segment.second": string;
98
+ "core.cron.segment.year": string;
99
+ "core.cron.specific": string;
100
+ "core.cron.start_every": string;
101
+ "core.cron.this_month": string;
102
+ "core.cron.title": string;
103
+ "core.cron.to": string;
104
+ "core.cron.unit.day": string;
105
+ "core.cron.unit.hour": string;
106
+ "core.cron.unit.minute": string;
107
+ "core.cron.unit.month": string;
108
+ "core.cron.unit.second": string;
109
+ "core.cron.unit.year": string;
110
+ "core.cron.unspecified": string;
111
+ "core.cron.value_separator": string;
112
+ "core.cron.value_with_unit": string;
113
+ "core.cron.workday": string;
114
+ "core.data.confirm_action": string;
115
+ "core.data.operation_success": string;
116
+ "core.download.large_file_notice": string;
117
+ "core.error.403.detail": string;
118
+ "core.error.404.detail": string;
119
+ "core.error.500.detail": string;
120
+ "core.error.pending.detail": string;
121
+ "core.error.javascript.eval": string;
122
+ "core.error.javascript.internal": string;
123
+ "core.error.javascript.range": string;
124
+ "core.error.javascript.reference": string;
125
+ "core.error.javascript.syntax": string;
126
+ "core.error.javascript.type": string;
127
+ "core.error.javascript.unknown": string;
128
+ "core.error.javascript.uri": string;
129
+ "core.header.fullscreen": string;
130
+ "core.header.fullscreen_exit": string;
131
+ "core.header.fullscreen_unsupported": string;
132
+ "core.header.language": string;
133
+ "core.header.menu_search": string;
134
+ "core.header.menu_search_empty": string;
135
+ "core.header.menu_search_placeholder": string;
136
+ "core.header.size.default": string;
137
+ "core.header.size.large": string;
138
+ "core.header.size.small": string;
139
+ "core.header.size_select": string;
140
+ "core.header.theme": string;
141
+ "core.icon.empty": string;
142
+ "core.icon.placeholder": string;
143
+ "core.icon.search": string;
144
+ "core.layout.department_unassigned": string;
145
+ "core.layout.home": string;
146
+ "core.layout.info": string;
147
+ "core.layout.password_change": string;
148
+ "core.layout.unnamed_menu": string;
149
+ "core.layout.logout_confirm": string;
150
+ "core.layout.logout_success": string;
151
+ "core.layout.not_set": string;
152
+ "core.layout.role_unassigned": string;
153
+ "core.login.behavior_click": string;
154
+ "core.login.behavior_confirm": string;
155
+ "core.login.behavior_puzzle": string;
156
+ "core.login.behavior_rotate": string;
157
+ "core.login.captcha": string;
158
+ "core.login.captcha_alt": string;
159
+ "core.login.greeting.afternoon": string;
160
+ "core.login.greeting.evening": string;
161
+ "core.login.greeting.morning": string;
162
+ "core.login.greeting.night": string;
163
+ "core.login.greeting.noon": string;
164
+ "core.login.other_methods": string;
165
+ "core.login.password": string;
166
+ "core.login.tenant_code": string;
167
+ "core.login.user_name": string;
168
+ "core.login.welcome": string;
169
+ "core.oauth.dingtalk": string;
170
+ "core.oauth.feishu": string;
171
+ "core.oauth.wechat": string;
172
+ "core.oauth.wechatmp": string;
173
+ "core.oauth.wechatwork": string;
174
+ "core.oauth.unknown": string;
175
+ "core.password.error": string;
176
+ "core.password.crypto_unsupported": string;
177
+ "core.password.required": string;
178
+ "core.password.strength": string;
179
+ "core.password.strength.empty": string;
180
+ "core.password.strength.high": string;
181
+ "core.password.strength.low": string;
182
+ "core.password.strength.medium": string;
183
+ "core.password.tip": string;
184
+ "core.theme.accordion": string;
185
+ "core.theme.aside_inverted": string;
186
+ "core.theme.aside_inverted_tip": string;
187
+ "core.theme.breadcrumb": string;
188
+ "core.theme.breadcrumb_icon": string;
189
+ "core.theme.color": string;
190
+ "core.theme.dark": string;
191
+ "core.theme.footer": string;
192
+ "core.theme.global": string;
193
+ "core.theme.grey": string;
194
+ "core.theme.header_inverted": string;
195
+ "core.theme.header_inverted_tip": string;
196
+ "core.theme.interface": string;
197
+ "core.theme.layout": string;
198
+ "core.theme.layout.classic": string;
199
+ "core.theme.layout.columns": string;
200
+ "core.theme.layout.transverse": string;
201
+ "core.theme.layout.vertical": string;
202
+ "core.theme.menu_collapse": string;
203
+ "core.theme.primary_reset": string;
204
+ "core.theme.settings": string;
205
+ "core.theme.tabs": string;
206
+ "core.theme.tabs_icon": string;
207
+ "core.theme.watermark": string;
208
+ "core.theme.weak": string;
209
+ "core.theme.color_hex_invalid": string;
210
+ "core.theme.color_rgb_invalid": string;
211
+ "core.route.forbidden": string;
212
+ "core.route.login": string;
213
+ "core.route.not_found": string;
214
+ "core.route.server_error": string;
215
+ "core.tabs.close_all": string;
216
+ "core.tabs.close_current": string;
217
+ "core.tabs.close_left": string;
218
+ "core.tabs.close_other": string;
219
+ "core.tabs.close_right": string;
220
+ "core.tabs.maximize": string;
221
+ "core.tabs.refresh": string;
222
+ "core.table.collapse_all": string;
223
+ "core.table.column_name": string;
224
+ "core.table.column_setting": string;
225
+ "core.table.expand_all": string;
226
+ "core.table.hide_search": string;
227
+ "core.table.no_configurable_columns": string;
228
+ "core.table.refresh": string;
229
+ "core.table.show": string;
230
+ "core.table.show_search": string;
231
+ "core.table.sort": string;
232
+ "core.tree.filter_placeholder": string;
233
+ "core.tree.reset_selection": string;
234
+ "core.upload.action": string;
235
+ "core.upload.batch_add": string;
236
+ "core.upload.batch_failed": string;
237
+ "core.upload.batch_success": string;
238
+ "core.upload.click": string;
239
+ "core.upload.data_cover": string;
240
+ "core.upload.drag_or_click": string;
241
+ "core.upload.excel_format": string;
242
+ "core.upload.file": string;
243
+ "core.upload.file_failed": string;
244
+ "core.upload.file_format_invalid": string;
245
+ "core.upload.file_size_exceeded": string;
246
+ "core.upload.file_success": string;
247
+ "core.upload.image_failed": string;
248
+ "core.upload.image_format_invalid": string;
249
+ "core.upload.image_limit_exceeded": string;
250
+ "core.upload.image_size_exceeded": string;
251
+ "core.upload.image_success": string;
252
+ "core.upload.limit_exceeded": string;
253
+ "core.upload.single_file_only": string;
254
+ "core.upload.template": string;
255
+ "core.upload.template_download": string;
256
+ "core.upload.unnamed_file": string;
257
+ "common.action.create_resource": string;
258
+ "common.action.edit_resource": string;
259
+ "common.action.refresh_cache": string;
260
+ "common.dialog.cancel_delete": string;
261
+ "common.dialog.delete_batch": string;
262
+ "common.dialog.delete_selected": string;
263
+ "common.dialog.delete_single": string;
264
+ "common.dialog.resource_field": string;
265
+ "common.dialog.status_change": string;
266
+ "common.field.created_at": string;
267
+ "common.field.remark": string;
268
+ "common.field.sort": string;
269
+ "common.field.status": string;
270
+ "common.field.tenant": string;
271
+ "common.field.updated_at": string;
272
+ "common.message.create_success": string;
273
+ "common.message.delete_success": string;
274
+ "common.message.load_children_failed": string;
275
+ "common.message.refresh_success": string;
276
+ "common.message.select_delete_item": string;
277
+ "common.message.status_success": string;
278
+ "common.message.update_success": string;
279
+ "common.placeholder.remark": string;
280
+ "common.validation.max_length": string;
281
+ "common.validation.required_input": string;
282
+ "common.validation.required_select": string;
283
+ "common.validation.sort_positive": string;
284
+ "common.field.action": string;
285
+ "common.placeholder.start_date": string;
286
+ "common.placeholder.end_date": string;
287
+ "common.value.yes": string;
288
+ "common.value.no": string;
289
+ "common.value.unknown": string;
290
+ "common.value.none": string;
291
+ };
292
+ readonly "en-US": {
293
+ "common.action.back": string;
294
+ "common.action.cancel": string;
295
+ "common.action.close": string;
296
+ "common.action.confirm": string;
297
+ "common.action.create": string;
298
+ "common.action.delete": string;
299
+ "common.action.download": string;
300
+ "common.action.edit": string;
301
+ "common.action.expand": string;
302
+ "common.action.collapse": string;
303
+ "common.action.login": string;
304
+ "common.action.logout": string;
305
+ "common.action.reset": string;
306
+ "common.action.save": string;
307
+ "common.action.search": string;
308
+ "common.action.view": string;
309
+ "common.field.end_time": string;
310
+ "common.field.language": string;
311
+ "common.field.operation": string;
312
+ "common.field.parameter_name": string;
313
+ "common.field.parameter_value": string;
314
+ "common.field.phone": string;
315
+ "common.field.start_time": string;
316
+ "common.language.en-US": string;
317
+ "common.language.ja-JP": string;
318
+ "common.language.zh-CN": string;
319
+ "common.language.zh-TW": string;
320
+ "common.language.ko-KR": string;
321
+ "common.language.fr-FR": string;
322
+ "common.language.es-ES": string;
323
+ "common.message.no_data": string;
324
+ "common.message.operation_success": string;
325
+ "common.message.system_error": string;
326
+ "common.validation.phone_invalid": string;
327
+ "common.validation.phone_required": string;
328
+ "common.title.notice": string;
329
+ "common.title.warning": string;
330
+ "common.placeholder.input": string;
331
+ "common.placeholder.input_content": string;
332
+ "common.placeholder.select": string;
333
+ "common.status.disabled": string;
334
+ "common.status.enabled": string;
335
+ "common.value.female": string;
336
+ "common.value.male": string;
337
+ "common.value.all": string;
338
+ "core.auth.login_again": string;
339
+ "core.auth.refresh_token_missing": string;
340
+ "core.auth.session_expired": string;
341
+ "core.auth.no_menu_permission": string;
342
+ "core.auth.no_permission": string;
343
+ "core.clipboard.success": string;
344
+ "core.cron.cycle_unit.day": string;
345
+ "core.cron.cycle_unit.hour": string;
346
+ "core.cron.cycle_unit.minute": string;
347
+ "core.cron.cycle_unit.month": string;
348
+ "core.cron.cycle_unit.second": string;
349
+ "core.cron.cycle_unit.year": string;
350
+ "core.cron.description.every": string;
351
+ "core.cron.description.range": string;
352
+ "core.cron.description.specific": string;
353
+ "core.cron.description.step": string;
354
+ "core.cron.description.unspecified": string;
355
+ "core.cron.description.weekday": string;
356
+ "core.cron.description_separator": string;
357
+ "core.cron.edit": string;
358
+ "core.cron.every_unit": string;
359
+ "core.cron.expression": string;
360
+ "core.cron.from": string;
361
+ "core.cron.last_day": string;
362
+ "core.cron.nearest_workday": string;
363
+ "core.cron.not_configured": string;
364
+ "core.cron.placeholder": string;
365
+ "core.cron.preset.daily_eight": string;
366
+ "core.cron.preset.daily_midnight": string;
367
+ "core.cron.preset.every_five_minutes": string;
368
+ "core.cron.preset.every_hour": string;
369
+ "core.cron.preset.every_minute": string;
370
+ "core.cron.preset.monthly_first": string;
371
+ "core.cron.preset.next_year_daily": string;
372
+ "core.cron.presets": string;
373
+ "core.cron.range": string;
374
+ "core.cron.repeat": string;
375
+ "core.cron.run_once": string;
376
+ "core.cron.segment.day": string;
377
+ "core.cron.segment.hour": string;
378
+ "core.cron.segment.minute": string;
379
+ "core.cron.segment.month": string;
380
+ "core.cron.segment.second": string;
381
+ "core.cron.segment.year": string;
382
+ "core.cron.specific": string;
383
+ "core.cron.start_every": string;
384
+ "core.cron.this_month": string;
385
+ "core.cron.title": string;
386
+ "core.cron.to": string;
387
+ "core.cron.unit.day": string;
388
+ "core.cron.unit.hour": string;
389
+ "core.cron.unit.minute": string;
390
+ "core.cron.unit.month": string;
391
+ "core.cron.unit.second": string;
392
+ "core.cron.unit.year": string;
393
+ "core.cron.unspecified": string;
394
+ "core.cron.value_separator": string;
395
+ "core.cron.value_with_unit": string;
396
+ "core.cron.workday": string;
397
+ "core.data.confirm_action": string;
398
+ "core.data.operation_success": string;
399
+ "core.download.large_file_notice": string;
400
+ "core.error.403.detail": string;
401
+ "core.error.404.detail": string;
402
+ "core.error.500.detail": string;
403
+ "core.error.pending.detail": string;
404
+ "core.error.javascript.eval": string;
405
+ "core.error.javascript.internal": string;
406
+ "core.error.javascript.range": string;
407
+ "core.error.javascript.reference": string;
408
+ "core.error.javascript.syntax": string;
409
+ "core.error.javascript.type": string;
410
+ "core.error.javascript.unknown": string;
411
+ "core.error.javascript.uri": string;
412
+ "core.header.fullscreen": string;
413
+ "core.header.fullscreen_exit": string;
414
+ "core.header.fullscreen_unsupported": string;
415
+ "core.header.language": string;
416
+ "core.header.menu_search": string;
417
+ "core.header.menu_search_empty": string;
418
+ "core.header.menu_search_placeholder": string;
419
+ "core.header.size.default": string;
420
+ "core.header.size.large": string;
421
+ "core.header.size.small": string;
422
+ "core.header.size_select": string;
423
+ "core.header.theme": string;
424
+ "core.icon.empty": string;
425
+ "core.icon.placeholder": string;
426
+ "core.icon.search": string;
427
+ "core.layout.department_unassigned": string;
428
+ "core.layout.home": string;
429
+ "core.layout.info": string;
430
+ "core.layout.password_change": string;
431
+ "core.layout.unnamed_menu": string;
432
+ "core.layout.logout_confirm": string;
433
+ "core.layout.logout_success": string;
434
+ "core.layout.not_set": string;
435
+ "core.layout.role_unassigned": string;
436
+ "core.login.behavior_click": string;
437
+ "core.login.behavior_confirm": string;
438
+ "core.login.behavior_puzzle": string;
439
+ "core.login.behavior_rotate": string;
440
+ "core.login.captcha": string;
441
+ "core.login.captcha_alt": string;
442
+ "core.login.greeting.afternoon": string;
443
+ "core.login.greeting.evening": string;
444
+ "core.login.greeting.morning": string;
445
+ "core.login.greeting.night": string;
446
+ "core.login.greeting.noon": string;
447
+ "core.login.other_methods": string;
448
+ "core.login.password": string;
449
+ "core.login.tenant_code": string;
450
+ "core.login.user_name": string;
451
+ "core.login.welcome": string;
452
+ "core.oauth.dingtalk": string;
453
+ "core.oauth.feishu": string;
454
+ "core.oauth.wechat": string;
455
+ "core.oauth.wechatmp": string;
456
+ "core.oauth.wechatwork": string;
457
+ "core.oauth.unknown": string;
458
+ "core.password.error": string;
459
+ "core.password.crypto_unsupported": string;
460
+ "core.password.required": string;
461
+ "core.password.strength": string;
462
+ "core.password.strength.empty": string;
463
+ "core.password.strength.high": string;
464
+ "core.password.strength.low": string;
465
+ "core.password.strength.medium": string;
466
+ "core.password.tip": string;
467
+ "core.theme.accordion": string;
468
+ "core.theme.aside_inverted": string;
469
+ "core.theme.aside_inverted_tip": string;
470
+ "core.theme.breadcrumb": string;
471
+ "core.theme.breadcrumb_icon": string;
472
+ "core.theme.color": string;
473
+ "core.theme.dark": string;
474
+ "core.theme.footer": string;
475
+ "core.theme.global": string;
476
+ "core.theme.grey": string;
477
+ "core.theme.header_inverted": string;
478
+ "core.theme.header_inverted_tip": string;
479
+ "core.theme.interface": string;
480
+ "core.theme.layout": string;
481
+ "core.theme.layout.classic": string;
482
+ "core.theme.layout.columns": string;
483
+ "core.theme.layout.transverse": string;
484
+ "core.theme.layout.vertical": string;
485
+ "core.theme.menu_collapse": string;
486
+ "core.theme.primary_reset": string;
487
+ "core.theme.settings": string;
488
+ "core.theme.tabs": string;
489
+ "core.theme.tabs_icon": string;
490
+ "core.theme.watermark": string;
491
+ "core.theme.weak": string;
492
+ "core.theme.color_hex_invalid": string;
493
+ "core.theme.color_rgb_invalid": string;
494
+ "core.route.forbidden": string;
495
+ "core.route.login": string;
496
+ "core.route.not_found": string;
497
+ "core.route.server_error": string;
498
+ "core.tabs.close_all": string;
499
+ "core.tabs.close_current": string;
500
+ "core.tabs.close_left": string;
501
+ "core.tabs.close_other": string;
502
+ "core.tabs.close_right": string;
503
+ "core.tabs.maximize": string;
504
+ "core.tabs.refresh": string;
505
+ "core.table.collapse_all": string;
506
+ "core.table.column_name": string;
507
+ "core.table.column_setting": string;
508
+ "core.table.expand_all": string;
509
+ "core.table.hide_search": string;
510
+ "core.table.no_configurable_columns": string;
511
+ "core.table.refresh": string;
512
+ "core.table.show": string;
513
+ "core.table.show_search": string;
514
+ "core.table.sort": string;
515
+ "core.tree.filter_placeholder": string;
516
+ "core.tree.reset_selection": string;
517
+ "core.upload.action": string;
518
+ "core.upload.batch_add": string;
519
+ "core.upload.batch_failed": string;
520
+ "core.upload.batch_success": string;
521
+ "core.upload.click": string;
522
+ "core.upload.data_cover": string;
523
+ "core.upload.drag_or_click": string;
524
+ "core.upload.excel_format": string;
525
+ "core.upload.file": string;
526
+ "core.upload.file_failed": string;
527
+ "core.upload.file_format_invalid": string;
528
+ "core.upload.file_size_exceeded": string;
529
+ "core.upload.file_success": string;
530
+ "core.upload.image_failed": string;
531
+ "core.upload.image_format_invalid": string;
532
+ "core.upload.image_limit_exceeded": string;
533
+ "core.upload.image_size_exceeded": string;
534
+ "core.upload.image_success": string;
535
+ "core.upload.limit_exceeded": string;
536
+ "core.upload.single_file_only": string;
537
+ "core.upload.template": string;
538
+ "core.upload.template_download": string;
539
+ "core.upload.unnamed_file": string;
540
+ "common.action.create_resource": string;
541
+ "common.action.edit_resource": string;
542
+ "common.action.refresh_cache": string;
543
+ "common.dialog.cancel_delete": string;
544
+ "common.dialog.delete_batch": string;
545
+ "common.dialog.delete_selected": string;
546
+ "common.dialog.delete_single": string;
547
+ "common.dialog.resource_field": string;
548
+ "common.dialog.status_change": string;
549
+ "common.field.created_at": string;
550
+ "common.field.remark": string;
551
+ "common.field.sort": string;
552
+ "common.field.status": string;
553
+ "common.field.tenant": string;
554
+ "common.field.updated_at": string;
555
+ "common.message.create_success": string;
556
+ "common.message.delete_success": string;
557
+ "common.message.load_children_failed": string;
558
+ "common.message.refresh_success": string;
559
+ "common.message.select_delete_item": string;
560
+ "common.message.status_success": string;
561
+ "common.message.update_success": string;
562
+ "common.placeholder.remark": string;
563
+ "common.validation.max_length": string;
564
+ "common.validation.required_input": string;
565
+ "common.validation.required_select": string;
566
+ "common.validation.sort_positive": string;
567
+ "common.field.action": string;
568
+ "common.placeholder.start_date": string;
569
+ "common.placeholder.end_date": string;
570
+ "common.value.yes": string;
571
+ "common.value.no": string;
572
+ "common.value.unknown": string;
573
+ "common.value.none": string;
574
+ };
575
+ readonly "es-ES": {
576
+ "common.action.back": string;
577
+ "common.action.cancel": string;
578
+ "common.action.close": string;
579
+ "common.action.confirm": string;
580
+ "common.action.create": string;
581
+ "common.action.delete": string;
582
+ "common.action.download": string;
583
+ "common.action.edit": string;
584
+ "common.action.expand": string;
585
+ "common.action.collapse": string;
586
+ "common.action.login": string;
587
+ "common.action.logout": string;
588
+ "common.action.reset": string;
589
+ "common.action.save": string;
590
+ "common.action.search": string;
591
+ "common.action.view": string;
592
+ "common.field.end_time": string;
593
+ "common.field.language": string;
594
+ "common.field.operation": string;
595
+ "common.field.parameter_name": string;
596
+ "common.field.parameter_value": string;
597
+ "common.field.phone": string;
598
+ "common.field.start_time": string;
599
+ "common.language.en-US": string;
600
+ "common.language.ja-JP": string;
601
+ "common.language.zh-CN": string;
602
+ "common.language.zh-TW": string;
603
+ "common.language.ko-KR": string;
604
+ "common.language.fr-FR": string;
605
+ "common.language.es-ES": string;
606
+ "common.message.no_data": string;
607
+ "common.message.operation_success": string;
608
+ "common.message.system_error": string;
609
+ "common.validation.phone_invalid": string;
610
+ "common.validation.phone_required": string;
611
+ "common.title.notice": string;
612
+ "common.title.warning": string;
613
+ "common.placeholder.input": string;
614
+ "common.placeholder.input_content": string;
615
+ "common.placeholder.select": string;
616
+ "common.status.disabled": string;
617
+ "common.status.enabled": string;
618
+ "common.value.female": string;
619
+ "common.value.male": string;
620
+ "common.value.all": string;
621
+ "core.auth.login_again": string;
622
+ "core.auth.refresh_token_missing": string;
623
+ "core.auth.session_expired": string;
624
+ "core.auth.no_menu_permission": string;
625
+ "core.auth.no_permission": string;
626
+ "core.clipboard.success": string;
627
+ "core.cron.cycle_unit.day": string;
628
+ "core.cron.cycle_unit.hour": string;
629
+ "core.cron.cycle_unit.minute": string;
630
+ "core.cron.cycle_unit.month": string;
631
+ "core.cron.cycle_unit.second": string;
632
+ "core.cron.cycle_unit.year": string;
633
+ "core.cron.description.every": string;
634
+ "core.cron.description.range": string;
635
+ "core.cron.description.specific": string;
636
+ "core.cron.description.step": string;
637
+ "core.cron.description.unspecified": string;
638
+ "core.cron.description.weekday": string;
639
+ "core.cron.description_separator": string;
640
+ "core.cron.edit": string;
641
+ "core.cron.every_unit": string;
642
+ "core.cron.expression": string;
643
+ "core.cron.from": string;
644
+ "core.cron.last_day": string;
645
+ "core.cron.nearest_workday": string;
646
+ "core.cron.not_configured": string;
647
+ "core.cron.placeholder": string;
648
+ "core.cron.preset.daily_eight": string;
649
+ "core.cron.preset.daily_midnight": string;
650
+ "core.cron.preset.every_five_minutes": string;
651
+ "core.cron.preset.every_hour": string;
652
+ "core.cron.preset.every_minute": string;
653
+ "core.cron.preset.monthly_first": string;
654
+ "core.cron.preset.next_year_daily": string;
655
+ "core.cron.presets": string;
656
+ "core.cron.range": string;
657
+ "core.cron.repeat": string;
658
+ "core.cron.run_once": string;
659
+ "core.cron.segment.day": string;
660
+ "core.cron.segment.hour": string;
661
+ "core.cron.segment.minute": string;
662
+ "core.cron.segment.month": string;
663
+ "core.cron.segment.second": string;
664
+ "core.cron.segment.year": string;
665
+ "core.cron.specific": string;
666
+ "core.cron.start_every": string;
667
+ "core.cron.this_month": string;
668
+ "core.cron.title": string;
669
+ "core.cron.to": string;
670
+ "core.cron.unit.day": string;
671
+ "core.cron.unit.hour": string;
672
+ "core.cron.unit.minute": string;
673
+ "core.cron.unit.month": string;
674
+ "core.cron.unit.second": string;
675
+ "core.cron.unit.year": string;
676
+ "core.cron.unspecified": string;
677
+ "core.cron.value_separator": string;
678
+ "core.cron.value_with_unit": string;
679
+ "core.cron.workday": string;
680
+ "core.data.confirm_action": string;
681
+ "core.data.operation_success": string;
682
+ "core.download.large_file_notice": string;
683
+ "core.error.403.detail": string;
684
+ "core.error.404.detail": string;
685
+ "core.error.500.detail": string;
686
+ "core.error.pending.detail": string;
687
+ "core.error.javascript.eval": string;
688
+ "core.error.javascript.internal": string;
689
+ "core.error.javascript.range": string;
690
+ "core.error.javascript.reference": string;
691
+ "core.error.javascript.syntax": string;
692
+ "core.error.javascript.type": string;
693
+ "core.error.javascript.unknown": string;
694
+ "core.error.javascript.uri": string;
695
+ "core.header.fullscreen": string;
696
+ "core.header.fullscreen_exit": string;
697
+ "core.header.fullscreen_unsupported": string;
698
+ "core.header.language": string;
699
+ "core.header.menu_search": string;
700
+ "core.header.menu_search_empty": string;
701
+ "core.header.menu_search_placeholder": string;
702
+ "core.header.size.default": string;
703
+ "core.header.size.large": string;
704
+ "core.header.size.small": string;
705
+ "core.header.size_select": string;
706
+ "core.header.theme": string;
707
+ "core.icon.empty": string;
708
+ "core.icon.placeholder": string;
709
+ "core.icon.search": string;
710
+ "core.layout.department_unassigned": string;
711
+ "core.layout.home": string;
712
+ "core.layout.info": string;
713
+ "core.layout.password_change": string;
714
+ "core.layout.unnamed_menu": string;
715
+ "core.layout.logout_confirm": string;
716
+ "core.layout.logout_success": string;
717
+ "core.layout.not_set": string;
718
+ "core.layout.role_unassigned": string;
719
+ "core.login.behavior_click": string;
720
+ "core.login.behavior_confirm": string;
721
+ "core.login.behavior_puzzle": string;
722
+ "core.login.behavior_rotate": string;
723
+ "core.login.captcha": string;
724
+ "core.login.captcha_alt": string;
725
+ "core.login.greeting.afternoon": string;
726
+ "core.login.greeting.evening": string;
727
+ "core.login.greeting.morning": string;
728
+ "core.login.greeting.night": string;
729
+ "core.login.greeting.noon": string;
730
+ "core.login.other_methods": string;
731
+ "core.login.password": string;
732
+ "core.login.tenant_code": string;
733
+ "core.login.user_name": string;
734
+ "core.login.welcome": string;
735
+ "core.oauth.dingtalk": string;
736
+ "core.oauth.feishu": string;
737
+ "core.oauth.wechat": string;
738
+ "core.oauth.wechatmp": string;
739
+ "core.oauth.wechatwork": string;
740
+ "core.oauth.unknown": string;
741
+ "core.password.error": string;
742
+ "core.password.crypto_unsupported": string;
743
+ "core.password.required": string;
744
+ "core.password.strength": string;
745
+ "core.password.strength.empty": string;
746
+ "core.password.strength.high": string;
747
+ "core.password.strength.low": string;
748
+ "core.password.strength.medium": string;
749
+ "core.password.tip": string;
750
+ "core.theme.accordion": string;
751
+ "core.theme.aside_inverted": string;
752
+ "core.theme.aside_inverted_tip": string;
753
+ "core.theme.breadcrumb": string;
754
+ "core.theme.breadcrumb_icon": string;
755
+ "core.theme.color": string;
756
+ "core.theme.dark": string;
757
+ "core.theme.footer": string;
758
+ "core.theme.global": string;
759
+ "core.theme.grey": string;
760
+ "core.theme.header_inverted": string;
761
+ "core.theme.header_inverted_tip": string;
762
+ "core.theme.interface": string;
763
+ "core.theme.layout": string;
764
+ "core.theme.layout.classic": string;
765
+ "core.theme.layout.columns": string;
766
+ "core.theme.layout.transverse": string;
767
+ "core.theme.layout.vertical": string;
768
+ "core.theme.menu_collapse": string;
769
+ "core.theme.primary_reset": string;
770
+ "core.theme.settings": string;
771
+ "core.theme.tabs": string;
772
+ "core.theme.tabs_icon": string;
773
+ "core.theme.watermark": string;
774
+ "core.theme.weak": string;
775
+ "core.theme.color_hex_invalid": string;
776
+ "core.theme.color_rgb_invalid": string;
777
+ "core.route.forbidden": string;
778
+ "core.route.login": string;
779
+ "core.route.not_found": string;
780
+ "core.route.server_error": string;
781
+ "core.tabs.close_all": string;
782
+ "core.tabs.close_current": string;
783
+ "core.tabs.close_left": string;
784
+ "core.tabs.close_other": string;
785
+ "core.tabs.close_right": string;
786
+ "core.tabs.maximize": string;
787
+ "core.tabs.refresh": string;
788
+ "core.table.collapse_all": string;
789
+ "core.table.column_name": string;
790
+ "core.table.column_setting": string;
791
+ "core.table.expand_all": string;
792
+ "core.table.hide_search": string;
793
+ "core.table.no_configurable_columns": string;
794
+ "core.table.refresh": string;
795
+ "core.table.show": string;
796
+ "core.table.show_search": string;
797
+ "core.table.sort": string;
798
+ "core.tree.filter_placeholder": string;
799
+ "core.tree.reset_selection": string;
800
+ "core.upload.action": string;
801
+ "core.upload.batch_add": string;
802
+ "core.upload.batch_failed": string;
803
+ "core.upload.batch_success": string;
804
+ "core.upload.click": string;
805
+ "core.upload.data_cover": string;
806
+ "core.upload.drag_or_click": string;
807
+ "core.upload.excel_format": string;
808
+ "core.upload.file": string;
809
+ "core.upload.file_failed": string;
810
+ "core.upload.file_format_invalid": string;
811
+ "core.upload.file_size_exceeded": string;
812
+ "core.upload.file_success": string;
813
+ "core.upload.image_failed": string;
814
+ "core.upload.image_format_invalid": string;
815
+ "core.upload.image_limit_exceeded": string;
816
+ "core.upload.image_size_exceeded": string;
817
+ "core.upload.image_success": string;
818
+ "core.upload.limit_exceeded": string;
819
+ "core.upload.single_file_only": string;
820
+ "core.upload.template": string;
821
+ "core.upload.template_download": string;
822
+ "core.upload.unnamed_file": string;
823
+ "common.action.create_resource": string;
824
+ "common.action.edit_resource": string;
825
+ "common.action.refresh_cache": string;
826
+ "common.dialog.cancel_delete": string;
827
+ "common.dialog.delete_batch": string;
828
+ "common.dialog.delete_selected": string;
829
+ "common.dialog.delete_single": string;
830
+ "common.dialog.resource_field": string;
831
+ "common.dialog.status_change": string;
832
+ "common.field.created_at": string;
833
+ "common.field.remark": string;
834
+ "common.field.sort": string;
835
+ "common.field.status": string;
836
+ "common.field.tenant": string;
837
+ "common.field.updated_at": string;
838
+ "common.message.create_success": string;
839
+ "common.message.delete_success": string;
840
+ "common.message.load_children_failed": string;
841
+ "common.message.refresh_success": string;
842
+ "common.message.select_delete_item": string;
843
+ "common.message.status_success": string;
844
+ "common.message.update_success": string;
845
+ "common.placeholder.remark": string;
846
+ "common.validation.max_length": string;
847
+ "common.validation.required_input": string;
848
+ "common.validation.required_select": string;
849
+ "common.validation.sort_positive": string;
850
+ "common.field.action": string;
851
+ "common.placeholder.start_date": string;
852
+ "common.placeholder.end_date": string;
853
+ "common.value.yes": string;
854
+ "common.value.no": string;
855
+ "common.value.unknown": string;
856
+ "common.value.none": string;
857
+ };
858
+ readonly "fr-FR": {
859
+ "common.action.back": string;
860
+ "common.action.cancel": string;
861
+ "common.action.close": string;
862
+ "common.action.confirm": string;
863
+ "common.action.create": string;
864
+ "common.action.delete": string;
865
+ "common.action.download": string;
866
+ "common.action.edit": string;
867
+ "common.action.expand": string;
868
+ "common.action.collapse": string;
869
+ "common.action.login": string;
870
+ "common.action.logout": string;
871
+ "common.action.reset": string;
872
+ "common.action.save": string;
873
+ "common.action.search": string;
874
+ "common.action.view": string;
875
+ "common.field.end_time": string;
876
+ "common.field.language": string;
877
+ "common.field.operation": string;
878
+ "common.field.parameter_name": string;
879
+ "common.field.parameter_value": string;
880
+ "common.field.phone": string;
881
+ "common.field.start_time": string;
882
+ "common.language.en-US": string;
883
+ "common.language.ja-JP": string;
884
+ "common.language.zh-CN": string;
885
+ "common.language.zh-TW": string;
886
+ "common.language.ko-KR": string;
887
+ "common.language.fr-FR": string;
888
+ "common.language.es-ES": string;
889
+ "common.message.no_data": string;
890
+ "common.message.operation_success": string;
891
+ "common.message.system_error": string;
892
+ "common.validation.phone_invalid": string;
893
+ "common.validation.phone_required": string;
894
+ "common.title.notice": string;
895
+ "common.title.warning": string;
896
+ "common.placeholder.input": string;
897
+ "common.placeholder.input_content": string;
898
+ "common.placeholder.select": string;
899
+ "common.status.disabled": string;
900
+ "common.status.enabled": string;
901
+ "common.value.female": string;
902
+ "common.value.male": string;
903
+ "common.value.all": string;
904
+ "core.auth.login_again": string;
905
+ "core.auth.refresh_token_missing": string;
906
+ "core.auth.session_expired": string;
907
+ "core.auth.no_menu_permission": string;
908
+ "core.auth.no_permission": string;
909
+ "core.clipboard.success": string;
910
+ "core.cron.cycle_unit.day": string;
911
+ "core.cron.cycle_unit.hour": string;
912
+ "core.cron.cycle_unit.minute": string;
913
+ "core.cron.cycle_unit.month": string;
914
+ "core.cron.cycle_unit.second": string;
915
+ "core.cron.cycle_unit.year": string;
916
+ "core.cron.description.every": string;
917
+ "core.cron.description.range": string;
918
+ "core.cron.description.specific": string;
919
+ "core.cron.description.step": string;
920
+ "core.cron.description.unspecified": string;
921
+ "core.cron.description.weekday": string;
922
+ "core.cron.description_separator": string;
923
+ "core.cron.edit": string;
924
+ "core.cron.every_unit": string;
925
+ "core.cron.expression": string;
926
+ "core.cron.from": string;
927
+ "core.cron.last_day": string;
928
+ "core.cron.nearest_workday": string;
929
+ "core.cron.not_configured": string;
930
+ "core.cron.placeholder": string;
931
+ "core.cron.preset.daily_eight": string;
932
+ "core.cron.preset.daily_midnight": string;
933
+ "core.cron.preset.every_five_minutes": string;
934
+ "core.cron.preset.every_hour": string;
935
+ "core.cron.preset.every_minute": string;
936
+ "core.cron.preset.monthly_first": string;
937
+ "core.cron.preset.next_year_daily": string;
938
+ "core.cron.presets": string;
939
+ "core.cron.range": string;
940
+ "core.cron.repeat": string;
941
+ "core.cron.run_once": string;
942
+ "core.cron.segment.day": string;
943
+ "core.cron.segment.hour": string;
944
+ "core.cron.segment.minute": string;
945
+ "core.cron.segment.month": string;
946
+ "core.cron.segment.second": string;
947
+ "core.cron.segment.year": string;
948
+ "core.cron.specific": string;
949
+ "core.cron.start_every": string;
950
+ "core.cron.this_month": string;
951
+ "core.cron.title": string;
952
+ "core.cron.to": string;
953
+ "core.cron.unit.day": string;
954
+ "core.cron.unit.hour": string;
955
+ "core.cron.unit.minute": string;
956
+ "core.cron.unit.month": string;
957
+ "core.cron.unit.second": string;
958
+ "core.cron.unit.year": string;
959
+ "core.cron.unspecified": string;
960
+ "core.cron.value_separator": string;
961
+ "core.cron.value_with_unit": string;
962
+ "core.cron.workday": string;
963
+ "core.data.confirm_action": string;
964
+ "core.data.operation_success": string;
965
+ "core.download.large_file_notice": string;
966
+ "core.error.403.detail": string;
967
+ "core.error.404.detail": string;
968
+ "core.error.500.detail": string;
969
+ "core.error.pending.detail": string;
970
+ "core.error.javascript.eval": string;
971
+ "core.error.javascript.internal": string;
972
+ "core.error.javascript.range": string;
973
+ "core.error.javascript.reference": string;
974
+ "core.error.javascript.syntax": string;
975
+ "core.error.javascript.type": string;
976
+ "core.error.javascript.unknown": string;
977
+ "core.error.javascript.uri": string;
978
+ "core.header.fullscreen": string;
979
+ "core.header.fullscreen_exit": string;
980
+ "core.header.fullscreen_unsupported": string;
981
+ "core.header.language": string;
982
+ "core.header.menu_search": string;
983
+ "core.header.menu_search_empty": string;
984
+ "core.header.menu_search_placeholder": string;
985
+ "core.header.size.default": string;
986
+ "core.header.size.large": string;
987
+ "core.header.size.small": string;
988
+ "core.header.size_select": string;
989
+ "core.header.theme": string;
990
+ "core.icon.empty": string;
991
+ "core.icon.placeholder": string;
992
+ "core.icon.search": string;
993
+ "core.layout.department_unassigned": string;
994
+ "core.layout.home": string;
995
+ "core.layout.info": string;
996
+ "core.layout.password_change": string;
997
+ "core.layout.unnamed_menu": string;
998
+ "core.layout.logout_confirm": string;
999
+ "core.layout.logout_success": string;
1000
+ "core.layout.not_set": string;
1001
+ "core.layout.role_unassigned": string;
1002
+ "core.login.behavior_click": string;
1003
+ "core.login.behavior_confirm": string;
1004
+ "core.login.behavior_puzzle": string;
1005
+ "core.login.behavior_rotate": string;
1006
+ "core.login.captcha": string;
1007
+ "core.login.captcha_alt": string;
1008
+ "core.login.greeting.afternoon": string;
1009
+ "core.login.greeting.evening": string;
1010
+ "core.login.greeting.morning": string;
1011
+ "core.login.greeting.night": string;
1012
+ "core.login.greeting.noon": string;
1013
+ "core.login.other_methods": string;
1014
+ "core.login.password": string;
1015
+ "core.login.tenant_code": string;
1016
+ "core.login.user_name": string;
1017
+ "core.login.welcome": string;
1018
+ "core.oauth.dingtalk": string;
1019
+ "core.oauth.feishu": string;
1020
+ "core.oauth.wechat": string;
1021
+ "core.oauth.wechatmp": string;
1022
+ "core.oauth.wechatwork": string;
1023
+ "core.oauth.unknown": string;
1024
+ "core.password.error": string;
1025
+ "core.password.crypto_unsupported": string;
1026
+ "core.password.required": string;
1027
+ "core.password.strength": string;
1028
+ "core.password.strength.empty": string;
1029
+ "core.password.strength.high": string;
1030
+ "core.password.strength.low": string;
1031
+ "core.password.strength.medium": string;
1032
+ "core.password.tip": string;
1033
+ "core.theme.accordion": string;
1034
+ "core.theme.aside_inverted": string;
1035
+ "core.theme.aside_inverted_tip": string;
1036
+ "core.theme.breadcrumb": string;
1037
+ "core.theme.breadcrumb_icon": string;
1038
+ "core.theme.color": string;
1039
+ "core.theme.dark": string;
1040
+ "core.theme.footer": string;
1041
+ "core.theme.global": string;
1042
+ "core.theme.grey": string;
1043
+ "core.theme.header_inverted": string;
1044
+ "core.theme.header_inverted_tip": string;
1045
+ "core.theme.interface": string;
1046
+ "core.theme.layout": string;
1047
+ "core.theme.layout.classic": string;
1048
+ "core.theme.layout.columns": string;
1049
+ "core.theme.layout.transverse": string;
1050
+ "core.theme.layout.vertical": string;
1051
+ "core.theme.menu_collapse": string;
1052
+ "core.theme.primary_reset": string;
1053
+ "core.theme.settings": string;
1054
+ "core.theme.tabs": string;
1055
+ "core.theme.tabs_icon": string;
1056
+ "core.theme.watermark": string;
1057
+ "core.theme.weak": string;
1058
+ "core.theme.color_hex_invalid": string;
1059
+ "core.theme.color_rgb_invalid": string;
1060
+ "core.route.forbidden": string;
1061
+ "core.route.login": string;
1062
+ "core.route.not_found": string;
1063
+ "core.route.server_error": string;
1064
+ "core.tabs.close_all": string;
1065
+ "core.tabs.close_current": string;
1066
+ "core.tabs.close_left": string;
1067
+ "core.tabs.close_other": string;
1068
+ "core.tabs.close_right": string;
1069
+ "core.tabs.maximize": string;
1070
+ "core.tabs.refresh": string;
1071
+ "core.table.collapse_all": string;
1072
+ "core.table.column_name": string;
1073
+ "core.table.column_setting": string;
1074
+ "core.table.expand_all": string;
1075
+ "core.table.hide_search": string;
1076
+ "core.table.no_configurable_columns": string;
1077
+ "core.table.refresh": string;
1078
+ "core.table.show": string;
1079
+ "core.table.show_search": string;
1080
+ "core.table.sort": string;
1081
+ "core.tree.filter_placeholder": string;
1082
+ "core.tree.reset_selection": string;
1083
+ "core.upload.action": string;
1084
+ "core.upload.batch_add": string;
1085
+ "core.upload.batch_failed": string;
1086
+ "core.upload.batch_success": string;
1087
+ "core.upload.click": string;
1088
+ "core.upload.data_cover": string;
1089
+ "core.upload.drag_or_click": string;
1090
+ "core.upload.excel_format": string;
1091
+ "core.upload.file": string;
1092
+ "core.upload.file_failed": string;
1093
+ "core.upload.file_format_invalid": string;
1094
+ "core.upload.file_size_exceeded": string;
1095
+ "core.upload.file_success": string;
1096
+ "core.upload.image_failed": string;
1097
+ "core.upload.image_format_invalid": string;
1098
+ "core.upload.image_limit_exceeded": string;
1099
+ "core.upload.image_size_exceeded": string;
1100
+ "core.upload.image_success": string;
1101
+ "core.upload.limit_exceeded": string;
1102
+ "core.upload.single_file_only": string;
1103
+ "core.upload.template": string;
1104
+ "core.upload.template_download": string;
1105
+ "core.upload.unnamed_file": string;
1106
+ "common.action.create_resource": string;
1107
+ "common.action.edit_resource": string;
1108
+ "common.action.refresh_cache": string;
1109
+ "common.dialog.cancel_delete": string;
1110
+ "common.dialog.delete_batch": string;
1111
+ "common.dialog.delete_selected": string;
1112
+ "common.dialog.delete_single": string;
1113
+ "common.dialog.resource_field": string;
1114
+ "common.dialog.status_change": string;
1115
+ "common.field.created_at": string;
1116
+ "common.field.remark": string;
1117
+ "common.field.sort": string;
1118
+ "common.field.status": string;
1119
+ "common.field.tenant": string;
1120
+ "common.field.updated_at": string;
1121
+ "common.message.create_success": string;
1122
+ "common.message.delete_success": string;
1123
+ "common.message.load_children_failed": string;
1124
+ "common.message.refresh_success": string;
1125
+ "common.message.select_delete_item": string;
1126
+ "common.message.status_success": string;
1127
+ "common.message.update_success": string;
1128
+ "common.placeholder.remark": string;
1129
+ "common.validation.max_length": string;
1130
+ "common.validation.required_input": string;
1131
+ "common.validation.required_select": string;
1132
+ "common.validation.sort_positive": string;
1133
+ "common.field.action": string;
1134
+ "common.placeholder.start_date": string;
1135
+ "common.placeholder.end_date": string;
1136
+ "common.value.yes": string;
1137
+ "common.value.no": string;
1138
+ "common.value.unknown": string;
1139
+ "common.value.none": string;
1140
+ };
1141
+ readonly "ja-JP": {
1142
+ "common.action.back": string;
1143
+ "common.action.cancel": string;
1144
+ "common.action.close": string;
1145
+ "common.action.confirm": string;
1146
+ "common.action.create": string;
1147
+ "common.action.delete": string;
1148
+ "common.action.download": string;
1149
+ "common.action.edit": string;
1150
+ "common.action.expand": string;
1151
+ "common.action.collapse": string;
1152
+ "common.action.login": string;
1153
+ "common.action.logout": string;
1154
+ "common.action.reset": string;
1155
+ "common.action.save": string;
1156
+ "common.action.search": string;
1157
+ "common.action.view": string;
1158
+ "common.field.end_time": string;
1159
+ "common.field.language": string;
1160
+ "common.field.operation": string;
1161
+ "common.field.parameter_name": string;
1162
+ "common.field.parameter_value": string;
1163
+ "common.field.phone": string;
1164
+ "common.field.start_time": string;
1165
+ "common.language.en-US": string;
1166
+ "common.language.ja-JP": string;
1167
+ "common.language.zh-CN": string;
1168
+ "common.language.zh-TW": string;
1169
+ "common.language.ko-KR": string;
1170
+ "common.language.fr-FR": string;
1171
+ "common.language.es-ES": string;
1172
+ "common.message.no_data": string;
1173
+ "common.message.operation_success": string;
1174
+ "common.message.system_error": string;
1175
+ "common.validation.phone_invalid": string;
1176
+ "common.validation.phone_required": string;
1177
+ "common.title.notice": string;
1178
+ "common.title.warning": string;
1179
+ "common.placeholder.input": string;
1180
+ "common.placeholder.input_content": string;
1181
+ "common.placeholder.select": string;
1182
+ "common.status.disabled": string;
1183
+ "common.status.enabled": string;
1184
+ "common.value.female": string;
1185
+ "common.value.male": string;
1186
+ "common.value.all": string;
1187
+ "core.auth.login_again": string;
1188
+ "core.auth.refresh_token_missing": string;
1189
+ "core.auth.session_expired": string;
1190
+ "core.auth.no_menu_permission": string;
1191
+ "core.auth.no_permission": string;
1192
+ "core.clipboard.success": string;
1193
+ "core.cron.cycle_unit.day": string;
1194
+ "core.cron.cycle_unit.hour": string;
1195
+ "core.cron.cycle_unit.minute": string;
1196
+ "core.cron.cycle_unit.month": string;
1197
+ "core.cron.cycle_unit.second": string;
1198
+ "core.cron.cycle_unit.year": string;
1199
+ "core.cron.description.every": string;
1200
+ "core.cron.description.range": string;
1201
+ "core.cron.description.specific": string;
1202
+ "core.cron.description.step": string;
1203
+ "core.cron.description.unspecified": string;
1204
+ "core.cron.description.weekday": string;
1205
+ "core.cron.description_separator": string;
1206
+ "core.cron.edit": string;
1207
+ "core.cron.every_unit": string;
1208
+ "core.cron.expression": string;
1209
+ "core.cron.from": string;
1210
+ "core.cron.last_day": string;
1211
+ "core.cron.nearest_workday": string;
1212
+ "core.cron.not_configured": string;
1213
+ "core.cron.placeholder": string;
1214
+ "core.cron.preset.daily_eight": string;
1215
+ "core.cron.preset.daily_midnight": string;
1216
+ "core.cron.preset.every_five_minutes": string;
1217
+ "core.cron.preset.every_hour": string;
1218
+ "core.cron.preset.every_minute": string;
1219
+ "core.cron.preset.monthly_first": string;
1220
+ "core.cron.preset.next_year_daily": string;
1221
+ "core.cron.presets": string;
1222
+ "core.cron.range": string;
1223
+ "core.cron.repeat": string;
1224
+ "core.cron.run_once": string;
1225
+ "core.cron.segment.day": string;
1226
+ "core.cron.segment.hour": string;
1227
+ "core.cron.segment.minute": string;
1228
+ "core.cron.segment.month": string;
1229
+ "core.cron.segment.second": string;
1230
+ "core.cron.segment.year": string;
1231
+ "core.cron.specific": string;
1232
+ "core.cron.start_every": string;
1233
+ "core.cron.this_month": string;
1234
+ "core.cron.title": string;
1235
+ "core.cron.to": string;
1236
+ "core.cron.unit.day": string;
1237
+ "core.cron.unit.hour": string;
1238
+ "core.cron.unit.minute": string;
1239
+ "core.cron.unit.month": string;
1240
+ "core.cron.unit.second": string;
1241
+ "core.cron.unit.year": string;
1242
+ "core.cron.unspecified": string;
1243
+ "core.cron.value_separator": string;
1244
+ "core.cron.value_with_unit": string;
1245
+ "core.cron.workday": string;
1246
+ "core.data.confirm_action": string;
1247
+ "core.data.operation_success": string;
1248
+ "core.download.large_file_notice": string;
1249
+ "core.error.403.detail": string;
1250
+ "core.error.404.detail": string;
1251
+ "core.error.500.detail": string;
1252
+ "core.error.pending.detail": string;
1253
+ "core.error.javascript.eval": string;
1254
+ "core.error.javascript.internal": string;
1255
+ "core.error.javascript.range": string;
1256
+ "core.error.javascript.reference": string;
1257
+ "core.error.javascript.syntax": string;
1258
+ "core.error.javascript.type": string;
1259
+ "core.error.javascript.unknown": string;
1260
+ "core.error.javascript.uri": string;
1261
+ "core.header.fullscreen": string;
1262
+ "core.header.fullscreen_exit": string;
1263
+ "core.header.fullscreen_unsupported": string;
1264
+ "core.header.language": string;
1265
+ "core.header.menu_search": string;
1266
+ "core.header.menu_search_empty": string;
1267
+ "core.header.menu_search_placeholder": string;
1268
+ "core.header.size.default": string;
1269
+ "core.header.size.large": string;
1270
+ "core.header.size.small": string;
1271
+ "core.header.size_select": string;
1272
+ "core.header.theme": string;
1273
+ "core.icon.empty": string;
1274
+ "core.icon.placeholder": string;
1275
+ "core.icon.search": string;
1276
+ "core.layout.department_unassigned": string;
1277
+ "core.layout.home": string;
1278
+ "core.layout.info": string;
1279
+ "core.layout.password_change": string;
1280
+ "core.layout.unnamed_menu": string;
1281
+ "core.layout.logout_confirm": string;
1282
+ "core.layout.logout_success": string;
1283
+ "core.layout.not_set": string;
1284
+ "core.layout.role_unassigned": string;
1285
+ "core.login.behavior_click": string;
1286
+ "core.login.behavior_confirm": string;
1287
+ "core.login.behavior_puzzle": string;
1288
+ "core.login.behavior_rotate": string;
1289
+ "core.login.captcha": string;
1290
+ "core.login.captcha_alt": string;
1291
+ "core.login.greeting.afternoon": string;
1292
+ "core.login.greeting.evening": string;
1293
+ "core.login.greeting.morning": string;
1294
+ "core.login.greeting.night": string;
1295
+ "core.login.greeting.noon": string;
1296
+ "core.login.other_methods": string;
1297
+ "core.login.password": string;
1298
+ "core.login.tenant_code": string;
1299
+ "core.login.user_name": string;
1300
+ "core.login.welcome": string;
1301
+ "core.oauth.dingtalk": string;
1302
+ "core.oauth.feishu": string;
1303
+ "core.oauth.wechat": string;
1304
+ "core.oauth.wechatmp": string;
1305
+ "core.oauth.wechatwork": string;
1306
+ "core.oauth.unknown": string;
1307
+ "core.password.error": string;
1308
+ "core.password.crypto_unsupported": string;
1309
+ "core.password.required": string;
1310
+ "core.password.strength": string;
1311
+ "core.password.strength.empty": string;
1312
+ "core.password.strength.high": string;
1313
+ "core.password.strength.low": string;
1314
+ "core.password.strength.medium": string;
1315
+ "core.password.tip": string;
1316
+ "core.theme.accordion": string;
1317
+ "core.theme.aside_inverted": string;
1318
+ "core.theme.aside_inverted_tip": string;
1319
+ "core.theme.breadcrumb": string;
1320
+ "core.theme.breadcrumb_icon": string;
1321
+ "core.theme.color": string;
1322
+ "core.theme.dark": string;
1323
+ "core.theme.footer": string;
1324
+ "core.theme.global": string;
1325
+ "core.theme.grey": string;
1326
+ "core.theme.header_inverted": string;
1327
+ "core.theme.header_inverted_tip": string;
1328
+ "core.theme.interface": string;
1329
+ "core.theme.layout": string;
1330
+ "core.theme.layout.classic": string;
1331
+ "core.theme.layout.columns": string;
1332
+ "core.theme.layout.transverse": string;
1333
+ "core.theme.layout.vertical": string;
1334
+ "core.theme.menu_collapse": string;
1335
+ "core.theme.primary_reset": string;
1336
+ "core.theme.settings": string;
1337
+ "core.theme.tabs": string;
1338
+ "core.theme.tabs_icon": string;
1339
+ "core.theme.watermark": string;
1340
+ "core.theme.weak": string;
1341
+ "core.theme.color_hex_invalid": string;
1342
+ "core.theme.color_rgb_invalid": string;
1343
+ "core.route.forbidden": string;
1344
+ "core.route.login": string;
1345
+ "core.route.not_found": string;
1346
+ "core.route.server_error": string;
1347
+ "core.tabs.close_all": string;
1348
+ "core.tabs.close_current": string;
1349
+ "core.tabs.close_left": string;
1350
+ "core.tabs.close_other": string;
1351
+ "core.tabs.close_right": string;
1352
+ "core.tabs.maximize": string;
1353
+ "core.tabs.refresh": string;
1354
+ "core.table.collapse_all": string;
1355
+ "core.table.column_name": string;
1356
+ "core.table.column_setting": string;
1357
+ "core.table.expand_all": string;
1358
+ "core.table.hide_search": string;
1359
+ "core.table.no_configurable_columns": string;
1360
+ "core.table.refresh": string;
1361
+ "core.table.show": string;
1362
+ "core.table.show_search": string;
1363
+ "core.table.sort": string;
1364
+ "core.tree.filter_placeholder": string;
1365
+ "core.tree.reset_selection": string;
1366
+ "core.upload.action": string;
1367
+ "core.upload.batch_add": string;
1368
+ "core.upload.batch_failed": string;
1369
+ "core.upload.batch_success": string;
1370
+ "core.upload.click": string;
1371
+ "core.upload.data_cover": string;
1372
+ "core.upload.drag_or_click": string;
1373
+ "core.upload.excel_format": string;
1374
+ "core.upload.file": string;
1375
+ "core.upload.file_failed": string;
1376
+ "core.upload.file_format_invalid": string;
1377
+ "core.upload.file_size_exceeded": string;
1378
+ "core.upload.file_success": string;
1379
+ "core.upload.image_failed": string;
1380
+ "core.upload.image_format_invalid": string;
1381
+ "core.upload.image_limit_exceeded": string;
1382
+ "core.upload.image_size_exceeded": string;
1383
+ "core.upload.image_success": string;
1384
+ "core.upload.limit_exceeded": string;
1385
+ "core.upload.single_file_only": string;
1386
+ "core.upload.template": string;
1387
+ "core.upload.template_download": string;
1388
+ "core.upload.unnamed_file": string;
1389
+ "common.action.create_resource": string;
1390
+ "common.action.edit_resource": string;
1391
+ "common.action.refresh_cache": string;
1392
+ "common.dialog.cancel_delete": string;
1393
+ "common.dialog.delete_batch": string;
1394
+ "common.dialog.delete_selected": string;
1395
+ "common.dialog.delete_single": string;
1396
+ "common.dialog.resource_field": string;
1397
+ "common.dialog.status_change": string;
1398
+ "common.field.created_at": string;
1399
+ "common.field.remark": string;
1400
+ "common.field.sort": string;
1401
+ "common.field.status": string;
1402
+ "common.field.tenant": string;
1403
+ "common.field.updated_at": string;
1404
+ "common.message.create_success": string;
1405
+ "common.message.delete_success": string;
1406
+ "common.message.load_children_failed": string;
1407
+ "common.message.refresh_success": string;
1408
+ "common.message.select_delete_item": string;
1409
+ "common.message.status_success": string;
1410
+ "common.message.update_success": string;
1411
+ "common.placeholder.remark": string;
1412
+ "common.validation.max_length": string;
1413
+ "common.validation.required_input": string;
1414
+ "common.validation.required_select": string;
1415
+ "common.validation.sort_positive": string;
1416
+ "common.field.action": string;
1417
+ "common.placeholder.start_date": string;
1418
+ "common.placeholder.end_date": string;
1419
+ "common.value.yes": string;
1420
+ "common.value.no": string;
1421
+ "common.value.unknown": string;
1422
+ "common.value.none": string;
1423
+ };
1424
+ readonly "ko-KR": {
1425
+ "common.action.back": string;
1426
+ "common.action.cancel": string;
1427
+ "common.action.close": string;
1428
+ "common.action.confirm": string;
1429
+ "common.action.create": string;
1430
+ "common.action.delete": string;
1431
+ "common.action.download": string;
1432
+ "common.action.edit": string;
1433
+ "common.action.expand": string;
1434
+ "common.action.collapse": string;
1435
+ "common.action.login": string;
1436
+ "common.action.logout": string;
1437
+ "common.action.reset": string;
1438
+ "common.action.save": string;
1439
+ "common.action.search": string;
1440
+ "common.action.view": string;
1441
+ "common.field.end_time": string;
1442
+ "common.field.language": string;
1443
+ "common.field.operation": string;
1444
+ "common.field.parameter_name": string;
1445
+ "common.field.parameter_value": string;
1446
+ "common.field.phone": string;
1447
+ "common.field.start_time": string;
1448
+ "common.language.en-US": string;
1449
+ "common.language.ja-JP": string;
1450
+ "common.language.zh-CN": string;
1451
+ "common.language.zh-TW": string;
1452
+ "common.language.ko-KR": string;
1453
+ "common.language.fr-FR": string;
1454
+ "common.language.es-ES": string;
1455
+ "common.message.no_data": string;
1456
+ "common.message.operation_success": string;
1457
+ "common.message.system_error": string;
1458
+ "common.validation.phone_invalid": string;
1459
+ "common.validation.phone_required": string;
1460
+ "common.title.notice": string;
1461
+ "common.title.warning": string;
1462
+ "common.placeholder.input": string;
1463
+ "common.placeholder.input_content": string;
1464
+ "common.placeholder.select": string;
1465
+ "common.status.disabled": string;
1466
+ "common.status.enabled": string;
1467
+ "common.value.female": string;
1468
+ "common.value.male": string;
1469
+ "common.value.all": string;
1470
+ "core.auth.login_again": string;
1471
+ "core.auth.refresh_token_missing": string;
1472
+ "core.auth.session_expired": string;
1473
+ "core.auth.no_menu_permission": string;
1474
+ "core.auth.no_permission": string;
1475
+ "core.clipboard.success": string;
1476
+ "core.cron.cycle_unit.day": string;
1477
+ "core.cron.cycle_unit.hour": string;
1478
+ "core.cron.cycle_unit.minute": string;
1479
+ "core.cron.cycle_unit.month": string;
1480
+ "core.cron.cycle_unit.second": string;
1481
+ "core.cron.cycle_unit.year": string;
1482
+ "core.cron.description.every": string;
1483
+ "core.cron.description.range": string;
1484
+ "core.cron.description.specific": string;
1485
+ "core.cron.description.step": string;
1486
+ "core.cron.description.unspecified": string;
1487
+ "core.cron.description.weekday": string;
1488
+ "core.cron.description_separator": string;
1489
+ "core.cron.edit": string;
1490
+ "core.cron.every_unit": string;
1491
+ "core.cron.expression": string;
1492
+ "core.cron.from": string;
1493
+ "core.cron.last_day": string;
1494
+ "core.cron.nearest_workday": string;
1495
+ "core.cron.not_configured": string;
1496
+ "core.cron.placeholder": string;
1497
+ "core.cron.preset.daily_eight": string;
1498
+ "core.cron.preset.daily_midnight": string;
1499
+ "core.cron.preset.every_five_minutes": string;
1500
+ "core.cron.preset.every_hour": string;
1501
+ "core.cron.preset.every_minute": string;
1502
+ "core.cron.preset.monthly_first": string;
1503
+ "core.cron.preset.next_year_daily": string;
1504
+ "core.cron.presets": string;
1505
+ "core.cron.range": string;
1506
+ "core.cron.repeat": string;
1507
+ "core.cron.run_once": string;
1508
+ "core.cron.segment.day": string;
1509
+ "core.cron.segment.hour": string;
1510
+ "core.cron.segment.minute": string;
1511
+ "core.cron.segment.month": string;
1512
+ "core.cron.segment.second": string;
1513
+ "core.cron.segment.year": string;
1514
+ "core.cron.specific": string;
1515
+ "core.cron.start_every": string;
1516
+ "core.cron.this_month": string;
1517
+ "core.cron.title": string;
1518
+ "core.cron.to": string;
1519
+ "core.cron.unit.day": string;
1520
+ "core.cron.unit.hour": string;
1521
+ "core.cron.unit.minute": string;
1522
+ "core.cron.unit.month": string;
1523
+ "core.cron.unit.second": string;
1524
+ "core.cron.unit.year": string;
1525
+ "core.cron.unspecified": string;
1526
+ "core.cron.value_separator": string;
1527
+ "core.cron.value_with_unit": string;
1528
+ "core.cron.workday": string;
1529
+ "core.data.confirm_action": string;
1530
+ "core.data.operation_success": string;
1531
+ "core.download.large_file_notice": string;
1532
+ "core.error.403.detail": string;
1533
+ "core.error.404.detail": string;
1534
+ "core.error.500.detail": string;
1535
+ "core.error.pending.detail": string;
1536
+ "core.error.javascript.eval": string;
1537
+ "core.error.javascript.internal": string;
1538
+ "core.error.javascript.range": string;
1539
+ "core.error.javascript.reference": string;
1540
+ "core.error.javascript.syntax": string;
1541
+ "core.error.javascript.type": string;
1542
+ "core.error.javascript.unknown": string;
1543
+ "core.error.javascript.uri": string;
1544
+ "core.header.fullscreen": string;
1545
+ "core.header.fullscreen_exit": string;
1546
+ "core.header.fullscreen_unsupported": string;
1547
+ "core.header.language": string;
1548
+ "core.header.menu_search": string;
1549
+ "core.header.menu_search_empty": string;
1550
+ "core.header.menu_search_placeholder": string;
1551
+ "core.header.size.default": string;
1552
+ "core.header.size.large": string;
1553
+ "core.header.size.small": string;
1554
+ "core.header.size_select": string;
1555
+ "core.header.theme": string;
1556
+ "core.icon.empty": string;
1557
+ "core.icon.placeholder": string;
1558
+ "core.icon.search": string;
1559
+ "core.layout.department_unassigned": string;
1560
+ "core.layout.home": string;
1561
+ "core.layout.info": string;
1562
+ "core.layout.password_change": string;
1563
+ "core.layout.unnamed_menu": string;
1564
+ "core.layout.logout_confirm": string;
1565
+ "core.layout.logout_success": string;
1566
+ "core.layout.not_set": string;
1567
+ "core.layout.role_unassigned": string;
1568
+ "core.login.behavior_click": string;
1569
+ "core.login.behavior_confirm": string;
1570
+ "core.login.behavior_puzzle": string;
1571
+ "core.login.behavior_rotate": string;
1572
+ "core.login.captcha": string;
1573
+ "core.login.captcha_alt": string;
1574
+ "core.login.greeting.afternoon": string;
1575
+ "core.login.greeting.evening": string;
1576
+ "core.login.greeting.morning": string;
1577
+ "core.login.greeting.night": string;
1578
+ "core.login.greeting.noon": string;
1579
+ "core.login.other_methods": string;
1580
+ "core.login.password": string;
1581
+ "core.login.tenant_code": string;
1582
+ "core.login.user_name": string;
1583
+ "core.login.welcome": string;
1584
+ "core.oauth.dingtalk": string;
1585
+ "core.oauth.feishu": string;
1586
+ "core.oauth.wechat": string;
1587
+ "core.oauth.wechatmp": string;
1588
+ "core.oauth.wechatwork": string;
1589
+ "core.oauth.unknown": string;
1590
+ "core.password.error": string;
1591
+ "core.password.crypto_unsupported": string;
1592
+ "core.password.required": string;
1593
+ "core.password.strength": string;
1594
+ "core.password.strength.empty": string;
1595
+ "core.password.strength.high": string;
1596
+ "core.password.strength.low": string;
1597
+ "core.password.strength.medium": string;
1598
+ "core.password.tip": string;
1599
+ "core.theme.accordion": string;
1600
+ "core.theme.aside_inverted": string;
1601
+ "core.theme.aside_inverted_tip": string;
1602
+ "core.theme.breadcrumb": string;
1603
+ "core.theme.breadcrumb_icon": string;
1604
+ "core.theme.color": string;
1605
+ "core.theme.dark": string;
1606
+ "core.theme.footer": string;
1607
+ "core.theme.global": string;
1608
+ "core.theme.grey": string;
1609
+ "core.theme.header_inverted": string;
1610
+ "core.theme.header_inverted_tip": string;
1611
+ "core.theme.interface": string;
1612
+ "core.theme.layout": string;
1613
+ "core.theme.layout.classic": string;
1614
+ "core.theme.layout.columns": string;
1615
+ "core.theme.layout.transverse": string;
1616
+ "core.theme.layout.vertical": string;
1617
+ "core.theme.menu_collapse": string;
1618
+ "core.theme.primary_reset": string;
1619
+ "core.theme.settings": string;
1620
+ "core.theme.tabs": string;
1621
+ "core.theme.tabs_icon": string;
1622
+ "core.theme.watermark": string;
1623
+ "core.theme.weak": string;
1624
+ "core.theme.color_hex_invalid": string;
1625
+ "core.theme.color_rgb_invalid": string;
1626
+ "core.route.forbidden": string;
1627
+ "core.route.login": string;
1628
+ "core.route.not_found": string;
1629
+ "core.route.server_error": string;
1630
+ "core.tabs.close_all": string;
1631
+ "core.tabs.close_current": string;
1632
+ "core.tabs.close_left": string;
1633
+ "core.tabs.close_other": string;
1634
+ "core.tabs.close_right": string;
1635
+ "core.tabs.maximize": string;
1636
+ "core.tabs.refresh": string;
1637
+ "core.table.collapse_all": string;
1638
+ "core.table.column_name": string;
1639
+ "core.table.column_setting": string;
1640
+ "core.table.expand_all": string;
1641
+ "core.table.hide_search": string;
1642
+ "core.table.no_configurable_columns": string;
1643
+ "core.table.refresh": string;
1644
+ "core.table.show": string;
1645
+ "core.table.show_search": string;
1646
+ "core.table.sort": string;
1647
+ "core.tree.filter_placeholder": string;
1648
+ "core.tree.reset_selection": string;
1649
+ "core.upload.action": string;
1650
+ "core.upload.batch_add": string;
1651
+ "core.upload.batch_failed": string;
1652
+ "core.upload.batch_success": string;
1653
+ "core.upload.click": string;
1654
+ "core.upload.data_cover": string;
1655
+ "core.upload.drag_or_click": string;
1656
+ "core.upload.excel_format": string;
1657
+ "core.upload.file": string;
1658
+ "core.upload.file_failed": string;
1659
+ "core.upload.file_format_invalid": string;
1660
+ "core.upload.file_size_exceeded": string;
1661
+ "core.upload.file_success": string;
1662
+ "core.upload.image_failed": string;
1663
+ "core.upload.image_format_invalid": string;
1664
+ "core.upload.image_limit_exceeded": string;
1665
+ "core.upload.image_size_exceeded": string;
1666
+ "core.upload.image_success": string;
1667
+ "core.upload.limit_exceeded": string;
1668
+ "core.upload.single_file_only": string;
1669
+ "core.upload.template": string;
1670
+ "core.upload.template_download": string;
1671
+ "core.upload.unnamed_file": string;
1672
+ "common.action.create_resource": string;
1673
+ "common.action.edit_resource": string;
1674
+ "common.action.refresh_cache": string;
1675
+ "common.dialog.cancel_delete": string;
1676
+ "common.dialog.delete_batch": string;
1677
+ "common.dialog.delete_selected": string;
1678
+ "common.dialog.delete_single": string;
1679
+ "common.dialog.resource_field": string;
1680
+ "common.dialog.status_change": string;
1681
+ "common.field.created_at": string;
1682
+ "common.field.remark": string;
1683
+ "common.field.sort": string;
1684
+ "common.field.status": string;
1685
+ "common.field.tenant": string;
1686
+ "common.field.updated_at": string;
1687
+ "common.message.create_success": string;
1688
+ "common.message.delete_success": string;
1689
+ "common.message.load_children_failed": string;
1690
+ "common.message.refresh_success": string;
1691
+ "common.message.select_delete_item": string;
1692
+ "common.message.status_success": string;
1693
+ "common.message.update_success": string;
1694
+ "common.placeholder.remark": string;
1695
+ "common.validation.max_length": string;
1696
+ "common.validation.required_input": string;
1697
+ "common.validation.required_select": string;
1698
+ "common.validation.sort_positive": string;
1699
+ "common.field.action": string;
1700
+ "common.placeholder.start_date": string;
1701
+ "common.placeholder.end_date": string;
1702
+ "common.value.yes": string;
1703
+ "common.value.no": string;
1704
+ "common.value.unknown": string;
1705
+ "common.value.none": string;
1706
+ };
1707
+ readonly "zh-TW": {
1708
+ "common.action.back": string;
1709
+ "common.action.cancel": string;
1710
+ "common.action.close": string;
1711
+ "common.action.confirm": string;
1712
+ "common.action.create": string;
1713
+ "common.action.delete": string;
1714
+ "common.action.download": string;
1715
+ "common.action.edit": string;
1716
+ "common.action.expand": string;
1717
+ "common.action.collapse": string;
1718
+ "common.action.login": string;
1719
+ "common.action.logout": string;
1720
+ "common.action.reset": string;
1721
+ "common.action.save": string;
1722
+ "common.action.search": string;
1723
+ "common.action.view": string;
1724
+ "common.field.end_time": string;
1725
+ "common.field.language": string;
1726
+ "common.field.operation": string;
1727
+ "common.field.parameter_name": string;
1728
+ "common.field.parameter_value": string;
1729
+ "common.field.phone": string;
1730
+ "common.field.start_time": string;
1731
+ "common.language.en-US": string;
1732
+ "common.language.ja-JP": string;
1733
+ "common.language.zh-CN": string;
1734
+ "common.language.zh-TW": string;
1735
+ "common.language.ko-KR": string;
1736
+ "common.language.fr-FR": string;
1737
+ "common.language.es-ES": string;
1738
+ "common.message.no_data": string;
1739
+ "common.message.operation_success": string;
1740
+ "common.message.system_error": string;
1741
+ "common.validation.phone_invalid": string;
1742
+ "common.validation.phone_required": string;
1743
+ "common.title.notice": string;
1744
+ "common.title.warning": string;
1745
+ "common.placeholder.input": string;
1746
+ "common.placeholder.input_content": string;
1747
+ "common.placeholder.select": string;
1748
+ "common.status.disabled": string;
1749
+ "common.status.enabled": string;
1750
+ "common.value.female": string;
1751
+ "common.value.male": string;
1752
+ "common.value.all": string;
1753
+ "core.auth.login_again": string;
1754
+ "core.auth.refresh_token_missing": string;
1755
+ "core.auth.session_expired": string;
1756
+ "core.auth.no_menu_permission": string;
1757
+ "core.auth.no_permission": string;
1758
+ "core.clipboard.success": string;
1759
+ "core.cron.cycle_unit.day": string;
1760
+ "core.cron.cycle_unit.hour": string;
1761
+ "core.cron.cycle_unit.minute": string;
1762
+ "core.cron.cycle_unit.month": string;
1763
+ "core.cron.cycle_unit.second": string;
1764
+ "core.cron.cycle_unit.year": string;
1765
+ "core.cron.description.every": string;
1766
+ "core.cron.description.range": string;
1767
+ "core.cron.description.specific": string;
1768
+ "core.cron.description.step": string;
1769
+ "core.cron.description.unspecified": string;
1770
+ "core.cron.description.weekday": string;
1771
+ "core.cron.description_separator": string;
1772
+ "core.cron.edit": string;
1773
+ "core.cron.every_unit": string;
1774
+ "core.cron.expression": string;
1775
+ "core.cron.from": string;
1776
+ "core.cron.last_day": string;
1777
+ "core.cron.nearest_workday": string;
1778
+ "core.cron.not_configured": string;
1779
+ "core.cron.placeholder": string;
1780
+ "core.cron.preset.daily_eight": string;
1781
+ "core.cron.preset.daily_midnight": string;
1782
+ "core.cron.preset.every_five_minutes": string;
1783
+ "core.cron.preset.every_hour": string;
1784
+ "core.cron.preset.every_minute": string;
1785
+ "core.cron.preset.monthly_first": string;
1786
+ "core.cron.preset.next_year_daily": string;
1787
+ "core.cron.presets": string;
1788
+ "core.cron.range": string;
1789
+ "core.cron.repeat": string;
1790
+ "core.cron.run_once": string;
1791
+ "core.cron.segment.day": string;
1792
+ "core.cron.segment.hour": string;
1793
+ "core.cron.segment.minute": string;
1794
+ "core.cron.segment.month": string;
1795
+ "core.cron.segment.second": string;
1796
+ "core.cron.segment.year": string;
1797
+ "core.cron.specific": string;
1798
+ "core.cron.start_every": string;
1799
+ "core.cron.this_month": string;
1800
+ "core.cron.title": string;
1801
+ "core.cron.to": string;
1802
+ "core.cron.unit.day": string;
1803
+ "core.cron.unit.hour": string;
1804
+ "core.cron.unit.minute": string;
1805
+ "core.cron.unit.month": string;
1806
+ "core.cron.unit.second": string;
1807
+ "core.cron.unit.year": string;
1808
+ "core.cron.unspecified": string;
1809
+ "core.cron.value_separator": string;
1810
+ "core.cron.value_with_unit": string;
1811
+ "core.cron.workday": string;
1812
+ "core.data.confirm_action": string;
1813
+ "core.data.operation_success": string;
1814
+ "core.download.large_file_notice": string;
1815
+ "core.error.403.detail": string;
1816
+ "core.error.404.detail": string;
1817
+ "core.error.500.detail": string;
1818
+ "core.error.pending.detail": string;
1819
+ "core.error.javascript.eval": string;
1820
+ "core.error.javascript.internal": string;
1821
+ "core.error.javascript.range": string;
1822
+ "core.error.javascript.reference": string;
1823
+ "core.error.javascript.syntax": string;
1824
+ "core.error.javascript.type": string;
1825
+ "core.error.javascript.unknown": string;
1826
+ "core.error.javascript.uri": string;
1827
+ "core.header.fullscreen": string;
1828
+ "core.header.fullscreen_exit": string;
1829
+ "core.header.fullscreen_unsupported": string;
1830
+ "core.header.language": string;
1831
+ "core.header.menu_search": string;
1832
+ "core.header.menu_search_empty": string;
1833
+ "core.header.menu_search_placeholder": string;
1834
+ "core.header.size.default": string;
1835
+ "core.header.size.large": string;
1836
+ "core.header.size.small": string;
1837
+ "core.header.size_select": string;
1838
+ "core.header.theme": string;
1839
+ "core.icon.empty": string;
1840
+ "core.icon.placeholder": string;
1841
+ "core.icon.search": string;
1842
+ "core.layout.department_unassigned": string;
1843
+ "core.layout.home": string;
1844
+ "core.layout.info": string;
1845
+ "core.layout.password_change": string;
1846
+ "core.layout.unnamed_menu": string;
1847
+ "core.layout.logout_confirm": string;
1848
+ "core.layout.logout_success": string;
1849
+ "core.layout.not_set": string;
1850
+ "core.layout.role_unassigned": string;
1851
+ "core.login.behavior_click": string;
1852
+ "core.login.behavior_confirm": string;
1853
+ "core.login.behavior_puzzle": string;
1854
+ "core.login.behavior_rotate": string;
1855
+ "core.login.captcha": string;
1856
+ "core.login.captcha_alt": string;
1857
+ "core.login.greeting.afternoon": string;
1858
+ "core.login.greeting.evening": string;
1859
+ "core.login.greeting.morning": string;
1860
+ "core.login.greeting.night": string;
1861
+ "core.login.greeting.noon": string;
1862
+ "core.login.other_methods": string;
1863
+ "core.login.password": string;
1864
+ "core.login.tenant_code": string;
1865
+ "core.login.user_name": string;
1866
+ "core.login.welcome": string;
1867
+ "core.oauth.dingtalk": string;
1868
+ "core.oauth.feishu": string;
1869
+ "core.oauth.wechat": string;
1870
+ "core.oauth.wechatmp": string;
1871
+ "core.oauth.wechatwork": string;
1872
+ "core.oauth.unknown": string;
1873
+ "core.password.error": string;
1874
+ "core.password.crypto_unsupported": string;
1875
+ "core.password.required": string;
1876
+ "core.password.strength": string;
1877
+ "core.password.strength.empty": string;
1878
+ "core.password.strength.high": string;
1879
+ "core.password.strength.low": string;
1880
+ "core.password.strength.medium": string;
1881
+ "core.password.tip": string;
1882
+ "core.theme.accordion": string;
1883
+ "core.theme.aside_inverted": string;
1884
+ "core.theme.aside_inverted_tip": string;
1885
+ "core.theme.breadcrumb": string;
1886
+ "core.theme.breadcrumb_icon": string;
1887
+ "core.theme.color": string;
1888
+ "core.theme.dark": string;
1889
+ "core.theme.footer": string;
1890
+ "core.theme.global": string;
1891
+ "core.theme.grey": string;
1892
+ "core.theme.header_inverted": string;
1893
+ "core.theme.header_inverted_tip": string;
1894
+ "core.theme.interface": string;
1895
+ "core.theme.layout": string;
1896
+ "core.theme.layout.classic": string;
1897
+ "core.theme.layout.columns": string;
1898
+ "core.theme.layout.transverse": string;
1899
+ "core.theme.layout.vertical": string;
1900
+ "core.theme.menu_collapse": string;
1901
+ "core.theme.primary_reset": string;
1902
+ "core.theme.settings": string;
1903
+ "core.theme.tabs": string;
1904
+ "core.theme.tabs_icon": string;
1905
+ "core.theme.watermark": string;
1906
+ "core.theme.weak": string;
1907
+ "core.theme.color_hex_invalid": string;
1908
+ "core.theme.color_rgb_invalid": string;
1909
+ "core.route.forbidden": string;
1910
+ "core.route.login": string;
1911
+ "core.route.not_found": string;
1912
+ "core.route.server_error": string;
1913
+ "core.tabs.close_all": string;
1914
+ "core.tabs.close_current": string;
1915
+ "core.tabs.close_left": string;
1916
+ "core.tabs.close_other": string;
1917
+ "core.tabs.close_right": string;
1918
+ "core.tabs.maximize": string;
1919
+ "core.tabs.refresh": string;
1920
+ "core.table.collapse_all": string;
1921
+ "core.table.column_name": string;
1922
+ "core.table.column_setting": string;
1923
+ "core.table.expand_all": string;
1924
+ "core.table.hide_search": string;
1925
+ "core.table.no_configurable_columns": string;
1926
+ "core.table.refresh": string;
1927
+ "core.table.show": string;
1928
+ "core.table.show_search": string;
1929
+ "core.table.sort": string;
1930
+ "core.tree.filter_placeholder": string;
1931
+ "core.tree.reset_selection": string;
1932
+ "core.upload.action": string;
1933
+ "core.upload.batch_add": string;
1934
+ "core.upload.batch_failed": string;
1935
+ "core.upload.batch_success": string;
1936
+ "core.upload.click": string;
1937
+ "core.upload.data_cover": string;
1938
+ "core.upload.drag_or_click": string;
1939
+ "core.upload.excel_format": string;
1940
+ "core.upload.file": string;
1941
+ "core.upload.file_failed": string;
1942
+ "core.upload.file_format_invalid": string;
1943
+ "core.upload.file_size_exceeded": string;
1944
+ "core.upload.file_success": string;
1945
+ "core.upload.image_failed": string;
1946
+ "core.upload.image_format_invalid": string;
1947
+ "core.upload.image_limit_exceeded": string;
1948
+ "core.upload.image_size_exceeded": string;
1949
+ "core.upload.image_success": string;
1950
+ "core.upload.limit_exceeded": string;
1951
+ "core.upload.single_file_only": string;
1952
+ "core.upload.template": string;
1953
+ "core.upload.template_download": string;
1954
+ "core.upload.unnamed_file": string;
1955
+ "common.action.create_resource": string;
1956
+ "common.action.edit_resource": string;
1957
+ "common.action.refresh_cache": string;
1958
+ "common.dialog.cancel_delete": string;
1959
+ "common.dialog.delete_batch": string;
1960
+ "common.dialog.delete_selected": string;
1961
+ "common.dialog.delete_single": string;
1962
+ "common.dialog.resource_field": string;
1963
+ "common.dialog.status_change": string;
1964
+ "common.field.created_at": string;
1965
+ "common.field.remark": string;
1966
+ "common.field.sort": string;
1967
+ "common.field.status": string;
1968
+ "common.field.tenant": string;
1969
+ "common.field.updated_at": string;
1970
+ "common.message.create_success": string;
1971
+ "common.message.delete_success": string;
1972
+ "common.message.load_children_failed": string;
1973
+ "common.message.refresh_success": string;
1974
+ "common.message.select_delete_item": string;
1975
+ "common.message.status_success": string;
1976
+ "common.message.update_success": string;
1977
+ "common.placeholder.remark": string;
1978
+ "common.validation.max_length": string;
1979
+ "common.validation.required_input": string;
1980
+ "common.validation.required_select": string;
1981
+ "common.validation.sort_positive": string;
1982
+ "common.field.action": string;
1983
+ "common.placeholder.start_date": string;
1984
+ "common.placeholder.end_date": string;
1985
+ "common.value.yes": string;
1986
+ "common.value.no": string;
1987
+ "common.value.unknown": string;
1988
+ "common.value.none": string;
1989
+ };
1990
+ };
1991
+ export type GeneratedLocale = keyof typeof LOCALE_MESSAGES;
1992
+ export declare const DEFAULT_LOCALE: GeneratedLocale;
1993
+ export declare const SUPPORTED_LOCALES: GeneratedLocale[];
1994
+ export declare const DAYJS_LOCALE_MAP: Record<string, string>;
1995
+ export declare const ELEMENT_LOCALES: {
1996
+ readonly "zh-CN": {
1997
+ name: string;
1998
+ el: {
1999
+ breadcrumb: {
2000
+ label: string;
2001
+ };
2002
+ colorpicker: {
2003
+ confirm: string;
2004
+ clear: string;
2005
+ defaultLabel: string;
2006
+ description: string;
2007
+ alphaLabel: string;
2008
+ alphaDescription: string;
2009
+ hueLabel: string;
2010
+ hueDescription: string;
2011
+ svLabel: string;
2012
+ svDescription: string;
2013
+ predefineDescription: string;
2014
+ };
2015
+ datepicker: {
2016
+ now: string;
2017
+ today: string;
2018
+ cancel: string;
2019
+ clear: string;
2020
+ confirm: string;
2021
+ dateTablePrompt: string;
2022
+ monthTablePrompt: string;
2023
+ yearTablePrompt: string;
2024
+ selectedDate: string;
2025
+ selectDate: string;
2026
+ selectTime: string;
2027
+ startDate: string;
2028
+ startTime: string;
2029
+ endDate: string;
2030
+ endTime: string;
2031
+ prevYear: string;
2032
+ nextYear: string;
2033
+ prevMonth: string;
2034
+ nextMonth: string;
2035
+ year: string;
2036
+ month1: string;
2037
+ month2: string;
2038
+ month3: string;
2039
+ month4: string;
2040
+ month5: string;
2041
+ month6: string;
2042
+ month7: string;
2043
+ month8: string;
2044
+ month9: string;
2045
+ month10: string;
2046
+ month11: string;
2047
+ month12: string;
2048
+ weeks: {
2049
+ sun: string;
2050
+ mon: string;
2051
+ tue: string;
2052
+ wed: string;
2053
+ thu: string;
2054
+ fri: string;
2055
+ sat: string;
2056
+ };
2057
+ weeksFull: {
2058
+ sun: string;
2059
+ mon: string;
2060
+ tue: string;
2061
+ wed: string;
2062
+ thu: string;
2063
+ fri: string;
2064
+ sat: string;
2065
+ };
2066
+ months: {
2067
+ jan: string;
2068
+ feb: string;
2069
+ mar: string;
2070
+ apr: string;
2071
+ may: string;
2072
+ jun: string;
2073
+ jul: string;
2074
+ aug: string;
2075
+ sep: string;
2076
+ oct: string;
2077
+ nov: string;
2078
+ dec: string;
2079
+ };
2080
+ };
2081
+ inputNumber: {
2082
+ decrease: string;
2083
+ increase: string;
2084
+ };
2085
+ select: {
2086
+ loading: string;
2087
+ noMatch: string;
2088
+ noData: string;
2089
+ placeholder: string;
2090
+ };
2091
+ mention: {
2092
+ loading: string;
2093
+ };
2094
+ dropdown: {
2095
+ toggleDropdown: string;
2096
+ };
2097
+ cascader: {
2098
+ noMatch: string;
2099
+ loading: string;
2100
+ placeholder: string;
2101
+ noData: string;
2102
+ };
2103
+ pagination: {
2104
+ goto: string;
2105
+ pagesize: string;
2106
+ total: string;
2107
+ pageClassifier: string;
2108
+ page: string;
2109
+ prev: string;
2110
+ next: string;
2111
+ currentPage: string;
2112
+ prevPages: string;
2113
+ nextPages: string;
2114
+ deprecationWarning: string;
2115
+ };
2116
+ dialog: {
2117
+ close: string;
2118
+ };
2119
+ drawer: {
2120
+ close: string;
2121
+ };
2122
+ messagebox: {
2123
+ title: string;
2124
+ confirm: string;
2125
+ cancel: string;
2126
+ error: string;
2127
+ close: string;
2128
+ };
2129
+ upload: {
2130
+ deleteTip: string;
2131
+ delete: string;
2132
+ preview: string;
2133
+ continue: string;
2134
+ };
2135
+ slider: {
2136
+ defaultLabel: string;
2137
+ defaultRangeStartLabel: string;
2138
+ defaultRangeEndLabel: string;
2139
+ };
2140
+ table: {
2141
+ emptyText: string;
2142
+ confirmFilter: string;
2143
+ resetFilter: string;
2144
+ clearFilter: string;
2145
+ sumText: string;
2146
+ selectAllLabel: string;
2147
+ selectRowLabel: string;
2148
+ expandRowLabel: string;
2149
+ collapseRowLabel: string;
2150
+ sortLabel: string;
2151
+ filterLabel: string;
2152
+ };
2153
+ tag: {
2154
+ close: string;
2155
+ };
2156
+ tour: {
2157
+ next: string;
2158
+ previous: string;
2159
+ finish: string;
2160
+ close: string;
2161
+ };
2162
+ tree: {
2163
+ emptyText: string;
2164
+ };
2165
+ transfer: {
2166
+ noMatch: string;
2167
+ noData: string;
2168
+ titles: string[];
2169
+ filterPlaceholder: string;
2170
+ noCheckedFormat: string;
2171
+ hasCheckedFormat: string;
2172
+ };
2173
+ image: {
2174
+ error: string;
2175
+ };
2176
+ pageHeader: {
2177
+ title: string;
2178
+ };
2179
+ popconfirm: {
2180
+ confirmButtonText: string;
2181
+ cancelButtonText: string;
2182
+ };
2183
+ carousel: {
2184
+ leftArrow: string;
2185
+ rightArrow: string;
2186
+ indicator: string;
2187
+ };
2188
+ inputOTP: {
2189
+ groupLabel: string;
2190
+ defaultLabel: string;
2191
+ };
2192
+ };
2193
+ };
2194
+ readonly "en-US": {
2195
+ name: string;
2196
+ el: {
2197
+ breadcrumb: {
2198
+ label: string;
2199
+ };
2200
+ colorpicker: {
2201
+ confirm: string;
2202
+ clear: string;
2203
+ defaultLabel: string;
2204
+ description: string;
2205
+ alphaLabel: string;
2206
+ alphaDescription: string;
2207
+ hueLabel: string;
2208
+ hueDescription: string;
2209
+ svLabel: string;
2210
+ svDescription: string;
2211
+ predefineDescription: string;
2212
+ };
2213
+ datepicker: {
2214
+ now: string;
2215
+ today: string;
2216
+ cancel: string;
2217
+ clear: string;
2218
+ confirm: string;
2219
+ dateTablePrompt: string;
2220
+ monthTablePrompt: string;
2221
+ yearTablePrompt: string;
2222
+ selectedDate: string;
2223
+ selectDate: string;
2224
+ selectTime: string;
2225
+ startDate: string;
2226
+ startTime: string;
2227
+ endDate: string;
2228
+ endTime: string;
2229
+ prevYear: string;
2230
+ nextYear: string;
2231
+ prevMonth: string;
2232
+ nextMonth: string;
2233
+ year: string;
2234
+ month1: string;
2235
+ month2: string;
2236
+ month3: string;
2237
+ month4: string;
2238
+ month5: string;
2239
+ month6: string;
2240
+ month7: string;
2241
+ month8: string;
2242
+ month9: string;
2243
+ month10: string;
2244
+ month11: string;
2245
+ month12: string;
2246
+ weeks: {
2247
+ sun: string;
2248
+ mon: string;
2249
+ tue: string;
2250
+ wed: string;
2251
+ thu: string;
2252
+ fri: string;
2253
+ sat: string;
2254
+ };
2255
+ weeksFull: {
2256
+ sun: string;
2257
+ mon: string;
2258
+ tue: string;
2259
+ wed: string;
2260
+ thu: string;
2261
+ fri: string;
2262
+ sat: string;
2263
+ };
2264
+ months: {
2265
+ jan: string;
2266
+ feb: string;
2267
+ mar: string;
2268
+ apr: string;
2269
+ may: string;
2270
+ jun: string;
2271
+ jul: string;
2272
+ aug: string;
2273
+ sep: string;
2274
+ oct: string;
2275
+ nov: string;
2276
+ dec: string;
2277
+ };
2278
+ };
2279
+ inputNumber: {
2280
+ decrease: string;
2281
+ increase: string;
2282
+ };
2283
+ select: {
2284
+ loading: string;
2285
+ noMatch: string;
2286
+ noData: string;
2287
+ placeholder: string;
2288
+ };
2289
+ mention: {
2290
+ loading: string;
2291
+ };
2292
+ dropdown: {
2293
+ toggleDropdown: string;
2294
+ };
2295
+ cascader: {
2296
+ noMatch: string;
2297
+ loading: string;
2298
+ placeholder: string;
2299
+ noData: string;
2300
+ };
2301
+ pagination: {
2302
+ goto: string;
2303
+ pagesize: string;
2304
+ total: string;
2305
+ pageClassifier: string;
2306
+ page: string;
2307
+ prev: string;
2308
+ next: string;
2309
+ currentPage: string;
2310
+ prevPages: string;
2311
+ nextPages: string;
2312
+ deprecationWarning: string;
2313
+ };
2314
+ dialog: {
2315
+ close: string;
2316
+ };
2317
+ drawer: {
2318
+ close: string;
2319
+ };
2320
+ messagebox: {
2321
+ title: string;
2322
+ confirm: string;
2323
+ cancel: string;
2324
+ error: string;
2325
+ close: string;
2326
+ };
2327
+ upload: {
2328
+ deleteTip: string;
2329
+ delete: string;
2330
+ preview: string;
2331
+ continue: string;
2332
+ };
2333
+ slider: {
2334
+ defaultLabel: string;
2335
+ defaultRangeStartLabel: string;
2336
+ defaultRangeEndLabel: string;
2337
+ };
2338
+ table: {
2339
+ emptyText: string;
2340
+ confirmFilter: string;
2341
+ resetFilter: string;
2342
+ clearFilter: string;
2343
+ sumText: string;
2344
+ selectAllLabel: string;
2345
+ selectRowLabel: string;
2346
+ expandRowLabel: string;
2347
+ collapseRowLabel: string;
2348
+ sortLabel: string;
2349
+ filterLabel: string;
2350
+ };
2351
+ tag: {
2352
+ close: string;
2353
+ };
2354
+ tour: {
2355
+ next: string;
2356
+ previous: string;
2357
+ finish: string;
2358
+ close: string;
2359
+ };
2360
+ tree: {
2361
+ emptyText: string;
2362
+ };
2363
+ transfer: {
2364
+ noMatch: string;
2365
+ noData: string;
2366
+ titles: string[];
2367
+ filterPlaceholder: string;
2368
+ noCheckedFormat: string;
2369
+ hasCheckedFormat: string;
2370
+ };
2371
+ image: {
2372
+ error: string;
2373
+ };
2374
+ pageHeader: {
2375
+ title: string;
2376
+ };
2377
+ popconfirm: {
2378
+ confirmButtonText: string;
2379
+ cancelButtonText: string;
2380
+ };
2381
+ carousel: {
2382
+ leftArrow: string;
2383
+ rightArrow: string;
2384
+ indicator: string;
2385
+ };
2386
+ inputOTP: {
2387
+ groupLabel: string;
2388
+ defaultLabel: string;
2389
+ };
2390
+ };
2391
+ };
2392
+ readonly "es-ES": {
2393
+ name: string;
2394
+ el: {
2395
+ breadcrumb: {
2396
+ label: string;
2397
+ };
2398
+ colorpicker: {
2399
+ confirm: string;
2400
+ clear: string;
2401
+ defaultLabel: string;
2402
+ description: string;
2403
+ alphaLabel: string;
2404
+ alphaDescription: string;
2405
+ hueLabel: string;
2406
+ hueDescription: string;
2407
+ svLabel: string;
2408
+ svDescription: string;
2409
+ predefineDescription: string;
2410
+ };
2411
+ datepicker: {
2412
+ now: string;
2413
+ today: string;
2414
+ cancel: string;
2415
+ clear: string;
2416
+ confirm: string;
2417
+ dateTablePrompt: string;
2418
+ monthTablePrompt: string;
2419
+ yearTablePrompt: string;
2420
+ selectedDate: string;
2421
+ selectDate: string;
2422
+ selectTime: string;
2423
+ startDate: string;
2424
+ startTime: string;
2425
+ endDate: string;
2426
+ endTime: string;
2427
+ prevYear: string;
2428
+ nextYear: string;
2429
+ prevMonth: string;
2430
+ nextMonth: string;
2431
+ year: string;
2432
+ month1: string;
2433
+ month2: string;
2434
+ month3: string;
2435
+ month4: string;
2436
+ month5: string;
2437
+ month6: string;
2438
+ month7: string;
2439
+ month8: string;
2440
+ month9: string;
2441
+ month10: string;
2442
+ month11: string;
2443
+ month12: string;
2444
+ weeks: {
2445
+ sun: string;
2446
+ mon: string;
2447
+ tue: string;
2448
+ wed: string;
2449
+ thu: string;
2450
+ fri: string;
2451
+ sat: string;
2452
+ };
2453
+ weeksFull: {
2454
+ sun: string;
2455
+ mon: string;
2456
+ tue: string;
2457
+ wed: string;
2458
+ thu: string;
2459
+ fri: string;
2460
+ sat: string;
2461
+ };
2462
+ months: {
2463
+ jan: string;
2464
+ feb: string;
2465
+ mar: string;
2466
+ apr: string;
2467
+ may: string;
2468
+ jun: string;
2469
+ jul: string;
2470
+ aug: string;
2471
+ sep: string;
2472
+ oct: string;
2473
+ nov: string;
2474
+ dec: string;
2475
+ };
2476
+ };
2477
+ inputNumber: {
2478
+ decrease: string;
2479
+ increase: string;
2480
+ };
2481
+ select: {
2482
+ loading: string;
2483
+ noMatch: string;
2484
+ noData: string;
2485
+ placeholder: string;
2486
+ };
2487
+ mention: {
2488
+ loading: string;
2489
+ };
2490
+ dropdown: {
2491
+ toggleDropdown: string;
2492
+ };
2493
+ cascader: {
2494
+ noMatch: string;
2495
+ loading: string;
2496
+ placeholder: string;
2497
+ noData: string;
2498
+ };
2499
+ pagination: {
2500
+ goto: string;
2501
+ pagesize: string;
2502
+ total: string;
2503
+ pageClassifier: string;
2504
+ page: string;
2505
+ prev: string;
2506
+ next: string;
2507
+ currentPage: string;
2508
+ prevPages: string;
2509
+ nextPages: string;
2510
+ deprecationWarning: string;
2511
+ };
2512
+ dialog: {
2513
+ close: string;
2514
+ };
2515
+ drawer: {
2516
+ close: string;
2517
+ };
2518
+ messagebox: {
2519
+ title: string;
2520
+ confirm: string;
2521
+ cancel: string;
2522
+ error: string;
2523
+ close: string;
2524
+ };
2525
+ upload: {
2526
+ deleteTip: string;
2527
+ delete: string;
2528
+ preview: string;
2529
+ continue: string;
2530
+ };
2531
+ slider: {
2532
+ defaultLabel: string;
2533
+ defaultRangeStartLabel: string;
2534
+ defaultRangeEndLabel: string;
2535
+ };
2536
+ table: {
2537
+ emptyText: string;
2538
+ confirmFilter: string;
2539
+ resetFilter: string;
2540
+ clearFilter: string;
2541
+ sumText: string;
2542
+ selectAllLabel: string;
2543
+ selectRowLabel: string;
2544
+ expandRowLabel: string;
2545
+ collapseRowLabel: string;
2546
+ sortLabel: string;
2547
+ filterLabel: string;
2548
+ };
2549
+ tag: {
2550
+ close: string;
2551
+ };
2552
+ tour: {
2553
+ next: string;
2554
+ previous: string;
2555
+ finish: string;
2556
+ close: string;
2557
+ };
2558
+ tree: {
2559
+ emptyText: string;
2560
+ };
2561
+ transfer: {
2562
+ noMatch: string;
2563
+ noData: string;
2564
+ titles: string[];
2565
+ filterPlaceholder: string;
2566
+ noCheckedFormat: string;
2567
+ hasCheckedFormat: string;
2568
+ };
2569
+ image: {
2570
+ error: string;
2571
+ };
2572
+ pageHeader: {
2573
+ title: string;
2574
+ };
2575
+ popconfirm: {
2576
+ confirmButtonText: string;
2577
+ cancelButtonText: string;
2578
+ };
2579
+ carousel: {
2580
+ leftArrow: string;
2581
+ rightArrow: string;
2582
+ indicator: string;
2583
+ };
2584
+ inputOTP: {
2585
+ groupLabel: string;
2586
+ defaultLabel: string;
2587
+ };
2588
+ };
2589
+ };
2590
+ readonly "fr-FR": {
2591
+ name: string;
2592
+ el: {
2593
+ breadcrumb: {
2594
+ label: string;
2595
+ };
2596
+ colorpicker: {
2597
+ confirm: string;
2598
+ clear: string;
2599
+ defaultLabel: string;
2600
+ description: string;
2601
+ alphaLabel: string;
2602
+ alphaDescription: string;
2603
+ hueLabel: string;
2604
+ hueDescription: string;
2605
+ svLabel: string;
2606
+ svDescription: string;
2607
+ predefineDescription: string;
2608
+ };
2609
+ datepicker: {
2610
+ now: string;
2611
+ today: string;
2612
+ cancel: string;
2613
+ clear: string;
2614
+ confirm: string;
2615
+ dateTablePrompt: string;
2616
+ monthTablePrompt: string;
2617
+ yearTablePrompt: string;
2618
+ selectedDate: string;
2619
+ selectDate: string;
2620
+ selectTime: string;
2621
+ startDate: string;
2622
+ startTime: string;
2623
+ endDate: string;
2624
+ endTime: string;
2625
+ prevYear: string;
2626
+ nextYear: string;
2627
+ prevMonth: string;
2628
+ nextMonth: string;
2629
+ year: string;
2630
+ month1: string;
2631
+ month2: string;
2632
+ month3: string;
2633
+ month4: string;
2634
+ month5: string;
2635
+ month6: string;
2636
+ month7: string;
2637
+ month8: string;
2638
+ month9: string;
2639
+ month10: string;
2640
+ month11: string;
2641
+ month12: string;
2642
+ weeks: {
2643
+ sun: string;
2644
+ mon: string;
2645
+ tue: string;
2646
+ wed: string;
2647
+ thu: string;
2648
+ fri: string;
2649
+ sat: string;
2650
+ };
2651
+ weeksFull: {
2652
+ sun: string;
2653
+ mon: string;
2654
+ tue: string;
2655
+ wed: string;
2656
+ thu: string;
2657
+ fri: string;
2658
+ sat: string;
2659
+ };
2660
+ months: {
2661
+ jan: string;
2662
+ feb: string;
2663
+ mar: string;
2664
+ apr: string;
2665
+ may: string;
2666
+ jun: string;
2667
+ jul: string;
2668
+ aug: string;
2669
+ sep: string;
2670
+ oct: string;
2671
+ nov: string;
2672
+ dec: string;
2673
+ };
2674
+ };
2675
+ inputNumber: {
2676
+ decrease: string;
2677
+ increase: string;
2678
+ };
2679
+ select: {
2680
+ loading: string;
2681
+ noMatch: string;
2682
+ noData: string;
2683
+ placeholder: string;
2684
+ };
2685
+ mention: {
2686
+ loading: string;
2687
+ };
2688
+ dropdown: {
2689
+ toggleDropdown: string;
2690
+ };
2691
+ cascader: {
2692
+ noMatch: string;
2693
+ loading: string;
2694
+ placeholder: string;
2695
+ noData: string;
2696
+ };
2697
+ pagination: {
2698
+ goto: string;
2699
+ pagesize: string;
2700
+ total: string;
2701
+ pageClassifier: string;
2702
+ page: string;
2703
+ prev: string;
2704
+ next: string;
2705
+ currentPage: string;
2706
+ prevPages: string;
2707
+ nextPages: string;
2708
+ deprecationWarning: string;
2709
+ };
2710
+ dialog: {
2711
+ close: string;
2712
+ };
2713
+ drawer: {
2714
+ close: string;
2715
+ };
2716
+ messagebox: {
2717
+ title: string;
2718
+ confirm: string;
2719
+ cancel: string;
2720
+ error: string;
2721
+ close: string;
2722
+ };
2723
+ upload: {
2724
+ deleteTip: string;
2725
+ delete: string;
2726
+ preview: string;
2727
+ continue: string;
2728
+ };
2729
+ slider: {
2730
+ defaultLabel: string;
2731
+ defaultRangeStartLabel: string;
2732
+ defaultRangeEndLabel: string;
2733
+ };
2734
+ table: {
2735
+ emptyText: string;
2736
+ confirmFilter: string;
2737
+ resetFilter: string;
2738
+ clearFilter: string;
2739
+ sumText: string;
2740
+ selectAllLabel: string;
2741
+ selectRowLabel: string;
2742
+ expandRowLabel: string;
2743
+ collapseRowLabel: string;
2744
+ sortLabel: string;
2745
+ filterLabel: string;
2746
+ };
2747
+ tag: {
2748
+ close: string;
2749
+ };
2750
+ tour: {
2751
+ next: string;
2752
+ previous: string;
2753
+ finish: string;
2754
+ close: string;
2755
+ };
2756
+ tree: {
2757
+ emptyText: string;
2758
+ };
2759
+ transfer: {
2760
+ noMatch: string;
2761
+ noData: string;
2762
+ titles: string[];
2763
+ filterPlaceholder: string;
2764
+ noCheckedFormat: string;
2765
+ hasCheckedFormat: string;
2766
+ };
2767
+ image: {
2768
+ error: string;
2769
+ };
2770
+ pageHeader: {
2771
+ title: string;
2772
+ };
2773
+ popconfirm: {
2774
+ confirmButtonText: string;
2775
+ cancelButtonText: string;
2776
+ };
2777
+ carousel: {
2778
+ leftArrow: string;
2779
+ rightArrow: string;
2780
+ indicator: string;
2781
+ };
2782
+ inputOTP: {
2783
+ groupLabel: string;
2784
+ defaultLabel: string;
2785
+ };
2786
+ };
2787
+ };
2788
+ readonly "ja-JP": {
2789
+ name: string;
2790
+ el: {
2791
+ breadcrumb: {
2792
+ label: string;
2793
+ };
2794
+ colorpicker: {
2795
+ confirm: string;
2796
+ clear: string;
2797
+ defaultLabel: string;
2798
+ description: string;
2799
+ alphaLabel: string;
2800
+ alphaDescription: string;
2801
+ hueLabel: string;
2802
+ hueDescription: string;
2803
+ svLabel: string;
2804
+ svDescription: string;
2805
+ predefineDescription: string;
2806
+ };
2807
+ datepicker: {
2808
+ now: string;
2809
+ today: string;
2810
+ cancel: string;
2811
+ clear: string;
2812
+ confirm: string;
2813
+ dateTablePrompt: string;
2814
+ monthTablePrompt: string;
2815
+ yearTablePrompt: string;
2816
+ selectedDate: string;
2817
+ selectDate: string;
2818
+ selectTime: string;
2819
+ startDate: string;
2820
+ startTime: string;
2821
+ endDate: string;
2822
+ endTime: string;
2823
+ prevYear: string;
2824
+ nextYear: string;
2825
+ prevMonth: string;
2826
+ nextMonth: string;
2827
+ year: string;
2828
+ month1: string;
2829
+ month2: string;
2830
+ month3: string;
2831
+ month4: string;
2832
+ month5: string;
2833
+ month6: string;
2834
+ month7: string;
2835
+ month8: string;
2836
+ month9: string;
2837
+ month10: string;
2838
+ month11: string;
2839
+ month12: string;
2840
+ weeks: {
2841
+ sun: string;
2842
+ mon: string;
2843
+ tue: string;
2844
+ wed: string;
2845
+ thu: string;
2846
+ fri: string;
2847
+ sat: string;
2848
+ };
2849
+ weeksFull: {
2850
+ sun: string;
2851
+ mon: string;
2852
+ tue: string;
2853
+ wed: string;
2854
+ thu: string;
2855
+ fri: string;
2856
+ sat: string;
2857
+ };
2858
+ months: {
2859
+ jan: string;
2860
+ feb: string;
2861
+ mar: string;
2862
+ apr: string;
2863
+ may: string;
2864
+ jun: string;
2865
+ jul: string;
2866
+ aug: string;
2867
+ sep: string;
2868
+ oct: string;
2869
+ nov: string;
2870
+ dec: string;
2871
+ };
2872
+ };
2873
+ inputNumber: {
2874
+ decrease: string;
2875
+ increase: string;
2876
+ };
2877
+ select: {
2878
+ loading: string;
2879
+ noMatch: string;
2880
+ noData: string;
2881
+ placeholder: string;
2882
+ };
2883
+ mention: {
2884
+ loading: string;
2885
+ };
2886
+ dropdown: {
2887
+ toggleDropdown: string;
2888
+ };
2889
+ cascader: {
2890
+ noMatch: string;
2891
+ loading: string;
2892
+ placeholder: string;
2893
+ noData: string;
2894
+ };
2895
+ pagination: {
2896
+ goto: string;
2897
+ pagesize: string;
2898
+ total: string;
2899
+ pageClassifier: string;
2900
+ page: string;
2901
+ prev: string;
2902
+ next: string;
2903
+ currentPage: string;
2904
+ prevPages: string;
2905
+ nextPages: string;
2906
+ deprecationWarning: string;
2907
+ };
2908
+ dialog: {
2909
+ close: string;
2910
+ };
2911
+ drawer: {
2912
+ close: string;
2913
+ };
2914
+ messagebox: {
2915
+ title: string;
2916
+ confirm: string;
2917
+ cancel: string;
2918
+ error: string;
2919
+ close: string;
2920
+ };
2921
+ upload: {
2922
+ deleteTip: string;
2923
+ delete: string;
2924
+ preview: string;
2925
+ continue: string;
2926
+ };
2927
+ slider: {
2928
+ defaultLabel: string;
2929
+ defaultRangeStartLabel: string;
2930
+ defaultRangeEndLabel: string;
2931
+ };
2932
+ table: {
2933
+ emptyText: string;
2934
+ confirmFilter: string;
2935
+ resetFilter: string;
2936
+ clearFilter: string;
2937
+ sumText: string;
2938
+ selectAllLabel: string;
2939
+ selectRowLabel: string;
2940
+ expandRowLabel: string;
2941
+ collapseRowLabel: string;
2942
+ sortLabel: string;
2943
+ filterLabel: string;
2944
+ };
2945
+ tag: {
2946
+ close: string;
2947
+ };
2948
+ tour: {
2949
+ next: string;
2950
+ previous: string;
2951
+ finish: string;
2952
+ close: string;
2953
+ };
2954
+ tree: {
2955
+ emptyText: string;
2956
+ };
2957
+ transfer: {
2958
+ noMatch: string;
2959
+ noData: string;
2960
+ titles: string[];
2961
+ filterPlaceholder: string;
2962
+ noCheckedFormat: string;
2963
+ hasCheckedFormat: string;
2964
+ };
2965
+ image: {
2966
+ error: string;
2967
+ };
2968
+ pageHeader: {
2969
+ title: string;
2970
+ };
2971
+ popconfirm: {
2972
+ confirmButtonText: string;
2973
+ cancelButtonText: string;
2974
+ };
2975
+ carousel: {
2976
+ leftArrow: string;
2977
+ rightArrow: string;
2978
+ indicator: string;
2979
+ };
2980
+ inputOTP: {
2981
+ groupLabel: string;
2982
+ defaultLabel: string;
2983
+ };
2984
+ };
2985
+ };
2986
+ readonly "ko-KR": {
2987
+ name: string;
2988
+ el: {
2989
+ breadcrumb: {
2990
+ label: string;
2991
+ };
2992
+ colorpicker: {
2993
+ confirm: string;
2994
+ clear: string;
2995
+ defaultLabel: string;
2996
+ description: string;
2997
+ alphaLabel: string;
2998
+ alphaDescription: string;
2999
+ hueLabel: string;
3000
+ hueDescription: string;
3001
+ svLabel: string;
3002
+ svDescription: string;
3003
+ predefineDescription: string;
3004
+ };
3005
+ datepicker: {
3006
+ now: string;
3007
+ today: string;
3008
+ cancel: string;
3009
+ clear: string;
3010
+ confirm: string;
3011
+ dateTablePrompt: string;
3012
+ monthTablePrompt: string;
3013
+ yearTablePrompt: string;
3014
+ selectedDate: string;
3015
+ selectDate: string;
3016
+ selectTime: string;
3017
+ startDate: string;
3018
+ startTime: string;
3019
+ endDate: string;
3020
+ endTime: string;
3021
+ prevYear: string;
3022
+ nextYear: string;
3023
+ prevMonth: string;
3024
+ nextMonth: string;
3025
+ year: string;
3026
+ month1: string;
3027
+ month2: string;
3028
+ month3: string;
3029
+ month4: string;
3030
+ month5: string;
3031
+ month6: string;
3032
+ month7: string;
3033
+ month8: string;
3034
+ month9: string;
3035
+ month10: string;
3036
+ month11: string;
3037
+ month12: string;
3038
+ weeks: {
3039
+ sun: string;
3040
+ mon: string;
3041
+ tue: string;
3042
+ wed: string;
3043
+ thu: string;
3044
+ fri: string;
3045
+ sat: string;
3046
+ };
3047
+ weeksFull: {
3048
+ sun: string;
3049
+ mon: string;
3050
+ tue: string;
3051
+ wed: string;
3052
+ thu: string;
3053
+ fri: string;
3054
+ sat: string;
3055
+ };
3056
+ months: {
3057
+ jan: string;
3058
+ feb: string;
3059
+ mar: string;
3060
+ apr: string;
3061
+ may: string;
3062
+ jun: string;
3063
+ jul: string;
3064
+ aug: string;
3065
+ sep: string;
3066
+ oct: string;
3067
+ nov: string;
3068
+ dec: string;
3069
+ };
3070
+ };
3071
+ inputNumber: {
3072
+ decrease: string;
3073
+ increase: string;
3074
+ };
3075
+ select: {
3076
+ loading: string;
3077
+ noMatch: string;
3078
+ noData: string;
3079
+ placeholder: string;
3080
+ };
3081
+ mention: {
3082
+ loading: string;
3083
+ };
3084
+ dropdown: {
3085
+ toggleDropdown: string;
3086
+ };
3087
+ cascader: {
3088
+ noMatch: string;
3089
+ loading: string;
3090
+ placeholder: string;
3091
+ noData: string;
3092
+ };
3093
+ pagination: {
3094
+ goto: string;
3095
+ pagesize: string;
3096
+ total: string;
3097
+ pageClassifier: string;
3098
+ page: string;
3099
+ prev: string;
3100
+ next: string;
3101
+ currentPage: string;
3102
+ prevPages: string;
3103
+ nextPages: string;
3104
+ deprecationWarning: string;
3105
+ };
3106
+ dialog: {
3107
+ close: string;
3108
+ };
3109
+ drawer: {
3110
+ close: string;
3111
+ };
3112
+ messagebox: {
3113
+ title: string;
3114
+ confirm: string;
3115
+ cancel: string;
3116
+ error: string;
3117
+ close: string;
3118
+ };
3119
+ upload: {
3120
+ deleteTip: string;
3121
+ delete: string;
3122
+ preview: string;
3123
+ continue: string;
3124
+ };
3125
+ slider: {
3126
+ defaultLabel: string;
3127
+ defaultRangeStartLabel: string;
3128
+ defaultRangeEndLabel: string;
3129
+ };
3130
+ table: {
3131
+ emptyText: string;
3132
+ confirmFilter: string;
3133
+ resetFilter: string;
3134
+ clearFilter: string;
3135
+ sumText: string;
3136
+ selectAllLabel: string;
3137
+ selectRowLabel: string;
3138
+ expandRowLabel: string;
3139
+ collapseRowLabel: string;
3140
+ sortLabel: string;
3141
+ filterLabel: string;
3142
+ };
3143
+ tag: {
3144
+ close: string;
3145
+ };
3146
+ tour: {
3147
+ next: string;
3148
+ previous: string;
3149
+ finish: string;
3150
+ close: string;
3151
+ };
3152
+ tree: {
3153
+ emptyText: string;
3154
+ };
3155
+ transfer: {
3156
+ noMatch: string;
3157
+ noData: string;
3158
+ titles: string[];
3159
+ filterPlaceholder: string;
3160
+ noCheckedFormat: string;
3161
+ hasCheckedFormat: string;
3162
+ };
3163
+ image: {
3164
+ error: string;
3165
+ };
3166
+ pageHeader: {
3167
+ title: string;
3168
+ };
3169
+ popconfirm: {
3170
+ confirmButtonText: string;
3171
+ cancelButtonText: string;
3172
+ };
3173
+ carousel: {
3174
+ leftArrow: string;
3175
+ rightArrow: string;
3176
+ indicator: string;
3177
+ };
3178
+ inputOTP: {
3179
+ groupLabel: string;
3180
+ defaultLabel: string;
3181
+ };
3182
+ };
3183
+ };
3184
+ readonly "zh-TW": {
3185
+ name: string;
3186
+ el: {
3187
+ breadcrumb: {
3188
+ label: string;
3189
+ };
3190
+ colorpicker: {
3191
+ confirm: string;
3192
+ clear: string;
3193
+ defaultLabel: string;
3194
+ description: string;
3195
+ alphaLabel: string;
3196
+ alphaDescription: string;
3197
+ hueLabel: string;
3198
+ hueDescription: string;
3199
+ svLabel: string;
3200
+ svDescription: string;
3201
+ predefineDescription: string;
3202
+ };
3203
+ datepicker: {
3204
+ now: string;
3205
+ today: string;
3206
+ cancel: string;
3207
+ clear: string;
3208
+ confirm: string;
3209
+ dateTablePrompt: string;
3210
+ monthTablePrompt: string;
3211
+ yearTablePrompt: string;
3212
+ selectedDate: string;
3213
+ selectDate: string;
3214
+ selectTime: string;
3215
+ startDate: string;
3216
+ startTime: string;
3217
+ endDate: string;
3218
+ endTime: string;
3219
+ prevYear: string;
3220
+ nextYear: string;
3221
+ prevMonth: string;
3222
+ nextMonth: string;
3223
+ year: string;
3224
+ month1: string;
3225
+ month2: string;
3226
+ month3: string;
3227
+ month4: string;
3228
+ month5: string;
3229
+ month6: string;
3230
+ month7: string;
3231
+ month8: string;
3232
+ month9: string;
3233
+ month10: string;
3234
+ month11: string;
3235
+ month12: string;
3236
+ weeks: {
3237
+ sun: string;
3238
+ mon: string;
3239
+ tue: string;
3240
+ wed: string;
3241
+ thu: string;
3242
+ fri: string;
3243
+ sat: string;
3244
+ };
3245
+ weeksFull: {
3246
+ sun: string;
3247
+ mon: string;
3248
+ tue: string;
3249
+ wed: string;
3250
+ thu: string;
3251
+ fri: string;
3252
+ sat: string;
3253
+ };
3254
+ months: {
3255
+ jan: string;
3256
+ feb: string;
3257
+ mar: string;
3258
+ apr: string;
3259
+ may: string;
3260
+ jun: string;
3261
+ jul: string;
3262
+ aug: string;
3263
+ sep: string;
3264
+ oct: string;
3265
+ nov: string;
3266
+ dec: string;
3267
+ };
3268
+ };
3269
+ inputNumber: {
3270
+ decrease: string;
3271
+ increase: string;
3272
+ };
3273
+ select: {
3274
+ loading: string;
3275
+ noMatch: string;
3276
+ noData: string;
3277
+ placeholder: string;
3278
+ };
3279
+ mention: {
3280
+ loading: string;
3281
+ };
3282
+ dropdown: {
3283
+ toggleDropdown: string;
3284
+ };
3285
+ cascader: {
3286
+ noMatch: string;
3287
+ loading: string;
3288
+ placeholder: string;
3289
+ noData: string;
3290
+ };
3291
+ pagination: {
3292
+ goto: string;
3293
+ pagesize: string;
3294
+ total: string;
3295
+ pageClassifier: string;
3296
+ page: string;
3297
+ prev: string;
3298
+ next: string;
3299
+ currentPage: string;
3300
+ prevPages: string;
3301
+ nextPages: string;
3302
+ deprecationWarning: string;
3303
+ };
3304
+ dialog: {
3305
+ close: string;
3306
+ };
3307
+ drawer: {
3308
+ close: string;
3309
+ };
3310
+ messagebox: {
3311
+ title: string;
3312
+ confirm: string;
3313
+ cancel: string;
3314
+ error: string;
3315
+ close: string;
3316
+ };
3317
+ upload: {
3318
+ deleteTip: string;
3319
+ delete: string;
3320
+ preview: string;
3321
+ continue: string;
3322
+ };
3323
+ slider: {
3324
+ defaultLabel: string;
3325
+ defaultRangeStartLabel: string;
3326
+ defaultRangeEndLabel: string;
3327
+ };
3328
+ table: {
3329
+ emptyText: string;
3330
+ confirmFilter: string;
3331
+ resetFilter: string;
3332
+ clearFilter: string;
3333
+ sumText: string;
3334
+ selectAllLabel: string;
3335
+ selectRowLabel: string;
3336
+ expandRowLabel: string;
3337
+ collapseRowLabel: string;
3338
+ sortLabel: string;
3339
+ filterLabel: string;
3340
+ };
3341
+ tag: {
3342
+ close: string;
3343
+ };
3344
+ tour: {
3345
+ next: string;
3346
+ previous: string;
3347
+ finish: string;
3348
+ close: string;
3349
+ };
3350
+ tree: {
3351
+ emptyText: string;
3352
+ };
3353
+ transfer: {
3354
+ noMatch: string;
3355
+ noData: string;
3356
+ titles: string[];
3357
+ filterPlaceholder: string;
3358
+ noCheckedFormat: string;
3359
+ hasCheckedFormat: string;
3360
+ };
3361
+ image: {
3362
+ error: string;
3363
+ };
3364
+ pageHeader: {
3365
+ title: string;
3366
+ };
3367
+ popconfirm: {
3368
+ confirmButtonText: string;
3369
+ cancelButtonText: string;
3370
+ };
3371
+ carousel: {
3372
+ leftArrow: string;
3373
+ rightArrow: string;
3374
+ indicator: string;
3375
+ };
3376
+ inputOTP: {
3377
+ groupLabel: string;
3378
+ defaultLabel: string;
3379
+ };
3380
+ };
3381
+ };
3382
+ };