@fox-js/foxui 4.0.1-7 → 4.0.1-71
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/dist/index.cjs.js +9 -19
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +19715 -13185
- package/dist/index.umd.js +10 -20
- package/dist/locale/index.esm.js +240 -171
- package/dist/locale/index.umd.js +3 -0
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +1884 -339
- package/package.json +14 -15
- package/dist/locale/index.cjs.js +0 -3
- package/dist/locale/index.d.ts +0 -398
- package/dist/style.esm.js +0 -7
package/dist/locale/index.esm.js
CHANGED
|
@@ -1,137 +1,160 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @fox-js/foxui-base v4.0.0
|
|
2
|
+
* @fox-js/foxui-base v4.0.0 Tue Dec 03 2024 21:53:43 GMT+0800 (中国标准时间)
|
|
3
3
|
*/
|
|
4
|
-
const
|
|
5
|
-
save: "
|
|
6
|
-
noData: "
|
|
7
|
-
confirmText: "
|
|
8
|
-
cancelText: "
|
|
9
|
-
clearText: "
|
|
10
|
-
defaultText: "
|
|
11
|
-
placeholder: "
|
|
12
|
-
select: "
|
|
4
|
+
const e = {
|
|
5
|
+
save: "保存",
|
|
6
|
+
noData: "暂无数据",
|
|
7
|
+
confirmText: "确认",
|
|
8
|
+
cancelText: "取消",
|
|
9
|
+
clearText: "清除",
|
|
10
|
+
defaultText: "默认",
|
|
11
|
+
placeholder: "请输入",
|
|
12
|
+
select: "请选择",
|
|
13
|
+
today: "今天",
|
|
14
|
+
weekdays: JSON.stringify(["日", "一", "二", "三", "四", "五", "六"]),
|
|
15
|
+
fullWeekdays: JSON.stringify(["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]),
|
|
13
16
|
dateUnit: {
|
|
14
|
-
day: "
|
|
15
|
-
year: "
|
|
16
|
-
month: "
|
|
17
|
-
hour: "
|
|
18
|
-
minute: "
|
|
19
|
-
seconds: "
|
|
17
|
+
day: "日",
|
|
18
|
+
year: "年",
|
|
19
|
+
month: "月",
|
|
20
|
+
hour: "时",
|
|
21
|
+
minute: "分",
|
|
22
|
+
seconds: "秒"
|
|
20
23
|
},
|
|
21
24
|
video: {
|
|
22
|
-
errorTip: "
|
|
23
|
-
clickRetry: "
|
|
25
|
+
errorTip: "视频加载失败",
|
|
26
|
+
clickRetry: "点击重试"
|
|
24
27
|
},
|
|
25
28
|
fixednav: {
|
|
26
|
-
activeText: "
|
|
27
|
-
unActiveText: "
|
|
29
|
+
activeText: "收起导航",
|
|
30
|
+
unActiveText: "快速导航"
|
|
28
31
|
},
|
|
29
32
|
pagination: {
|
|
30
|
-
prevText: "
|
|
31
|
-
nextText: "
|
|
33
|
+
prevText: "上一页",
|
|
34
|
+
nextText: "下一页"
|
|
32
35
|
},
|
|
33
36
|
calendarpane: {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
monthTitle: "{year}\u5E74{month}\u6708",
|
|
39
|
-
today: "\u4ECA\u5929"
|
|
37
|
+
endText: "结束",
|
|
38
|
+
startText: "开始",
|
|
39
|
+
title: "日历选择",
|
|
40
|
+
monthTitle: "{year}年{month}月"
|
|
40
41
|
},
|
|
41
42
|
shortpassword: {
|
|
42
|
-
title: "
|
|
43
|
-
desc: "
|
|
44
|
-
tips: "
|
|
43
|
+
title: "请输入密码",
|
|
44
|
+
desc: "您使用了虚拟资产,请进行验证",
|
|
45
|
+
tips: "忘记密码"
|
|
45
46
|
},
|
|
46
47
|
uploader: {
|
|
47
|
-
ready: "
|
|
48
|
-
readyUpload: "
|
|
49
|
-
waitingUpload: "
|
|
50
|
-
uploading: "
|
|
51
|
-
success: "
|
|
52
|
-
error: "
|
|
48
|
+
ready: "准备完成",
|
|
49
|
+
readyUpload: "准备上传",
|
|
50
|
+
waitingUpload: "等待上传",
|
|
51
|
+
uploading: "上传中",
|
|
52
|
+
success: "上传成功",
|
|
53
|
+
error: "上传失败"
|
|
53
54
|
},
|
|
54
55
|
countdown: {
|
|
55
|
-
day: "
|
|
56
|
-
hour: "
|
|
57
|
-
minute: "
|
|
58
|
-
second: "
|
|
56
|
+
day: "天",
|
|
57
|
+
hour: "时",
|
|
58
|
+
minute: "分",
|
|
59
|
+
second: "秒"
|
|
59
60
|
},
|
|
60
61
|
empty: {
|
|
61
|
-
description: "
|
|
62
|
+
description: "暂无数据"
|
|
62
63
|
},
|
|
63
64
|
address: {
|
|
64
|
-
selectRegion: "
|
|
65
|
-
deliveryTo: "
|
|
66
|
-
chooseAnotherAddress: "
|
|
65
|
+
selectRegion: "请选择所在地区",
|
|
66
|
+
deliveryTo: "配送至",
|
|
67
|
+
chooseAnotherAddress: "选择其他地址"
|
|
67
68
|
},
|
|
68
69
|
signature: {
|
|
69
|
-
reSign: "
|
|
70
|
-
unSupportTpl: "
|
|
70
|
+
reSign: "重签",
|
|
71
|
+
unSupportTpl: "对不起,当前浏览器不支持Canvas,无法使用本控件!"
|
|
71
72
|
},
|
|
72
73
|
ecard: {
|
|
73
|
-
chooseText: "
|
|
74
|
-
otherValueText: "
|
|
75
|
-
placeholder: "
|
|
74
|
+
chooseText: "请选择电子卡面值",
|
|
75
|
+
otherValueText: "其他面值",
|
|
76
|
+
placeholder: "请输入1-5000整数"
|
|
76
77
|
},
|
|
77
78
|
timeselect: {
|
|
78
|
-
|
|
79
|
+
pickupTime: "取件时间"
|
|
79
80
|
},
|
|
80
81
|
sku: {
|
|
81
|
-
buyText: "
|
|
82
|
-
stepperTitle: "
|
|
83
|
-
addCartText: "
|
|
82
|
+
buyText: "立即购买",
|
|
83
|
+
stepperTitle: "购买数量",
|
|
84
|
+
addCartText: "加入购物车"
|
|
84
85
|
},
|
|
85
86
|
skuheader: {
|
|
86
|
-
idText: "
|
|
87
|
+
idText: "商品编号"
|
|
87
88
|
},
|
|
88
89
|
addresslist: {
|
|
89
|
-
addAddress: "
|
|
90
|
+
addAddress: "新建地址",
|
|
91
|
+
default: "默认"
|
|
90
92
|
},
|
|
91
93
|
comment: {
|
|
92
|
-
complaintsText: "
|
|
93
|
-
additionalReview: "
|
|
94
|
-
additionalImages: "{0}
|
|
94
|
+
complaintsText: "我要投诉",
|
|
95
|
+
additionalReview: "购买{0}天后追评",
|
|
96
|
+
additionalImages: "{0}张追评图片"
|
|
95
97
|
},
|
|
96
98
|
infiniteloading: {
|
|
97
|
-
loading: "
|
|
98
|
-
|
|
99
|
-
|
|
99
|
+
loading: "加载中...",
|
|
100
|
+
pullText: "松开刷新",
|
|
101
|
+
loadMoreText: "哎呀,这里是底部了啦"
|
|
102
|
+
},
|
|
103
|
+
pullrefresh: {
|
|
104
|
+
pullingText: "下拉刷新",
|
|
105
|
+
loosingText: "释放刷新",
|
|
106
|
+
loadingText: "加载中..."
|
|
100
107
|
},
|
|
101
108
|
datepicker: {
|
|
102
|
-
year: "
|
|
103
|
-
month: "
|
|
104
|
-
day: "
|
|
105
|
-
hour: "
|
|
106
|
-
|
|
107
|
-
seconds: "
|
|
109
|
+
year: "年",
|
|
110
|
+
month: "月",
|
|
111
|
+
day: "日",
|
|
112
|
+
hour: "时",
|
|
113
|
+
minute: "分",
|
|
114
|
+
seconds: "秒"
|
|
108
115
|
},
|
|
109
116
|
audiooperate: {
|
|
110
|
-
back: "
|
|
111
|
-
start: "
|
|
112
|
-
pause: "
|
|
113
|
-
forward: "
|
|
114
|
-
mute: "
|
|
117
|
+
back: "倒退",
|
|
118
|
+
start: "开始",
|
|
119
|
+
pause: "暂停",
|
|
120
|
+
forward: "快进",
|
|
121
|
+
mute: "静音"
|
|
115
122
|
},
|
|
116
123
|
picker: {
|
|
117
|
-
title: "
|
|
124
|
+
title: "请选择"
|
|
118
125
|
},
|
|
119
126
|
pickeritem: {
|
|
120
|
-
placeholder: "
|
|
127
|
+
placeholder: "请选择"
|
|
121
128
|
},
|
|
122
129
|
dateitem: {
|
|
123
|
-
placeholder: "
|
|
130
|
+
placeholder: "请选择"
|
|
124
131
|
},
|
|
125
132
|
cascaderitem: {
|
|
126
|
-
placeholder: "
|
|
133
|
+
placeholder: "请选择"
|
|
127
134
|
},
|
|
128
135
|
calendaritem: {
|
|
129
|
-
placeholder: "
|
|
136
|
+
placeholder: "请选择"
|
|
137
|
+
},
|
|
138
|
+
linkitem: {
|
|
139
|
+
placeholder: ""
|
|
130
140
|
},
|
|
131
141
|
numberkeyboard: {
|
|
132
|
-
confirmText: "
|
|
142
|
+
confirmText: "完成"
|
|
143
|
+
},
|
|
144
|
+
actionsheetitem: {
|
|
145
|
+
placeholder: "请选择"
|
|
146
|
+
},
|
|
147
|
+
actionsheetpane: {
|
|
148
|
+
title: "请选择",
|
|
149
|
+
loadText: "加载中...",
|
|
150
|
+
loadMoreText: "无更多数据",
|
|
151
|
+
seachPlaceholder: "请输入关键字"
|
|
152
|
+
},
|
|
153
|
+
messagebox: {
|
|
154
|
+
confirmButtonText: "确定",
|
|
155
|
+
cancelButtonText: "取消"
|
|
133
156
|
}
|
|
134
|
-
},
|
|
157
|
+
}, t = {
|
|
135
158
|
save: "Save",
|
|
136
159
|
noData: "No Data",
|
|
137
160
|
confirmText: "Confirm",
|
|
@@ -140,6 +163,9 @@ const u = {
|
|
|
140
163
|
defaultText: "Default",
|
|
141
164
|
placeholder: "Placeholder",
|
|
142
165
|
select: "Select",
|
|
166
|
+
today: "Today",
|
|
167
|
+
weekdays: JSON.stringify(["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]),
|
|
168
|
+
fullWeekdays: JSON.stringify(["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]),
|
|
143
169
|
dateUnit: {
|
|
144
170
|
day: "Day",
|
|
145
171
|
year: "Year",
|
|
@@ -161,12 +187,10 @@ const u = {
|
|
|
161
187
|
nextText: "Next"
|
|
162
188
|
},
|
|
163
189
|
calendarpane: {
|
|
164
|
-
weekdays: JSON.stringify(["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]),
|
|
165
190
|
endText: "End",
|
|
166
191
|
startText: "Start",
|
|
167
192
|
title: "Calendar",
|
|
168
|
-
monthTitle: "{year}/{month}"
|
|
169
|
-
today: "Today"
|
|
193
|
+
monthTitle: "{year}/{month}"
|
|
170
194
|
},
|
|
171
195
|
shortpassword: {
|
|
172
196
|
title: "Please input a password",
|
|
@@ -205,7 +229,7 @@ const u = {
|
|
|
205
229
|
placeholder: "Placeholder"
|
|
206
230
|
},
|
|
207
231
|
timeselect: {
|
|
208
|
-
|
|
232
|
+
pickupTime: "Pickup Time"
|
|
209
233
|
},
|
|
210
234
|
sku: {
|
|
211
235
|
buyText: "Buy Now",
|
|
@@ -216,7 +240,8 @@ const u = {
|
|
|
216
240
|
idText: "Sku Number"
|
|
217
241
|
},
|
|
218
242
|
addresslist: {
|
|
219
|
-
addAddress: "Add New Address"
|
|
243
|
+
addAddress: "Add New Address",
|
|
244
|
+
default: "default"
|
|
220
245
|
},
|
|
221
246
|
comment: {
|
|
222
247
|
complaintsText: "I have a complaint",
|
|
@@ -225,15 +250,20 @@ const u = {
|
|
|
225
250
|
},
|
|
226
251
|
infiniteloading: {
|
|
227
252
|
loading: "Loading...",
|
|
228
|
-
|
|
229
|
-
|
|
253
|
+
pullText: "Loose to refresh",
|
|
254
|
+
loadMoreText: "Oops, this is the bottom"
|
|
255
|
+
},
|
|
256
|
+
pullrefresh: {
|
|
257
|
+
pullingText: "Pull to refresh...",
|
|
258
|
+
loosingText: "Loose to refresh...",
|
|
259
|
+
loadingText: "Loading..."
|
|
230
260
|
},
|
|
231
261
|
datepicker: {
|
|
232
262
|
year: "Year",
|
|
233
263
|
month: "Month",
|
|
234
264
|
day: "Day",
|
|
235
265
|
hour: "Hour",
|
|
236
|
-
|
|
266
|
+
minute: "Minute",
|
|
237
267
|
seconds: "Second"
|
|
238
268
|
},
|
|
239
269
|
audiooperate: {
|
|
@@ -258,150 +288,189 @@ const u = {
|
|
|
258
288
|
calendaritem: {
|
|
259
289
|
placeholder: "Select"
|
|
260
290
|
},
|
|
291
|
+
linkitem: {
|
|
292
|
+
placeholder: ""
|
|
293
|
+
},
|
|
261
294
|
numberkeyboard: {
|
|
262
295
|
confirmText: "Done"
|
|
296
|
+
},
|
|
297
|
+
actionsheetitem: {
|
|
298
|
+
placeholder: "Select"
|
|
299
|
+
},
|
|
300
|
+
actionsheetpane: {
|
|
301
|
+
title: "Select",
|
|
302
|
+
loadText: "Loading",
|
|
303
|
+
loadMoreText: "No more data",
|
|
304
|
+
seachPlaceholder: "keywords"
|
|
305
|
+
},
|
|
306
|
+
messagebox: {
|
|
307
|
+
confirmButtonText: "Confirm",
|
|
308
|
+
cancelButtonText: "Cancel"
|
|
263
309
|
}
|
|
264
|
-
},
|
|
265
|
-
save: "
|
|
266
|
-
noData: "
|
|
267
|
-
confirmText: "
|
|
268
|
-
cancelText: "
|
|
269
|
-
clearText: "
|
|
270
|
-
defaultText: "
|
|
271
|
-
placeholder: "
|
|
272
|
-
select: "
|
|
310
|
+
}, a = {
|
|
311
|
+
save: "保存",
|
|
312
|
+
noData: "暫無數據",
|
|
313
|
+
confirmText: "確認",
|
|
314
|
+
cancelText: "取消",
|
|
315
|
+
clearText: "清除",
|
|
316
|
+
defaultText: "默认",
|
|
317
|
+
placeholder: "請輸入",
|
|
318
|
+
select: "請選擇",
|
|
319
|
+
today: "今天",
|
|
320
|
+
weekdays: JSON.stringify(["日", "一", "二", "三", "四", "五", "六"]),
|
|
321
|
+
fullWeekdays: JSON.stringify(["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]),
|
|
273
322
|
dateUnit: {
|
|
274
|
-
day: "
|
|
275
|
-
year: "
|
|
276
|
-
month: "
|
|
277
|
-
hour: "
|
|
278
|
-
minute: "
|
|
279
|
-
seconds: "
|
|
323
|
+
day: "日",
|
|
324
|
+
year: "年",
|
|
325
|
+
month: "月",
|
|
326
|
+
hour: "时",
|
|
327
|
+
minute: "分",
|
|
328
|
+
seconds: "秒"
|
|
280
329
|
},
|
|
281
330
|
video: {
|
|
282
|
-
errorTip: "
|
|
283
|
-
clickRetry: "
|
|
331
|
+
errorTip: "視頻加載失敗",
|
|
332
|
+
clickRetry: "點擊重試"
|
|
284
333
|
},
|
|
285
334
|
fixednav: {
|
|
286
|
-
activeText: "
|
|
287
|
-
unActiveText: "
|
|
335
|
+
activeText: "收起導航",
|
|
336
|
+
unActiveText: "快速導航"
|
|
288
337
|
},
|
|
289
338
|
pagination: {
|
|
290
|
-
prevText: "
|
|
291
|
-
nextText: "
|
|
339
|
+
prevText: "上一頁",
|
|
340
|
+
nextText: "下一頁"
|
|
292
341
|
},
|
|
293
342
|
calendarpane: {
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
monthTitle: "{year}\u5E74{month}\u6708",
|
|
299
|
-
today: "\u4ECA\u5929"
|
|
343
|
+
endText: "結束",
|
|
344
|
+
startText: "開始",
|
|
345
|
+
title: "行事曆選擇",
|
|
346
|
+
monthTitle: "{year}年{month}月"
|
|
300
347
|
},
|
|
301
348
|
shortpassword: {
|
|
302
|
-
title: "
|
|
303
|
-
desc: "
|
|
304
|
-
tips: "
|
|
349
|
+
title: "請輸入密碼",
|
|
350
|
+
desc: "您使用了虛擬資產,請進行驗證",
|
|
351
|
+
tips: "忘記密碼"
|
|
305
352
|
},
|
|
306
353
|
uploader: {
|
|
307
|
-
ready: "
|
|
308
|
-
readyUpload: "
|
|
309
|
-
waitingUpload: "
|
|
310
|
-
uploading: "
|
|
311
|
-
success: "
|
|
312
|
-
error: "
|
|
354
|
+
ready: "準備完成",
|
|
355
|
+
readyUpload: "準備上傳",
|
|
356
|
+
waitingUpload: "等待上傳",
|
|
357
|
+
uploading: "上傳中",
|
|
358
|
+
success: "上傳成功",
|
|
359
|
+
error: "上傳失敗"
|
|
313
360
|
},
|
|
314
361
|
countdown: {
|
|
315
|
-
day: "
|
|
316
|
-
hour: "
|
|
317
|
-
minute: "
|
|
318
|
-
second: "
|
|
362
|
+
day: "天",
|
|
363
|
+
hour: "時",
|
|
364
|
+
minute: "分",
|
|
365
|
+
second: "秒"
|
|
319
366
|
},
|
|
320
367
|
empty: {
|
|
321
|
-
description: "
|
|
368
|
+
description: "暫無數據"
|
|
322
369
|
},
|
|
323
370
|
address: {
|
|
324
|
-
selectRegion: "
|
|
325
|
-
deliveryTo: "
|
|
326
|
-
chooseAnotherAddress: "
|
|
371
|
+
selectRegion: "請選擇所在地區",
|
|
372
|
+
deliveryTo: "配送至",
|
|
373
|
+
chooseAnotherAddress: "選擇其他地址"
|
|
327
374
|
},
|
|
328
375
|
signature: {
|
|
329
|
-
reSign: "
|
|
330
|
-
unSupportTpl: "
|
|
376
|
+
reSign: "重簽",
|
|
377
|
+
unSupportTpl: "對不起,當前瀏覽器不支持Canvas,無法使用本控制項!"
|
|
331
378
|
},
|
|
332
379
|
ecard: {
|
|
333
|
-
chooseText: "
|
|
334
|
-
otherValueText: "
|
|
335
|
-
placeholder: "
|
|
380
|
+
chooseText: "請選擇電子卡面值",
|
|
381
|
+
otherValueText: "其他面值",
|
|
382
|
+
placeholder: "請輸入1-5000整數"
|
|
336
383
|
},
|
|
337
384
|
timeselect: {
|
|
338
|
-
|
|
385
|
+
pickupTime: "取件時間"
|
|
339
386
|
},
|
|
340
387
|
sku: {
|
|
341
|
-
buyText: "
|
|
342
|
-
stepperTitle: "
|
|
343
|
-
addCartText: "
|
|
388
|
+
buyText: "立即購買",
|
|
389
|
+
stepperTitle: "購買數量",
|
|
390
|
+
addCartText: "加入購物車"
|
|
344
391
|
},
|
|
345
392
|
skuheader: {
|
|
346
|
-
idText: "
|
|
393
|
+
idText: "商品編號"
|
|
347
394
|
},
|
|
348
395
|
addresslist: {
|
|
349
|
-
addAddress: "
|
|
396
|
+
addAddress: "新建地址",
|
|
397
|
+
default: "默认"
|
|
350
398
|
},
|
|
351
399
|
comment: {
|
|
352
|
-
complaintsText: "
|
|
353
|
-
additionalReview: "
|
|
354
|
-
additionalImages: "{0}
|
|
400
|
+
complaintsText: "我要投訴",
|
|
401
|
+
additionalReview: "購買{0}天後追評",
|
|
402
|
+
additionalImages: "{0}張追評圖片"
|
|
355
403
|
},
|
|
356
404
|
infiniteloading: {
|
|
357
|
-
loading: "
|
|
358
|
-
|
|
359
|
-
|
|
405
|
+
loading: "加載中...",
|
|
406
|
+
pullText: "鬆開刷新",
|
|
407
|
+
loadMoreText: "哎呀,這裡是底部了啦"
|
|
408
|
+
},
|
|
409
|
+
pullrefresh: {
|
|
410
|
+
pullingText: "下拉刷新",
|
|
411
|
+
loosingText: "釋放刷新",
|
|
412
|
+
loadingText: "加載中..."
|
|
360
413
|
},
|
|
361
414
|
datepicker: {
|
|
362
|
-
year: "
|
|
363
|
-
month: "
|
|
364
|
-
day: "
|
|
365
|
-
hour: "
|
|
366
|
-
|
|
367
|
-
seconds: "
|
|
415
|
+
year: "年",
|
|
416
|
+
month: "月",
|
|
417
|
+
day: "日",
|
|
418
|
+
hour: "時",
|
|
419
|
+
minute: "分",
|
|
420
|
+
seconds: "秒"
|
|
368
421
|
},
|
|
369
422
|
audiooperate: {
|
|
370
|
-
back: "
|
|
371
|
-
start: "
|
|
372
|
-
pause: "
|
|
373
|
-
forward: "
|
|
374
|
-
mute: "
|
|
423
|
+
back: "倒退",
|
|
424
|
+
start: "開始",
|
|
425
|
+
pause: "暫停",
|
|
426
|
+
forward: "快進",
|
|
427
|
+
mute: "靜音"
|
|
375
428
|
},
|
|
376
429
|
picker: {
|
|
377
|
-
title: "
|
|
430
|
+
title: "請選擇"
|
|
378
431
|
},
|
|
379
432
|
pickeritem: {
|
|
380
|
-
placeholder: "
|
|
433
|
+
placeholder: "請選擇"
|
|
381
434
|
},
|
|
382
435
|
dateitem: {
|
|
383
|
-
placeholder: "
|
|
436
|
+
placeholder: "請選擇"
|
|
384
437
|
},
|
|
385
438
|
cascaderitem: {
|
|
386
|
-
placeholder: "
|
|
439
|
+
placeholder: "請選擇"
|
|
387
440
|
},
|
|
388
441
|
calendaritem: {
|
|
389
|
-
placeholder: "
|
|
442
|
+
placeholder: "請選擇"
|
|
443
|
+
},
|
|
444
|
+
linkitem: {
|
|
445
|
+
placeholder: ""
|
|
390
446
|
},
|
|
391
447
|
numberkeyboard: {
|
|
392
|
-
confirmText: "
|
|
448
|
+
confirmText: "完成"
|
|
449
|
+
},
|
|
450
|
+
actionsheetitem: {
|
|
451
|
+
placeholder: "請選擇"
|
|
452
|
+
},
|
|
453
|
+
actionsheetpane: {
|
|
454
|
+
title: "請選擇",
|
|
455
|
+
loadText: "加載中...",
|
|
456
|
+
loadMoreText: "無更多數據",
|
|
457
|
+
seachPlaceholder: "請輸入關鍵字"
|
|
458
|
+
},
|
|
459
|
+
messagebox: {
|
|
460
|
+
confirmButtonText: "確認",
|
|
461
|
+
cancelButtonText: "取消"
|
|
393
462
|
}
|
|
394
|
-
},
|
|
463
|
+
}, o = {
|
|
395
464
|
zh_CN: {
|
|
396
|
-
...
|
|
465
|
+
...e
|
|
397
466
|
},
|
|
398
467
|
en_US: {
|
|
399
|
-
...
|
|
468
|
+
...t
|
|
400
469
|
},
|
|
401
470
|
zh_TW: {
|
|
402
|
-
...
|
|
471
|
+
...a
|
|
403
472
|
}
|
|
404
473
|
};
|
|
405
474
|
export {
|
|
406
|
-
|
|
475
|
+
o as default
|
|
407
476
|
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
(function(e,t){typeof exports=="object"&&typeof module<"u"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis<"u"?globalThis:e||self,e.locale=t())})(this,function(){"use strict";/*!
|
|
2
|
+
* @fox-js/foxui-base v4.0.0 Tue Dec 03 2024 21:53:43 GMT+0800 (中国标准时间)
|
|
3
|
+
*/const e={save:"保存",noData:"暂无数据",confirmText:"确认",cancelText:"取消",clearText:"清除",defaultText:"默认",placeholder:"请输入",select:"请选择",today:"今天",weekdays:JSON.stringify(["日","一","二","三","四","五","六"]),fullWeekdays:JSON.stringify(["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]),dateUnit:{day:"日",year:"年",month:"月",hour:"时",minute:"分",seconds:"秒"},video:{errorTip:"视频加载失败",clickRetry:"点击重试"},fixednav:{activeText:"收起导航",unActiveText:"快速导航"},pagination:{prevText:"上一页",nextText:"下一页"},calendarpane:{endText:"结束",startText:"开始",title:"日历选择",monthTitle:"{year}年{month}月"},shortpassword:{title:"请输入密码",desc:"您使用了虚拟资产,请进行验证",tips:"忘记密码"},uploader:{ready:"准备完成",readyUpload:"准备上传",waitingUpload:"等待上传",uploading:"上传中",success:"上传成功",error:"上传失败"},countdown:{day:"天",hour:"时",minute:"分",second:"秒"},empty:{description:"暂无数据"},address:{selectRegion:"请选择所在地区",deliveryTo:"配送至",chooseAnotherAddress:"选择其他地址"},signature:{reSign:"重签",unSupportTpl:"对不起,当前浏览器不支持Canvas,无法使用本控件!"},ecard:{chooseText:"请选择电子卡面值",otherValueText:"其他面值",placeholder:"请输入1-5000整数"},timeselect:{pickupTime:"取件时间"},sku:{buyText:"立即购买",stepperTitle:"购买数量",addCartText:"加入购物车"},skuheader:{idText:"商品编号"},addresslist:{addAddress:"新建地址",default:"默认"},comment:{complaintsText:"我要投诉",additionalReview:"购买{0}天后追评",additionalImages:"{0}张追评图片"},infiniteloading:{loading:"加载中...",pullText:"松开刷新",loadMoreText:"哎呀,这里是底部了啦"},pullrefresh:{pullingText:"下拉刷新",loosingText:"释放刷新",loadingText:"加载中..."},datepicker:{year:"年",month:"月",day:"日",hour:"时",minute:"分",seconds:"秒"},audiooperate:{back:"倒退",start:"开始",pause:"暂停",forward:"快进",mute:"静音"},picker:{title:"请选择"},pickeritem:{placeholder:"请选择"},dateitem:{placeholder:"请选择"},cascaderitem:{placeholder:"请选择"},calendaritem:{placeholder:"请选择"},linkitem:{placeholder:""},numberkeyboard:{confirmText:"完成"},actionsheetitem:{placeholder:"请选择"},actionsheetpane:{title:"请选择",loadText:"加载中...",loadMoreText:"无更多数据",seachPlaceholder:"请输入关键字"},messagebox:{confirmButtonText:"确定",cancelButtonText:"取消"}},t={save:"Save",noData:"No Data",confirmText:"Confirm",cancelText:"Cancel",clearText:"Clear",defaultText:"Default",placeholder:"Placeholder",select:"Select",today:"Today",weekdays:JSON.stringify(["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]),fullWeekdays:JSON.stringify(["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]),dateUnit:{day:"Day",year:"Year",month:"Month",hour:"Hour",minute:"Minute",seconds:"Second"},video:{errorTip:"Error Tip",clickRetry:"Click Retry"},fixednav:{activeText:"Close Nav",unActiveText:"Open Nav"},pagination:{prevText:"Previous",nextText:"Next"},calendarpane:{endText:"End",startText:"Start",title:"Calendar",monthTitle:"{year}/{month}"},shortpassword:{title:"Please input a password",desc:"Verify",tips:"Forget password"},uploader:{ready:"Ready",readyUpload:"Ready to upload",waitingUpload:"Waiting for upload",uploading:"Uploading",success:"Upload successful",error:"Upload failed"},countdown:{day:" Day ",hour:" Hour ",minute:" Minute ",second:" Second "},empty:{description:"No Data"},address:{selectRegion:"Select Region",deliveryTo:"Delivery To",chooseAnotherAddress:"Choose Another Address"},signature:{reSign:"Re Sign",unSupportTpl:"Sorry, the current browser doesn't support canvas, so we can't use this control!"},ecard:{chooseText:"Select",otherValueText:"Other Value",placeholder:"Placeholder"},timeselect:{pickupTime:"Pickup Time"},sku:{buyText:"Buy Now",stepperTitle:"Buy Number",addCartText:"Add to Cart"},skuheader:{idText:"Sku Number"},addresslist:{addAddress:"Add New Address",default:"default"},comment:{complaintsText:"I have a complaint",additionalReview:"Review after {0} days of purchase",additionalImages:"There are {0} follow-up comments"},infiniteloading:{loading:"Loading...",pullText:"Loose to refresh",loadMoreText:"Oops, this is the bottom"},pullrefresh:{pullingText:"Pull to refresh...",loosingText:"Loose to refresh...",loadingText:"Loading..."},datepicker:{year:"Year",month:"Month",day:"Day",hour:"Hour",minute:"Minute",seconds:"Second"},audiooperate:{back:"Back",start:"Start",pause:"Pause",forward:"Forward",mute:"Mute"},picker:{title:"Select"},pickeritem:{placeholder:"Select"},dateitem:{placeholder:"Select"},cascaderitem:{placeholder:"Select"},calendaritem:{placeholder:"Select"},linkitem:{placeholder:""},numberkeyboard:{confirmText:"Done"},actionsheetitem:{placeholder:"Select"},actionsheetpane:{title:"Select",loadText:"Loading",loadMoreText:"No more data",seachPlaceholder:"keywords"},messagebox:{confirmButtonText:"Confirm",cancelButtonText:"Cancel"}},a={save:"保存",noData:"暫無數據",confirmText:"確認",cancelText:"取消",clearText:"清除",defaultText:"默认",placeholder:"請輸入",select:"請選擇",today:"今天",weekdays:JSON.stringify(["日","一","二","三","四","五","六"]),fullWeekdays:JSON.stringify(["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]),dateUnit:{day:"日",year:"年",month:"月",hour:"时",minute:"分",seconds:"秒"},video:{errorTip:"視頻加載失敗",clickRetry:"點擊重試"},fixednav:{activeText:"收起導航",unActiveText:"快速導航"},pagination:{prevText:"上一頁",nextText:"下一頁"},calendarpane:{endText:"結束",startText:"開始",title:"行事曆選擇",monthTitle:"{year}年{month}月"},shortpassword:{title:"請輸入密碼",desc:"您使用了虛擬資產,請進行驗證",tips:"忘記密碼"},uploader:{ready:"準備完成",readyUpload:"準備上傳",waitingUpload:"等待上傳",uploading:"上傳中",success:"上傳成功",error:"上傳失敗"},countdown:{day:"天",hour:"時",minute:"分",second:"秒"},empty:{description:"暫無數據"},address:{selectRegion:"請選擇所在地區",deliveryTo:"配送至",chooseAnotherAddress:"選擇其他地址"},signature:{reSign:"重簽",unSupportTpl:"對不起,當前瀏覽器不支持Canvas,無法使用本控制項!"},ecard:{chooseText:"請選擇電子卡面值",otherValueText:"其他面值",placeholder:"請輸入1-5000整數"},timeselect:{pickupTime:"取件時間"},sku:{buyText:"立即購買",stepperTitle:"購買數量",addCartText:"加入購物車"},skuheader:{idText:"商品編號"},addresslist:{addAddress:"新建地址",default:"默认"},comment:{complaintsText:"我要投訴",additionalReview:"購買{0}天後追評",additionalImages:"{0}張追評圖片"},infiniteloading:{loading:"加載中...",pullText:"鬆開刷新",loadMoreText:"哎呀,這裡是底部了啦"},pullrefresh:{pullingText:"下拉刷新",loosingText:"釋放刷新",loadingText:"加載中..."},datepicker:{year:"年",month:"月",day:"日",hour:"時",minute:"分",seconds:"秒"},audiooperate:{back:"倒退",start:"開始",pause:"暫停",forward:"快進",mute:"靜音"},picker:{title:"請選擇"},pickeritem:{placeholder:"請選擇"},dateitem:{placeholder:"請選擇"},cascaderitem:{placeholder:"請選擇"},calendaritem:{placeholder:"請選擇"},linkitem:{placeholder:""},numberkeyboard:{confirmText:"完成"},actionsheetitem:{placeholder:"請選擇"},actionsheetpane:{title:"請選擇",loadText:"加載中...",loadMoreText:"無更多數據",seachPlaceholder:"請輸入關鍵字"},messagebox:{confirmButtonText:"確認",cancelButtonText:"取消"}};return{zh_CN:{...e},en_US:{...t},zh_TW:{...a}}});
|