@tendaui/components 1.0.0 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +176 -176
- package/alert/Alert.tsx +3 -2
- package/button/_example/base.tsx +10 -0
- package/button/_example/icon.tsx +20 -0
- package/color-picker/ColorPickPanel.tsx +9 -0
- package/color-picker/ColorPicker.tsx +67 -0
- package/color-picker/components/panel/alpha.tsx +32 -0
- package/color-picker/components/panel/format/index.tsx +47 -0
- package/color-picker/components/panel/format/inputs.tsx +119 -0
- package/color-picker/components/panel/header.tsx +37 -0
- package/color-picker/components/panel/hue.tsx +20 -0
- package/color-picker/components/panel/index.tsx +191 -0
- package/color-picker/components/panel/saturation.tsx +81 -0
- package/color-picker/components/panel/slider.tsx +76 -0
- package/color-picker/components/panel/swatches.tsx +84 -0
- package/color-picker/components/trigger.tsx +49 -0
- package/color-picker/defaultProps.ts +7 -0
- package/color-picker/helpers.ts +53 -0
- package/color-picker/hooks/useClassNames.ts +9 -0
- package/color-picker/hooks/useStyles.ts +39 -0
- package/color-picker/index.ts +12 -0
- package/color-picker/style/css.js +1 -0
- package/color-picker/style/index.js +1 -0
- package/color-picker/type.ts +143 -0
- package/color-picker/utils/color-picker/cmyk.ts +89 -0
- package/color-picker/utils/color-picker/color.ts +467 -0
- package/color-picker/utils/color-picker/constants.ts +187 -0
- package/color-picker/utils/color-picker/draggable.ts +100 -0
- package/color-picker/utils/color-picker/format.ts +95 -0
- package/color-picker/utils/color-picker/gradient.ts +243 -0
- package/color-picker/utils/color-picker/index.ts +7 -0
- package/color-picker/utils/color-picker/types.ts +33 -0
- package/common/observe.ts +33 -0
- package/common.ts +20 -0
- package/config-provider/ConfigContext.tsx +4 -1
- package/config-provider/index.ts +1 -1
- package/dialog/DialogCard.tsx +4 -6
- package/dialog/hooks/useDialogPosition.ts +1 -2
- package/dialog/plugin.tsx +3 -2
- package/drawer/Drawer.tsx +264 -0
- package/drawer/defaultProps.ts +19 -0
- package/drawer/hooks/useDrag.ts +98 -0
- package/drawer/hooks/useLockStyle.ts +36 -0
- package/drawer/index.ts +5 -0
- package/drawer/style/css.js +1 -0
- package/drawer/style/index.js +1 -0
- package/drawer/type.ts +193 -0
- package/drawer/utils/index.ts +76 -0
- package/fireworks/Fireworks.tsx +138 -0
- package/fireworks/index.ts +10 -0
- package/fireworks/style/css.js +0 -0
- package/fireworks/style/index.js +0 -0
- package/fireworks/type.ts +72 -0
- package/form/FormItem.tsx +5 -5
- package/form/easing.ts +10 -0
- package/form/scroll.ts +124 -0
- package/form/type.ts +519 -519
- package/global-config/default-config.ts +95 -0
- package/global-config/locale/ar_KW.ts +270 -0
- package/global-config/locale/en_US.ts +280 -0
- package/global-config/locale/it_IT.ts +287 -0
- package/global-config/locale/ja_JP.ts +279 -0
- package/global-config/locale/ko_KR.ts +279 -0
- package/global-config/locale/ru_RU.ts +288 -0
- package/global-config/locale/zh_CN.ts +279 -0
- package/global-config/locale/zh_TW.ts +279 -0
- package/global-config/mobile/default-config.ts +6 -0
- package/global-config/mobile/locale/ar_KW.ts +113 -0
- package/global-config/mobile/locale/en_US.ts +114 -0
- package/global-config/mobile/locale/it_IT.ts +114 -0
- package/global-config/mobile/locale/ja_JP.ts +101 -0
- package/global-config/mobile/locale/ko_KR.ts +101 -0
- package/global-config/mobile/locale/ru_RU.ts +113 -0
- package/global-config/mobile/locale/zh_CN.ts +101 -0
- package/global-config/mobile/locale/zh_TW.ts +101 -0
- package/global-config/t.ts +111 -0
- package/hooks/useControlled.ts +3 -3
- package/hooks/useDeepEffect.ts +32 -0
- package/hooks/useGlobalIcon.ts +10 -3
- package/hooks/useLastest.ts +2 -6
- package/hooks/useResizeObserve.ts +36 -0
- package/index.ts +10 -7
- package/input/Input.tsx +4 -1
- package/input/defaultProps.ts +0 -2
- package/input/type.ts +1 -6
- package/input-number/InputNumber.tsx +124 -0
- package/input-number/defaultProps.ts +17 -0
- package/input-number/index.ts +9 -0
- package/input-number/style/css.js +1 -0
- package/input-number/style/index.js +1 -0
- package/input-number/type.ts +147 -0
- package/input-number/useInputNumber.tsx +270 -0
- package/ip-input/IPInput.tsx +516 -0
- package/ip-input/defaultProps.ts +11 -0
- package/ip-input/index.ts +3 -0
- package/ip-input/style/css.js +1 -0
- package/ip-input/style/index.js +1 -0
- package/ip-input/type.ts +115 -0
- package/ip-input/utils.ts +112 -0
- package/layout/Aside.tsx +38 -0
- package/layout/Layout.tsx +104 -0
- package/layout/defaultProps.ts +9 -0
- package/layout/index.ts +9 -0
- package/layout/style/css.js +1 -0
- package/layout/style/index.js +1 -0
- package/layout/type.ts +43 -0
- package/list/List.tsx +144 -0
- package/list/ListItem.tsx +36 -0
- package/list/ListItemMeta.tsx +40 -0
- package/list/defaultProps.ts +11 -0
- package/list/hooks/useListVirtualScroll.ts +82 -0
- package/list/index.ts +11 -0
- package/list/style/css.js +1 -0
- package/list/style/index.js +1 -0
- package/list/type.ts +93 -0
- package/locale/LocalReceiver.ts +55 -0
- package/locale/ar_KW.ts +7 -0
- package/locale/en_US.ts +7 -0
- package/locale/it_IT.ts +6 -0
- package/locale/ja_JP.ts +6 -0
- package/locale/ko_KR.ts +6 -0
- package/locale/ru_RU.ts +6 -0
- package/locale/zh_CN.ts +5 -0
- package/locale/zh_TW.ts +7 -0
- package/notification/NotifyContainer.tsx +2 -2
- package/notification/NotifyContext.tsx +1 -0
- package/package.json +6 -3
- package/popup/Popup.tsx +34 -10
- package/radio/Radio.tsx +24 -0
- package/radio/RadioGroup.tsx +159 -0
- package/radio/defaultProps.ts +18 -0
- package/radio/index.ts +12 -0
- package/radio/style/css.js +0 -0
- package/radio/style/index.js +1 -0
- package/radio/type.ts +115 -0
- package/radio/useKeyboard.ts +36 -0
- package/select/hooks/useOptions.ts +10 -7
- package/select/hooks/usePanelVirtualScroll.ts +1 -1
- package/select/type.ts +382 -382
- package/select-input/type.ts +280 -280
- package/slider/Slider.tsx +270 -0
- package/slider/SliderHandleButton.tsx +50 -0
- package/slider/defaultProps.ts +15 -0
- package/slider/index.ts +9 -0
- package/slider/style/css.js +1 -0
- package/slider/style/index.js +1 -0
- package/slider/type.ts +77 -0
- package/style/all.js +26 -0
- package/styles/_global.scss +39 -39
- package/styles/_vars.scss +358 -386
- package/styles/components/alert/_index.scss +175 -175
- package/styles/components/alert/_vars.scss +39 -39
- package/styles/components/badge/_index.scss +70 -70
- package/styles/components/badge/_vars.scss +25 -25
- package/styles/components/button/_index.scss +499 -511
- package/styles/components/button/_mixins.scss +39 -39
- package/styles/components/button/_vars.scss +120 -122
- package/styles/components/checkbox/_index.scss +158 -158
- package/styles/components/checkbox/_var.scss +60 -60
- package/styles/components/color-picker/_index.scss +586 -0
- package/styles/components/color-picker/_mixins.scss +0 -0
- package/styles/components/color-picker/_vars.scss +84 -0
- package/styles/components/dialog/_animate.scss +135 -135
- package/styles/components/dialog/_index.scss +311 -311
- package/styles/components/dialog/_vars.scss +59 -59
- package/styles/components/drawer/_index.scss +205 -0
- package/styles/components/drawer/_mixins.scss +1 -0
- package/styles/components/drawer/_var.scss +53 -0
- package/styles/components/fireworks/_index.scss +86 -0
- package/styles/components/fireworks/_vars.scss +4 -0
- package/styles/components/form/_index.scss +174 -174
- package/styles/components/form/_mixins.scss +76 -76
- package/styles/components/form/_vars.scss +100 -100
- package/styles/components/input/_index.scss +349 -349
- package/styles/components/input/_mixins.scss +116 -116
- package/styles/components/input/_vars.scss +134 -134
- package/styles/components/input-number/_index.scss +353 -0
- package/styles/components/input-number/_mixins.scss +0 -0
- package/styles/components/input-number/_vars.scss +65 -0
- package/styles/components/ip-input/_index.scss +280 -0
- package/styles/components/layout/_index.scss +47 -0
- package/styles/components/layout/_mixin.scss +0 -0
- package/styles/components/layout/_vars.scss +18 -0
- package/styles/components/layout/doc.scss +74 -0
- package/styles/components/list/_index.scss +172 -0
- package/styles/components/list/_mixins.scss +0 -0
- package/styles/components/list/_vars.scss +41 -0
- package/styles/components/loading/_index.scss +112 -112
- package/styles/components/loading/_vars.scss +39 -39
- package/styles/components/notification/_index.scss +160 -160
- package/styles/components/notification/_mixins.scss +12 -12
- package/styles/components/notification/_vars.scss +59 -59
- package/styles/components/popup/_index.scss +82 -82
- package/styles/components/popup/_mixin.scss +149 -149
- package/styles/components/popup/_var.scss +31 -31
- package/styles/components/radio/_index.scss +376 -0
- package/styles/components/radio/_mixins.scss +0 -0
- package/styles/components/radio/_var.scss +92 -0
- package/styles/components/select/_index.scss +290 -290
- package/styles/components/select/_var.scss +65 -65
- package/styles/components/select-input/_index.scss +5 -5
- package/styles/components/select-input/_var.scss +3 -3
- package/styles/components/slider/_index.scss +241 -0
- package/styles/components/slider/_mixins.scss +0 -0
- package/styles/components/slider/_vars.scss +50 -0
- package/styles/components/switch/_index.scss +279 -279
- package/styles/components/switch/_vars.scss +61 -61
- package/styles/components/table/_index.scss +193 -0
- package/styles/components/table/_var.scss +52 -0
- package/styles/components/tabs/_index.scss +165 -0
- package/styles/components/tabs/_mixins.scss +11 -0
- package/styles/components/tabs/_vars.scss +71 -0
- package/styles/components/tag/_index.scss +316 -316
- package/styles/components/tag/_var.scss +85 -85
- package/styles/components/tag-input/_index.scss +163 -163
- package/styles/components/tag-input/_vars.scss +16 -16
- package/styles/globals.css +250 -250
- package/styles/mixins/_focus.scss +7 -7
- package/styles/mixins/_layout.scss +32 -32
- package/styles/mixins/_reset.scss +10 -10
- package/styles/mixins/_scrollbar.scss +31 -31
- package/styles/mixins/_text.scss +48 -48
- package/styles/rillple.css +16 -16
- package/styles/scrollbar.css +41 -41
- package/styles/themes/_dark.scss +191 -191
- package/styles/themes/_font.scss +69 -79
- package/styles/themes/_index.scss +5 -5
- package/styles/themes/_light.scss +190 -190
- package/styles/themes/_radius.scss +9 -9
- package/styles/themes/_size.scss +68 -68
- package/styles/themes.css +66 -66
- package/styles/utilities/_animation.scss +57 -57
- package/styles/utilities/_tips.scss +9 -9
- package/tab/TabBar.tsx +85 -0
- package/tab/TabNav.tsx +103 -0
- package/tab/TabNavItem.tsx +80 -0
- package/tab/TabPanel.tsx +42 -0
- package/tab/Tabs.tsx +71 -0
- package/tab/defaultProps.ts +19 -0
- package/tab/index.ts +7 -0
- package/tab/style/index.js +1 -0
- package/tab/type.ts +125 -0
- package/tab/useTabClass.ts +20 -0
- package/table/Cell.tsx +109 -0
- package/table/TBody.tsx +77 -0
- package/table/THead.tsx +63 -0
- package/table/TR.tsx +78 -0
- package/table/Table.tsx +73 -0
- package/table/defaultProps.ts +14 -0
- package/table/hooks/index.ts +4 -0
- package/table/hooks/useTableClassName.ts +63 -0
- package/table/hooks/useTableStyle.ts +93 -0
- package/table/index.ts +7 -0
- package/table/style/css.js +1 -0
- package/table/style/index.js +1 -0
- package/table/type.ts +192 -0
- package/tag/Tag.tsx +1 -1
- package/tag-input/hooks/useTagList.tsx +1 -1
- package/utils/dom.ts +4 -0
- package/utils/forwardRefWithStatics.ts +1 -4
- package/utils/input-number/large-number.ts +423 -0
- package/utils/input-number/number.ts +257 -0
- package/utils/isFragment.ts +6 -6
- package/utils/log/index.ts +3 -0
- package/utils/log/log.ts +30 -0
- package/utils/log/types.ts +12 -0
- package/utils/number.ts +21 -0
- package/utils/scroll.ts +26 -0
- package/utils/style.ts +2 -4
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
/* eslint-disable no-template-curly-in-string */
|
|
2
|
+
// 文件有效,为国际化做准备
|
|
3
|
+
import 'dayjs/locale/zh-cn';
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
autoComplete: {
|
|
7
|
+
empty: '暂无数据',
|
|
8
|
+
},
|
|
9
|
+
pagination: {
|
|
10
|
+
itemsPerPage: '{size} 条/页',
|
|
11
|
+
jumpTo: '跳至',
|
|
12
|
+
page: '页',
|
|
13
|
+
total: '共 {count} 条数据',
|
|
14
|
+
},
|
|
15
|
+
cascader: {
|
|
16
|
+
empty: '暂无数据',
|
|
17
|
+
loadingText: '加载中',
|
|
18
|
+
placeholder: '请选择',
|
|
19
|
+
},
|
|
20
|
+
calendar: {
|
|
21
|
+
yearSelection: '{year} 年',
|
|
22
|
+
monthSelection: '{month} 月',
|
|
23
|
+
yearRadio: '年',
|
|
24
|
+
monthRadio: '月',
|
|
25
|
+
hideWeekend: '隐藏周末',
|
|
26
|
+
showWeekend: '显示周末',
|
|
27
|
+
today: '今天',
|
|
28
|
+
thisMonth: '本月',
|
|
29
|
+
week: '一,二,三,四,五,六,日',
|
|
30
|
+
cellMonth: '1 月,2 月,3 月,4 月,5 月,6 月,7 月,8 月,9 月,10 月,11 月,12 月',
|
|
31
|
+
},
|
|
32
|
+
transfer: {
|
|
33
|
+
title: '{checked} / {total} 项',
|
|
34
|
+
empty: '暂无数据',
|
|
35
|
+
placeholder: '请输入关键词搜索',
|
|
36
|
+
},
|
|
37
|
+
timePicker: {
|
|
38
|
+
dayjsLocale: 'zh-cn',
|
|
39
|
+
now: '此刻',
|
|
40
|
+
confirm: '确定',
|
|
41
|
+
anteMeridiem: '上午',
|
|
42
|
+
postMeridiem: '下午',
|
|
43
|
+
placeholder: '选择时间',
|
|
44
|
+
},
|
|
45
|
+
dialog: {
|
|
46
|
+
confirm: '确认',
|
|
47
|
+
cancel: '取消',
|
|
48
|
+
},
|
|
49
|
+
drawer: {
|
|
50
|
+
confirm: '确认',
|
|
51
|
+
cancel: '取消',
|
|
52
|
+
},
|
|
53
|
+
popconfirm: {
|
|
54
|
+
confirm: {
|
|
55
|
+
content: '确定',
|
|
56
|
+
},
|
|
57
|
+
cancel: {
|
|
58
|
+
content: '取消',
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
table: {
|
|
62
|
+
empty: '暂无数据',
|
|
63
|
+
loadingText: '正在加载中,请稍后',
|
|
64
|
+
loadingMoreText: '点击加载更多',
|
|
65
|
+
filterInputPlaceholder: '请输入内容(无默认值)',
|
|
66
|
+
sortAscendingOperationText: '点击升序',
|
|
67
|
+
sortCancelOperationText: '点击取消排序',
|
|
68
|
+
sortDescendingOperationText: '点击降序',
|
|
69
|
+
clearFilterResultButtonText: '清空筛选',
|
|
70
|
+
columnConfigButtonText: '列配置',
|
|
71
|
+
columnConfigTitleText: '表格列配置',
|
|
72
|
+
columnConfigDescriptionText: '请选择需要在表格中显示的数据列',
|
|
73
|
+
confirmText: '确认',
|
|
74
|
+
cancelText: '取消',
|
|
75
|
+
resetText: '重置',
|
|
76
|
+
selectAllText: '全选',
|
|
77
|
+
searchResultText: '搜索“{result}”,找到 {count} 条结果',
|
|
78
|
+
},
|
|
79
|
+
select: {
|
|
80
|
+
empty: '暂无数据',
|
|
81
|
+
loadingText: '加载中',
|
|
82
|
+
placeholder: '请选择',
|
|
83
|
+
},
|
|
84
|
+
tree: {
|
|
85
|
+
empty: '暂无数据',
|
|
86
|
+
},
|
|
87
|
+
treeSelect: {
|
|
88
|
+
empty: '暂无数据',
|
|
89
|
+
loadingText: '加载中',
|
|
90
|
+
placeholder: '请选择',
|
|
91
|
+
},
|
|
92
|
+
datePicker: {
|
|
93
|
+
dayjsLocale: 'zh-cn',
|
|
94
|
+
placeholder: {
|
|
95
|
+
date: '请选择日期',
|
|
96
|
+
month: '请选择月份',
|
|
97
|
+
year: '请选择年份',
|
|
98
|
+
quarter: '请选择季度',
|
|
99
|
+
week: '请选择周',
|
|
100
|
+
},
|
|
101
|
+
weekdays: ['一', '二', '三', '四', '五', '六', '日'],
|
|
102
|
+
months: [
|
|
103
|
+
'1 月',
|
|
104
|
+
'2 月',
|
|
105
|
+
'3 月',
|
|
106
|
+
'4 月',
|
|
107
|
+
'5 月',
|
|
108
|
+
'6 月',
|
|
109
|
+
'7 月',
|
|
110
|
+
'8 月',
|
|
111
|
+
'9 月',
|
|
112
|
+
'10 月',
|
|
113
|
+
'11 月',
|
|
114
|
+
'12 月',
|
|
115
|
+
],
|
|
116
|
+
quarters: ['一季度', '二季度', '三季度', '四季度'],
|
|
117
|
+
rangeSeparator: ' - ',
|
|
118
|
+
direction: 'ltr',
|
|
119
|
+
format: 'YYYY-MM-DD',
|
|
120
|
+
dayAriaLabel: '日',
|
|
121
|
+
weekAbbreviation: '周',
|
|
122
|
+
yearAriaLabel: '年',
|
|
123
|
+
monthAriaLabel: '月',
|
|
124
|
+
confirm: '确定',
|
|
125
|
+
selectTime: '选择时间',
|
|
126
|
+
selectDate: '选择日期',
|
|
127
|
+
nextYear: '下一年',
|
|
128
|
+
preYear: '上一年',
|
|
129
|
+
nextMonth: '下个月',
|
|
130
|
+
preMonth: '上个月',
|
|
131
|
+
preDecade: '上个十年',
|
|
132
|
+
nextDecade: '下个十年',
|
|
133
|
+
now: '当前',
|
|
134
|
+
},
|
|
135
|
+
upload: {
|
|
136
|
+
sizeLimitMessage: '文件大小不能超过 {sizeLimit}',
|
|
137
|
+
cancelUploadText: '取消上传',
|
|
138
|
+
triggerUploadText: {
|
|
139
|
+
fileInput: '选择文件',
|
|
140
|
+
image: '点击上传图片',
|
|
141
|
+
normal: '点击上传',
|
|
142
|
+
// 选择文件和上传文件是 2 个步骤,文本需明确步骤
|
|
143
|
+
reupload: '重新选择',
|
|
144
|
+
continueUpload: '继续选择',
|
|
145
|
+
delete: '删除',
|
|
146
|
+
uploading: '上传中',
|
|
147
|
+
},
|
|
148
|
+
dragger: {
|
|
149
|
+
dragDropText: '释放鼠标',
|
|
150
|
+
draggingText: '拖拽到此区域',
|
|
151
|
+
clickAndDragText: '点击上方“选择文件”或将文件拖拽到此区域',
|
|
152
|
+
},
|
|
153
|
+
file: {
|
|
154
|
+
fileNameText: '文件名',
|
|
155
|
+
fileSizeText: '文件大小',
|
|
156
|
+
fileStatusText: '状态',
|
|
157
|
+
fileOperationText: '操作',
|
|
158
|
+
fileOperationDateText: '上传日期',
|
|
159
|
+
},
|
|
160
|
+
progress: {
|
|
161
|
+
uploadingText: '上传中',
|
|
162
|
+
waitingText: '待上传',
|
|
163
|
+
failText: '上传失败',
|
|
164
|
+
successText: '上传成功',
|
|
165
|
+
},
|
|
166
|
+
},
|
|
167
|
+
form: {
|
|
168
|
+
errorMessage: {
|
|
169
|
+
date: '请输入正确的${name}',
|
|
170
|
+
url: '请输入正确的${name}',
|
|
171
|
+
required: '${name}必填',
|
|
172
|
+
whitespace: '${name}不能为空',
|
|
173
|
+
max: '${name}字符长度不能超过 ${validate} 个字符,一个中文等于两个字符',
|
|
174
|
+
min: '${name}字符长度不能少于 ${validate} 个字符,一个中文等于两个字符',
|
|
175
|
+
len: '${name}字符长度必须是 ${validate}',
|
|
176
|
+
enum: '${name}只能是${validate}等',
|
|
177
|
+
idcard: '请输入正确的${name}',
|
|
178
|
+
telnumber: '请输入正确的${name}',
|
|
179
|
+
pattern: '请输入正确的${name}',
|
|
180
|
+
validator: '${name}不符合要求',
|
|
181
|
+
boolean: '${name}数据类型必须是布尔类型',
|
|
182
|
+
number: '${name}必须是数字',
|
|
183
|
+
},
|
|
184
|
+
colonText: ':',
|
|
185
|
+
},
|
|
186
|
+
input: {
|
|
187
|
+
placeholder: '请输入',
|
|
188
|
+
},
|
|
189
|
+
list: {
|
|
190
|
+
loadingText: '正在加载中,请稍等',
|
|
191
|
+
loadingMoreText: '点击加载更多',
|
|
192
|
+
},
|
|
193
|
+
alert: {
|
|
194
|
+
expandText: '展开更多',
|
|
195
|
+
collapseText: '收起',
|
|
196
|
+
},
|
|
197
|
+
anchor: {
|
|
198
|
+
copySuccessText: '链接复制成功',
|
|
199
|
+
copyText: '复制链接',
|
|
200
|
+
},
|
|
201
|
+
colorPicker: {
|
|
202
|
+
swatchColorTitle: '系统预设颜色',
|
|
203
|
+
recentColorTitle: '最近使用颜色',
|
|
204
|
+
clearConfirmText: '确定清空最近使用的颜色吗?',
|
|
205
|
+
singleColor: '单色',
|
|
206
|
+
gradientColor: '渐变',
|
|
207
|
+
},
|
|
208
|
+
guide: {
|
|
209
|
+
finishButtonProps: {
|
|
210
|
+
content: '完成',
|
|
211
|
+
theme: 'primary',
|
|
212
|
+
},
|
|
213
|
+
nextButtonProps: {
|
|
214
|
+
content: '下一步',
|
|
215
|
+
theme: 'primary',
|
|
216
|
+
},
|
|
217
|
+
skipButtonProps: {
|
|
218
|
+
content: '跳过',
|
|
219
|
+
theme: 'default',
|
|
220
|
+
},
|
|
221
|
+
prevButtonProps: {
|
|
222
|
+
content: '上一步',
|
|
223
|
+
theme: 'default',
|
|
224
|
+
},
|
|
225
|
+
},
|
|
226
|
+
image: {
|
|
227
|
+
errorText: '图片无法显示',
|
|
228
|
+
loadingText: '图片加载中',
|
|
229
|
+
},
|
|
230
|
+
imageViewer: {
|
|
231
|
+
errorText: '图片加载失败,可尝试重新加载',
|
|
232
|
+
mirrorTipText: '镜像',
|
|
233
|
+
rotateTipText: '旋转',
|
|
234
|
+
originalSizeTipText: '原始大小',
|
|
235
|
+
},
|
|
236
|
+
typography: {
|
|
237
|
+
expandText: '展开',
|
|
238
|
+
collapseText: '收起',
|
|
239
|
+
copiedText: '复制成功',
|
|
240
|
+
},
|
|
241
|
+
rate: {
|
|
242
|
+
rateText: ['极差', '失望', '一般', '满意', '惊喜'],
|
|
243
|
+
},
|
|
244
|
+
empty: {
|
|
245
|
+
titleText: {
|
|
246
|
+
maintenance: '建设中',
|
|
247
|
+
success: '成功',
|
|
248
|
+
fail: '失败',
|
|
249
|
+
empty: '暂无数据',
|
|
250
|
+
networkError: '网络错误',
|
|
251
|
+
},
|
|
252
|
+
},
|
|
253
|
+
descriptions: {
|
|
254
|
+
colonText: ':',
|
|
255
|
+
},
|
|
256
|
+
chat: {
|
|
257
|
+
placeholder: '请输入消息...',
|
|
258
|
+
stopBtnText: '中止',
|
|
259
|
+
refreshTipText: '重新生成',
|
|
260
|
+
copyTipText: '复制',
|
|
261
|
+
likeTipText: '点赞',
|
|
262
|
+
dislikeTipText: '点踩',
|
|
263
|
+
copyCodeBtnText: '复制代码',
|
|
264
|
+
copyCodeSuccessText: '已复制',
|
|
265
|
+
clearHistoryBtnText: '清空历史记录',
|
|
266
|
+
copyTextSuccess: '已成功复制到剪贴板',
|
|
267
|
+
copyTextFail: '复制到剪贴板失败',
|
|
268
|
+
confirmClearHistory: '确定要清空所有的消息吗?',
|
|
269
|
+
loadingText: '思考中...',
|
|
270
|
+
loadingEndText: '已深度思考',
|
|
271
|
+
uploadImageText: '上传图片',
|
|
272
|
+
uploadAttachmentText: '上传附件',
|
|
273
|
+
},
|
|
274
|
+
qrcode: {
|
|
275
|
+
expiredText: '二维码过期',
|
|
276
|
+
refreshText: '点击刷新',
|
|
277
|
+
scannedText: '已扫描',
|
|
278
|
+
},
|
|
279
|
+
} as const;
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
/* eslint-disable no-template-curly-in-string */
|
|
2
|
+
// 文件有效,为国际化做准备
|
|
3
|
+
import 'dayjs/locale/zh-tw';
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
autoComplete: {
|
|
7
|
+
empty: '暫無數據',
|
|
8
|
+
},
|
|
9
|
+
pagination: {
|
|
10
|
+
itemsPerPage: '{size} 項/頁',
|
|
11
|
+
jumpTo: '跳至',
|
|
12
|
+
page: '頁',
|
|
13
|
+
total: '共 {count} 項數據',
|
|
14
|
+
},
|
|
15
|
+
cascader: {
|
|
16
|
+
empty: '暫無數據',
|
|
17
|
+
loadingText: '載入中',
|
|
18
|
+
placeholder: '請選擇',
|
|
19
|
+
},
|
|
20
|
+
calendar: {
|
|
21
|
+
yearSelection: '{year} 年',
|
|
22
|
+
monthSelection: '{month} 月',
|
|
23
|
+
yearRadio: '年',
|
|
24
|
+
monthRadio: '月',
|
|
25
|
+
hideWeekend: '隱藏週末',
|
|
26
|
+
showWeekend: '顯示週末',
|
|
27
|
+
today: '今天',
|
|
28
|
+
thisMonth: '本月',
|
|
29
|
+
week: '一,二,三,四,五,六,日',
|
|
30
|
+
cellMonth: '1 月,2 月,3 月,4 月,5 月,6 月,7 月,8 月,9 月,10 月,11 月,12 月',
|
|
31
|
+
},
|
|
32
|
+
transfer: {
|
|
33
|
+
title: '{checked} / {total} 項',
|
|
34
|
+
empty: '暫無數據',
|
|
35
|
+
placeholder: '請輸入關鍵詞搜尋',
|
|
36
|
+
},
|
|
37
|
+
timePicker: {
|
|
38
|
+
dayjsLocale: 'zh-tw',
|
|
39
|
+
now: '此刻',
|
|
40
|
+
confirm: '確認',
|
|
41
|
+
anteMeridiem: '上午',
|
|
42
|
+
postMeridiem: '下午',
|
|
43
|
+
placeholder: '選擇時間',
|
|
44
|
+
},
|
|
45
|
+
dialog: {
|
|
46
|
+
confirm: '確認',
|
|
47
|
+
cancel: '取消',
|
|
48
|
+
},
|
|
49
|
+
drawer: {
|
|
50
|
+
confirm: '確認',
|
|
51
|
+
cancel: '取消',
|
|
52
|
+
},
|
|
53
|
+
popconfirm: {
|
|
54
|
+
confirm: {
|
|
55
|
+
content: '確認',
|
|
56
|
+
},
|
|
57
|
+
cancel: {
|
|
58
|
+
content: '取消',
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
table: {
|
|
62
|
+
empty: '暫無數據',
|
|
63
|
+
loadingText: '正在載入中,請稍後',
|
|
64
|
+
loadingMoreText: '點擊載入更多',
|
|
65
|
+
filterInputPlaceholder: '請輸入内容(無默認值)',
|
|
66
|
+
sortAscendingOperationText: '點擊升序',
|
|
67
|
+
sortCancelOperationText: '點擊取消排序',
|
|
68
|
+
sortDescendingOperationText: '點擊降序',
|
|
69
|
+
clearFilterResultButtonText: '清空篩選',
|
|
70
|
+
columnConfigButtonText: '行配置',
|
|
71
|
+
columnConfigTitleText: '表格行配置',
|
|
72
|
+
columnConfigDescriptionText: '請選擇需要在表格中顯示的數據行',
|
|
73
|
+
confirmText: '確認',
|
|
74
|
+
cancelText: '取消',
|
|
75
|
+
resetText: '重置',
|
|
76
|
+
selectAllText: '全選',
|
|
77
|
+
searchResultText: '搜尋"{result}",找到{count}項結果',
|
|
78
|
+
},
|
|
79
|
+
select: {
|
|
80
|
+
empty: '暫無數據',
|
|
81
|
+
loadingText: '載入中',
|
|
82
|
+
placeholder: '請選擇',
|
|
83
|
+
},
|
|
84
|
+
tree: {
|
|
85
|
+
empty: '暫無數據',
|
|
86
|
+
},
|
|
87
|
+
treeSelect: {
|
|
88
|
+
empty: '暫無數據',
|
|
89
|
+
loadingText: '載入中',
|
|
90
|
+
placeholder: '請選擇',
|
|
91
|
+
},
|
|
92
|
+
datePicker: {
|
|
93
|
+
dayjsLocale: 'zh-tw',
|
|
94
|
+
placeholder: {
|
|
95
|
+
date: '請選擇日期',
|
|
96
|
+
month: '請選擇月份',
|
|
97
|
+
year: '請選擇年份',
|
|
98
|
+
quarter: '請選擇季度',
|
|
99
|
+
week: '請選擇周',
|
|
100
|
+
},
|
|
101
|
+
weekdays: ['一', '二', '三', '四', '五', '六', '日'],
|
|
102
|
+
months: [
|
|
103
|
+
'1月',
|
|
104
|
+
'2月',
|
|
105
|
+
'3月',
|
|
106
|
+
'4月',
|
|
107
|
+
'5月',
|
|
108
|
+
'6月',
|
|
109
|
+
'7月',
|
|
110
|
+
'8月',
|
|
111
|
+
'9月',
|
|
112
|
+
'10月',
|
|
113
|
+
'11月',
|
|
114
|
+
'12月',
|
|
115
|
+
],
|
|
116
|
+
quarters: ['一季度', '二季度', '三季度', '四季度'],
|
|
117
|
+
rangeSeparator: ' - ',
|
|
118
|
+
direction: 'ltr',
|
|
119
|
+
format: 'YYYY-MM-DD',
|
|
120
|
+
dayAriaLabel: '日',
|
|
121
|
+
weekAbbreviation: '週',
|
|
122
|
+
yearAriaLabel: '年',
|
|
123
|
+
monthAriaLabel: '月',
|
|
124
|
+
confirm: '確認',
|
|
125
|
+
selectTime: '選擇時間',
|
|
126
|
+
selectDate: '選擇日期',
|
|
127
|
+
nextYear: '下一年',
|
|
128
|
+
preYear: '上一年',
|
|
129
|
+
nextMonth: '下個月',
|
|
130
|
+
preMonth: '上個月',
|
|
131
|
+
preDecade: '上十年',
|
|
132
|
+
nextDecade: '下十年',
|
|
133
|
+
now: '當前',
|
|
134
|
+
},
|
|
135
|
+
upload: {
|
|
136
|
+
sizeLimitMessage: '文件大小不能超過 {sizeLimit}',
|
|
137
|
+
cancelUploadText: '取消上傳',
|
|
138
|
+
triggerUploadText: {
|
|
139
|
+
fileInput: '選擇文件',
|
|
140
|
+
image: '點擊上傳圖片',
|
|
141
|
+
normal: '點擊上傳',
|
|
142
|
+
// 選擇文件和上傳文件是 2 個步驟,文本需明確步驟
|
|
143
|
+
reupload: '重新選擇',
|
|
144
|
+
continueUpload: '繼續選擇',
|
|
145
|
+
delete: '刪除',
|
|
146
|
+
uploading: '上傳中',
|
|
147
|
+
},
|
|
148
|
+
dragger: {
|
|
149
|
+
dragDropText: '釋放鼠標',
|
|
150
|
+
draggingText: '拖拽到此區域',
|
|
151
|
+
clickAndDragText: '點擊上方“選擇文件”或將文件拖拽到此區域',
|
|
152
|
+
},
|
|
153
|
+
file: {
|
|
154
|
+
fileNameText: '文件名',
|
|
155
|
+
fileSizeText: '文件大小',
|
|
156
|
+
fileStatusText: '狀態',
|
|
157
|
+
fileOperationText: '操作',
|
|
158
|
+
fileOperationDateText: '上傳日期',
|
|
159
|
+
},
|
|
160
|
+
progress: {
|
|
161
|
+
uploadingText: '正在上傳',
|
|
162
|
+
waitingText: '等待上傳',
|
|
163
|
+
failText: '上傳失敗',
|
|
164
|
+
successText: '上傳成功',
|
|
165
|
+
},
|
|
166
|
+
},
|
|
167
|
+
form: {
|
|
168
|
+
errorMessage: {
|
|
169
|
+
date: '請輸入正確的${name}',
|
|
170
|
+
url: '請輸入正確的${name}',
|
|
171
|
+
whitespace: '${name}不能為空',
|
|
172
|
+
required: '${name}必填',
|
|
173
|
+
max: '${name}字符長度不能超過 ${validate} 個字符,一個中文等於兩個字符',
|
|
174
|
+
min: '${name}字符長度不能少於 ${validate} 個字符,一個中文等於兩個字符',
|
|
175
|
+
len: '${name}字符長度必須是 ${validate}',
|
|
176
|
+
enum: '${name}只能是${validate}等',
|
|
177
|
+
idcard: '請輸入正確的${name}',
|
|
178
|
+
telnumber: '請輸入正確的${name}',
|
|
179
|
+
pattern: '請輸入正確的${name}',
|
|
180
|
+
validator: '${name}不符合要求',
|
|
181
|
+
boolean: '${name}數據類型必須是布林類型',
|
|
182
|
+
number: '${name}必須是數字',
|
|
183
|
+
},
|
|
184
|
+
colonText: ':',
|
|
185
|
+
},
|
|
186
|
+
input: {
|
|
187
|
+
placeholder: '請輸入',
|
|
188
|
+
},
|
|
189
|
+
list: {
|
|
190
|
+
loadingText: '正在載入中,請稍後',
|
|
191
|
+
loadingMoreText: '點擊載入更多',
|
|
192
|
+
},
|
|
193
|
+
alert: {
|
|
194
|
+
expandText: '展開更多',
|
|
195
|
+
collapseText: '收起',
|
|
196
|
+
},
|
|
197
|
+
anchor: {
|
|
198
|
+
copySuccessText: '連結複製成功',
|
|
199
|
+
copyText: '複製連結',
|
|
200
|
+
},
|
|
201
|
+
colorPicker: {
|
|
202
|
+
swatchColorTitle: '系統預設顔色',
|
|
203
|
+
recentColorTitle: '最近使用的顔色',
|
|
204
|
+
clearConfirmText: '確定清空最近使用的顔色嗎?',
|
|
205
|
+
singleColor: '單色',
|
|
206
|
+
gradientColor: '漸變'
|
|
207
|
+
},
|
|
208
|
+
guide: {
|
|
209
|
+
finishButtonProps: {
|
|
210
|
+
content: '完成',
|
|
211
|
+
theme: 'primary',
|
|
212
|
+
},
|
|
213
|
+
nextButtonProps: {
|
|
214
|
+
content: '下一步',
|
|
215
|
+
theme: 'primary',
|
|
216
|
+
},
|
|
217
|
+
skipButtonProps: {
|
|
218
|
+
content: '跳過',
|
|
219
|
+
theme: 'default',
|
|
220
|
+
},
|
|
221
|
+
prevButtonProps: {
|
|
222
|
+
content: '上一步',
|
|
223
|
+
theme: 'default',
|
|
224
|
+
},
|
|
225
|
+
},
|
|
226
|
+
image: {
|
|
227
|
+
errorText: '圖片無法顯示',
|
|
228
|
+
loadingText: '圖片載入中',
|
|
229
|
+
},
|
|
230
|
+
imageViewer: {
|
|
231
|
+
errorText: '圖片載入失敗,可嘗試重新載入',
|
|
232
|
+
mirrorTipText: '鏡像',
|
|
233
|
+
rotateTipText: '旋轉',
|
|
234
|
+
originalSizeTipText: '原始大小',
|
|
235
|
+
},
|
|
236
|
+
typography: {
|
|
237
|
+
expandText: '展開',
|
|
238
|
+
collapseText: '收起',
|
|
239
|
+
copiedText: '復製成功',
|
|
240
|
+
},
|
|
241
|
+
rate: {
|
|
242
|
+
rateText: ['極差', '失望', '一般', '滿意', '驚喜'],
|
|
243
|
+
},
|
|
244
|
+
empty: {
|
|
245
|
+
titleText: {
|
|
246
|
+
maintenance: '建設中',
|
|
247
|
+
success: '成功',
|
|
248
|
+
fail: '失敗',
|
|
249
|
+
empty: '暫無數據',
|
|
250
|
+
networkError: '網絡錯誤',
|
|
251
|
+
},
|
|
252
|
+
},
|
|
253
|
+
descriptions: {
|
|
254
|
+
colonText: ':',
|
|
255
|
+
},
|
|
256
|
+
chat: {
|
|
257
|
+
placeholder: '請輸入訊息...',
|
|
258
|
+
stopBtnText: '中止',
|
|
259
|
+
refreshTipText: '重新生成',
|
|
260
|
+
copyTipText: '複製',
|
|
261
|
+
likeTipText: '讚',
|
|
262
|
+
dislikeTipText: '踩',
|
|
263
|
+
copyCodeBtnText: '複製程式碼',
|
|
264
|
+
copyCodeSuccessText: '已複製',
|
|
265
|
+
clearHistoryBtnText: '清空歷史記錄',
|
|
266
|
+
copyTextSuccess: '已成功複製到剪貼簿',
|
|
267
|
+
copyTextFail: '複製到剪貼簿失敗',
|
|
268
|
+
confirmClearHistory: '確定要清空所有的消息嗎?',
|
|
269
|
+
loadingText: '思考中...',
|
|
270
|
+
loadingEndText: '已深度思考',
|
|
271
|
+
uploadImageText: '上傳圖片',
|
|
272
|
+
uploadAttachmentText: '上傳附件',
|
|
273
|
+
},
|
|
274
|
+
qrcode: {
|
|
275
|
+
expiredText: '二維碼過期',
|
|
276
|
+
refreshText: '點擊刷新',
|
|
277
|
+
scannedText: '已掃描',
|
|
278
|
+
}
|
|
279
|
+
} as const;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
/* eslint-disable no-template-curly-in-string */
|
|
2
|
+
// 文件有效,为国际化做准备
|
|
3
|
+
import 'dayjs/locale/ar';
|
|
4
|
+
|
|
5
|
+
export default {
|
|
6
|
+
actionSheet: {
|
|
7
|
+
cancel: 'الإلغاء',
|
|
8
|
+
},
|
|
9
|
+
calendar: {
|
|
10
|
+
confirm: 'أكد',
|
|
11
|
+
title: 'انتقِ التاريخ',
|
|
12
|
+
weekdays: ['يوم الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
|
13
|
+
monthTitle: '{شهر واحد} {سنة واحدة}',
|
|
14
|
+
months: [
|
|
15
|
+
'يناير',
|
|
16
|
+
'فبراير',
|
|
17
|
+
'مارس',
|
|
18
|
+
'أبريل',
|
|
19
|
+
'مايو',
|
|
20
|
+
'يونيو',
|
|
21
|
+
'يوليو',
|
|
22
|
+
'أغسطس',
|
|
23
|
+
'سبتمبر',
|
|
24
|
+
'أكتوبر',
|
|
25
|
+
'نوفمبر',
|
|
26
|
+
'ديسمبر',
|
|
27
|
+
],
|
|
28
|
+
},
|
|
29
|
+
cascader: {
|
|
30
|
+
title: 'العنوان',
|
|
31
|
+
placeholder: 'اختر الخيارات',
|
|
32
|
+
},
|
|
33
|
+
dropdownMenu: {
|
|
34
|
+
reset: 'إعادة الضبط',
|
|
35
|
+
confirm: 'أكد',
|
|
36
|
+
},
|
|
37
|
+
dateTimePicker: {
|
|
38
|
+
title: 'انتقِ التاريخ',
|
|
39
|
+
cancel: 'الإلغاء',
|
|
40
|
+
confirm: 'أكد',
|
|
41
|
+
format: 'DD-MM-YYYY',
|
|
42
|
+
yearLabel: 'سنة',
|
|
43
|
+
monthLabel: 'الشهر',
|
|
44
|
+
dateLabel: 'التاريخ',
|
|
45
|
+
hourLabel: 'الساعة',
|
|
46
|
+
minuteLabel: 'دقيقة',
|
|
47
|
+
secondLabel: 'ثانيا',
|
|
48
|
+
},
|
|
49
|
+
form: {
|
|
50
|
+
errorMessage: {
|
|
51
|
+
date: 'الرجاء إدخال ${name} الصحيح',
|
|
52
|
+
url: 'الرجاء إدخال ${name} الصحيح',
|
|
53
|
+
whitespace: 'لا يمكن أن يكون ${name} فارغًا',
|
|
54
|
+
required: 'مطلوب ${name}',
|
|
55
|
+
max: 'يمكن أن يحتوي ${name} على ما يصل إلى ${validate} حرفًا',
|
|
56
|
+
min: 'لا يمكن أن يكون ${name} أقل من ${validate} حرفًا',
|
|
57
|
+
len: 'يجب أن يتكون ${name} من أحرف ${validate} بالضبط',
|
|
58
|
+
enum: '${name} يجب أن يكون واحدًا من ${validate} ',
|
|
59
|
+
idcard: 'الرجاء إدخال ${name} الصحيح',
|
|
60
|
+
telnumber: 'الرجاء إدخال ${name} الصحيح',
|
|
61
|
+
pattern: 'الرجاء إدخال ${name} الصحيح',
|
|
62
|
+
validator: '${name} غير صالح',
|
|
63
|
+
boolean: '${name} ليس منطقيًا',
|
|
64
|
+
number: 'يجب أن يكون ${name} رقمًا',
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
picker: {
|
|
68
|
+
cancel: 'الإلغاء',
|
|
69
|
+
confirm: 'أكد',
|
|
70
|
+
},
|
|
71
|
+
pullDownRefresh: {
|
|
72
|
+
loadingTexts: ['اسحب للتحديث', 'مرتخية للتجديد', 'منعش', 'اكتمل التحديث'],
|
|
73
|
+
},
|
|
74
|
+
rate: {
|
|
75
|
+
valueText: '{القيمة} نتيجة',
|
|
76
|
+
noValueText: 'لا توجد نقاط',
|
|
77
|
+
},
|
|
78
|
+
tabBar: {
|
|
79
|
+
newsAriaLabel: 'هناك أخبار جديدة',
|
|
80
|
+
moreNewsAriaLabel: 'هناك الكثير من الأخبار السيئة',
|
|
81
|
+
haveMoreNewsAriaLabel: 'هناك { قيمة }+ أخبار',
|
|
82
|
+
haveNewsAriaLabel: 'هناك { قيمة } أخبار',
|
|
83
|
+
},
|
|
84
|
+
table: {
|
|
85
|
+
empty: 'البيانات الفارغة',
|
|
86
|
+
},
|
|
87
|
+
list: {
|
|
88
|
+
loading: 'التحميل...',
|
|
89
|
+
loadingMoreText: 'انقر لتحميل المزيد',
|
|
90
|
+
pulling: 'اسحب للتحديث...',
|
|
91
|
+
loosing: 'مرتخية للتجديد...',
|
|
92
|
+
success: 'تم التحديث بنجاح',
|
|
93
|
+
},
|
|
94
|
+
upload: {
|
|
95
|
+
progress: {
|
|
96
|
+
uploadingText: 'جارٍ التحميل...',
|
|
97
|
+
waitingText: 'الانتظار',
|
|
98
|
+
failText: 'فشل',
|
|
99
|
+
successText: 'النجاح',
|
|
100
|
+
},
|
|
101
|
+
},
|
|
102
|
+
guide: {
|
|
103
|
+
next: 'التالي',
|
|
104
|
+
skip: 'تخطي',
|
|
105
|
+
finish: 'أنهي',
|
|
106
|
+
back: 'العودة',
|
|
107
|
+
},
|
|
108
|
+
qrcode: {
|
|
109
|
+
expiredText: 'منتهي الصلاحية',
|
|
110
|
+
refreshText: 'ينعش',
|
|
111
|
+
scannedText: 'تم مسحها ضوئيًا',
|
|
112
|
+
},
|
|
113
|
+
};
|