@fox-js/foxui-pad 4.1.1-0 → 4.1.1-10
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 +28308 -4
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.esm.js +24494 -14793
- package/dist/index.esm.js.map +1 -0
- package/dist/index.umd.js +28309 -5
- package/dist/index.umd.js.map +1 -0
- package/dist/locale/index.esm.js +119 -24
- package/dist/locale/index.umd.js +1 -3
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +213 -113
- package/package.json +6 -2
package/dist/locale/index.esm.js
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* @fox-js/foxui-desktop v4.0.0 Thu Sep 26 2024 14:32:55 GMT+0800 (中国标准时间)
|
|
3
|
-
*/
|
|
4
1
|
const e = {
|
|
5
2
|
save: "保存",
|
|
6
3
|
noData: "暂无数据",
|
|
4
|
+
loadText: "加载中...",
|
|
5
|
+
noMoreText: "无更多数据",
|
|
7
6
|
confirmText: "确认",
|
|
8
7
|
cancelText: "取消",
|
|
9
8
|
clearText: "清除",
|
|
10
9
|
defaultText: "默认",
|
|
11
10
|
placeholder: "请输入",
|
|
12
11
|
select: "请选择",
|
|
12
|
+
today: "今天",
|
|
13
|
+
weekdays: JSON.stringify(["日", "一", "二", "三", "四", "五", "六"]),
|
|
14
|
+
fullWeekdays: JSON.stringify(["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]),
|
|
13
15
|
dateUnit: {
|
|
14
16
|
day: "日",
|
|
15
17
|
year: "年",
|
|
@@ -31,12 +33,10 @@ const e = {
|
|
|
31
33
|
nextText: "下一页"
|
|
32
34
|
},
|
|
33
35
|
calendarpane: {
|
|
34
|
-
weekdays: JSON.stringify(["日", "一", "二", "三", "四", "五", "六"]),
|
|
35
36
|
endText: "结束",
|
|
36
37
|
startText: "开始",
|
|
37
38
|
title: "日历选择",
|
|
38
|
-
monthTitle: "{year}年{month}月"
|
|
39
|
-
today: "今天"
|
|
39
|
+
monthTitle: "{year}年{month}月"
|
|
40
40
|
},
|
|
41
41
|
shortpassword: {
|
|
42
42
|
title: "请输入密码",
|
|
@@ -75,7 +75,7 @@ const e = {
|
|
|
75
75
|
placeholder: "请输入1-5000整数"
|
|
76
76
|
},
|
|
77
77
|
timeselect: {
|
|
78
|
-
|
|
78
|
+
pickupTime: "取件时间"
|
|
79
79
|
},
|
|
80
80
|
sku: {
|
|
81
81
|
buyText: "立即购买",
|
|
@@ -86,7 +86,8 @@ const e = {
|
|
|
86
86
|
idText: "商品编号"
|
|
87
87
|
},
|
|
88
88
|
addresslist: {
|
|
89
|
-
addAddress: "新建地址"
|
|
89
|
+
addAddress: "新建地址",
|
|
90
|
+
default: "默认"
|
|
90
91
|
},
|
|
91
92
|
comment: {
|
|
92
93
|
complaintsText: "我要投诉",
|
|
@@ -95,8 +96,13 @@ const e = {
|
|
|
95
96
|
},
|
|
96
97
|
infiniteloading: {
|
|
97
98
|
loading: "加载中...",
|
|
98
|
-
|
|
99
|
-
|
|
99
|
+
pullText: "松开刷新",
|
|
100
|
+
noMoreText: "哎呀,这里是底部了啦"
|
|
101
|
+
},
|
|
102
|
+
pullrefresh: {
|
|
103
|
+
pullingText: "下拉刷新",
|
|
104
|
+
loosingText: "释放刷新",
|
|
105
|
+
loadingText: "加载中..."
|
|
100
106
|
},
|
|
101
107
|
datepicker: {
|
|
102
108
|
year: "年",
|
|
@@ -128,18 +134,48 @@ const e = {
|
|
|
128
134
|
calendaritem: {
|
|
129
135
|
placeholder: "请选择"
|
|
130
136
|
},
|
|
137
|
+
linkitem: {
|
|
138
|
+
placeholder: ""
|
|
139
|
+
},
|
|
131
140
|
numberkeyboard: {
|
|
132
141
|
confirmText: "完成"
|
|
142
|
+
},
|
|
143
|
+
actionsheetitem: {
|
|
144
|
+
placeholder: "请选择"
|
|
145
|
+
},
|
|
146
|
+
actionsheetpane: {
|
|
147
|
+
title: "请选择",
|
|
148
|
+
seachPlaceholder: "请输入关键字"
|
|
149
|
+
},
|
|
150
|
+
messagebox: {
|
|
151
|
+
confirmButtonText: "确定",
|
|
152
|
+
cancelButtonText: "取消"
|
|
153
|
+
},
|
|
154
|
+
morebutton: {
|
|
155
|
+
collapseText: "收起",
|
|
156
|
+
expandText: "展开"
|
|
157
|
+
},
|
|
158
|
+
buttonsitem: {
|
|
159
|
+
moreText: "更多"
|
|
160
|
+
},
|
|
161
|
+
tableitem: {
|
|
162
|
+
loadText: "加载中...",
|
|
163
|
+
noMoreText: "无更多数据"
|
|
133
164
|
}
|
|
134
165
|
}, t = {
|
|
135
166
|
save: "Save",
|
|
136
167
|
noData: "No Data",
|
|
168
|
+
loadText: "Loading",
|
|
169
|
+
noMoreText: "No more data",
|
|
137
170
|
confirmText: "Confirm",
|
|
138
171
|
cancelText: "Cancel",
|
|
139
172
|
clearText: "Clear",
|
|
140
173
|
defaultText: "Default",
|
|
141
174
|
placeholder: "Placeholder",
|
|
142
175
|
select: "Select",
|
|
176
|
+
today: "Today",
|
|
177
|
+
weekdays: JSON.stringify(["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]),
|
|
178
|
+
fullWeekdays: JSON.stringify(["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]),
|
|
143
179
|
dateUnit: {
|
|
144
180
|
day: "Day",
|
|
145
181
|
year: "Year",
|
|
@@ -161,12 +197,10 @@ const e = {
|
|
|
161
197
|
nextText: "Next"
|
|
162
198
|
},
|
|
163
199
|
calendarpane: {
|
|
164
|
-
weekdays: JSON.stringify(["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]),
|
|
165
200
|
endText: "End",
|
|
166
201
|
startText: "Start",
|
|
167
202
|
title: "Calendar",
|
|
168
|
-
monthTitle: "{year}/{month}"
|
|
169
|
-
today: "Today"
|
|
203
|
+
monthTitle: "{year}/{month}"
|
|
170
204
|
},
|
|
171
205
|
shortpassword: {
|
|
172
206
|
title: "Please input a password",
|
|
@@ -205,7 +239,7 @@ const e = {
|
|
|
205
239
|
placeholder: "Placeholder"
|
|
206
240
|
},
|
|
207
241
|
timeselect: {
|
|
208
|
-
|
|
242
|
+
pickupTime: "Pickup Time"
|
|
209
243
|
},
|
|
210
244
|
sku: {
|
|
211
245
|
buyText: "Buy Now",
|
|
@@ -216,7 +250,8 @@ const e = {
|
|
|
216
250
|
idText: "Sku Number"
|
|
217
251
|
},
|
|
218
252
|
addresslist: {
|
|
219
|
-
addAddress: "Add New Address"
|
|
253
|
+
addAddress: "Add New Address",
|
|
254
|
+
default: "default"
|
|
220
255
|
},
|
|
221
256
|
comment: {
|
|
222
257
|
complaintsText: "I have a complaint",
|
|
@@ -225,8 +260,13 @@ const e = {
|
|
|
225
260
|
},
|
|
226
261
|
infiniteloading: {
|
|
227
262
|
loading: "Loading...",
|
|
228
|
-
|
|
229
|
-
|
|
263
|
+
pullText: "Loose to refresh",
|
|
264
|
+
noMoreText: "Oops, this is the bottom"
|
|
265
|
+
},
|
|
266
|
+
pullrefresh: {
|
|
267
|
+
pullingText: "Pull to refresh...",
|
|
268
|
+
loosingText: "Loose to refresh...",
|
|
269
|
+
loadingText: "Loading..."
|
|
230
270
|
},
|
|
231
271
|
datepicker: {
|
|
232
272
|
year: "Year",
|
|
@@ -258,18 +298,48 @@ const e = {
|
|
|
258
298
|
calendaritem: {
|
|
259
299
|
placeholder: "Select"
|
|
260
300
|
},
|
|
301
|
+
linkitem: {
|
|
302
|
+
placeholder: ""
|
|
303
|
+
},
|
|
261
304
|
numberkeyboard: {
|
|
262
305
|
confirmText: "Done"
|
|
306
|
+
},
|
|
307
|
+
actionsheetitem: {
|
|
308
|
+
placeholder: "Select"
|
|
309
|
+
},
|
|
310
|
+
actionsheetpane: {
|
|
311
|
+
title: "Select",
|
|
312
|
+
seachPlaceholder: "keywords"
|
|
313
|
+
},
|
|
314
|
+
messagebox: {
|
|
315
|
+
confirmButtonText: "Confirm",
|
|
316
|
+
cancelButtonText: "Cancel"
|
|
317
|
+
},
|
|
318
|
+
morebutton: {
|
|
319
|
+
collapseText: "collapse",
|
|
320
|
+
expandText: "expand"
|
|
321
|
+
},
|
|
322
|
+
buttonsitem: {
|
|
323
|
+
moreText: "more"
|
|
324
|
+
},
|
|
325
|
+
tableitem: {
|
|
326
|
+
loadText: "loading",
|
|
327
|
+
noMoreText: "no more data"
|
|
263
328
|
}
|
|
264
329
|
}, a = {
|
|
265
330
|
save: "保存",
|
|
266
331
|
noData: "暫無數據",
|
|
332
|
+
loadText: "加載中...",
|
|
333
|
+
noMoreText: "無更多數據",
|
|
267
334
|
confirmText: "確認",
|
|
268
335
|
cancelText: "取消",
|
|
269
336
|
clearText: "清除",
|
|
270
337
|
defaultText: "默认",
|
|
271
338
|
placeholder: "請輸入",
|
|
272
339
|
select: "請選擇",
|
|
340
|
+
today: "今天",
|
|
341
|
+
weekdays: JSON.stringify(["日", "一", "二", "三", "四", "五", "六"]),
|
|
342
|
+
fullWeekdays: JSON.stringify(["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]),
|
|
273
343
|
dateUnit: {
|
|
274
344
|
day: "日",
|
|
275
345
|
year: "年",
|
|
@@ -291,12 +361,10 @@ const e = {
|
|
|
291
361
|
nextText: "下一頁"
|
|
292
362
|
},
|
|
293
363
|
calendarpane: {
|
|
294
|
-
weekdays: JSON.stringify(["日", "一", "二", "三", "四", "五", "六"]),
|
|
295
364
|
endText: "結束",
|
|
296
365
|
startText: "開始",
|
|
297
366
|
title: "行事曆選擇",
|
|
298
|
-
monthTitle: "{year}年{month}月"
|
|
299
|
-
today: "今天"
|
|
367
|
+
monthTitle: "{year}年{month}月"
|
|
300
368
|
},
|
|
301
369
|
shortpassword: {
|
|
302
370
|
title: "請輸入密碼",
|
|
@@ -335,7 +403,7 @@ const e = {
|
|
|
335
403
|
placeholder: "請輸入1-5000整數"
|
|
336
404
|
},
|
|
337
405
|
timeselect: {
|
|
338
|
-
|
|
406
|
+
pickupTime: "取件時間"
|
|
339
407
|
},
|
|
340
408
|
sku: {
|
|
341
409
|
buyText: "立即購買",
|
|
@@ -346,7 +414,8 @@ const e = {
|
|
|
346
414
|
idText: "商品編號"
|
|
347
415
|
},
|
|
348
416
|
addresslist: {
|
|
349
|
-
addAddress: "新建地址"
|
|
417
|
+
addAddress: "新建地址",
|
|
418
|
+
default: "默认"
|
|
350
419
|
},
|
|
351
420
|
comment: {
|
|
352
421
|
complaintsText: "我要投訴",
|
|
@@ -355,8 +424,13 @@ const e = {
|
|
|
355
424
|
},
|
|
356
425
|
infiniteloading: {
|
|
357
426
|
loading: "加載中...",
|
|
358
|
-
|
|
359
|
-
|
|
427
|
+
pullText: "鬆開刷新",
|
|
428
|
+
noMoreText: "哎呀,這裡是底部了啦"
|
|
429
|
+
},
|
|
430
|
+
pullrefresh: {
|
|
431
|
+
pullingText: "下拉刷新",
|
|
432
|
+
loosingText: "釋放刷新",
|
|
433
|
+
loadingText: "加載中..."
|
|
360
434
|
},
|
|
361
435
|
datepicker: {
|
|
362
436
|
year: "年",
|
|
@@ -388,8 +462,29 @@ const e = {
|
|
|
388
462
|
calendaritem: {
|
|
389
463
|
placeholder: "請選擇"
|
|
390
464
|
},
|
|
465
|
+
linkitem: {
|
|
466
|
+
placeholder: ""
|
|
467
|
+
},
|
|
391
468
|
numberkeyboard: {
|
|
392
469
|
confirmText: "完成"
|
|
470
|
+
},
|
|
471
|
+
actionsheetitem: {
|
|
472
|
+
placeholder: "請選擇"
|
|
473
|
+
},
|
|
474
|
+
actionsheetpane: {
|
|
475
|
+
title: "請選擇",
|
|
476
|
+
seachPlaceholder: "請輸入關鍵字"
|
|
477
|
+
},
|
|
478
|
+
messagebox: {
|
|
479
|
+
confirmButtonText: "確認",
|
|
480
|
+
cancelButtonText: "取消"
|
|
481
|
+
},
|
|
482
|
+
morebutton: {
|
|
483
|
+
collapseText: "收起",
|
|
484
|
+
expandText: "展開"
|
|
485
|
+
},
|
|
486
|
+
buttonsitem: {
|
|
487
|
+
moreText: "更多"
|
|
393
488
|
}
|
|
394
489
|
}, o = {
|
|
395
490
|
zh_CN: {
|
package/dist/locale/index.umd.js
CHANGED
|
@@ -1,3 +1 @@
|
|
|
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-desktop v4.0.0 Thu Sep 26 2024 14:32:55 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:"时",minute:"分",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",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"},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:"時",minute:"分",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}}});
|
|
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";const e={save:"保存",noData:"暂无数据",loadText:"加载中...",noMoreText:"无更多数据",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:"松开刷新",noMoreText:"哎呀,这里是底部了啦"},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:"请选择",seachPlaceholder:"请输入关键字"},messagebox:{confirmButtonText:"确定",cancelButtonText:"取消"},morebutton:{collapseText:"收起",expandText:"展开"},buttonsitem:{moreText:"更多"},tableitem:{loadText:"加载中...",noMoreText:"无更多数据"}},t={save:"Save",noData:"No Data",loadText:"Loading",noMoreText:"No more 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",noMoreText:"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",seachPlaceholder:"keywords"},messagebox:{confirmButtonText:"Confirm",cancelButtonText:"Cancel"},morebutton:{collapseText:"collapse",expandText:"expand"},buttonsitem:{moreText:"more"},tableitem:{loadText:"loading",noMoreText:"no more data"}},a={save:"保存",noData:"暫無數據",loadText:"加載中...",noMoreText:"無更多數據",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:"鬆開刷新",noMoreText:"哎呀,這裡是底部了啦"},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:"請選擇",seachPlaceholder:"請輸入關鍵字"},messagebox:{confirmButtonText:"確認",cancelButtonText:"取消"},morebutton:{collapseText:"收起",expandText:"展開"},buttonsitem:{moreText:"更多"}};return{zh_CN:{...e},en_US:{...t},zh_TW:{...a}}}));
|