@fox-js/foxui 4.0.1-7 → 4.0.1-9
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 +13 -13
- package/dist/index.esm.js +7601 -7352
- package/dist/index.umd.js +14 -14
- package/dist/locale/index.esm.js +163 -163
- package/dist/locale/index.umd.js +3 -0
- package/dist/style.css +1 -1
- package/dist/style.esm.js +1 -1
- package/dist/types/index.d.ts +36 -34
- package/package.json +4 -4
- package/dist/locale/index.cjs.js +0 -3
package/dist/locale/index.esm.js
CHANGED
|
@@ -1,137 +1,137 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @fox-js/foxui-base v4.0.0
|
|
2
|
+
* @fox-js/foxui-base v4.0.0 Tue Jan 31 2023 14:16:09 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
13
|
dateUnit: {
|
|
14
|
-
day: "
|
|
15
|
-
year: "
|
|
16
|
-
month: "
|
|
17
|
-
hour: "
|
|
18
|
-
minute: "
|
|
19
|
-
seconds: "
|
|
14
|
+
day: "日",
|
|
15
|
+
year: "年",
|
|
16
|
+
month: "月",
|
|
17
|
+
hour: "时",
|
|
18
|
+
minute: "分",
|
|
19
|
+
seconds: "秒"
|
|
20
20
|
},
|
|
21
21
|
video: {
|
|
22
|
-
errorTip: "
|
|
23
|
-
clickRetry: "
|
|
22
|
+
errorTip: "视频加载失败",
|
|
23
|
+
clickRetry: "点击重试"
|
|
24
24
|
},
|
|
25
25
|
fixednav: {
|
|
26
|
-
activeText: "
|
|
27
|
-
unActiveText: "
|
|
26
|
+
activeText: "收起导航",
|
|
27
|
+
unActiveText: "快速导航"
|
|
28
28
|
},
|
|
29
29
|
pagination: {
|
|
30
|
-
prevText: "
|
|
31
|
-
nextText: "
|
|
30
|
+
prevText: "上一页",
|
|
31
|
+
nextText: "下一页"
|
|
32
32
|
},
|
|
33
33
|
calendarpane: {
|
|
34
|
-
weekdays: JSON.stringify(["
|
|
35
|
-
endText: "
|
|
36
|
-
startText: "
|
|
37
|
-
title: "
|
|
38
|
-
monthTitle: "{year}
|
|
39
|
-
today: "
|
|
34
|
+
weekdays: JSON.stringify(["日", "一", "二", "三", "四", "五", "六"]),
|
|
35
|
+
endText: "结束",
|
|
36
|
+
startText: "开始",
|
|
37
|
+
title: "日历选择",
|
|
38
|
+
monthTitle: "{year}年{month}月",
|
|
39
|
+
today: "今天"
|
|
40
40
|
},
|
|
41
41
|
shortpassword: {
|
|
42
|
-
title: "
|
|
43
|
-
desc: "
|
|
44
|
-
tips: "
|
|
42
|
+
title: "请输入密码",
|
|
43
|
+
desc: "您使用了虚拟资产,请进行验证",
|
|
44
|
+
tips: "忘记密码"
|
|
45
45
|
},
|
|
46
46
|
uploader: {
|
|
47
|
-
ready: "
|
|
48
|
-
readyUpload: "
|
|
49
|
-
waitingUpload: "
|
|
50
|
-
uploading: "
|
|
51
|
-
success: "
|
|
52
|
-
error: "
|
|
47
|
+
ready: "准备完成",
|
|
48
|
+
readyUpload: "准备上传",
|
|
49
|
+
waitingUpload: "等待上传",
|
|
50
|
+
uploading: "上传中",
|
|
51
|
+
success: "上传成功",
|
|
52
|
+
error: "上传失败"
|
|
53
53
|
},
|
|
54
54
|
countdown: {
|
|
55
|
-
day: "
|
|
56
|
-
hour: "
|
|
57
|
-
minute: "
|
|
58
|
-
second: "
|
|
55
|
+
day: "天",
|
|
56
|
+
hour: "时",
|
|
57
|
+
minute: "分",
|
|
58
|
+
second: "秒"
|
|
59
59
|
},
|
|
60
60
|
empty: {
|
|
61
|
-
description: "
|
|
61
|
+
description: "暂无数据"
|
|
62
62
|
},
|
|
63
63
|
address: {
|
|
64
|
-
selectRegion: "
|
|
65
|
-
deliveryTo: "
|
|
66
|
-
chooseAnotherAddress: "
|
|
64
|
+
selectRegion: "请选择所在地区",
|
|
65
|
+
deliveryTo: "配送至",
|
|
66
|
+
chooseAnotherAddress: "选择其他地址"
|
|
67
67
|
},
|
|
68
68
|
signature: {
|
|
69
|
-
reSign: "
|
|
70
|
-
unSupportTpl: "
|
|
69
|
+
reSign: "重签",
|
|
70
|
+
unSupportTpl: "对不起,当前浏览器不支持Canvas,无法使用本控件!"
|
|
71
71
|
},
|
|
72
72
|
ecard: {
|
|
73
|
-
chooseText: "
|
|
74
|
-
otherValueText: "
|
|
75
|
-
placeholder: "
|
|
73
|
+
chooseText: "请选择电子卡面值",
|
|
74
|
+
otherValueText: "其他面值",
|
|
75
|
+
placeholder: "请输入1-5000整数"
|
|
76
76
|
},
|
|
77
77
|
timeselect: {
|
|
78
|
-
title: "
|
|
78
|
+
title: "取件时间"
|
|
79
79
|
},
|
|
80
80
|
sku: {
|
|
81
|
-
buyText: "
|
|
82
|
-
stepperTitle: "
|
|
83
|
-
addCartText: "
|
|
81
|
+
buyText: "立即购买",
|
|
82
|
+
stepperTitle: "购买数量",
|
|
83
|
+
addCartText: "加入购物车"
|
|
84
84
|
},
|
|
85
85
|
skuheader: {
|
|
86
|
-
idText: "
|
|
86
|
+
idText: "商品编号"
|
|
87
87
|
},
|
|
88
88
|
addresslist: {
|
|
89
|
-
addAddress: "
|
|
89
|
+
addAddress: "新建地址"
|
|
90
90
|
},
|
|
91
91
|
comment: {
|
|
92
|
-
complaintsText: "
|
|
93
|
-
additionalReview: "
|
|
94
|
-
additionalImages: "{0}
|
|
92
|
+
complaintsText: "我要投诉",
|
|
93
|
+
additionalReview: "购买{0}天后追评",
|
|
94
|
+
additionalImages: "{0}张追评图片"
|
|
95
95
|
},
|
|
96
96
|
infiniteloading: {
|
|
97
|
-
loading: "
|
|
98
|
-
pullTxt: "
|
|
99
|
-
loadMoreTxt: "
|
|
97
|
+
loading: "加载中...",
|
|
98
|
+
pullTxt: "松开刷新",
|
|
99
|
+
loadMoreTxt: "哎呀,这里是底部了啦"
|
|
100
100
|
},
|
|
101
101
|
datepicker: {
|
|
102
|
-
year: "
|
|
103
|
-
month: "
|
|
104
|
-
day: "
|
|
105
|
-
hour: "
|
|
106
|
-
min: "
|
|
107
|
-
seconds: "
|
|
102
|
+
year: "年",
|
|
103
|
+
month: "月",
|
|
104
|
+
day: "日",
|
|
105
|
+
hour: "时",
|
|
106
|
+
min: "分",
|
|
107
|
+
seconds: "秒"
|
|
108
108
|
},
|
|
109
109
|
audiooperate: {
|
|
110
|
-
back: "
|
|
111
|
-
start: "
|
|
112
|
-
pause: "
|
|
113
|
-
forward: "
|
|
114
|
-
mute: "
|
|
110
|
+
back: "倒退",
|
|
111
|
+
start: "开始",
|
|
112
|
+
pause: "暂停",
|
|
113
|
+
forward: "快进",
|
|
114
|
+
mute: "静音"
|
|
115
115
|
},
|
|
116
116
|
picker: {
|
|
117
|
-
title: "
|
|
117
|
+
title: "请选择"
|
|
118
118
|
},
|
|
119
119
|
pickeritem: {
|
|
120
|
-
placeholder: "
|
|
120
|
+
placeholder: "请选择"
|
|
121
121
|
},
|
|
122
122
|
dateitem: {
|
|
123
|
-
placeholder: "
|
|
123
|
+
placeholder: "请选择"
|
|
124
124
|
},
|
|
125
125
|
cascaderitem: {
|
|
126
|
-
placeholder: "
|
|
126
|
+
placeholder: "请选择"
|
|
127
127
|
},
|
|
128
128
|
calendaritem: {
|
|
129
|
-
placeholder: "
|
|
129
|
+
placeholder: "请选择"
|
|
130
130
|
},
|
|
131
131
|
numberkeyboard: {
|
|
132
|
-
confirmText: "
|
|
132
|
+
confirmText: "完成"
|
|
133
133
|
}
|
|
134
|
-
},
|
|
134
|
+
}, t = {
|
|
135
135
|
save: "Save",
|
|
136
136
|
noData: "No Data",
|
|
137
137
|
confirmText: "Confirm",
|
|
@@ -261,147 +261,147 @@ const u = {
|
|
|
261
261
|
numberkeyboard: {
|
|
262
262
|
confirmText: "Done"
|
|
263
263
|
}
|
|
264
|
-
},
|
|
265
|
-
save: "
|
|
266
|
-
noData: "
|
|
267
|
-
confirmText: "
|
|
268
|
-
cancelText: "
|
|
269
|
-
clearText: "
|
|
270
|
-
defaultText: "
|
|
271
|
-
placeholder: "
|
|
272
|
-
select: "
|
|
264
|
+
}, a = {
|
|
265
|
+
save: "保存",
|
|
266
|
+
noData: "暫無數據",
|
|
267
|
+
confirmText: "確認",
|
|
268
|
+
cancelText: "取消",
|
|
269
|
+
clearText: "清除",
|
|
270
|
+
defaultText: "默认",
|
|
271
|
+
placeholder: "請輸入",
|
|
272
|
+
select: "請選擇",
|
|
273
273
|
dateUnit: {
|
|
274
|
-
day: "
|
|
275
|
-
year: "
|
|
276
|
-
month: "
|
|
277
|
-
hour: "
|
|
278
|
-
minute: "
|
|
279
|
-
seconds: "
|
|
274
|
+
day: "日",
|
|
275
|
+
year: "年",
|
|
276
|
+
month: "月",
|
|
277
|
+
hour: "时",
|
|
278
|
+
minute: "分",
|
|
279
|
+
seconds: "秒"
|
|
280
280
|
},
|
|
281
281
|
video: {
|
|
282
|
-
errorTip: "
|
|
283
|
-
clickRetry: "
|
|
282
|
+
errorTip: "視頻加載失敗",
|
|
283
|
+
clickRetry: "點擊重試"
|
|
284
284
|
},
|
|
285
285
|
fixednav: {
|
|
286
|
-
activeText: "
|
|
287
|
-
unActiveText: "
|
|
286
|
+
activeText: "收起導航",
|
|
287
|
+
unActiveText: "快速導航"
|
|
288
288
|
},
|
|
289
289
|
pagination: {
|
|
290
|
-
prevText: "
|
|
291
|
-
nextText: "
|
|
290
|
+
prevText: "上一頁",
|
|
291
|
+
nextText: "下一頁"
|
|
292
292
|
},
|
|
293
293
|
calendarpane: {
|
|
294
|
-
weekdays: JSON.stringify(["
|
|
295
|
-
endText: "
|
|
296
|
-
startText: "
|
|
297
|
-
title: "
|
|
298
|
-
monthTitle: "{year}
|
|
299
|
-
today: "
|
|
294
|
+
weekdays: JSON.stringify(["日", "一", "二", "三", "四", "五", "六"]),
|
|
295
|
+
endText: "結束",
|
|
296
|
+
startText: "開始",
|
|
297
|
+
title: "行事曆選擇",
|
|
298
|
+
monthTitle: "{year}年{month}月",
|
|
299
|
+
today: "今天"
|
|
300
300
|
},
|
|
301
301
|
shortpassword: {
|
|
302
|
-
title: "
|
|
303
|
-
desc: "
|
|
304
|
-
tips: "
|
|
302
|
+
title: "請輸入密碼",
|
|
303
|
+
desc: "您使用了虛擬資產,請進行驗證",
|
|
304
|
+
tips: "忘記密碼"
|
|
305
305
|
},
|
|
306
306
|
uploader: {
|
|
307
|
-
ready: "
|
|
308
|
-
readyUpload: "
|
|
309
|
-
waitingUpload: "
|
|
310
|
-
uploading: "
|
|
311
|
-
success: "
|
|
312
|
-
error: "
|
|
307
|
+
ready: "準備完成",
|
|
308
|
+
readyUpload: "準備上傳",
|
|
309
|
+
waitingUpload: "等待上傳",
|
|
310
|
+
uploading: "上傳中",
|
|
311
|
+
success: "上傳成功",
|
|
312
|
+
error: "上傳失敗"
|
|
313
313
|
},
|
|
314
314
|
countdown: {
|
|
315
|
-
day: "
|
|
316
|
-
hour: "
|
|
317
|
-
minute: "
|
|
318
|
-
second: "
|
|
315
|
+
day: "天",
|
|
316
|
+
hour: "時",
|
|
317
|
+
minute: "分",
|
|
318
|
+
second: "秒"
|
|
319
319
|
},
|
|
320
320
|
empty: {
|
|
321
|
-
description: "
|
|
321
|
+
description: "暫無數據"
|
|
322
322
|
},
|
|
323
323
|
address: {
|
|
324
|
-
selectRegion: "
|
|
325
|
-
deliveryTo: "
|
|
326
|
-
chooseAnotherAddress: "
|
|
324
|
+
selectRegion: "請選擇所在地區",
|
|
325
|
+
deliveryTo: "配送至",
|
|
326
|
+
chooseAnotherAddress: "選擇其他地址"
|
|
327
327
|
},
|
|
328
328
|
signature: {
|
|
329
|
-
reSign: "
|
|
330
|
-
unSupportTpl: "
|
|
329
|
+
reSign: "重簽",
|
|
330
|
+
unSupportTpl: "對不起,當前瀏覽器不支持Canvas,無法使用本控制項!"
|
|
331
331
|
},
|
|
332
332
|
ecard: {
|
|
333
|
-
chooseText: "
|
|
334
|
-
otherValueText: "
|
|
335
|
-
placeholder: "
|
|
333
|
+
chooseText: "請選擇電子卡面值",
|
|
334
|
+
otherValueText: "其他面值",
|
|
335
|
+
placeholder: "請輸入1-5000整數"
|
|
336
336
|
},
|
|
337
337
|
timeselect: {
|
|
338
|
-
title: "
|
|
338
|
+
title: "取件時間"
|
|
339
339
|
},
|
|
340
340
|
sku: {
|
|
341
|
-
buyText: "
|
|
342
|
-
stepperTitle: "
|
|
343
|
-
addCartText: "
|
|
341
|
+
buyText: "立即購買",
|
|
342
|
+
stepperTitle: "購買數量",
|
|
343
|
+
addCartText: "加入購物車"
|
|
344
344
|
},
|
|
345
345
|
skuheader: {
|
|
346
|
-
idText: "
|
|
346
|
+
idText: "商品編號"
|
|
347
347
|
},
|
|
348
348
|
addresslist: {
|
|
349
|
-
addAddress: "
|
|
349
|
+
addAddress: "新建地址"
|
|
350
350
|
},
|
|
351
351
|
comment: {
|
|
352
|
-
complaintsText: "
|
|
353
|
-
additionalReview: "
|
|
354
|
-
additionalImages: "{0}
|
|
352
|
+
complaintsText: "我要投訴",
|
|
353
|
+
additionalReview: "購買{0}天後追評",
|
|
354
|
+
additionalImages: "{0}張追評圖片"
|
|
355
355
|
},
|
|
356
356
|
infiniteloading: {
|
|
357
|
-
loading: "
|
|
358
|
-
pullTxt: "
|
|
359
|
-
loadMoreTxt: "
|
|
357
|
+
loading: "加載中...",
|
|
358
|
+
pullTxt: "鬆開刷新",
|
|
359
|
+
loadMoreTxt: "哎呀,這裡是底部了啦"
|
|
360
360
|
},
|
|
361
361
|
datepicker: {
|
|
362
|
-
year: "
|
|
363
|
-
month: "
|
|
364
|
-
day: "
|
|
365
|
-
hour: "
|
|
366
|
-
min: "
|
|
367
|
-
seconds: "
|
|
362
|
+
year: "年",
|
|
363
|
+
month: "月",
|
|
364
|
+
day: "日",
|
|
365
|
+
hour: "時",
|
|
366
|
+
min: "分",
|
|
367
|
+
seconds: "秒"
|
|
368
368
|
},
|
|
369
369
|
audiooperate: {
|
|
370
|
-
back: "
|
|
371
|
-
start: "
|
|
372
|
-
pause: "
|
|
373
|
-
forward: "
|
|
374
|
-
mute: "
|
|
370
|
+
back: "倒退",
|
|
371
|
+
start: "開始",
|
|
372
|
+
pause: "暫停",
|
|
373
|
+
forward: "快進",
|
|
374
|
+
mute: "靜音"
|
|
375
375
|
},
|
|
376
376
|
picker: {
|
|
377
|
-
title: "
|
|
377
|
+
title: "請選擇"
|
|
378
378
|
},
|
|
379
379
|
pickeritem: {
|
|
380
|
-
placeholder: "
|
|
380
|
+
placeholder: "請選擇"
|
|
381
381
|
},
|
|
382
382
|
dateitem: {
|
|
383
|
-
placeholder: "
|
|
383
|
+
placeholder: "請選擇"
|
|
384
384
|
},
|
|
385
385
|
cascaderitem: {
|
|
386
|
-
placeholder: "
|
|
386
|
+
placeholder: "請選擇"
|
|
387
387
|
},
|
|
388
388
|
calendaritem: {
|
|
389
|
-
placeholder: "
|
|
389
|
+
placeholder: "請選擇"
|
|
390
390
|
},
|
|
391
391
|
numberkeyboard: {
|
|
392
|
-
confirmText: "
|
|
392
|
+
confirmText: "完成"
|
|
393
393
|
}
|
|
394
|
-
},
|
|
394
|
+
}, o = {
|
|
395
395
|
zh_CN: {
|
|
396
|
-
...
|
|
396
|
+
...e
|
|
397
397
|
},
|
|
398
398
|
en_US: {
|
|
399
|
-
...
|
|
399
|
+
...t
|
|
400
400
|
},
|
|
401
401
|
zh_TW: {
|
|
402
|
-
...
|
|
402
|
+
...a
|
|
403
403
|
}
|
|
404
404
|
};
|
|
405
405
|
export {
|
|
406
|
-
|
|
406
|
+
o as default
|
|
407
407
|
};
|
|
@@ -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 Jan 31 2023 14:16:09 GMT+0800 (中国标准时间)
|
|
3
|
+
*/const e={save:"保存",noData:"暂无数据",confirmText:"确认",cancelText:"取消",clearText:"清除",defaultText:"默认",placeholder:"请输入",select:"请选择",dateUnit:{day:"日",year:"年",month:"月",hour:"时",minute:"分",seconds:"秒"},video:{errorTip:"视频加载失败",clickRetry:"点击重试"},fixednav:{activeText:"收起导航",unActiveText:"快速导航"},pagination:{prevText:"上一页",nextText:"下一页"},calendarpane:{weekdays:JSON.stringify(["日","一","二","三","四","五","六"]),endText:"结束",startText:"开始",title:"日历选择",monthTitle:"{year}年{month}月",today:"今天"},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:{title:"取件时间"},sku:{buyText:"立即购买",stepperTitle:"购买数量",addCartText:"加入购物车"},skuheader:{idText:"商品编号"},addresslist:{addAddress:"新建地址"},comment:{complaintsText:"我要投诉",additionalReview:"购买{0}天后追评",additionalImages:"{0}张追评图片"},infiniteloading:{loading:"加载中...",pullTxt:"松开刷新",loadMoreTxt:"哎呀,这里是底部了啦"},datepicker:{year:"年",month:"月",day:"日",hour:"时",min:"分",seconds:"秒"},audiooperate:{back:"倒退",start:"开始",pause:"暂停",forward:"快进",mute:"静音"},picker:{title:"请选择"},pickeritem:{placeholder:"请选择"},dateitem:{placeholder:"请选择"},cascaderitem:{placeholder:"请选择"},calendaritem:{placeholder:"请选择"},numberkeyboard:{confirmText:"完成"}},t={save:"Save",noData:"No Data",confirmText:"Confirm",cancelText:"Cancel",clearText:"Clear",defaultText:"Default",placeholder:"Placeholder",select:"Select",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:{weekdays:JSON.stringify(["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]),endText:"End",startText:"Start",title:"Calendar",monthTitle:"{year}/{month}",today:"Today"},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:{title:"Pickup Time"},sku:{buyText:"Buy Now",stepperTitle:"Buy Number",addCartText:"Add to Cart"},skuheader:{idText:"Sku Number"},addresslist:{addAddress:"Add New Address"},comment:{complaintsText:"I have a complaint",additionalReview:"Review after {0} days of purchase",additionalImages:"There are {0} follow-up comments"},infiniteloading:{loading:"Loading...",pullTxt:"Loose to refresh",loadMoreTxt:"Oops, this is the bottom"},datepicker:{year:"Year",month:"Month",day:"Day",hour:"Hour",min:"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"},numberkeyboard:{confirmText:"Done"}},a={save:"保存",noData:"暫無數據",confirmText:"確認",cancelText:"取消",clearText:"清除",defaultText:"默认",placeholder:"請輸入",select:"請選擇",dateUnit:{day:"日",year:"年",month:"月",hour:"时",minute:"分",seconds:"秒"},video:{errorTip:"視頻加載失敗",clickRetry:"點擊重試"},fixednav:{activeText:"收起導航",unActiveText:"快速導航"},pagination:{prevText:"上一頁",nextText:"下一頁"},calendarpane:{weekdays:JSON.stringify(["日","一","二","三","四","五","六"]),endText:"結束",startText:"開始",title:"行事曆選擇",monthTitle:"{year}年{month}月",today:"今天"},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:{title:"取件時間"},sku:{buyText:"立即購買",stepperTitle:"購買數量",addCartText:"加入購物車"},skuheader:{idText:"商品編號"},addresslist:{addAddress:"新建地址"},comment:{complaintsText:"我要投訴",additionalReview:"購買{0}天後追評",additionalImages:"{0}張追評圖片"},infiniteloading:{loading:"加載中...",pullTxt:"鬆開刷新",loadMoreTxt:"哎呀,這裡是底部了啦"},datepicker:{year:"年",month:"月",day:"日",hour:"時",min:"分",seconds:"秒"},audiooperate:{back:"倒退",start:"開始",pause:"暫停",forward:"快進",mute:"靜音"},picker:{title:"請選擇"},pickeritem:{placeholder:"請選擇"},dateitem:{placeholder:"請選擇"},cascaderitem:{placeholder:"請選擇"},calendaritem:{placeholder:"請選擇"},numberkeyboard:{confirmText:"完成"}};return{zh_CN:{...e},en_US:{...t},zh_TW:{...a}}});
|