@opentiny/vue-runtime 3.16.0-alpha.0
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 +22 -0
- package/dist2/style.css +1 -0
- package/dist2/tailwind.css +1439 -0
- package/dist2/tiny-vue-common.mjs +3041 -0
- package/dist2/tiny-vue-icon-saas.mjs +7210 -0
- package/dist2/tiny-vue-icon.mjs +7210 -0
- package/dist2/tiny-vue-locale.mjs +2848 -0
- package/dist2/tiny-vue.mjs +88215 -0
- package/dist3/style.css +1 -0
- package/dist3/tailwind.css +1439 -0
- package/dist3/tiny-vue-all.mjs +213059 -0
- package/dist3/tiny-vue-common.mjs +2918 -0
- package/dist3/tiny-vue-icon-saas.mjs +12705 -0
- package/dist3/tiny-vue-icon.mjs +13469 -0
- package/dist3/tiny-vue-locale.mjs +2842 -0
- package/dist3/tiny-vue-mobile-first.mjs +109331 -0
- package/dist3/tiny-vue-mobile.mjs +61847 -0
- package/dist3/tiny-vue-pc.mjs +202591 -0
- package/dist3/tiny-vue-simple.mjs +88726 -0
- package/dist3/tiny-vue.mjs +89119 -0
- package/package.json +18 -0
|
@@ -0,0 +1,2842 @@
|
|
|
1
|
+
function me(r, e) {
|
|
2
|
+
if (!(r instanceof e))
|
|
3
|
+
throw new TypeError("Cannot call a class as a function");
|
|
4
|
+
}
|
|
5
|
+
function X(r, e) {
|
|
6
|
+
for (var t = 0; t < e.length; t++) {
|
|
7
|
+
var n = e[t];
|
|
8
|
+
n.enumerable = n.enumerable || !1, n.configurable = !0, "value" in n && (n.writable = !0), Object.defineProperty(r, fe(n.key), n);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
function pe(r, e, t) {
|
|
12
|
+
return e && X(r.prototype, e), t && X(r, t), Object.defineProperty(r, "prototype", {
|
|
13
|
+
writable: !1
|
|
14
|
+
}), r;
|
|
15
|
+
}
|
|
16
|
+
function Re(r, e, t) {
|
|
17
|
+
return (e = fe(e)) in r ? Object.defineProperty(r, e, {
|
|
18
|
+
value: t,
|
|
19
|
+
enumerable: !0,
|
|
20
|
+
configurable: !0,
|
|
21
|
+
writable: !0
|
|
22
|
+
}) : r[e] = t, r;
|
|
23
|
+
}
|
|
24
|
+
function ee(r, e) {
|
|
25
|
+
var t = Object.keys(r);
|
|
26
|
+
if (Object.getOwnPropertySymbols) {
|
|
27
|
+
var n = Object.getOwnPropertySymbols(r);
|
|
28
|
+
e && (n = n.filter(function(o) {
|
|
29
|
+
return Object.getOwnPropertyDescriptor(r, o).enumerable;
|
|
30
|
+
})), t.push.apply(t, n);
|
|
31
|
+
}
|
|
32
|
+
return t;
|
|
33
|
+
}
|
|
34
|
+
function T(r) {
|
|
35
|
+
for (var e = 1; e < arguments.length; e++) {
|
|
36
|
+
var t = arguments[e] != null ? arguments[e] : {};
|
|
37
|
+
e % 2 ? ee(Object(t), !0).forEach(function(n) {
|
|
38
|
+
Re(r, n, t[n]);
|
|
39
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(r, Object.getOwnPropertyDescriptors(t)) : ee(Object(t)).forEach(function(n) {
|
|
40
|
+
Object.defineProperty(r, n, Object.getOwnPropertyDescriptor(t, n));
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
return r;
|
|
44
|
+
}
|
|
45
|
+
function Ie(r, e) {
|
|
46
|
+
if (typeof r != "object" || !r)
|
|
47
|
+
return r;
|
|
48
|
+
var t = r[Symbol.toPrimitive];
|
|
49
|
+
if (t !== void 0) {
|
|
50
|
+
var n = t.call(r, e || "default");
|
|
51
|
+
if (typeof n != "object")
|
|
52
|
+
return n;
|
|
53
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
54
|
+
}
|
|
55
|
+
return (e === "string" ? String : Number)(r);
|
|
56
|
+
}
|
|
57
|
+
function fe(r) {
|
|
58
|
+
var e = Ie(r, "string");
|
|
59
|
+
return typeof e == "symbol" ? e : e + "";
|
|
60
|
+
}
|
|
61
|
+
function q(r) {
|
|
62
|
+
"@babel/helpers - typeof";
|
|
63
|
+
return q = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
|
|
64
|
+
return typeof e;
|
|
65
|
+
} : function(e) {
|
|
66
|
+
return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
|
|
67
|
+
}, q(r);
|
|
68
|
+
}
|
|
69
|
+
const R = {
|
|
70
|
+
"en-US": "English",
|
|
71
|
+
"zh-CN": "中文",
|
|
72
|
+
"zh-TW": "中国台湾",
|
|
73
|
+
hello: "你好 {name}",
|
|
74
|
+
code: "zh-CN",
|
|
75
|
+
yes: "是",
|
|
76
|
+
no: "否",
|
|
77
|
+
ui: {
|
|
78
|
+
numeric: {
|
|
79
|
+
equalTo: "等于",
|
|
80
|
+
notEqualTo: "不等于",
|
|
81
|
+
moreThan: "大于",
|
|
82
|
+
moreThanOrEqualTo: "大于等于",
|
|
83
|
+
lessThan: "小于",
|
|
84
|
+
lessThanOrEqualTo: "小于等于",
|
|
85
|
+
empty: "为空",
|
|
86
|
+
nonEmpty: "不为空"
|
|
87
|
+
},
|
|
88
|
+
queryBuilder: {
|
|
89
|
+
addItem: "新增条件",
|
|
90
|
+
addGroup: "新增子条件组",
|
|
91
|
+
removeGroup: "移除条件组"
|
|
92
|
+
},
|
|
93
|
+
wizard: {
|
|
94
|
+
previousStep: "上一步",
|
|
95
|
+
nextStep: "下一步",
|
|
96
|
+
save: "保存",
|
|
97
|
+
submit: "提交"
|
|
98
|
+
},
|
|
99
|
+
linkMenu: {
|
|
100
|
+
title: "消息",
|
|
101
|
+
placeholder: "请输入关键字过滤...",
|
|
102
|
+
sure: "确定",
|
|
103
|
+
cancel: "取消"
|
|
104
|
+
},
|
|
105
|
+
todoList: {
|
|
106
|
+
add: "提交",
|
|
107
|
+
placeholder: "请输入内容..."
|
|
108
|
+
},
|
|
109
|
+
alert: {
|
|
110
|
+
error: "错误",
|
|
111
|
+
info: "消息",
|
|
112
|
+
success: "成功",
|
|
113
|
+
title: "消息提示",
|
|
114
|
+
warning: "警告"
|
|
115
|
+
},
|
|
116
|
+
amount: {
|
|
117
|
+
currency: "币种",
|
|
118
|
+
amount: "金额",
|
|
119
|
+
date: "日期",
|
|
120
|
+
equalTo: "等于",
|
|
121
|
+
notEqualTo: "不等于",
|
|
122
|
+
moreThan: "大于",
|
|
123
|
+
moreThanOrEqualTo: "大于等于",
|
|
124
|
+
lessThan: "小于",
|
|
125
|
+
lessThanOrEqualTo: "小于等于",
|
|
126
|
+
empty: "为空",
|
|
127
|
+
nonEmpty: "不为空"
|
|
128
|
+
},
|
|
129
|
+
actionMenu: {
|
|
130
|
+
moreText: "更多"
|
|
131
|
+
},
|
|
132
|
+
base: {
|
|
133
|
+
all: "全部",
|
|
134
|
+
cancel: "取消",
|
|
135
|
+
confirm: "确定",
|
|
136
|
+
delete: "删除",
|
|
137
|
+
edit: "编辑",
|
|
138
|
+
more: "更多",
|
|
139
|
+
reset: "重置",
|
|
140
|
+
clear: "清空",
|
|
141
|
+
comma: ","
|
|
142
|
+
},
|
|
143
|
+
button: {
|
|
144
|
+
cancel: "取消",
|
|
145
|
+
confirm: "确定"
|
|
146
|
+
},
|
|
147
|
+
buttonMessage: {
|
|
148
|
+
cancel: "取消",
|
|
149
|
+
confirm: "确定"
|
|
150
|
+
},
|
|
151
|
+
cell: {
|
|
152
|
+
placeholder: "请选择"
|
|
153
|
+
},
|
|
154
|
+
cascader: {
|
|
155
|
+
noMatch: "无匹配数据",
|
|
156
|
+
loading: "加载中",
|
|
157
|
+
placeholder: "请选择",
|
|
158
|
+
noData: "暂无数据"
|
|
159
|
+
},
|
|
160
|
+
chart: {
|
|
161
|
+
auxiliary: "辅助",
|
|
162
|
+
emptyText: "暂无数据",
|
|
163
|
+
kName: "日K",
|
|
164
|
+
other: "其他",
|
|
165
|
+
summation: "总量",
|
|
166
|
+
total: "总计",
|
|
167
|
+
value: "数值"
|
|
168
|
+
},
|
|
169
|
+
colorSelectPanel: {
|
|
170
|
+
confirm: "选择",
|
|
171
|
+
cancel: "取消",
|
|
172
|
+
predefine: "预定义颜色",
|
|
173
|
+
history: "历史记录",
|
|
174
|
+
empty: "暂无"
|
|
175
|
+
},
|
|
176
|
+
crop: {
|
|
177
|
+
cropImage: "图片裁剪",
|
|
178
|
+
croppedImage: "裁剪后图像"
|
|
179
|
+
},
|
|
180
|
+
datepicker: {
|
|
181
|
+
clear: "清空",
|
|
182
|
+
cancel: "取消",
|
|
183
|
+
endDate: "结束日期",
|
|
184
|
+
confirm: "确定",
|
|
185
|
+
month: "月",
|
|
186
|
+
endTime: "结束时间",
|
|
187
|
+
month2: "2 月",
|
|
188
|
+
month1: "1 月",
|
|
189
|
+
month4: "4 月",
|
|
190
|
+
month3: "3 月",
|
|
191
|
+
month6: "6 月",
|
|
192
|
+
month5: "5 月",
|
|
193
|
+
month8: "8 月",
|
|
194
|
+
month7: "7 月",
|
|
195
|
+
month10: "10 月",
|
|
196
|
+
month9: "9 月",
|
|
197
|
+
month12: "12 月",
|
|
198
|
+
month11: "11 月",
|
|
199
|
+
months: {
|
|
200
|
+
feb: "二月",
|
|
201
|
+
jan: "一月",
|
|
202
|
+
apr: "四月",
|
|
203
|
+
mar: "三月",
|
|
204
|
+
jun: "六月",
|
|
205
|
+
may: "五月",
|
|
206
|
+
aug: "八月",
|
|
207
|
+
jul: "七月",
|
|
208
|
+
oct: "十月",
|
|
209
|
+
sep: "九月",
|
|
210
|
+
dec: "十二月",
|
|
211
|
+
nov: "十一月"
|
|
212
|
+
},
|
|
213
|
+
nextYear: "后一年",
|
|
214
|
+
nextMonth: "下个月",
|
|
215
|
+
prevMonth: "上个月",
|
|
216
|
+
now: "此刻",
|
|
217
|
+
selectDate: "选择日期",
|
|
218
|
+
prevYear: "前一年",
|
|
219
|
+
startDate: "开始日期",
|
|
220
|
+
selectTime: "选择时间",
|
|
221
|
+
today: "今天",
|
|
222
|
+
currentMonth: "本月",
|
|
223
|
+
startTime: "开始时间",
|
|
224
|
+
week: "周次",
|
|
225
|
+
weeks: {
|
|
226
|
+
mon: "一",
|
|
227
|
+
sun: "日",
|
|
228
|
+
wed: "三",
|
|
229
|
+
tue: "二",
|
|
230
|
+
fri: "五",
|
|
231
|
+
thu: "四",
|
|
232
|
+
sat: "六"
|
|
233
|
+
},
|
|
234
|
+
timezone: "选择时区",
|
|
235
|
+
year: "年",
|
|
236
|
+
to: "至",
|
|
237
|
+
yearMonth: "{year}年{month}月",
|
|
238
|
+
yearMonthDay: "{year}年{month}月{day}日"
|
|
239
|
+
},
|
|
240
|
+
richTextEditor: {
|
|
241
|
+
bold: "加粗",
|
|
242
|
+
italic: "斜体",
|
|
243
|
+
link: "链接",
|
|
244
|
+
unlink: "移除链接",
|
|
245
|
+
highlight: "高亮",
|
|
246
|
+
underline: "下划线",
|
|
247
|
+
strike: "中划线",
|
|
248
|
+
subscript: "下标",
|
|
249
|
+
superscript: "上标",
|
|
250
|
+
code: "代码",
|
|
251
|
+
unorderedlist: "无序列表",
|
|
252
|
+
orderedlist: "有序列表",
|
|
253
|
+
taskList: "任务列表",
|
|
254
|
+
quote: "引用",
|
|
255
|
+
codeBlock: "代码块",
|
|
256
|
+
formatClear: "清除标记",
|
|
257
|
+
nodeDelete: "删除节点",
|
|
258
|
+
undo: "回退",
|
|
259
|
+
redo: "前进",
|
|
260
|
+
left: "左对齐",
|
|
261
|
+
center: "居中",
|
|
262
|
+
right: "右对齐",
|
|
263
|
+
fontSize: "字号",
|
|
264
|
+
lineHeight: "行高",
|
|
265
|
+
hBox: "段落标题",
|
|
266
|
+
img: "图片",
|
|
267
|
+
color: "颜色",
|
|
268
|
+
table: "表格",
|
|
269
|
+
backgroundColor: "文字背景色"
|
|
270
|
+
},
|
|
271
|
+
calendar: {
|
|
272
|
+
showType: {
|
|
273
|
+
year: "年"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
dept: {
|
|
277
|
+
code: "编码",
|
|
278
|
+
company: "公司",
|
|
279
|
+
dept1: "一级部门",
|
|
280
|
+
dept2: "二级部门",
|
|
281
|
+
dept3: "三级部门",
|
|
282
|
+
dept4: "四级部门",
|
|
283
|
+
dept5: "五级部门",
|
|
284
|
+
dept6: "六级部门",
|
|
285
|
+
dept7: "七级部门",
|
|
286
|
+
dept8: "八级部门",
|
|
287
|
+
input: "可输入部门编码或名称",
|
|
288
|
+
name: "名称",
|
|
289
|
+
search: "辅助查询",
|
|
290
|
+
selected: "已选"
|
|
291
|
+
},
|
|
292
|
+
dialogBox: {
|
|
293
|
+
confirm: "确定",
|
|
294
|
+
cancel: "取消"
|
|
295
|
+
},
|
|
296
|
+
load: {
|
|
297
|
+
dot: "加载中"
|
|
298
|
+
},
|
|
299
|
+
exception: {
|
|
300
|
+
build: "模块正在建设中",
|
|
301
|
+
busy: "系统繁忙,请稍等一下",
|
|
302
|
+
noperm: "茫茫大海,找不到页面",
|
|
303
|
+
weaknet: "网络不给力",
|
|
304
|
+
pcview: "请到PC上查看文件",
|
|
305
|
+
nodata: "休息一下",
|
|
306
|
+
create: "创建",
|
|
307
|
+
provide: "TINY 开发团队提供",
|
|
308
|
+
nodatamf: "暂无数据",
|
|
309
|
+
nopermmf: "无访问权限",
|
|
310
|
+
weaknetmf: "网络异常",
|
|
311
|
+
noresult: "无相关搜索结果",
|
|
312
|
+
nonews: "暂无最新消息",
|
|
313
|
+
pagenoperm: "403:无访问权限",
|
|
314
|
+
pageweaknet: "网络异常",
|
|
315
|
+
pagenothing: "404:你访问的页面不存在",
|
|
316
|
+
pageservererror: "500:服务器异常"
|
|
317
|
+
},
|
|
318
|
+
fileUpload: {
|
|
319
|
+
largefile: "文件过大,将会分片上传,请耐心等待!",
|
|
320
|
+
folder: "文件所在文件夹层数已超过 5 层,将不会上传该文件",
|
|
321
|
+
init: "服务报错,请重试",
|
|
322
|
+
token: "请先进行 EDM 鉴权,获取 token",
|
|
323
|
+
exceed: "文件大小超过限制({maxSize})",
|
|
324
|
+
largeFile: "文件大小超出限制 2G !!",
|
|
325
|
+
fileSize: "文件大小低于限制({minSize}{sizeUnit})",
|
|
326
|
+
deleteTip: "按 delete 键可删除",
|
|
327
|
+
downloadFile: "下载文件",
|
|
328
|
+
previewFile: "预览文件",
|
|
329
|
+
updateFile: "更新文件",
|
|
330
|
+
reUploadFile: "重新上传",
|
|
331
|
+
cancelFile: "取消上传",
|
|
332
|
+
deleteFile: "删除文件",
|
|
333
|
+
empty: "是空文件!",
|
|
334
|
+
kiaScanTip: "抱歉,从公网接入下载文档,需要通过KIA检测;当前文档正在KIA检测中,请稍后几分钟后再下载!",
|
|
335
|
+
fileNameExceeds: "超过255个字符,请修改文件名。",
|
|
336
|
+
fileName: "该文件名",
|
|
337
|
+
calcHash: "文档正在计算加密中",
|
|
338
|
+
uploadFile: "文件上传",
|
|
339
|
+
downloadAll: "全部下载",
|
|
340
|
+
onlySupport: "仅支持{type}格式文件",
|
|
341
|
+
fileNotLessThan: "单个文件不能小于",
|
|
342
|
+
fileNotMoreThan: "单个文件不能超过",
|
|
343
|
+
notSupport: "格式(.{format})暂不支持",
|
|
344
|
+
notSupportNoSuffix: "暂不支持无后缀文件",
|
|
345
|
+
notSupportSpecialCharacters: "文件名包含特殊字符,请重命名后上传",
|
|
346
|
+
attachment: "附件",
|
|
347
|
+
uploadList: "上传列表",
|
|
348
|
+
numberExceed: "批量上传个数超过限制({number})",
|
|
349
|
+
numberLimit: "最多上传{number}个文件",
|
|
350
|
+
encryptDialogTitle: "水印及加密设置",
|
|
351
|
+
addWatermark: "添加水印",
|
|
352
|
+
encrypted: "加密",
|
|
353
|
+
docPreview: "文档预览",
|
|
354
|
+
networkError: "网络出错",
|
|
355
|
+
pictureNetworkError: "网络出错,上传失败",
|
|
356
|
+
reUploadTip: "{number}个文件上传失败!"
|
|
357
|
+
},
|
|
358
|
+
uploadList: {
|
|
359
|
+
pictureUploading: "图片上传中",
|
|
360
|
+
uploadFailed: "上传失败",
|
|
361
|
+
uploading: "上传中",
|
|
362
|
+
download: "下载",
|
|
363
|
+
reUpload: "重新上传",
|
|
364
|
+
delete: "删除",
|
|
365
|
+
noAttachments: "暂无附件",
|
|
366
|
+
cancel: "取消",
|
|
367
|
+
preview: "预览",
|
|
368
|
+
releaseAndUpload: "释放鼠标,上传文件",
|
|
369
|
+
dragOrClickImport: "将文件拖到此处,或点击导入",
|
|
370
|
+
shoot: "拍摄",
|
|
371
|
+
selectFromAlbum: "从相册选择",
|
|
372
|
+
uploadFailedAndReupload: "上传失败,点击重新上传"
|
|
373
|
+
},
|
|
374
|
+
upload: {
|
|
375
|
+
addPicture: "添加图片",
|
|
376
|
+
addAudio: "添加音频",
|
|
377
|
+
addVideo: "添加视频"
|
|
378
|
+
},
|
|
379
|
+
grid: {
|
|
380
|
+
dataUnchanged: "数据未改动!",
|
|
381
|
+
deleteSelectRecord: "您确定要删除所选记录吗?",
|
|
382
|
+
emptyText: "暂无数据",
|
|
383
|
+
error: {
|
|
384
|
+
cellEditRender: "渲染器 cell-render 和 edit-render 不能同时使用",
|
|
385
|
+
delGetAllRecords: "方法 getAllRecords 已废弃,请使用 getRecordset",
|
|
386
|
+
delGetRecords: "方法 getRecords 已废弃,请使用 getData",
|
|
387
|
+
delLabel: "参数 label 已废弃,请使用 title",
|
|
388
|
+
delProp: "参数 prop 已废弃,请使用 field",
|
|
389
|
+
delRevert: "方法 revert 已废弃,请使用 revertData",
|
|
390
|
+
groupFixed: "如果使用分组表头,固定列必须在左右两侧",
|
|
391
|
+
notDelete: "Delete 方法不存在",
|
|
392
|
+
notMouse: "虚拟滚动不支持 mouse-config",
|
|
393
|
+
notQuery: "query 方法不存在",
|
|
394
|
+
notResizable: "横向虚拟滚动不支持 resizable",
|
|
395
|
+
notSave: "save 方法不存在",
|
|
396
|
+
reqModule: "缺少 {{name}} 模块",
|
|
397
|
+
rowIdEmpty: "参数 row-id 不允许为空",
|
|
398
|
+
scrollOriginal: "虚拟滚动启用后只能导出源数据,请将设置 original=true",
|
|
399
|
+
scrollYHeight: "启用虚拟滚动必须要设置 height 或 max-height",
|
|
400
|
+
toolbarId: "工具栏需要设置唯一 id",
|
|
401
|
+
treeFixedExpand: "树结构的固定列与展开行功能有冲突",
|
|
402
|
+
treeInsert: "树结构不支持 insert 操作",
|
|
403
|
+
treeRemove: "树结构不支持 remove 操作",
|
|
404
|
+
unableInsert: "无法插入到指定位置",
|
|
405
|
+
dargSelf: "不允许自己给自己拖动",
|
|
406
|
+
dargFixed: "固定列不允许拖动",
|
|
407
|
+
remoteMethod: "个性化模板管理远端存储需要设置 multipleHistory.remoteMethod",
|
|
408
|
+
remoteSelectedMethod: "个性化模板管理远端存储需要设置 multipleHistory.remoteSelectedMethod",
|
|
409
|
+
chainCallError: "列的默认插槽中存在语法错误,请检查。",
|
|
410
|
+
renderParamError: "期望配置一个生成 VNode 的渲染方法。",
|
|
411
|
+
classComponentError: "类组件渲染出错。",
|
|
412
|
+
groupColumnFixedError: "同一个分组内不能设置不同的固定类型。",
|
|
413
|
+
missingValueFormat: "渲染器无法格式化日期字符串,需要提供 valueFormat 源日期格式配置。"
|
|
414
|
+
},
|
|
415
|
+
filter: {
|
|
416
|
+
allFilter: "全部",
|
|
417
|
+
allSelect: "(全选)",
|
|
418
|
+
endDate: "结束日期",
|
|
419
|
+
startDate: "开始日期",
|
|
420
|
+
dateTips: "请至少输入一个日期",
|
|
421
|
+
clear: "清除当前列筛选",
|
|
422
|
+
clearAll: "清除所有列筛选",
|
|
423
|
+
confirmFilter: "筛选",
|
|
424
|
+
empty: "为空",
|
|
425
|
+
emptyText: "暂无数据",
|
|
426
|
+
equal: "等于",
|
|
427
|
+
include: "包含",
|
|
428
|
+
prefix: "开头是",
|
|
429
|
+
resetFilter: "重置",
|
|
430
|
+
unempty: "不为空"
|
|
431
|
+
},
|
|
432
|
+
individuation: {
|
|
433
|
+
cancelBtn: "取消",
|
|
434
|
+
colConfigs: {
|
|
435
|
+
visible: "显示",
|
|
436
|
+
invisible: "隐藏",
|
|
437
|
+
asc: "正序",
|
|
438
|
+
desc: "倒序",
|
|
439
|
+
unsorted: "未排序",
|
|
440
|
+
frozenLeft: "左冻结",
|
|
441
|
+
frozenRight: "右冻结",
|
|
442
|
+
unfrozen: "未冻结",
|
|
443
|
+
unfreeze: "取消冻结",
|
|
444
|
+
unsort: "取消排序"
|
|
445
|
+
},
|
|
446
|
+
toolbar: {
|
|
447
|
+
set: "设置",
|
|
448
|
+
selected: "已选",
|
|
449
|
+
freeze: "冻结",
|
|
450
|
+
sort: "排序",
|
|
451
|
+
clear: "清空",
|
|
452
|
+
search: "搜索",
|
|
453
|
+
all: "全选"
|
|
454
|
+
},
|
|
455
|
+
columnSet: "列设置",
|
|
456
|
+
overwriteSave: "覆盖保存",
|
|
457
|
+
saveAs: "另存为",
|
|
458
|
+
saveTemplate: "存模板",
|
|
459
|
+
selectTemplate: "选择模板",
|
|
460
|
+
hideMsg: "至少保留一列显示",
|
|
461
|
+
maxFreezeNumMsg: "冻结列不可超过6项",
|
|
462
|
+
defaultTemplateName: "请输入名称,如未填写由系统按时间生成",
|
|
463
|
+
reserveTemplateName: "如未填写名称将保留之前的名称",
|
|
464
|
+
resetBtn: "重置",
|
|
465
|
+
saveBtn: "确定",
|
|
466
|
+
hideAll: "全部隐藏",
|
|
467
|
+
showAll: "全部显示",
|
|
468
|
+
tabs: {
|
|
469
|
+
base: {
|
|
470
|
+
title: "基础设置",
|
|
471
|
+
tips: "点击图标按钮设置个性化"
|
|
472
|
+
},
|
|
473
|
+
other: {
|
|
474
|
+
title: "其他设置",
|
|
475
|
+
tips: "设置服务器排序或客户端排序、每页条数大小。",
|
|
476
|
+
sortType: "排序类型",
|
|
477
|
+
currPageSort: "当前页数据排序",
|
|
478
|
+
allDataSort: "所有数据排序",
|
|
479
|
+
pageSize: "每页条数"
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
title: "个性化设置",
|
|
483
|
+
switchtitle: "模板管理",
|
|
484
|
+
switchsave: "保存配置",
|
|
485
|
+
switchlabel: "配置列表:",
|
|
486
|
+
switchapply: "使用",
|
|
487
|
+
switchedit: "编辑",
|
|
488
|
+
switchdel: "删除",
|
|
489
|
+
switchconfirm: "确定",
|
|
490
|
+
switchonlytemp: "保存模板",
|
|
491
|
+
switchtempapply: "保存并使用模板",
|
|
492
|
+
switchtempoverwrite: "覆盖并使用模板",
|
|
493
|
+
switchdelcon: "确定要删除这个模板?",
|
|
494
|
+
switchdelyes: "确定",
|
|
495
|
+
switchdelno: "取消",
|
|
496
|
+
switchapplycon: "确定要使用这个模板?"
|
|
497
|
+
},
|
|
498
|
+
removeSelectRecord: "您确定要移除所选记录吗?",
|
|
499
|
+
saveSuccess: "保存成功",
|
|
500
|
+
selectOneRecord: "请至少选择一条记录!",
|
|
501
|
+
isSaveMsg: "有修改的数据,是否要保存?"
|
|
502
|
+
},
|
|
503
|
+
hrapprover: {
|
|
504
|
+
approver: "权签人",
|
|
505
|
+
noselected: "没有选择权签人",
|
|
506
|
+
noapprover: "没有权签人",
|
|
507
|
+
remark: "备注"
|
|
508
|
+
},
|
|
509
|
+
imageViewer: {
|
|
510
|
+
loadErrorAlt: "加载失败",
|
|
511
|
+
save: "保存图片",
|
|
512
|
+
del: "删除图片",
|
|
513
|
+
thumbnail: "缩略图",
|
|
514
|
+
menu: "目录",
|
|
515
|
+
hide: "隐藏侧边栏",
|
|
516
|
+
show: "显示侧边栏"
|
|
517
|
+
},
|
|
518
|
+
navMenu: {
|
|
519
|
+
moreText: "更多"
|
|
520
|
+
},
|
|
521
|
+
logout: {
|
|
522
|
+
in: "登录",
|
|
523
|
+
out: "注销"
|
|
524
|
+
},
|
|
525
|
+
page: {
|
|
526
|
+
goto: "前往",
|
|
527
|
+
item: "条",
|
|
528
|
+
next: "下一页",
|
|
529
|
+
page: "条/页",
|
|
530
|
+
pageClassifier: "页",
|
|
531
|
+
pagesize: "条/页",
|
|
532
|
+
prev: "上一页",
|
|
533
|
+
total: "共",
|
|
534
|
+
totals: "总条数:",
|
|
535
|
+
jump: "跳至",
|
|
536
|
+
hundredThousand: "10万+",
|
|
537
|
+
million: "100万+",
|
|
538
|
+
tenMillion: "1千万+",
|
|
539
|
+
loadingTotals: "加载总条数…"
|
|
540
|
+
},
|
|
541
|
+
popeditor: {
|
|
542
|
+
cancel: "取 消",
|
|
543
|
+
confirm: "确 认",
|
|
544
|
+
historyLists: "历史数据列表",
|
|
545
|
+
reset: "重 置",
|
|
546
|
+
search: "查 询",
|
|
547
|
+
selectionLists: "选择数据列表",
|
|
548
|
+
sourceLists: "所有数据列表",
|
|
549
|
+
title: "选择",
|
|
550
|
+
filterNode: "输入内容进行筛选"
|
|
551
|
+
},
|
|
552
|
+
popupload: {
|
|
553
|
+
fileName: "文件名",
|
|
554
|
+
fileSize: "文件大小",
|
|
555
|
+
fileStatus: "文件状态",
|
|
556
|
+
uploadError: "上传失败",
|
|
557
|
+
dialogTitle: "文件上传",
|
|
558
|
+
cancelButtonText: "取消",
|
|
559
|
+
tipsFileText: "上传提示",
|
|
560
|
+
saveButtonText: "开始上传",
|
|
561
|
+
uploadSuccess: "上传成功!",
|
|
562
|
+
uploadButtonText: "选择文件",
|
|
563
|
+
uploadsButtonText: "选择批量文件",
|
|
564
|
+
errorTypeTips: "上传文件类型不匹配",
|
|
565
|
+
errorNumTips: "上传文件数量超出限制,已取消该操作",
|
|
566
|
+
errorSizeTips: "上传文件大小超出限制",
|
|
567
|
+
limitUploadFileNumber: "上传文件数限制为",
|
|
568
|
+
limitUploadFileType: "上传文件类型限制为",
|
|
569
|
+
limitUploadFileSize: "上传文件大小不超过"
|
|
570
|
+
},
|
|
571
|
+
rate: {
|
|
572
|
+
level: {
|
|
573
|
+
average: "一般",
|
|
574
|
+
excellent: "很好",
|
|
575
|
+
fair: "差",
|
|
576
|
+
good: "好",
|
|
577
|
+
poor: "很差"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
select: {
|
|
581
|
+
loading: "加载中",
|
|
582
|
+
noMatch: "无匹配数据",
|
|
583
|
+
noData: "暂无相关数据",
|
|
584
|
+
placeholder: "请选择",
|
|
585
|
+
pleaseSearch: "请搜索",
|
|
586
|
+
search: "搜索",
|
|
587
|
+
selected: "已选",
|
|
588
|
+
selectedNum: "已选 {num} 个",
|
|
589
|
+
noSearchData: "无相关搜索结果,请重新输入",
|
|
590
|
+
add: "新增",
|
|
591
|
+
collapse: "收起"
|
|
592
|
+
},
|
|
593
|
+
search: {
|
|
594
|
+
placeholder: "搜索"
|
|
595
|
+
},
|
|
596
|
+
signature: {
|
|
597
|
+
confirm: "确认",
|
|
598
|
+
rewrite: "重写",
|
|
599
|
+
cancel: "取消",
|
|
600
|
+
tips: "请手写签名",
|
|
601
|
+
resign: "重新签名",
|
|
602
|
+
placeholder: "请在此签名(必填)"
|
|
603
|
+
},
|
|
604
|
+
tabs: {
|
|
605
|
+
moreItem: "更多"
|
|
606
|
+
},
|
|
607
|
+
tag: {
|
|
608
|
+
add: "添加"
|
|
609
|
+
},
|
|
610
|
+
toggleMenu: {
|
|
611
|
+
placeholder: "请输入内容进行筛选"
|
|
612
|
+
},
|
|
613
|
+
treeMenu: {
|
|
614
|
+
placeholder: "请输入内容进行筛选"
|
|
615
|
+
},
|
|
616
|
+
transfer: {
|
|
617
|
+
filterPlaceholder: "请输入搜索内容",
|
|
618
|
+
hasCheckedFormat: "已选 {checked}/{total} 项",
|
|
619
|
+
noCheckedFormat: "共 {total} 项",
|
|
620
|
+
noData: "无数据",
|
|
621
|
+
noMatch: "无匹配数据",
|
|
622
|
+
titles: ["列表 1", "列表 2"]
|
|
623
|
+
},
|
|
624
|
+
tree: {
|
|
625
|
+
loading: "加载中",
|
|
626
|
+
emptyText: "暂无数据",
|
|
627
|
+
switchText: "同时勾选下级",
|
|
628
|
+
edit: "编辑",
|
|
629
|
+
delete: "删除",
|
|
630
|
+
addChild: "新增下级",
|
|
631
|
+
newNodeTitle: "新增下级",
|
|
632
|
+
deleteTip1: "删除后数据不可恢复,确定删除吗?",
|
|
633
|
+
deleteTip2: "该节点存在下级节点,是否保留下级节点数据?",
|
|
634
|
+
deleteTip3: "保留下级节点数据"
|
|
635
|
+
},
|
|
636
|
+
usercard: {
|
|
637
|
+
address: "地址",
|
|
638
|
+
collapse: "收起",
|
|
639
|
+
department: "部门",
|
|
640
|
+
email: "邮箱",
|
|
641
|
+
employeeId: "员工 ID",
|
|
642
|
+
employee_id: "员工 ID",
|
|
643
|
+
empno: "工号",
|
|
644
|
+
expand: "展开",
|
|
645
|
+
fax: "传真",
|
|
646
|
+
internal: "内线",
|
|
647
|
+
manager: "主管",
|
|
648
|
+
mobile: "手机",
|
|
649
|
+
other: "其他",
|
|
650
|
+
phone: "固定电话",
|
|
651
|
+
timezone: "时区",
|
|
652
|
+
title: "用户信息: {0}",
|
|
653
|
+
travelcode: "出差联系信息",
|
|
654
|
+
viop: "VIOP",
|
|
655
|
+
zipcode: "邮编"
|
|
656
|
+
},
|
|
657
|
+
richText: {
|
|
658
|
+
bold: "加粗",
|
|
659
|
+
italic: "倾斜",
|
|
660
|
+
underline: "下划线",
|
|
661
|
+
header: "段落格式",
|
|
662
|
+
strike: "删除线",
|
|
663
|
+
blockquote: "块引用",
|
|
664
|
+
codeBlock: "插入代码段",
|
|
665
|
+
size: "字体大小",
|
|
666
|
+
listOrdered: "编号列表",
|
|
667
|
+
listBullet: "项目列表",
|
|
668
|
+
header1: "h1",
|
|
669
|
+
header2: "h2",
|
|
670
|
+
align: "对齐方式",
|
|
671
|
+
color: "字体颜色",
|
|
672
|
+
background: "背景颜色",
|
|
673
|
+
image: "图像",
|
|
674
|
+
video: "视频",
|
|
675
|
+
link: "添加链接",
|
|
676
|
+
formula: "插入公式",
|
|
677
|
+
clean: "清除格式",
|
|
678
|
+
indent1: "向左缩进",
|
|
679
|
+
indent2: "向右缩进",
|
|
680
|
+
pickerLabel: "标题大小",
|
|
681
|
+
headerPicker1: "标题一",
|
|
682
|
+
headerPicker2: "标题二",
|
|
683
|
+
headerPicker3: "标题三",
|
|
684
|
+
headerPicker4: "标题四",
|
|
685
|
+
headerPicker5: "标题五",
|
|
686
|
+
headerPicker6: "标题六",
|
|
687
|
+
normal: "标准",
|
|
688
|
+
sizeSmall: "小号",
|
|
689
|
+
sizeLarge: "大号",
|
|
690
|
+
sizeHuge: "超大号",
|
|
691
|
+
alignPicker1: "居左对齐",
|
|
692
|
+
alignPicker2: "居中对齐",
|
|
693
|
+
alignPicker3: "居右对齐",
|
|
694
|
+
alignPicker4: "两端对齐",
|
|
695
|
+
subScript: "下标",
|
|
696
|
+
superScript: "上标",
|
|
697
|
+
directionRTL: "从右到左",
|
|
698
|
+
font: "字体",
|
|
699
|
+
file: "文件",
|
|
700
|
+
betterTable: "表格",
|
|
701
|
+
fullscreen: "全屏",
|
|
702
|
+
insertColumnRight: "右插入列",
|
|
703
|
+
insertColumnLeft: "左插入列",
|
|
704
|
+
insertRowUp: "上插入行",
|
|
705
|
+
insertRowDown: "下插入行",
|
|
706
|
+
mergeCells: "合并单元格",
|
|
707
|
+
unmergeCells: "拆分单元格",
|
|
708
|
+
deleteColumn: "删除当前列",
|
|
709
|
+
deleteRow: "删除当前行",
|
|
710
|
+
deleteTable: "删除表格",
|
|
711
|
+
colorPicker: "背景颜色",
|
|
712
|
+
placeholder: "在此处插入文本...",
|
|
713
|
+
maxLength: "文本长度超过限制,支持的最大长度是 "
|
|
714
|
+
},
|
|
715
|
+
steps: {
|
|
716
|
+
done: "已完成",
|
|
717
|
+
doing: "进行中",
|
|
718
|
+
wait: "等待中"
|
|
719
|
+
},
|
|
720
|
+
actionSheet: {
|
|
721
|
+
cancel: "取消"
|
|
722
|
+
},
|
|
723
|
+
image: {
|
|
724
|
+
loadFail: "加载失败"
|
|
725
|
+
},
|
|
726
|
+
miniPicker: {
|
|
727
|
+
cancel: "取消",
|
|
728
|
+
confirm: "确定"
|
|
729
|
+
},
|
|
730
|
+
pullRefresh: {
|
|
731
|
+
pullingDown: "下拉即可刷新",
|
|
732
|
+
pullingUp: "上拉即可刷新",
|
|
733
|
+
pulling: "下拉即可刷新",
|
|
734
|
+
loosing: "释放即可刷新",
|
|
735
|
+
success: "刷新成功",
|
|
736
|
+
failed: "刷新失败",
|
|
737
|
+
noMore: "没有更多了"
|
|
738
|
+
},
|
|
739
|
+
currency: {
|
|
740
|
+
defaultCurrency: "默认币种",
|
|
741
|
+
setDefault: "设为默认",
|
|
742
|
+
chooseCurrency: "选择币种"
|
|
743
|
+
},
|
|
744
|
+
calendarBar: {
|
|
745
|
+
week: {
|
|
746
|
+
0: "日",
|
|
747
|
+
1: "一",
|
|
748
|
+
2: "二",
|
|
749
|
+
3: "三",
|
|
750
|
+
4: "四",
|
|
751
|
+
5: "五",
|
|
752
|
+
6: "六"
|
|
753
|
+
},
|
|
754
|
+
year: "%s年",
|
|
755
|
+
yearMonth: "%y年%m月",
|
|
756
|
+
month: {
|
|
757
|
+
1: "1月",
|
|
758
|
+
2: "2月",
|
|
759
|
+
3: "3月",
|
|
760
|
+
4: "4月",
|
|
761
|
+
5: "5月",
|
|
762
|
+
6: "6月",
|
|
763
|
+
7: "7月",
|
|
764
|
+
8: "8月",
|
|
765
|
+
9: "9月",
|
|
766
|
+
10: "10月",
|
|
767
|
+
11: "11月",
|
|
768
|
+
12: "12月"
|
|
769
|
+
},
|
|
770
|
+
monthAbbr: {
|
|
771
|
+
1: "1",
|
|
772
|
+
2: "2",
|
|
773
|
+
3: "3",
|
|
774
|
+
4: "4",
|
|
775
|
+
5: "5",
|
|
776
|
+
6: "6",
|
|
777
|
+
7: "7",
|
|
778
|
+
8: "8",
|
|
779
|
+
9: "9",
|
|
780
|
+
10: "10",
|
|
781
|
+
11: "11",
|
|
782
|
+
12: "12"
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
calendarView: {
|
|
786
|
+
week: {
|
|
787
|
+
0: "日",
|
|
788
|
+
1: "一",
|
|
789
|
+
2: "二",
|
|
790
|
+
3: "三",
|
|
791
|
+
4: "四",
|
|
792
|
+
5: "五",
|
|
793
|
+
6: "六"
|
|
794
|
+
},
|
|
795
|
+
weekDays: {
|
|
796
|
+
0: "周日",
|
|
797
|
+
1: "周一",
|
|
798
|
+
2: "周二",
|
|
799
|
+
3: "周三",
|
|
800
|
+
4: "周四",
|
|
801
|
+
5: "周五",
|
|
802
|
+
6: "周六"
|
|
803
|
+
},
|
|
804
|
+
backToday: "回今天",
|
|
805
|
+
new: "新增",
|
|
806
|
+
noSchedule: "暂无日程",
|
|
807
|
+
year: "年",
|
|
808
|
+
month: "月",
|
|
809
|
+
dateFormat: "yyyy 年 MM 月"
|
|
810
|
+
},
|
|
811
|
+
selectedBox: {
|
|
812
|
+
select: "已选(%s)",
|
|
813
|
+
allSelect: "已全选(%s)",
|
|
814
|
+
clear: "清空"
|
|
815
|
+
},
|
|
816
|
+
record: {
|
|
817
|
+
record: "录音",
|
|
818
|
+
cancel: "取消",
|
|
819
|
+
confirm: "确定",
|
|
820
|
+
clickToStartRecording: "点击开始录音",
|
|
821
|
+
clickToResumeRecording: "点击继续录音"
|
|
822
|
+
},
|
|
823
|
+
dialogSelect: {
|
|
824
|
+
treeSearch: "请输入关键字并回车"
|
|
825
|
+
}
|
|
826
|
+
},
|
|
827
|
+
validation: {
|
|
828
|
+
array: {
|
|
829
|
+
len: "%s 的长度必须为 %s",
|
|
830
|
+
min: "%s 长度不能小于 %s",
|
|
831
|
+
max: "%s 的长度不能大于 %s",
|
|
832
|
+
range: "%s 的长度必须介于 %s 和 %s 之间"
|
|
833
|
+
},
|
|
834
|
+
date: {
|
|
835
|
+
format: "%s 日期 %s 对于格式 %s 无效",
|
|
836
|
+
invalid: "%s 日期 %s 无效",
|
|
837
|
+
parse: "无法分析 %s 日期, %s 无效"
|
|
838
|
+
},
|
|
839
|
+
default: "%s 字段校验错误",
|
|
840
|
+
enum: "%s 必须是 %s 中的一个",
|
|
841
|
+
number: {
|
|
842
|
+
len: "%s 必须等于 %s",
|
|
843
|
+
min: "%s 不能小于 %s",
|
|
844
|
+
max: "%s 不能大于 %s",
|
|
845
|
+
range: "%s 必须介于 %s 和 %s 之间"
|
|
846
|
+
},
|
|
847
|
+
pattern: {
|
|
848
|
+
mismatch: "%s 值%s 与模式 %s 不匹配"
|
|
849
|
+
},
|
|
850
|
+
required: "必填",
|
|
851
|
+
string: {
|
|
852
|
+
len: "%s 必须是 %s 个字符",
|
|
853
|
+
min: "%s 必须至少为 %s 个字符",
|
|
854
|
+
max: "%s 不能大于 %s 个字符",
|
|
855
|
+
range: "%s 必须介于 %s 和 %s 个字符之间"
|
|
856
|
+
},
|
|
857
|
+
types: {
|
|
858
|
+
acceptFile: "只接受文件",
|
|
859
|
+
acceptImg: "只接受图片格式",
|
|
860
|
+
array: "非法数组",
|
|
861
|
+
boolean: "非法布尔值",
|
|
862
|
+
date: "不符合规则的日期格式",
|
|
863
|
+
dateTime: "不符合规则的日期时间格式",
|
|
864
|
+
dateYM: "不符合规则的日期格式(yyyy-mm)",
|
|
865
|
+
dateYMD: "不符合规则的日期格式(yyyy-MM-dd)",
|
|
866
|
+
digits: "非法纯数字",
|
|
867
|
+
email: "非法邮件地址",
|
|
868
|
+
fileSize: "文件大小的格式不正确,应如 3kb",
|
|
869
|
+
float: "非法浮点数",
|
|
870
|
+
hex: "非法十六进制",
|
|
871
|
+
integer: "非法整数",
|
|
872
|
+
longDateTime: "不符合规则的长日期格式",
|
|
873
|
+
method: "必须是函数(Function)",
|
|
874
|
+
number: "非法数字",
|
|
875
|
+
object: "非法对象",
|
|
876
|
+
regexp: "非法正则表达式",
|
|
877
|
+
specialch: "只能包含数字、字母、下划线、横杠、点号",
|
|
878
|
+
specialch2: "只能包含数字、字母、下划线、横杠",
|
|
879
|
+
speczh: "只能包含数字、字母、下划线、汉",
|
|
880
|
+
string: "非法字符串",
|
|
881
|
+
time: "不符合规则的时间格式",
|
|
882
|
+
url: "非法 URL 地址",
|
|
883
|
+
version: "非法版本格式"
|
|
884
|
+
},
|
|
885
|
+
whitespace: "%s 不能为空"
|
|
886
|
+
}
|
|
887
|
+
}, Y = {
|
|
888
|
+
"en-US": "English",
|
|
889
|
+
"zh-CN": "中文",
|
|
890
|
+
"zh-TW": "中国台湾",
|
|
891
|
+
hello: "Hello {name}",
|
|
892
|
+
code: "en-US",
|
|
893
|
+
yes: "Yes",
|
|
894
|
+
no: "No",
|
|
895
|
+
ui: {
|
|
896
|
+
numeric: {
|
|
897
|
+
equalTo: "Equal to",
|
|
898
|
+
notEqualTo: "Not equal to",
|
|
899
|
+
moreThan: "More than",
|
|
900
|
+
moreThanOrEqualTo: "More than or equal to",
|
|
901
|
+
lessThan: "Less than",
|
|
902
|
+
lessThanOrEqualTo: "Less than or equal to",
|
|
903
|
+
empty: "Empty",
|
|
904
|
+
nonEmpty: "Non-empty"
|
|
905
|
+
},
|
|
906
|
+
queryBuilder: {
|
|
907
|
+
addItem: "Add Rule",
|
|
908
|
+
addGroup: "Add Rule Group",
|
|
909
|
+
removeGroup: "Del Rule Group"
|
|
910
|
+
},
|
|
911
|
+
wizard: {
|
|
912
|
+
previousStep: "LastStep",
|
|
913
|
+
nextStep: "NextStep",
|
|
914
|
+
save: "Save",
|
|
915
|
+
submit: "Submit"
|
|
916
|
+
},
|
|
917
|
+
linkMenu: {
|
|
918
|
+
title: "news",
|
|
919
|
+
placeholder: "Please enter keywords to filter...",
|
|
920
|
+
sure: "Determine",
|
|
921
|
+
cancel: "cancel"
|
|
922
|
+
},
|
|
923
|
+
todoList: {
|
|
924
|
+
add: "Add",
|
|
925
|
+
placeholder: "please input your todo things"
|
|
926
|
+
},
|
|
927
|
+
alert: {
|
|
928
|
+
error: "Error",
|
|
929
|
+
info: "Info",
|
|
930
|
+
success: "Success",
|
|
931
|
+
title: "Message notification",
|
|
932
|
+
warning: "Warning"
|
|
933
|
+
},
|
|
934
|
+
amount: {
|
|
935
|
+
currency: "Currency",
|
|
936
|
+
amount: "Amount",
|
|
937
|
+
date: "Date",
|
|
938
|
+
equalTo: "Equal to",
|
|
939
|
+
notEqualTo: "Not equal to",
|
|
940
|
+
moreThan: "More than",
|
|
941
|
+
moreThanOrEqualTo: "More than or equal to",
|
|
942
|
+
lessThan: "Less than",
|
|
943
|
+
lessThanOrEqualTo: "Less than or equal to",
|
|
944
|
+
empty: "Empty",
|
|
945
|
+
nonEmpty: "Non-empty"
|
|
946
|
+
},
|
|
947
|
+
base: {
|
|
948
|
+
all: "All",
|
|
949
|
+
cancel: "Cancel",
|
|
950
|
+
confirm: "OK",
|
|
951
|
+
delete: "Delete",
|
|
952
|
+
edit: "Edit",
|
|
953
|
+
more: "More",
|
|
954
|
+
reset: "Reset",
|
|
955
|
+
clear: "Clear",
|
|
956
|
+
comma: ","
|
|
957
|
+
},
|
|
958
|
+
button: {
|
|
959
|
+
cancel: "Cancel",
|
|
960
|
+
confirm: "Confirm"
|
|
961
|
+
},
|
|
962
|
+
buttonMessage: {
|
|
963
|
+
cancel: "Cancel",
|
|
964
|
+
confirm: "Confirm"
|
|
965
|
+
},
|
|
966
|
+
cell: {
|
|
967
|
+
placeholder: "Select"
|
|
968
|
+
},
|
|
969
|
+
cascader: {
|
|
970
|
+
noMatch: "No matching data",
|
|
971
|
+
loading: "Loading",
|
|
972
|
+
placeholder: "Select",
|
|
973
|
+
noData: "No data"
|
|
974
|
+
},
|
|
975
|
+
chart: {
|
|
976
|
+
auxiliary: "Auxiliary",
|
|
977
|
+
emptyText: "No Data",
|
|
978
|
+
kName: "Day K",
|
|
979
|
+
other: "Other",
|
|
980
|
+
summation: "Summation",
|
|
981
|
+
total: "Total",
|
|
982
|
+
value: "Value"
|
|
983
|
+
},
|
|
984
|
+
colorSelectPanel: {
|
|
985
|
+
confirm: "Ok",
|
|
986
|
+
cancel: "Cancel",
|
|
987
|
+
predefine: "Predefine Color",
|
|
988
|
+
history: "History",
|
|
989
|
+
empty: "Empty"
|
|
990
|
+
},
|
|
991
|
+
crop: {
|
|
992
|
+
cropImage: "crop image",
|
|
993
|
+
croppedImage: "Post-Crop Image"
|
|
994
|
+
},
|
|
995
|
+
datepicker: {
|
|
996
|
+
clear: "Clear",
|
|
997
|
+
cancel: "Cancel",
|
|
998
|
+
endDate: "End Date",
|
|
999
|
+
confirm: "OK",
|
|
1000
|
+
month: "month",
|
|
1001
|
+
endTime: "End Time",
|
|
1002
|
+
month2: "February",
|
|
1003
|
+
month1: "January",
|
|
1004
|
+
month4: "April",
|
|
1005
|
+
month3: "March",
|
|
1006
|
+
month6: "June",
|
|
1007
|
+
month5: "May",
|
|
1008
|
+
month8: "August",
|
|
1009
|
+
month7: "July",
|
|
1010
|
+
month10: "October",
|
|
1011
|
+
month9: "September",
|
|
1012
|
+
month12: "December",
|
|
1013
|
+
month11: "November",
|
|
1014
|
+
months: {
|
|
1015
|
+
feb: "Feb",
|
|
1016
|
+
jan: "Jan",
|
|
1017
|
+
apr: "Apr",
|
|
1018
|
+
mar: "Mar",
|
|
1019
|
+
jun: "Jun",
|
|
1020
|
+
may: "May",
|
|
1021
|
+
aug: "Aug",
|
|
1022
|
+
jul: "Jul",
|
|
1023
|
+
oct: "Oct",
|
|
1024
|
+
sep: "Sep",
|
|
1025
|
+
dec: "Dec",
|
|
1026
|
+
nov: "Nov"
|
|
1027
|
+
},
|
|
1028
|
+
nextYear: "Next Year",
|
|
1029
|
+
nextMonth: "Next Month",
|
|
1030
|
+
prevMonth: "Previous Month",
|
|
1031
|
+
now: "Now",
|
|
1032
|
+
selectDate: "Select date",
|
|
1033
|
+
prevYear: "Previous Year",
|
|
1034
|
+
startDate: "Start Date",
|
|
1035
|
+
selectTime: "Select time",
|
|
1036
|
+
today: "Today",
|
|
1037
|
+
currentMonth: "Current Month",
|
|
1038
|
+
startTime: "Start Time",
|
|
1039
|
+
week: "week",
|
|
1040
|
+
weeks: {
|
|
1041
|
+
mon: "Mon",
|
|
1042
|
+
sun: "Sun",
|
|
1043
|
+
wed: "Wed",
|
|
1044
|
+
tue: "Tue",
|
|
1045
|
+
thu: "Thu",
|
|
1046
|
+
sat: "Sat",
|
|
1047
|
+
fri: "Fri"
|
|
1048
|
+
},
|
|
1049
|
+
timezone: "selecting a timezone",
|
|
1050
|
+
year: "",
|
|
1051
|
+
to: "to",
|
|
1052
|
+
yearMonth: "{year} / {month}",
|
|
1053
|
+
yearMonthDay: "{year} / {month} / {day}"
|
|
1054
|
+
},
|
|
1055
|
+
richTextEditor: {
|
|
1056
|
+
bold: "bold",
|
|
1057
|
+
italic: "italic",
|
|
1058
|
+
link: "link",
|
|
1059
|
+
unlink: "unlink",
|
|
1060
|
+
highlight: "high light",
|
|
1061
|
+
underline: "underline",
|
|
1062
|
+
strike: "strike",
|
|
1063
|
+
subscript: "subscript",
|
|
1064
|
+
superscript: "superscript",
|
|
1065
|
+
code: "code",
|
|
1066
|
+
unorderedlist: "unorderedlist",
|
|
1067
|
+
orderedlist: "orderedlist",
|
|
1068
|
+
taskList: "taskList",
|
|
1069
|
+
quote: "quote",
|
|
1070
|
+
codeBlock: "code block",
|
|
1071
|
+
formatClear: "format clear",
|
|
1072
|
+
nodeDelete: "node delete",
|
|
1073
|
+
undo: "undo",
|
|
1074
|
+
redo: "redo",
|
|
1075
|
+
left: "left",
|
|
1076
|
+
center: "center",
|
|
1077
|
+
right: "right",
|
|
1078
|
+
fontSize: "font size",
|
|
1079
|
+
lineHeight: "line height",
|
|
1080
|
+
hBox: "h box",
|
|
1081
|
+
img: "img",
|
|
1082
|
+
color: "color",
|
|
1083
|
+
table: "table",
|
|
1084
|
+
backgroundColor: "backgroundColor"
|
|
1085
|
+
},
|
|
1086
|
+
calendar: {
|
|
1087
|
+
showType: {
|
|
1088
|
+
year: "year"
|
|
1089
|
+
}
|
|
1090
|
+
},
|
|
1091
|
+
dept: {
|
|
1092
|
+
code: "Code",
|
|
1093
|
+
company: "Company",
|
|
1094
|
+
dept1: "First Level Department",
|
|
1095
|
+
dept2: "Second Level Department",
|
|
1096
|
+
dept3: "Third Level Department",
|
|
1097
|
+
dept4: "Fourth Level Department",
|
|
1098
|
+
dept5: "Fifth Level Department",
|
|
1099
|
+
dept6: "Sixth Level Department",
|
|
1100
|
+
dept7: "Seventh Level Department",
|
|
1101
|
+
dept8: "Eighth Level Department",
|
|
1102
|
+
input: "Input Dept Code or Name is available",
|
|
1103
|
+
name: "Name",
|
|
1104
|
+
search: "Quick Search",
|
|
1105
|
+
selected: "Selected"
|
|
1106
|
+
},
|
|
1107
|
+
dialogBox: {
|
|
1108
|
+
confirm: "confirm",
|
|
1109
|
+
cancel: "cancel"
|
|
1110
|
+
},
|
|
1111
|
+
load: {
|
|
1112
|
+
dot: "Loading"
|
|
1113
|
+
},
|
|
1114
|
+
exception: {
|
|
1115
|
+
build: "Building",
|
|
1116
|
+
busy: "The network is busy. Please wait",
|
|
1117
|
+
noperm: "Not find the page",
|
|
1118
|
+
weaknet: "Poor network performance",
|
|
1119
|
+
pcview: "View the file on the PC",
|
|
1120
|
+
nodata: "Get some rest",
|
|
1121
|
+
create: "Create",
|
|
1122
|
+
provide: "Provided by the TINY Team DEV",
|
|
1123
|
+
nodatamf: "No data",
|
|
1124
|
+
nopermmf: "No access",
|
|
1125
|
+
weaknetmf: "Network anomaly",
|
|
1126
|
+
noresult: "No result",
|
|
1127
|
+
nonews: "No latest news",
|
|
1128
|
+
pagenoperm: "403:No access",
|
|
1129
|
+
pageweaknet: "Network anomaly",
|
|
1130
|
+
pagenothing: "404:The page you visited does not exist",
|
|
1131
|
+
pageservererror: "500:Server exception"
|
|
1132
|
+
},
|
|
1133
|
+
fileUpload: {
|
|
1134
|
+
largefile: " is too large and will be uploaded in segments. Please wait.",
|
|
1135
|
+
folder: " has more than five layers of folders. The file will not be uploaded",
|
|
1136
|
+
init: "Service error. Please try again.",
|
|
1137
|
+
token: "Perform EDM authentication first and obtain the token",
|
|
1138
|
+
exceed: "The file size exceeds the limit of {maxSize}.",
|
|
1139
|
+
largeFile: "The file size exceeds the upper limit by 2 GB !!",
|
|
1140
|
+
fileSize: "The file size is lower than the limit of {minSize}{sizeUnit}",
|
|
1141
|
+
deleteTip: "Press delete to remove",
|
|
1142
|
+
downloadFile: "DownLoad file",
|
|
1143
|
+
previewFile: "Preview file",
|
|
1144
|
+
updateFile: "Update file",
|
|
1145
|
+
reUploadFile: "refresh upload file",
|
|
1146
|
+
cancelFile: "Cancel Upload",
|
|
1147
|
+
deleteFile: "Delete file",
|
|
1148
|
+
empty: "is empty!",
|
|
1149
|
+
kiaScanTip: "Sorry, unable to download. Please pass the KIA test first to download a file using public network. Current document is being checked by the KIA, Please wait a while then redownload.",
|
|
1150
|
+
fileNameExceeds: "exceeds 255 characters. Please change the file name.",
|
|
1151
|
+
fileName: "The file name",
|
|
1152
|
+
calcHash: "Document is calculating encryption",
|
|
1153
|
+
uploadFile: "Upload file",
|
|
1154
|
+
downloadAll: "Download all",
|
|
1155
|
+
onlySupport: "Only support {type} file",
|
|
1156
|
+
fileNotLessThan: "The size of single file cannot be less than ",
|
|
1157
|
+
fileNotMoreThan: "The size of single file cannot be more than ",
|
|
1158
|
+
notSupport: "The format (.{format}) is not allowed.",
|
|
1159
|
+
notSupportNoSuffix: "Files without suffixes are not supported currently",
|
|
1160
|
+
notSupportSpecialCharacters: "The file name contains special characters, please rename the file and upload again",
|
|
1161
|
+
attachment: "Attachment",
|
|
1162
|
+
uploadList: "Upload List",
|
|
1163
|
+
numberExceed: "The number of files exceeds the limit of {number}",
|
|
1164
|
+
numberLimit: "Maximum upload of {number} files.",
|
|
1165
|
+
encryptDialogTitle: "Watermark and encryption settings",
|
|
1166
|
+
addWatermark: "Add Watermark",
|
|
1167
|
+
encrypted: "Encrypted",
|
|
1168
|
+
docPreview: "Document Preview",
|
|
1169
|
+
networkError: "Network Error",
|
|
1170
|
+
pictureNetworkError: "Network error, upload failed",
|
|
1171
|
+
reUploadTip: "{number} files failed to upload!"
|
|
1172
|
+
},
|
|
1173
|
+
uploadList: {
|
|
1174
|
+
pictureUploading: "Picture uploading",
|
|
1175
|
+
uploadFailed: "Upload failed",
|
|
1176
|
+
uploading: "Uploading",
|
|
1177
|
+
download: "Download",
|
|
1178
|
+
reUpload: "Re-upload",
|
|
1179
|
+
delete: "Delete",
|
|
1180
|
+
noAttachments: "No attachments",
|
|
1181
|
+
cancel: "Cancel",
|
|
1182
|
+
preview: "Preview",
|
|
1183
|
+
releaseAndUpload: "Release the mouse and upload the file",
|
|
1184
|
+
dragOrClickImport: "Drag the file here, or click Import",
|
|
1185
|
+
shoot: "Shoot",
|
|
1186
|
+
selectFromAlbum: "Select from album",
|
|
1187
|
+
uploadFailedAndReupload: "Upload failed, click to reupload"
|
|
1188
|
+
},
|
|
1189
|
+
upload: {
|
|
1190
|
+
addPicture: "Add picture",
|
|
1191
|
+
addAudio: "Add audio",
|
|
1192
|
+
addVideo: "Add video"
|
|
1193
|
+
},
|
|
1194
|
+
grid: {
|
|
1195
|
+
dataUnchanged: "Data unchanged!",
|
|
1196
|
+
deleteSelectRecord: "Are you sure you want to delete the selected record?",
|
|
1197
|
+
emptyText: "No Data",
|
|
1198
|
+
error: {
|
|
1199
|
+
cellEditRender: "The renderer cell-render and edit-render cannot be used together.",
|
|
1200
|
+
delGetAllRecords: "The function getAllRecords is deprecated, please use getRecordset.",
|
|
1201
|
+
delGetRecords: "The function getRecords is deprecated, please use getData.",
|
|
1202
|
+
delLabel: "The property label is deprecated, please use title.",
|
|
1203
|
+
delProp: "The property prop is deprecated, please use field.",
|
|
1204
|
+
delRevert: "The function revert is deprecated, please use revertData.",
|
|
1205
|
+
groupFixed: "If grouping headers are used, fixed columns must be on the left and right sides.",
|
|
1206
|
+
notDelete: "delete method not exist.",
|
|
1207
|
+
notMouse: "Horizontal virtual scrolling does not support mouse-config.",
|
|
1208
|
+
notQuery: "query method not exist.",
|
|
1209
|
+
notResizable: "Horizontal virtual scrolling does not support resizable.",
|
|
1210
|
+
notSave: "save method not exist.",
|
|
1211
|
+
reqModule: "require {{name}} module.",
|
|
1212
|
+
rowIdEmpty: "The property row-id is not allowed to be empty.",
|
|
1213
|
+
scrollOriginal: "Virtual scrolling can only export source data, please set original=true.",
|
|
1214
|
+
scrollYHeight: "You must set the height or max-height to enable virtual scrolling.",
|
|
1215
|
+
toolbarId: "Toolbar must have a unique id",
|
|
1216
|
+
treeFixedExpand: "The fixed columns of the tree structure conflict with the expanded row.",
|
|
1217
|
+
treeInsert: "The tree structure does not support insert operations.",
|
|
1218
|
+
treeRemove: "The tree structure does not support remove operations.",
|
|
1219
|
+
unableInsert: "Unable to insert to the specified location.",
|
|
1220
|
+
dargSelf: "Self dragging is not allowed.",
|
|
1221
|
+
dargFixed: "Fixed columns cannot be dragged.",
|
|
1222
|
+
remoteMethod: '"remoteMethod" needs to be set for remote storage for personalized template management.',
|
|
1223
|
+
remoteSelectedMethod: '"remoteSelectedMethod" needs to be set for remote storage for personalized template management.',
|
|
1224
|
+
chainCallError: "There is a syntax error in the default slot for the column, please check.",
|
|
1225
|
+
renderParamError: "Expect to configure a rendering method for generating a VNode.",
|
|
1226
|
+
classComponentError: "Class component rendering error.",
|
|
1227
|
+
groupColumnFixedError: "Different fixed types cannot be set in the same group.",
|
|
1228
|
+
missingValueFormat: 'The renderer cannot format the date string. You should provide the "valueFormat" source date format configuration.'
|
|
1229
|
+
},
|
|
1230
|
+
filter: {
|
|
1231
|
+
allFilter: "All",
|
|
1232
|
+
allSelect: "(All)",
|
|
1233
|
+
endDate: "End Date",
|
|
1234
|
+
startDate: "Start Date",
|
|
1235
|
+
dateTips: "Please enter at least one date",
|
|
1236
|
+
clear: "Clear Current Filter",
|
|
1237
|
+
clearAll: "Clear All Filters",
|
|
1238
|
+
confirmFilter: "OK",
|
|
1239
|
+
empty: "Is Empty",
|
|
1240
|
+
emptyText: "No Data",
|
|
1241
|
+
equal: "Equal",
|
|
1242
|
+
include: "Include",
|
|
1243
|
+
prefix: "Starts With",
|
|
1244
|
+
resetFilter: "Reset",
|
|
1245
|
+
unempty: "Is not Empty"
|
|
1246
|
+
},
|
|
1247
|
+
individuation: {
|
|
1248
|
+
cancelBtn: "Cancel",
|
|
1249
|
+
colConfigs: {
|
|
1250
|
+
asc: "Ascending",
|
|
1251
|
+
desc: "Descending",
|
|
1252
|
+
frozenLeft: "Frozen on the left",
|
|
1253
|
+
frozenRight: "Frozen on the right",
|
|
1254
|
+
invisible: "Invisible",
|
|
1255
|
+
unsorted: "No sortting",
|
|
1256
|
+
unfrozen: "Unfrozen",
|
|
1257
|
+
visible: "Visible",
|
|
1258
|
+
unfreeze: "Unfrozen",
|
|
1259
|
+
unsort: "Unsort"
|
|
1260
|
+
},
|
|
1261
|
+
toolbar: {
|
|
1262
|
+
set: "Set",
|
|
1263
|
+
selected: "Selected",
|
|
1264
|
+
freeze: "Freeze",
|
|
1265
|
+
sort: "Sort",
|
|
1266
|
+
clear: "Clear",
|
|
1267
|
+
search: "Search",
|
|
1268
|
+
all: "All"
|
|
1269
|
+
},
|
|
1270
|
+
columnSet: "Column Setting",
|
|
1271
|
+
overwriteSave: "Overwrite Save",
|
|
1272
|
+
saveAs: "Save as",
|
|
1273
|
+
saveTemplate: "Save Template",
|
|
1274
|
+
selectTemplate: "Select Template",
|
|
1275
|
+
hideMsg: "Leave one column to show at least.",
|
|
1276
|
+
maxFreezeNumMsg: "Maxium number of frozen columns is 6",
|
|
1277
|
+
defaultTemplateName: "Please enter a name, if not filled in, it will be generated by the system according to time",
|
|
1278
|
+
reserveTemplateName: "If the name is not filled in, the previous name will be retained",
|
|
1279
|
+
resetBtn: "Reset",
|
|
1280
|
+
saveBtn: "OK",
|
|
1281
|
+
hideAll: "Hide All",
|
|
1282
|
+
showAll: "Show All",
|
|
1283
|
+
tabs: {
|
|
1284
|
+
base: {
|
|
1285
|
+
title: "Base Setting",
|
|
1286
|
+
tips: "Click the icon to set personalized."
|
|
1287
|
+
},
|
|
1288
|
+
other: {
|
|
1289
|
+
allDataSort: "Remote Data Sorting",
|
|
1290
|
+
currPageSort: "Current Page Data Sorting",
|
|
1291
|
+
pageSize: "Page Size",
|
|
1292
|
+
title: "Other Setting",
|
|
1293
|
+
tips: "Settings for Sorting and Pagesize.",
|
|
1294
|
+
sortType: "Sorting Type"
|
|
1295
|
+
}
|
|
1296
|
+
},
|
|
1297
|
+
title: "Personalized Settings",
|
|
1298
|
+
switchtitle: "Template Management",
|
|
1299
|
+
switchsave: "Save configuration",
|
|
1300
|
+
switchlabel: "List:",
|
|
1301
|
+
switchapply: "Apply",
|
|
1302
|
+
switchedit: "Edit",
|
|
1303
|
+
switchdel: "Delete",
|
|
1304
|
+
switchconfirm: "Confirm",
|
|
1305
|
+
switchonlytemp: "Save as template only",
|
|
1306
|
+
switchtempapply: "Save as template and use",
|
|
1307
|
+
switchtempoverwrite: "Overwrite template and use",
|
|
1308
|
+
switchdelcon: "Are you sure to delete this template?",
|
|
1309
|
+
switchdelyes: "Yes",
|
|
1310
|
+
switchdelno: "No",
|
|
1311
|
+
switchapplycon: "Are you sure to use this template?"
|
|
1312
|
+
},
|
|
1313
|
+
removeSelectRecord: "Are you sure you want to remove the selected record?",
|
|
1314
|
+
saveSuccess: "Save successfully.",
|
|
1315
|
+
selectOneRecord: "Please choose at least one piece of record!",
|
|
1316
|
+
isSaveMsg: "There are change records, do you want to save them?"
|
|
1317
|
+
},
|
|
1318
|
+
hrapprover: {
|
|
1319
|
+
approver: "Approver",
|
|
1320
|
+
noapprover: "There is no approver",
|
|
1321
|
+
noselected: "Select one record!",
|
|
1322
|
+
remark: "Remarks"
|
|
1323
|
+
},
|
|
1324
|
+
imageViewer: {
|
|
1325
|
+
loadErrorAlt: "Load Error",
|
|
1326
|
+
save: "Save picture",
|
|
1327
|
+
del: "Delete Picture",
|
|
1328
|
+
thumbnail: "Thumbnail",
|
|
1329
|
+
menu: "Menu",
|
|
1330
|
+
hide: "Hide Sidebar",
|
|
1331
|
+
show: "Show Sidebar"
|
|
1332
|
+
},
|
|
1333
|
+
navMenu: {
|
|
1334
|
+
moreText: "more"
|
|
1335
|
+
},
|
|
1336
|
+
logout: {
|
|
1337
|
+
in: "Login",
|
|
1338
|
+
out: "Logout"
|
|
1339
|
+
},
|
|
1340
|
+
page: {
|
|
1341
|
+
goto: "Go to",
|
|
1342
|
+
item: "",
|
|
1343
|
+
next: "Next",
|
|
1344
|
+
page: "Records/Page",
|
|
1345
|
+
pageClassifier: "",
|
|
1346
|
+
pagesize: "Records/Page",
|
|
1347
|
+
prev: "Prev",
|
|
1348
|
+
total: "Total ",
|
|
1349
|
+
totals: "Total: ",
|
|
1350
|
+
jump: "Go to",
|
|
1351
|
+
hundredThousand: "100K+",
|
|
1352
|
+
million: "1M+",
|
|
1353
|
+
tenMillion: "10M+",
|
|
1354
|
+
loadingTotals: "Loading Totals..."
|
|
1355
|
+
},
|
|
1356
|
+
popeditor: {
|
|
1357
|
+
cancel: "Cancel",
|
|
1358
|
+
confirm: "OK",
|
|
1359
|
+
historyLists: "History options",
|
|
1360
|
+
reset: "Reset",
|
|
1361
|
+
search: "Search",
|
|
1362
|
+
selectionLists: "Selected Items",
|
|
1363
|
+
sourceLists: "Available Items",
|
|
1364
|
+
title: "Select",
|
|
1365
|
+
filterNode: "input text to filter node"
|
|
1366
|
+
},
|
|
1367
|
+
popupload: {
|
|
1368
|
+
fileName: "File Name",
|
|
1369
|
+
fileSize: "File Size",
|
|
1370
|
+
fileStatus: "File Status",
|
|
1371
|
+
dialogTitle: "File Upload",
|
|
1372
|
+
cancelButtonText: "Cancel",
|
|
1373
|
+
tipsFileText: "upload hints",
|
|
1374
|
+
uploadError: "Upload failure!",
|
|
1375
|
+
uploadButtonText: "select file",
|
|
1376
|
+
uploadSuccess: "Upload Success!",
|
|
1377
|
+
saveButtonText: "Click To Upload",
|
|
1378
|
+
uploadsButtonText: "select files",
|
|
1379
|
+
errorTypeTips: "Upload file type mismatch",
|
|
1380
|
+
errorSizeTips: "Upload file size exceeds limit",
|
|
1381
|
+
limitUploadFileType: "Upload file type is limited to",
|
|
1382
|
+
limitUploadFileNumber: "Limit the number of uploaded files to",
|
|
1383
|
+
limitUploadFileSize: "The size of the uploaded file does not exceed",
|
|
1384
|
+
errorNumTips: "The number of uploaded files exceeds the limit. The operation has been cancelled"
|
|
1385
|
+
},
|
|
1386
|
+
rate: {
|
|
1387
|
+
level: {
|
|
1388
|
+
average: "Average",
|
|
1389
|
+
excellent: "Excellent",
|
|
1390
|
+
fair: "Fair",
|
|
1391
|
+
good: "Good",
|
|
1392
|
+
poor: "Poor"
|
|
1393
|
+
}
|
|
1394
|
+
},
|
|
1395
|
+
select: {
|
|
1396
|
+
loading: "Loading",
|
|
1397
|
+
noData: "No data",
|
|
1398
|
+
noMatch: "No matching data",
|
|
1399
|
+
placeholder: "Select",
|
|
1400
|
+
pleaseSearch: "Please search",
|
|
1401
|
+
search: "Search",
|
|
1402
|
+
selected: "Selected",
|
|
1403
|
+
selectedNum: "{num} selected",
|
|
1404
|
+
noSearchData: "No search results. Please try again",
|
|
1405
|
+
add: "Add",
|
|
1406
|
+
collapse: "Collapse"
|
|
1407
|
+
},
|
|
1408
|
+
search: {
|
|
1409
|
+
placeholder: "search"
|
|
1410
|
+
},
|
|
1411
|
+
signature: {
|
|
1412
|
+
confirm: "Confirm",
|
|
1413
|
+
rewrite: "Rewrite",
|
|
1414
|
+
cancel: "Cancel",
|
|
1415
|
+
tips: "Please sign by hand",
|
|
1416
|
+
resign: "Resign",
|
|
1417
|
+
placeholder: "Please sign here (required)"
|
|
1418
|
+
},
|
|
1419
|
+
tabs: {
|
|
1420
|
+
moreItem: "more"
|
|
1421
|
+
},
|
|
1422
|
+
tag: {
|
|
1423
|
+
add: "Add"
|
|
1424
|
+
},
|
|
1425
|
+
toggleMenu: {
|
|
1426
|
+
placeholder: "please input filter content"
|
|
1427
|
+
},
|
|
1428
|
+
treeMenu: {
|
|
1429
|
+
placeholder: "please input filter content"
|
|
1430
|
+
},
|
|
1431
|
+
transfer: {
|
|
1432
|
+
filterPlaceholder: "Enter keyword",
|
|
1433
|
+
hasCheckedFormat: "{checked}/{total} checked",
|
|
1434
|
+
noData: "No data",
|
|
1435
|
+
noMatch: "No matching data",
|
|
1436
|
+
noCheckedFormat: "{total} items",
|
|
1437
|
+
titles: ["List 1", "List 2"]
|
|
1438
|
+
},
|
|
1439
|
+
tree: {
|
|
1440
|
+
loading: "Loading",
|
|
1441
|
+
emptyText: "No data",
|
|
1442
|
+
switchText: "check easily",
|
|
1443
|
+
edit: "Edit",
|
|
1444
|
+
delete: "Delete",
|
|
1445
|
+
addChild: "Add Child",
|
|
1446
|
+
newNodeTitle: "Add Child Nodes",
|
|
1447
|
+
deleteTip1: "The deleted data cannot be restored. Are you sure you want to delete it?",
|
|
1448
|
+
deleteTip2: "This node has lower-level nodes. Do you want to retain the lower-level node data?",
|
|
1449
|
+
deleteTip3: "Retain the lower-level node data"
|
|
1450
|
+
},
|
|
1451
|
+
usercard: {
|
|
1452
|
+
address: "Address",
|
|
1453
|
+
collapse: "Collapse",
|
|
1454
|
+
department: "Department",
|
|
1455
|
+
email: "email",
|
|
1456
|
+
employeeId: "Employee ID",
|
|
1457
|
+
employee_id: "Employee ID",
|
|
1458
|
+
empno: "Employee Number",
|
|
1459
|
+
expand: "Expand",
|
|
1460
|
+
fax: "Fax",
|
|
1461
|
+
internal: "Internal",
|
|
1462
|
+
manager: "Manager",
|
|
1463
|
+
mobile: "Mobile",
|
|
1464
|
+
other: "Other",
|
|
1465
|
+
phone: "Telephone",
|
|
1466
|
+
timezone: "Time zone",
|
|
1467
|
+
title: "User information: {0}",
|
|
1468
|
+
travelcode: "Travel code",
|
|
1469
|
+
viop: "VIOP",
|
|
1470
|
+
zipcode: "Postal Code"
|
|
1471
|
+
},
|
|
1472
|
+
richText: {
|
|
1473
|
+
bold: "Bold",
|
|
1474
|
+
italic: "Tilt",
|
|
1475
|
+
underline: "Underline",
|
|
1476
|
+
header: "Paragraph Format",
|
|
1477
|
+
strike: "Delete Line",
|
|
1478
|
+
blockquote: "Block Reference",
|
|
1479
|
+
codeBlock: "Insert Code Segment",
|
|
1480
|
+
size: "Font Size",
|
|
1481
|
+
listOrdered: "No. List",
|
|
1482
|
+
listBullet: "Project List",
|
|
1483
|
+
header1: "H1",
|
|
1484
|
+
header2: "H2",
|
|
1485
|
+
align: "Alignment Mode",
|
|
1486
|
+
color: "Font Color",
|
|
1487
|
+
background: "Background Color",
|
|
1488
|
+
image: "Image",
|
|
1489
|
+
video: "Video",
|
|
1490
|
+
link: "Add Link",
|
|
1491
|
+
formula: "Insert Function",
|
|
1492
|
+
clean: "Clear Format",
|
|
1493
|
+
indent1: "Indent To The Left",
|
|
1494
|
+
indent2: "Indent To The Right",
|
|
1495
|
+
pickerLabel: "Title Size",
|
|
1496
|
+
headerPicker1: "Title 1",
|
|
1497
|
+
headerPicker2: "Title 2",
|
|
1498
|
+
headerPicker3: "Title 3",
|
|
1499
|
+
headerPicker4: "Title 4",
|
|
1500
|
+
headerPicker5: "Title 5",
|
|
1501
|
+
headerPicker6: "Title 6",
|
|
1502
|
+
normal: "Normal",
|
|
1503
|
+
sizeSmall: "Small",
|
|
1504
|
+
sizeLarge: "Large",
|
|
1505
|
+
sizeHuge: "Super Large Size",
|
|
1506
|
+
alignPicker1: "Align To The Left",
|
|
1507
|
+
alignPicker2: "Align In The Center",
|
|
1508
|
+
alignPicker3: "Align To The Right",
|
|
1509
|
+
alignPicker4: "Align The Two Ends",
|
|
1510
|
+
subScript: "Subscript",
|
|
1511
|
+
superScript: "Superscript",
|
|
1512
|
+
directionRTL: "Right To Left",
|
|
1513
|
+
font: "Font",
|
|
1514
|
+
file: "File",
|
|
1515
|
+
betterTable: "Table",
|
|
1516
|
+
fullscreen: "Fullscreen",
|
|
1517
|
+
insertColumnRight: "Insert Column Right",
|
|
1518
|
+
insertColumnLeft: "Insert Column Left",
|
|
1519
|
+
insertRowUp: "Insert Row Up",
|
|
1520
|
+
insertRowDown: "Insert Row Down",
|
|
1521
|
+
mergeCells: "Merge Cells",
|
|
1522
|
+
unmergeCells: "Split Cells",
|
|
1523
|
+
deleteColumn: "Delete Current Column",
|
|
1524
|
+
deleteRow: "Delete Current Row",
|
|
1525
|
+
deleteTable: "Delete Table",
|
|
1526
|
+
colorPicker: "Background Color",
|
|
1527
|
+
placeholder: "Insert text here...",
|
|
1528
|
+
maxLength: "Text Length exceeds the Limit, max Length config is "
|
|
1529
|
+
},
|
|
1530
|
+
steps: {
|
|
1531
|
+
done: "Completed",
|
|
1532
|
+
doing: "Ongoing",
|
|
1533
|
+
wait: "Waiting"
|
|
1534
|
+
},
|
|
1535
|
+
actionSheet: {
|
|
1536
|
+
cancel: "Cancel"
|
|
1537
|
+
},
|
|
1538
|
+
image: {
|
|
1539
|
+
loadFail: "Loading failed"
|
|
1540
|
+
},
|
|
1541
|
+
miniPicker: {
|
|
1542
|
+
cancel: "Cancel",
|
|
1543
|
+
confirm: "Confirm"
|
|
1544
|
+
},
|
|
1545
|
+
pullRefresh: {
|
|
1546
|
+
pullingDown: "Pull down to refresh",
|
|
1547
|
+
pullingUp: "Pull up to refresh",
|
|
1548
|
+
pulling: "Pull down to refresh",
|
|
1549
|
+
loosing: "Release to refresh",
|
|
1550
|
+
success: "Refresh success",
|
|
1551
|
+
failed: "Refresh failed",
|
|
1552
|
+
noMore: "There is no more"
|
|
1553
|
+
},
|
|
1554
|
+
currency: {
|
|
1555
|
+
defaultCurrency: "Default currency",
|
|
1556
|
+
setDefault: "Set as default",
|
|
1557
|
+
chooseCurrency: "Choose currency"
|
|
1558
|
+
},
|
|
1559
|
+
calendarBar: {
|
|
1560
|
+
week: {
|
|
1561
|
+
0: "SUN",
|
|
1562
|
+
1: "MON",
|
|
1563
|
+
2: "TUE",
|
|
1564
|
+
3: "WED",
|
|
1565
|
+
4: "THU",
|
|
1566
|
+
5: "FRI",
|
|
1567
|
+
6: "SAT"
|
|
1568
|
+
},
|
|
1569
|
+
year: "Year %s",
|
|
1570
|
+
yearMonth: "%m %y",
|
|
1571
|
+
month: {
|
|
1572
|
+
1: "January",
|
|
1573
|
+
2: "February",
|
|
1574
|
+
3: "March",
|
|
1575
|
+
4: "April",
|
|
1576
|
+
5: "May",
|
|
1577
|
+
6: "June",
|
|
1578
|
+
7: "July",
|
|
1579
|
+
8: "August",
|
|
1580
|
+
9: "September",
|
|
1581
|
+
10: "October",
|
|
1582
|
+
11: "November",
|
|
1583
|
+
12: "December"
|
|
1584
|
+
},
|
|
1585
|
+
monthAbbr: {
|
|
1586
|
+
1: "Jan",
|
|
1587
|
+
2: "Feb",
|
|
1588
|
+
3: "Mar",
|
|
1589
|
+
4: "Apr",
|
|
1590
|
+
5: "May",
|
|
1591
|
+
6: "Jun",
|
|
1592
|
+
7: "Jul",
|
|
1593
|
+
8: "Aug",
|
|
1594
|
+
9: "Sept",
|
|
1595
|
+
10: "Oct",
|
|
1596
|
+
11: "Nov",
|
|
1597
|
+
12: "Dec"
|
|
1598
|
+
}
|
|
1599
|
+
},
|
|
1600
|
+
calendarView: {
|
|
1601
|
+
week: {
|
|
1602
|
+
0: "SUN",
|
|
1603
|
+
1: "MON",
|
|
1604
|
+
2: "TUE",
|
|
1605
|
+
3: "WED",
|
|
1606
|
+
4: "THU",
|
|
1607
|
+
5: "FRI",
|
|
1608
|
+
6: "SAT"
|
|
1609
|
+
},
|
|
1610
|
+
weekDays: {
|
|
1611
|
+
0: "SUN",
|
|
1612
|
+
1: "MON",
|
|
1613
|
+
2: "TUE",
|
|
1614
|
+
3: "WED",
|
|
1615
|
+
4: "THU",
|
|
1616
|
+
5: "FRI",
|
|
1617
|
+
6: "SAT"
|
|
1618
|
+
},
|
|
1619
|
+
backToday: "back to today",
|
|
1620
|
+
new: "New",
|
|
1621
|
+
noSchedule: "No Schedule",
|
|
1622
|
+
year: "year",
|
|
1623
|
+
month: "month",
|
|
1624
|
+
dateFormat: "yyyy-MM"
|
|
1625
|
+
},
|
|
1626
|
+
selectedBox: {
|
|
1627
|
+
select: "Selected (%s)",
|
|
1628
|
+
allSelect: "All selected (%s)",
|
|
1629
|
+
clear: "Clear"
|
|
1630
|
+
},
|
|
1631
|
+
record: {
|
|
1632
|
+
record: "Record",
|
|
1633
|
+
cancel: "Cancel",
|
|
1634
|
+
confirm: "Confirm",
|
|
1635
|
+
clickToStartRecording: "Click to start recording",
|
|
1636
|
+
clickToResumeRecording: "Click to resume recording"
|
|
1637
|
+
},
|
|
1638
|
+
dialogSelect: {
|
|
1639
|
+
treeSearch: "Enter a keyword and press Enter"
|
|
1640
|
+
}
|
|
1641
|
+
},
|
|
1642
|
+
validation: {
|
|
1643
|
+
array: {
|
|
1644
|
+
len: "must be exactly %s in length",
|
|
1645
|
+
min: "cannot be less than %s in length",
|
|
1646
|
+
max: "cannot be greater than %s in length",
|
|
1647
|
+
range: "must be between %s and %s in length"
|
|
1648
|
+
},
|
|
1649
|
+
date: {
|
|
1650
|
+
format: "date %s is invalid for format %s",
|
|
1651
|
+
invalid: "date %s is invalid",
|
|
1652
|
+
parse: "date could not be parsed, %s is invalid "
|
|
1653
|
+
},
|
|
1654
|
+
default: "Validation error on field %s",
|
|
1655
|
+
enum: "must be one of %s",
|
|
1656
|
+
number: {
|
|
1657
|
+
len: "%s must equal %s",
|
|
1658
|
+
min: "%s cannot be less than %s",
|
|
1659
|
+
max: "%s cannot be greater than %s",
|
|
1660
|
+
range: "%s must be between %s and %s"
|
|
1661
|
+
},
|
|
1662
|
+
pattern: {
|
|
1663
|
+
mismatch: "value %s does not match pattern %s"
|
|
1664
|
+
},
|
|
1665
|
+
required: "required",
|
|
1666
|
+
string: {
|
|
1667
|
+
len: "%s must be exactly %s characters",
|
|
1668
|
+
min: "%s must be at least %s characters",
|
|
1669
|
+
max: "%s cannot be longer than %s characters",
|
|
1670
|
+
range: "%s must be between %s and %s characters"
|
|
1671
|
+
},
|
|
1672
|
+
types: {
|
|
1673
|
+
acceptFile: "not a valid %s",
|
|
1674
|
+
acceptImg: "not a valid %s",
|
|
1675
|
+
array: "not an %s",
|
|
1676
|
+
boolean: "not a %s",
|
|
1677
|
+
date: "not a %s",
|
|
1678
|
+
dateTime: "not a valid %s",
|
|
1679
|
+
dateYM: "not a valid %s",
|
|
1680
|
+
dateYMD: "not a valid %s",
|
|
1681
|
+
digits: "not a valid %s",
|
|
1682
|
+
email: "not a valid %s",
|
|
1683
|
+
fileSize: "not a valid %s",
|
|
1684
|
+
float: "not a %s",
|
|
1685
|
+
hex: "not a valid %s",
|
|
1686
|
+
integer: "not an %s",
|
|
1687
|
+
longDateTime: "not a valid %s",
|
|
1688
|
+
method: "not a %s (function)",
|
|
1689
|
+
number: "not a %s",
|
|
1690
|
+
object: "not an %s",
|
|
1691
|
+
regexp: "not a valid %s",
|
|
1692
|
+
specialch: "not a valid %s",
|
|
1693
|
+
specialch2: "not a valid %s",
|
|
1694
|
+
speczh: "not a valid %s",
|
|
1695
|
+
string: "not a %s",
|
|
1696
|
+
time: "not a valid %s",
|
|
1697
|
+
url: "not a valid %s",
|
|
1698
|
+
version: "not a valid %s"
|
|
1699
|
+
},
|
|
1700
|
+
whitespace: "cannot be empty"
|
|
1701
|
+
}
|
|
1702
|
+
};
|
|
1703
|
+
var Le = /(%|)\{([0-9a-zA-Z_]+)\}/g;
|
|
1704
|
+
function Ue(r) {
|
|
1705
|
+
for (var e = arguments.length, t = new Array(e > 1 ? e - 1 : 0), n = 1; n < e; n++)
|
|
1706
|
+
t[n - 1] = arguments[n];
|
|
1707
|
+
return t.length === 1 && q(t[0]) === "object" && (t = t[0]), (!t || !t.hasOwnProperty) && (t = {}), r.replace(Le, function(o, a, i, l) {
|
|
1708
|
+
var s;
|
|
1709
|
+
return r[l - 1] === "{" && r[l + o.length] === "}" ? i : (s = Object.prototype.hasOwnProperty.call(t, i) ? t[i] : null, s ?? "");
|
|
1710
|
+
});
|
|
1711
|
+
}
|
|
1712
|
+
var he = Object.prototype.toString, W = Object.prototype.hasOwnProperty, He = Object.getPrototypeOf, ge = W.toString, je = ge.call(Object), qe = {
|
|
1713
|
+
"[object Error]": "error",
|
|
1714
|
+
"[object Object]": "object",
|
|
1715
|
+
"[object RegExp]": "regExp",
|
|
1716
|
+
"[object Date]": "date",
|
|
1717
|
+
"[object Array]": "array",
|
|
1718
|
+
"[object Function]": "function",
|
|
1719
|
+
"[object AsyncFunction]": "asyncFunction",
|
|
1720
|
+
"[object String]": "string",
|
|
1721
|
+
"[object Number]": "number",
|
|
1722
|
+
"[object Boolean]": "boolean"
|
|
1723
|
+
}, x = function(e) {
|
|
1724
|
+
return e == null;
|
|
1725
|
+
}, A = function(e) {
|
|
1726
|
+
return x(e) ? String(e) : qe[he.call(e)] || "object";
|
|
1727
|
+
}, te = function(e) {
|
|
1728
|
+
return A(e) === "object";
|
|
1729
|
+
}, y = function(e) {
|
|
1730
|
+
if (!e || he.call(e) !== "[object Object]")
|
|
1731
|
+
return !1;
|
|
1732
|
+
var t = He(e);
|
|
1733
|
+
if (!t)
|
|
1734
|
+
return !0;
|
|
1735
|
+
var n = W.call(t, "constructor") && t.constructor;
|
|
1736
|
+
return typeof n == "function" && ge.call(n) === je;
|
|
1737
|
+
}, V = function(e) {
|
|
1738
|
+
return typeof e == "number" && isFinite(e);
|
|
1739
|
+
}, L = function(e) {
|
|
1740
|
+
return e - parseFloat(e) >= 0;
|
|
1741
|
+
}, O = function(e) {
|
|
1742
|
+
return A(e) === "date";
|
|
1743
|
+
}, re = function(e, t) {
|
|
1744
|
+
if (typeof t == "function") {
|
|
1745
|
+
for (var n in e)
|
|
1746
|
+
if (W.call(e, n) && t(n, e[n]) === !1)
|
|
1747
|
+
break;
|
|
1748
|
+
}
|
|
1749
|
+
}, k, U = function(e, t, n) {
|
|
1750
|
+
if (!(!e || !y(e) || !t || typeof t != "string")) {
|
|
1751
|
+
var o = t.split("."), a = e, i = o.length;
|
|
1752
|
+
if (i > 1) {
|
|
1753
|
+
for (var l = n ? 1 : 0, s = l; s < i; s++)
|
|
1754
|
+
if (a = a[o[s]], x(a))
|
|
1755
|
+
return a;
|
|
1756
|
+
return a;
|
|
1757
|
+
} else
|
|
1758
|
+
return a[o[0]];
|
|
1759
|
+
}
|
|
1760
|
+
}, ne = function(e, t, n, o) {
|
|
1761
|
+
if (!e || !y(e) || !t || typeof t != "string")
|
|
1762
|
+
return e;
|
|
1763
|
+
var a = t.split("."), i = e, l = a.length, s = a[0];
|
|
1764
|
+
if (l > 1) {
|
|
1765
|
+
l--;
|
|
1766
|
+
for (var u = i, c, d, m = 0; m < l; m++)
|
|
1767
|
+
c = a[m], d = u[c], (d === null || !y(d)) && (u[c] = {}, d = u[c]), u = d;
|
|
1768
|
+
s = a[l], o && y(u[s]) ? k(!0, u[s], n) : u[s] = n;
|
|
1769
|
+
} else
|
|
1770
|
+
o && y(i[s]) ? k(!0, i[s], n) : i[s] = n;
|
|
1771
|
+
return i;
|
|
1772
|
+
}, Be = function(e, t, n, o) {
|
|
1773
|
+
var a = function l(s, u, c, d, m) {
|
|
1774
|
+
var p = d.indexOf(c) === 0, f = d.split(c), v = f[1] && f[1].indexOf(".") === 0;
|
|
1775
|
+
c === d || p && v ? c !== d && re(U(s, c), function(N) {
|
|
1776
|
+
return l(s, u, "".concat(c, ".").concat(N), d), !0;
|
|
1777
|
+
}) : t && !t.includes(c) && ne(u, c, U(s, c), m);
|
|
1778
|
+
}, i = function(s, u, c, d) {
|
|
1779
|
+
var m = {};
|
|
1780
|
+
return d ? re(s, function(p) {
|
|
1781
|
+
return u.forEach(function(f) {
|
|
1782
|
+
return a(s, m, p, f, c);
|
|
1783
|
+
});
|
|
1784
|
+
}) : u.forEach(function(p) {
|
|
1785
|
+
return ne(m, p, U(s, p), c);
|
|
1786
|
+
}), m;
|
|
1787
|
+
};
|
|
1788
|
+
return y(e) ? Array.isArray(t) ? i(e, t, n, o) : k(n !== !1, {}, e) : e;
|
|
1789
|
+
}, $e = function(e) {
|
|
1790
|
+
return Array.isArray(e) ? e.map(function(t) {
|
|
1791
|
+
return Be(t);
|
|
1792
|
+
}) : e;
|
|
1793
|
+
}, Ge = function(e, t, n, o, a) {
|
|
1794
|
+
var i;
|
|
1795
|
+
if (n && o && (y(o) || (i = Array.isArray(o))))
|
|
1796
|
+
if (i)
|
|
1797
|
+
i = !1, e[t] = $e(o);
|
|
1798
|
+
else {
|
|
1799
|
+
var l = a && y(a) ? a : {};
|
|
1800
|
+
e[t] = k(n, l, o);
|
|
1801
|
+
}
|
|
1802
|
+
else if (o !== void 0)
|
|
1803
|
+
try {
|
|
1804
|
+
e[t] = o;
|
|
1805
|
+
} catch {
|
|
1806
|
+
}
|
|
1807
|
+
};
|
|
1808
|
+
k = function() {
|
|
1809
|
+
for (var e = arguments.length, t = new Array(e), n = 0; n < e; n++)
|
|
1810
|
+
t[n] = arguments[n];
|
|
1811
|
+
var o = t.length, a = t[0] || {}, i = 1, l = !1;
|
|
1812
|
+
for (A(a) === "boolean" && (l = a, a = t[i] || {}, i++), !te(a) && A(a) !== "function" && (a = {}); i < o; i++) {
|
|
1813
|
+
var s = t[i];
|
|
1814
|
+
if (s !== null && te(s))
|
|
1815
|
+
for (var u = Object.keys(s), c = 0, d = u; c < d.length; c++) {
|
|
1816
|
+
var m = d[c], p = a[m], f = s[m];
|
|
1817
|
+
a !== f && Ge(a, m, l, f, p);
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
return a;
|
|
1821
|
+
};
|
|
1822
|
+
var F = R, P = null, I = function(e) {
|
|
1823
|
+
var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : void 0;
|
|
1824
|
+
if (P)
|
|
1825
|
+
return P.apply(this, arguments);
|
|
1826
|
+
for (var n = e.split("."), o = null, a = F, i = 0, l = n.length; i < l; i++) {
|
|
1827
|
+
var s = n[i];
|
|
1828
|
+
if (o = a[s] || "", i === l - 1)
|
|
1829
|
+
return Ue(o, t);
|
|
1830
|
+
if (!o)
|
|
1831
|
+
return "";
|
|
1832
|
+
a = o;
|
|
1833
|
+
}
|
|
1834
|
+
return "";
|
|
1835
|
+
}, ve = function(e) {
|
|
1836
|
+
return F = e || F, F;
|
|
1837
|
+
}, Ye = function() {
|
|
1838
|
+
return F.code;
|
|
1839
|
+
}, ye = function(e) {
|
|
1840
|
+
return P = e || I, P;
|
|
1841
|
+
}, K = k, be = function(e) {
|
|
1842
|
+
var t = e.app, n = e.createI18n, o = e.messages, a = o === void 0 ? {} : o, i = e.i18n, l = i === void 0 ? {} : i, s = e.merge;
|
|
1843
|
+
typeof s != "function" && (s = function(m) {
|
|
1844
|
+
var p = m.lang, f = m.i18n, v = m.messages;
|
|
1845
|
+
return K(!0, p, f.messages, v);
|
|
1846
|
+
});
|
|
1847
|
+
var u = {
|
|
1848
|
+
zhCN: R,
|
|
1849
|
+
enUS: Y
|
|
1850
|
+
};
|
|
1851
|
+
if (typeof n == "function") {
|
|
1852
|
+
var c = n({
|
|
1853
|
+
locale: l.locale || "zhCN",
|
|
1854
|
+
messages: s({
|
|
1855
|
+
lang: u,
|
|
1856
|
+
i18n: l,
|
|
1857
|
+
messages: a
|
|
1858
|
+
})
|
|
1859
|
+
});
|
|
1860
|
+
return P = function(m, p) {
|
|
1861
|
+
return c.global.t(m, p);
|
|
1862
|
+
}, c;
|
|
1863
|
+
}
|
|
1864
|
+
return t && t.config && t.config.globalProperties && (t.config.globalProperties.$t = I), s({
|
|
1865
|
+
lang: u,
|
|
1866
|
+
i18n: l,
|
|
1867
|
+
messages: a
|
|
1868
|
+
});
|
|
1869
|
+
}, We = !0, Ve = !1;
|
|
1870
|
+
const Ke = {
|
|
1871
|
+
isVue2: We,
|
|
1872
|
+
isVue3: Ve,
|
|
1873
|
+
use: ve,
|
|
1874
|
+
t: I,
|
|
1875
|
+
i18n: ye,
|
|
1876
|
+
initI18n: be,
|
|
1877
|
+
extend: K,
|
|
1878
|
+
zhCN: R,
|
|
1879
|
+
enUS: Y
|
|
1880
|
+
};
|
|
1881
|
+
var ae = function(e, t, n) {
|
|
1882
|
+
var o = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : "0";
|
|
1883
|
+
if (typeof e == "string" && typeof o == "string" && V(t)) {
|
|
1884
|
+
var a = e.length - t;
|
|
1885
|
+
if (a > 0)
|
|
1886
|
+
return n ? e.substr(0, t) : e.substr(a, t);
|
|
1887
|
+
var i = [];
|
|
1888
|
+
for (a = Math.abs(a) / o.length; a > 0; a--)
|
|
1889
|
+
i.push(o);
|
|
1890
|
+
var l = i.join("");
|
|
1891
|
+
return n ? e + l : l + e;
|
|
1892
|
+
}
|
|
1893
|
+
}, Je = function() {
|
|
1894
|
+
var e = 8;
|
|
1895
|
+
return document.addEventListener && window.performance && (e = 9, window.atob && window.matchMedia && (e = 10, !window.attachEvent && !document.all && (e = 11))), e;
|
|
1896
|
+
}, Ze = function(e) {
|
|
1897
|
+
e.chrome && ~navigator.userAgent.indexOf("Edg") ? (e.name = "edge", e.edge = !0, delete e.chrome) : !document.documentMode && window.StyleMedia && (e.name = "edge", e.edge = !0);
|
|
1898
|
+
}, Se = typeof window < "u" && typeof document < "u" && window.document === document;
|
|
1899
|
+
(function() {
|
|
1900
|
+
var r = {
|
|
1901
|
+
name: void 0,
|
|
1902
|
+
version: void 0,
|
|
1903
|
+
isDoc: typeof document < "u",
|
|
1904
|
+
isMobile: !1,
|
|
1905
|
+
isPC: !0,
|
|
1906
|
+
isNode: typeof window > "u"
|
|
1907
|
+
};
|
|
1908
|
+
if (Se) {
|
|
1909
|
+
var e = /(Android|webOS|iPhone|iPad|iPod|SymbianOS|BlackBerry|Windows Phone)/.test(navigator.userAgent);
|
|
1910
|
+
r.isMobile = e, r.isPC = !e;
|
|
1911
|
+
var t;
|
|
1912
|
+
if (window.chrome && (window.chrome.webstore || /^Google\b/.test(window.navigator.vendor)) ? (r.name = "chrome", r.chrome = !0, t = navigator.userAgent.match(/chrome\/(\d+)/i), r.version = !!t && !!t[1] && parseInt(t[1], 10), t = void 0) : document.all || document.documentMode ? (r.name = "ie", r.version = Je(), r.ie = !0) : typeof window.InstallTrigger < "u" ? (r.name = "firefox", r.firefox = !0) : Object.prototype.toString.call(window.HTMLElement).indexOf("Constructor") > 0 ? (r.name = "safari", r.safari = !0) : (window.opr && window.opr.addons || window.opera) && (r.name = "opera", r.opera = !0), Ze(r), !~["ie", "chrome"].indexOf(r.name)) {
|
|
1913
|
+
var n = r.name + "/(\\d+)";
|
|
1914
|
+
t = navigator.userAgent.match(new RegExp(n, "i")), r.version = !!t && !!t[1] && parseInt(t[1], 10), t = void 0;
|
|
1915
|
+
}
|
|
1916
|
+
if (r.isDoc) {
|
|
1917
|
+
var o = document.body || document.documentElement;
|
|
1918
|
+
["webkit", "khtml", "moz", "ms", "o"].forEach(function(a) {
|
|
1919
|
+
r["-" + a] = !!o[a + "MatchesSelector"];
|
|
1920
|
+
});
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
return r;
|
|
1924
|
+
})();
|
|
1925
|
+
var M = Se ? window.BigInt : global.BigInt;
|
|
1926
|
+
function B() {
|
|
1927
|
+
return typeof M == "function";
|
|
1928
|
+
}
|
|
1929
|
+
function C(r) {
|
|
1930
|
+
var e = r.toString().trim(), t = e.startsWith("-");
|
|
1931
|
+
t && (e = e.slice(1)), e = e.replace(/(\.\d*[^0])0*$/, "$1").replace(/\.0*$/, "").replace(/^0+/, ""), e.startsWith(".") && (e = "0".concat(e));
|
|
1932
|
+
var n = e || "0", o = n.split("."), a = o[0] || "0", i = o[1] || "0";
|
|
1933
|
+
a === "0" && i === "0" && (t = !1);
|
|
1934
|
+
var l = t ? "-" : "";
|
|
1935
|
+
return {
|
|
1936
|
+
negative: t,
|
|
1937
|
+
negativeStr: l,
|
|
1938
|
+
trimStr: n,
|
|
1939
|
+
integerStr: a,
|
|
1940
|
+
decimalStr: i,
|
|
1941
|
+
fullStr: "".concat(l).concat(n)
|
|
1942
|
+
};
|
|
1943
|
+
}
|
|
1944
|
+
function J(r) {
|
|
1945
|
+
var e = String(r);
|
|
1946
|
+
return !isNaN(Number(e)) && ~e.indexOf("e");
|
|
1947
|
+
}
|
|
1948
|
+
function Te(r) {
|
|
1949
|
+
return typeof r == "number" ? !isNaN(r) : r ? (
|
|
1950
|
+
// Normal type: 11.28
|
|
1951
|
+
/^\s*-?\d+(\.\d+)?\s*$/.test(r) || // Pre-number: 1.
|
|
1952
|
+
/^\s*-?\d+\.\s*$/.test(r) || // Post-number: .1
|
|
1953
|
+
/^\s*-?\.\d+\s*$/.test(r)
|
|
1954
|
+
) : !1;
|
|
1955
|
+
}
|
|
1956
|
+
function $(r) {
|
|
1957
|
+
var e = String(r);
|
|
1958
|
+
if (J(r)) {
|
|
1959
|
+
var t = Number(e.slice(e.indexOf("e-") + 2)), n = e.match(/\.(\d+)/);
|
|
1960
|
+
return n != null && n[1] && (t += n[1].length), t;
|
|
1961
|
+
}
|
|
1962
|
+
return ~e.indexOf(".") && Te(e) ? e.length - e.indexOf(".") - 1 : 0;
|
|
1963
|
+
}
|
|
1964
|
+
function we(r) {
|
|
1965
|
+
var e = String(r);
|
|
1966
|
+
if (J(r)) {
|
|
1967
|
+
if (r > Number.MAX_SAFE_INTEGER)
|
|
1968
|
+
return String(B() ? M(r).toString() : Number.MAX_SAFE_INTEGER);
|
|
1969
|
+
if (r < Number.MIN_SAFE_INTEGER)
|
|
1970
|
+
return String(B() ? M(r).toString() : Number.MIN_SAFE_INTEGER);
|
|
1971
|
+
e = r.toFixed($(e));
|
|
1972
|
+
}
|
|
1973
|
+
return C(e).fullStr;
|
|
1974
|
+
}
|
|
1975
|
+
function _e(r) {
|
|
1976
|
+
return r.add || Object.assign(r, {
|
|
1977
|
+
add: r.plus,
|
|
1978
|
+
lessEquals: r.isLessThan,
|
|
1979
|
+
equals: r.isEqualTo
|
|
1980
|
+
}), r;
|
|
1981
|
+
}
|
|
1982
|
+
var G = {
|
|
1983
|
+
CLS: null
|
|
1984
|
+
}, Ne;
|
|
1985
|
+
function Z(r, e) {
|
|
1986
|
+
return G.CLS || Ne(e), _e(new G.CLS(r));
|
|
1987
|
+
}
|
|
1988
|
+
var Qe = /* @__PURE__ */ function() {
|
|
1989
|
+
function r(e) {
|
|
1990
|
+
if (me(this, r), !e && e !== 0 || !String(e).trim()) {
|
|
1991
|
+
this.empty = !0;
|
|
1992
|
+
return;
|
|
1993
|
+
}
|
|
1994
|
+
if (this.origin = String(e), this.negative = void 0, this.integer = void 0, this.decimal = void 0, this.decimalLen = void 0, this.empty = void 0, this.nan = void 0, e === "-") {
|
|
1995
|
+
this.nan = !0;
|
|
1996
|
+
return;
|
|
1997
|
+
}
|
|
1998
|
+
var t = J(e) ? Number(e) : e;
|
|
1999
|
+
typeof t != "string" && we(t);
|
|
2000
|
+
var n = Function, o = function(u) {
|
|
2001
|
+
var c = u.replace(/^0+/, "") || "0";
|
|
2002
|
+
return n("return BigInt('".concat(c, "')"))();
|
|
2003
|
+
};
|
|
2004
|
+
if (Te(t)) {
|
|
2005
|
+
var a = C(t);
|
|
2006
|
+
this.negative = a.negative;
|
|
2007
|
+
var i = a.trimStr.split(".");
|
|
2008
|
+
this.integer = i[0].includes("e") ? i[0] : M(i[0]);
|
|
2009
|
+
var l = i[1] || "0";
|
|
2010
|
+
this.decimal = l.includes("e") ? o(l) : M(l), this.decimalLen = l.length;
|
|
2011
|
+
} else
|
|
2012
|
+
this.nan = !0;
|
|
2013
|
+
}
|
|
2014
|
+
return pe(r, [{
|
|
2015
|
+
key: "getDecimalStr",
|
|
2016
|
+
value: function() {
|
|
2017
|
+
return this.decimal.toString().padStart(this.decimalLen, "0");
|
|
2018
|
+
}
|
|
2019
|
+
}, {
|
|
2020
|
+
key: "getIntegerStr",
|
|
2021
|
+
value: function() {
|
|
2022
|
+
return this.integer.toString();
|
|
2023
|
+
}
|
|
2024
|
+
}, {
|
|
2025
|
+
key: "getMark",
|
|
2026
|
+
value: function() {
|
|
2027
|
+
return this.negative ? "-" : "";
|
|
2028
|
+
}
|
|
2029
|
+
/**
|
|
2030
|
+
* Align BigIntDecimal with same decimal length. e.g. 12.3 + 5 = 1230000
|
|
2031
|
+
* This is used for add function only.
|
|
2032
|
+
*/
|
|
2033
|
+
}, {
|
|
2034
|
+
key: "alignDecimal",
|
|
2035
|
+
value: function(t) {
|
|
2036
|
+
var n = "".concat(this.getMark()).concat(this.getIntegerStr()).concat(this.getDecimalStr().padEnd(t, "0"));
|
|
2037
|
+
return M(n);
|
|
2038
|
+
}
|
|
2039
|
+
}, {
|
|
2040
|
+
key: "add",
|
|
2041
|
+
value: function(t) {
|
|
2042
|
+
if (this.isInvalidate())
|
|
2043
|
+
return new r(t);
|
|
2044
|
+
var n = new r(t);
|
|
2045
|
+
if (n.isInvalidate())
|
|
2046
|
+
return this;
|
|
2047
|
+
var o = Math.max(this.getDecimalStr().length, n.getDecimalStr().length), a = n.alignDecimal(o), i = this.alignDecimal(o), l = "".concat(i + a), s = C(l), u = s.negativeStr, c = s.trimStr, d = "".concat(u).concat(c.padStart(o + 1, "0"));
|
|
2048
|
+
return Z("".concat(d.slice(0, -o), ".").concat(d.slice(-o)));
|
|
2049
|
+
}
|
|
2050
|
+
}, {
|
|
2051
|
+
key: "negate",
|
|
2052
|
+
value: function() {
|
|
2053
|
+
var t = new r(this.toString());
|
|
2054
|
+
return t.negative = !t.negative, t;
|
|
2055
|
+
}
|
|
2056
|
+
}, {
|
|
2057
|
+
key: "isNaN",
|
|
2058
|
+
value: function() {
|
|
2059
|
+
return this.nan;
|
|
2060
|
+
}
|
|
2061
|
+
}, {
|
|
2062
|
+
key: "isEmpty",
|
|
2063
|
+
value: function() {
|
|
2064
|
+
return this.empty;
|
|
2065
|
+
}
|
|
2066
|
+
}, {
|
|
2067
|
+
key: "isInvalidate",
|
|
2068
|
+
value: function() {
|
|
2069
|
+
return this.isEmpty() || this.isNaN();
|
|
2070
|
+
}
|
|
2071
|
+
}, {
|
|
2072
|
+
key: "lessEquals",
|
|
2073
|
+
value: function(t) {
|
|
2074
|
+
return this.add(t.negate().toString()).toNumber() <= 0;
|
|
2075
|
+
}
|
|
2076
|
+
}, {
|
|
2077
|
+
key: "equals",
|
|
2078
|
+
value: function(t) {
|
|
2079
|
+
return this.toString() === (t && t.toString());
|
|
2080
|
+
}
|
|
2081
|
+
}, {
|
|
2082
|
+
key: "toNumber",
|
|
2083
|
+
value: function() {
|
|
2084
|
+
return this.isNaN() ? NaN : Number(this.toString());
|
|
2085
|
+
}
|
|
2086
|
+
}, {
|
|
2087
|
+
key: "toString",
|
|
2088
|
+
value: function() {
|
|
2089
|
+
var t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : !0;
|
|
2090
|
+
return t ? this.isInvalidate() ? "" : C("".concat(this.getMark()).concat(this.getIntegerStr(), ".").concat(this.getDecimalStr())).fullStr : this.origin;
|
|
2091
|
+
}
|
|
2092
|
+
}]);
|
|
2093
|
+
}(), Xe = /* @__PURE__ */ function() {
|
|
2094
|
+
function r() {
|
|
2095
|
+
var e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "";
|
|
2096
|
+
if (me(this, r), !e && e !== 0 || !String(e).trim()) {
|
|
2097
|
+
this.empty = !0;
|
|
2098
|
+
return;
|
|
2099
|
+
}
|
|
2100
|
+
this.origin = "", this.number = void 0, this.empty = void 0, this.origin = String(e), this.number = Number(e);
|
|
2101
|
+
}
|
|
2102
|
+
return pe(r, [{
|
|
2103
|
+
key: "negate",
|
|
2104
|
+
value: function() {
|
|
2105
|
+
return new r(-this.toNumber());
|
|
2106
|
+
}
|
|
2107
|
+
}, {
|
|
2108
|
+
key: "add",
|
|
2109
|
+
value: function(t) {
|
|
2110
|
+
if (this.isInvalidate())
|
|
2111
|
+
return new r(t);
|
|
2112
|
+
var n = Number(t);
|
|
2113
|
+
if (isNaN(n))
|
|
2114
|
+
return this;
|
|
2115
|
+
var o = this.number + n;
|
|
2116
|
+
if (o < Number.MIN_SAFE_INTEGER)
|
|
2117
|
+
return new r(Number.MIN_SAFE_INTEGER);
|
|
2118
|
+
if (o > Number.MAX_SAFE_INTEGER)
|
|
2119
|
+
return new r(Number.MAX_SAFE_INTEGER);
|
|
2120
|
+
var a = Math.max($(n), $(this.number));
|
|
2121
|
+
return new r(o.toFixed(a));
|
|
2122
|
+
}
|
|
2123
|
+
}, {
|
|
2124
|
+
key: "isNaN",
|
|
2125
|
+
value: function(e) {
|
|
2126
|
+
function t() {
|
|
2127
|
+
return e.apply(this, arguments);
|
|
2128
|
+
}
|
|
2129
|
+
return t.toString = function() {
|
|
2130
|
+
return e.toString();
|
|
2131
|
+
}, t;
|
|
2132
|
+
}(function() {
|
|
2133
|
+
return isNaN(this.number);
|
|
2134
|
+
})
|
|
2135
|
+
}, {
|
|
2136
|
+
key: "isEmpty",
|
|
2137
|
+
value: function() {
|
|
2138
|
+
return this.empty;
|
|
2139
|
+
}
|
|
2140
|
+
}, {
|
|
2141
|
+
key: "isInvalidate",
|
|
2142
|
+
value: function() {
|
|
2143
|
+
return this.isEmpty() || this.isNaN();
|
|
2144
|
+
}
|
|
2145
|
+
}, {
|
|
2146
|
+
key: "equals",
|
|
2147
|
+
value: function(t) {
|
|
2148
|
+
return this.toNumber() === (t && t.toNumber());
|
|
2149
|
+
}
|
|
2150
|
+
}, {
|
|
2151
|
+
key: "lessEquals",
|
|
2152
|
+
value: function(t) {
|
|
2153
|
+
return this.add(t.negate().toString()).toNumber() <= 0;
|
|
2154
|
+
}
|
|
2155
|
+
}, {
|
|
2156
|
+
key: "toNumber",
|
|
2157
|
+
value: function() {
|
|
2158
|
+
return this.number;
|
|
2159
|
+
}
|
|
2160
|
+
}, {
|
|
2161
|
+
key: "toString",
|
|
2162
|
+
value: function() {
|
|
2163
|
+
var t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : !0;
|
|
2164
|
+
return t ? this.isInvalidate() ? "" : we(this.number) : this.origin;
|
|
2165
|
+
}
|
|
2166
|
+
}]);
|
|
2167
|
+
}();
|
|
2168
|
+
Ne = function(e) {
|
|
2169
|
+
G.CLS = B() ? Qe : typeof e == "function" ? e : Xe;
|
|
2170
|
+
};
|
|
2171
|
+
function De(r, e) {
|
|
2172
|
+
var t = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : 5;
|
|
2173
|
+
if (r === "")
|
|
2174
|
+
return "";
|
|
2175
|
+
var n = ".", o = C(r), a = o.negativeStr, i = o.integerStr, l = o.decimalStr, s = "".concat(n).concat(l), u = "".concat(a).concat(i);
|
|
2176
|
+
if (e >= 0) {
|
|
2177
|
+
var c = Number(l[e]);
|
|
2178
|
+
if (c >= t && t !== 0) {
|
|
2179
|
+
var d = Z("".concat(i).concat(n).concat(l)).add("0.".concat(ae("", e, !0)).concat(10 - c));
|
|
2180
|
+
return De(a + d.toString(), e, 0);
|
|
2181
|
+
}
|
|
2182
|
+
return e === 0 ? u : "".concat(u).concat(n).concat(ae(l, e, !0).slice(0, e));
|
|
2183
|
+
}
|
|
2184
|
+
return s === ".0" ? u : "".concat(u).concat(s);
|
|
2185
|
+
}
|
|
2186
|
+
var et = function(e, t) {
|
|
2187
|
+
var n = t.secondaryGroupSize, o = n === void 0 ? 3 : n, a = t.groupSize, i = a === void 0 ? 0 : a, l = t.groupSeparator, s = l === void 0 ? "," : l, u = /^-\d+/.test(e), c = u ? e.slice(1) : e, d = o || i;
|
|
2188
|
+
if (i && c.length > i) {
|
|
2189
|
+
var m = c.slice(0, 0 - i), p = c.slice(0 - i);
|
|
2190
|
+
m = m.replace(new RegExp("\\B(?=(\\d{".concat(d, "})+(?!\\d))"), "g"), s), c = "".concat(m).concat(s).concat(p);
|
|
2191
|
+
}
|
|
2192
|
+
return "".concat(u ? "-" : "").concat(c);
|
|
2193
|
+
}, oe = function(e) {
|
|
2194
|
+
for (var t = [], n = 0; n < e.length; n++)
|
|
2195
|
+
t.push(e[n]);
|
|
2196
|
+
return t.reverse().join("");
|
|
2197
|
+
}, tt = function(e, t) {
|
|
2198
|
+
var n = t.fractionGroupSize, o = n === void 0 ? 0 : n, a = t.fractionGroupSeparator, i = a === void 0 ? " " : a, l = new RegExp("\\B(?=(\\d{".concat(o, "})+(?!\\d))"), "g");
|
|
2199
|
+
return oe(oe(e).replace(l, i));
|
|
2200
|
+
}, rt = function(e) {
|
|
2201
|
+
var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = t.fraction, o = t.rounding, a = t.prefix, i = a === void 0 ? "" : a, l = t.decimalSeparator, s = l === void 0 ? "." : l, u = t.suffix, c = u === void 0 ? "" : u, d = Z(e);
|
|
2202
|
+
if (d.isNaN() || !d.toString())
|
|
2203
|
+
return e;
|
|
2204
|
+
d = De(d.toString(), n, o), t.zeroize === !1 && d.match(/\./) && (d = d.replace(/\.?0+$/g, ""));
|
|
2205
|
+
var m = d.toString().split(".").slice(0, 2).map(function(p, f) {
|
|
2206
|
+
return f ? tt(p, t) : et(p, t);
|
|
2207
|
+
}).join(s);
|
|
2208
|
+
return "".concat(i).concat(m).concat(c);
|
|
2209
|
+
}, nt = function(e) {
|
|
2210
|
+
var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = t.prefix, o = n === void 0 ? "" : n, a = t.suffix, i = a === void 0 ? "" : a, l = t.decimalSeparator, s = l === void 0 ? "." : l, u = e;
|
|
2211
|
+
return typeof e == "string" && (u = e.replace(new RegExp("^".concat(o, "(.+)").concat(i, "$")), function(c, d) {
|
|
2212
|
+
return d;
|
|
2213
|
+
}).split(s).map(function(c) {
|
|
2214
|
+
return c.replace(/[^\d]/g, "");
|
|
2215
|
+
}).join(".")), Number(u);
|
|
2216
|
+
}, Me = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], at = new RegExp("^(\\d{4})(/|-)(((0)?[1-9])|(1[0-2]))((/|-)(((0)?[1-9])|([1-2][0-9])|(3[0-1])))?( ((0)?[0-9]|1[0-9]|20|21|22|23):([0-5]?[0-9])((:([0-5]?[0-9]))?(.([0-9]{1,6}))?)?)?$"), ot = new RegExp("^(((0)?[1-9])|(1[0-2]))(/|-)(((0)?[1-9])|([1-2][0-9])|(3[0-1]))?(/|-)?(\\d{4})( ((0)?[0-9]|1[0-9]|20|21|22|23):([0-5]?[0-9])((:([0-5]?[0-9]))?(.([0-9]{1,6}))?)?)?$"), it = new RegExp("^(\\d{4})-(((0)?[1-9])|(1[0-2]))-(((0)?[1-9])|([1-2][0-9])|(3[0-1]))T(((0)?[0-9]|1[0-9]|20|21|22|23):([0-5]?[0-9])((:([0-5]?[0-9]))?(.([0-9]{1,6}))?)?)?(Z|([+-])((0)?[0-9]|1[0-9]|20|21|22|23):?([0-5]?[0-9]))$"), S = {
|
|
2217
|
+
YEAR: 9999,
|
|
2218
|
+
MONTH: 11,
|
|
2219
|
+
DATE: 31,
|
|
2220
|
+
HOUR: 23,
|
|
2221
|
+
MINUTE: 59,
|
|
2222
|
+
SECOND: 59,
|
|
2223
|
+
MILLISECOND: 999
|
|
2224
|
+
}, lt = "-12:00,-11:00,-10:00,-09:30,-08:00,-07:00,-06:00,-05:00,-04:30,-04:00,-03:30,-02:00,-01:00", st = "-00:00,+00:00,+01:00,+02:00,+03:00,+03:30,+04:00,+04:30,+05:00,+05:30,+05:45,+06:00", ct = "+06:30,+07:00,+08:00,+09:00,+10:00,+10:30,+11:00,+11:30,+12:00,+12:45,+13:00,+14:00", ut = [].concat(lt.split(","), st.split(","), ct.split(",")), ke = function(e) {
|
|
2225
|
+
return e % 400 === 0 || e % 4 === 0 && e % 100 !== 0;
|
|
2226
|
+
}, xe = function(e) {
|
|
2227
|
+
return e > S.MILLISECOND ? Number(String(e).substring(0, 3)) : e;
|
|
2228
|
+
}, _ = function(e) {
|
|
2229
|
+
var t = e.year, n = e.month, o = e.date, a = e.hours, i = e.minutes, l = e.seconds, s = e.milliseconds, u = Me[n];
|
|
2230
|
+
if (ke(t) && n === 1 && (u += 1), o <= u)
|
|
2231
|
+
return new Date(t, n, o, a, i, l, xe(s));
|
|
2232
|
+
}, dt = function(e) {
|
|
2233
|
+
if (e.length === 23) {
|
|
2234
|
+
var t = Number(e[1]), n = e[3] - 1, o = Number(e[9] || 1), a = e[15] || 0, i = e[17] || 0, l = e[20] || 0, s = e[22] || 0;
|
|
2235
|
+
return _({
|
|
2236
|
+
date: o,
|
|
2237
|
+
year: t,
|
|
2238
|
+
hours: a,
|
|
2239
|
+
month: n,
|
|
2240
|
+
seconds: l,
|
|
2241
|
+
minutes: i,
|
|
2242
|
+
milliseconds: s
|
|
2243
|
+
});
|
|
2244
|
+
}
|
|
2245
|
+
}, mt = function(e) {
|
|
2246
|
+
if (e.length === 22) {
|
|
2247
|
+
var t = Number(e[12]), n = e[1] - 1, o = Number(e[6] || 1), a = e[14] || 0, i = e[16] || 0, l = e[19] || 0, s = e[21] || 0;
|
|
2248
|
+
return _({
|
|
2249
|
+
year: t,
|
|
2250
|
+
month: n,
|
|
2251
|
+
date: o,
|
|
2252
|
+
hours: a,
|
|
2253
|
+
minutes: i,
|
|
2254
|
+
seconds: l,
|
|
2255
|
+
milliseconds: s
|
|
2256
|
+
});
|
|
2257
|
+
}
|
|
2258
|
+
}, pt = function(e) {
|
|
2259
|
+
if (e.length === 25) {
|
|
2260
|
+
var t = Number(e[1]), n = e[2] - 1, o = Number(e[6]), a = new Date(t, n, o).getTimezoneOffset(), i = e[12] || 0, l = e[14] || 0, s = e[17] || 0, u = e[19] || 0, c = e[20], d = e[21], m = e[22] || 0, p = e[24] || 0, f = Me[n], v, N;
|
|
2261
|
+
if (ke(t) && n === 1 && (f += 1), o <= f) {
|
|
2262
|
+
if (c === "Z")
|
|
2263
|
+
v = i - a / 60, N = l;
|
|
2264
|
+
else {
|
|
2265
|
+
if (c.includes(":") || (c = c.substr(0, 3) + ":" + c.substr(3)), !ut.includes(c))
|
|
2266
|
+
return;
|
|
2267
|
+
v = d === "+" ? i - m - a / 60 : Number(i) + Number(m) - a / 60, N = d === "+" ? l - p : Number(l) + Number(p);
|
|
2268
|
+
}
|
|
2269
|
+
return new Date(t, n, o, v, N, s, xe(u));
|
|
2270
|
+
}
|
|
2271
|
+
}
|
|
2272
|
+
}, H = [[at, dt], [ot, mt], [it, pt]], ft = function(e) {
|
|
2273
|
+
for (var t = 0, n = H.length; t < n; t++) {
|
|
2274
|
+
var o = H[t][0].exec(e);
|
|
2275
|
+
if (o && o.length > 0)
|
|
2276
|
+
return H[t][1](o);
|
|
2277
|
+
}
|
|
2278
|
+
}, ht = function(e, t, n) {
|
|
2279
|
+
if (n)
|
|
2280
|
+
switch (n) {
|
|
2281
|
+
case "yyyy":
|
|
2282
|
+
case "yy":
|
|
2283
|
+
e[0] = t;
|
|
2284
|
+
break;
|
|
2285
|
+
case "M":
|
|
2286
|
+
case "MM":
|
|
2287
|
+
e[1] = t - 1;
|
|
2288
|
+
break;
|
|
2289
|
+
case "d":
|
|
2290
|
+
case "dd":
|
|
2291
|
+
e[2] = t;
|
|
2292
|
+
break;
|
|
2293
|
+
case "h":
|
|
2294
|
+
case "hh":
|
|
2295
|
+
e[3] = t;
|
|
2296
|
+
break;
|
|
2297
|
+
case "m":
|
|
2298
|
+
case "mm":
|
|
2299
|
+
e[4] = t;
|
|
2300
|
+
break;
|
|
2301
|
+
case "s":
|
|
2302
|
+
case "ss":
|
|
2303
|
+
e[5] = t;
|
|
2304
|
+
break;
|
|
2305
|
+
case "S":
|
|
2306
|
+
case "SS":
|
|
2307
|
+
case "SSS":
|
|
2308
|
+
e[6] = t;
|
|
2309
|
+
break;
|
|
2310
|
+
}
|
|
2311
|
+
}, gt = function(e, t) {
|
|
2312
|
+
var n = [0, -1, 0, 0, 0, 0];
|
|
2313
|
+
if (e.length !== t.length)
|
|
2314
|
+
return n;
|
|
2315
|
+
for (var o = 0, a = 0, i = 0, l = e.length; i < l; i++) {
|
|
2316
|
+
var s = e.substr(i, 1), u = isNaN(Number(s)) || s.trim() === "";
|
|
2317
|
+
if (u && s === t.substr(i, 1) || i === l - 1) {
|
|
2318
|
+
var c = void 0, d = void 0;
|
|
2319
|
+
if (u) {
|
|
2320
|
+
c = e.substring(o, i), o = i + 1;
|
|
2321
|
+
var m = t.indexOf(s, a);
|
|
2322
|
+
d = t.substring(a, m === -1 ? t.length : m), a = m + 1;
|
|
2323
|
+
} else
|
|
2324
|
+
c = e.substring(o, l), d = t.substring(a, l);
|
|
2325
|
+
(c.length === d.length || c) && ht(n, c, d);
|
|
2326
|
+
}
|
|
2327
|
+
}
|
|
2328
|
+
return n;
|
|
2329
|
+
}, D = function(e, t, n) {
|
|
2330
|
+
return isNaN(e) || e < t || e > n;
|
|
2331
|
+
}, vt = function(e) {
|
|
2332
|
+
var t = e.year, n = e.month, o = e.date, a = e.hours, i = e.minutes, l = e.seconds, s = e.milliseconds;
|
|
2333
|
+
return D(t, 0, S.YEAR) || D(n, 0, S.MONTH) || D(o, 0, S.DATE) || D(a, 0, S.HOUR) || D(i, 0, S.MINUTE) || D(l, 0, S.SECOND) || D(s, 0, S.MILLISECOND);
|
|
2334
|
+
}, yt = function(e, t) {
|
|
2335
|
+
if (typeof t == "string") {
|
|
2336
|
+
var n = gt(e, t), o = Number(n[0]), a = Number(n[1]), i = Number(n[2] || 1), l = Number(n[3] || 0), s = Number(n[4] || 0), u = Number(n[5] || 0), c = Number(n[6] || 0);
|
|
2337
|
+
return vt({
|
|
2338
|
+
year: o,
|
|
2339
|
+
month: a,
|
|
2340
|
+
date: i,
|
|
2341
|
+
hours: l,
|
|
2342
|
+
minutes: s,
|
|
2343
|
+
seconds: u,
|
|
2344
|
+
milliseconds: c
|
|
2345
|
+
}) ? void 0 : _({
|
|
2346
|
+
year: o,
|
|
2347
|
+
date: i,
|
|
2348
|
+
month: a,
|
|
2349
|
+
minutes: s,
|
|
2350
|
+
hours: l,
|
|
2351
|
+
milliseconds: c,
|
|
2352
|
+
seconds: u
|
|
2353
|
+
});
|
|
2354
|
+
} else
|
|
2355
|
+
return ft(e);
|
|
2356
|
+
}, ie = function r(e, t, n) {
|
|
2357
|
+
var o;
|
|
2358
|
+
if (V(e) ? o = new Date(e) : typeof e == "string" && (o = yt(e, t)), n) {
|
|
2359
|
+
var a = n && r(n) || new Date(1, 1, 1, 0, 0, 0);
|
|
2360
|
+
return o && o < a ? a : o;
|
|
2361
|
+
}
|
|
2362
|
+
return o;
|
|
2363
|
+
}, bt = function(e, t, n) {
|
|
2364
|
+
var o = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : 0;
|
|
2365
|
+
if (!(!O(e) || !L(t) || !L(n) || !L(o))) {
|
|
2366
|
+
var a = -t * 60, i = -n * 60, l = o * 60, s = e.getTime() + a * 6e4;
|
|
2367
|
+
return new Date(s - (i - l) * 6e4);
|
|
2368
|
+
}
|
|
2369
|
+
}, St = "date,datetime,time,time-select,week,month,year,years,yearrange,daterange,monthrange,timerange,datetimerange,dates,quarter", z = {
|
|
2370
|
+
Day: "day",
|
|
2371
|
+
Date: "date",
|
|
2372
|
+
Dates: "dates",
|
|
2373
|
+
Year: "year",
|
|
2374
|
+
Years: "years",
|
|
2375
|
+
YearRange: "yearrange",
|
|
2376
|
+
PanelYearNum: 12,
|
|
2377
|
+
Month: "month",
|
|
2378
|
+
Week: "week",
|
|
2379
|
+
Normal: "normal",
|
|
2380
|
+
Today: "today",
|
|
2381
|
+
PreMonth: "pre-month",
|
|
2382
|
+
NextMonth: "next-month",
|
|
2383
|
+
YearI18n: "ui.datepicker.year",
|
|
2384
|
+
List: [38, 40, 37, 39],
|
|
2385
|
+
YearObj: {
|
|
2386
|
+
38: -4,
|
|
2387
|
+
40: 4,
|
|
2388
|
+
37: -1,
|
|
2389
|
+
39: 1
|
|
2390
|
+
},
|
|
2391
|
+
WeekObj: {
|
|
2392
|
+
38: -1,
|
|
2393
|
+
40: 1,
|
|
2394
|
+
37: -1,
|
|
2395
|
+
39: 1
|
|
2396
|
+
},
|
|
2397
|
+
DayObj: {
|
|
2398
|
+
38: -7,
|
|
2399
|
+
40: 7,
|
|
2400
|
+
37: -1,
|
|
2401
|
+
39: 1
|
|
2402
|
+
},
|
|
2403
|
+
Aviailable: "available",
|
|
2404
|
+
Default: "default",
|
|
2405
|
+
Current: "current",
|
|
2406
|
+
InRange: "in-range",
|
|
2407
|
+
StartDate: "start-date",
|
|
2408
|
+
EndDate: "end-date",
|
|
2409
|
+
Selected: "selected",
|
|
2410
|
+
Disabled: "disabled",
|
|
2411
|
+
Range: "range",
|
|
2412
|
+
fullMonths: "January,February,March,April,May,June,July,August,September,October,November,December".split(","),
|
|
2413
|
+
fullWeeks: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
|
|
2414
|
+
MonhtList: ["jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec"],
|
|
2415
|
+
Weeks: ["sun", "mon", "tue", "wed", "thu", "fri", "sat"],
|
|
2416
|
+
PlacementMap: {
|
|
2417
|
+
left: "bottom-start",
|
|
2418
|
+
center: "bottom",
|
|
2419
|
+
right: "bottom-end"
|
|
2420
|
+
},
|
|
2421
|
+
QuarterMap: {
|
|
2422
|
+
0: 0,
|
|
2423
|
+
1: 3,
|
|
2424
|
+
2: 6,
|
|
2425
|
+
3: 9
|
|
2426
|
+
},
|
|
2427
|
+
MonthQuarterMap: {
|
|
2428
|
+
0: 1,
|
|
2429
|
+
3: 2,
|
|
2430
|
+
6: 3,
|
|
2431
|
+
9: 4
|
|
2432
|
+
},
|
|
2433
|
+
TriggerTypes: St.split(","),
|
|
2434
|
+
DateFormats: {
|
|
2435
|
+
year: "yyyy",
|
|
2436
|
+
years: "yyyy",
|
|
2437
|
+
yearrange: "yyyy",
|
|
2438
|
+
month: "yyyy-MM",
|
|
2439
|
+
time: "HH:mm:ss",
|
|
2440
|
+
week: "yyyywWW",
|
|
2441
|
+
date: "yyyy-MM-dd",
|
|
2442
|
+
timerange: "HH:mm:ss",
|
|
2443
|
+
monthrange: "yyyy-MM",
|
|
2444
|
+
daterange: "yyyy-MM-dd",
|
|
2445
|
+
datetime: "yyyy-MM-dd HH:mm:ss",
|
|
2446
|
+
datetimerange: "yyyy-MM-dd HH:mm:ss"
|
|
2447
|
+
},
|
|
2448
|
+
Time: "time",
|
|
2449
|
+
TimeRange: "timerange",
|
|
2450
|
+
Quarter: "quarter",
|
|
2451
|
+
IconTime: "icon-time",
|
|
2452
|
+
IconDate: "icon-Calendar",
|
|
2453
|
+
DateRange: "daterange",
|
|
2454
|
+
DateTimeRange: "datetimerange",
|
|
2455
|
+
MonthRange: "monthrange",
|
|
2456
|
+
TimeSelect: "time-select",
|
|
2457
|
+
TimesTamp: "timestamp",
|
|
2458
|
+
DateTime: "datetime",
|
|
2459
|
+
SelectbaleRange: "selectableRange",
|
|
2460
|
+
Start: "09:00",
|
|
2461
|
+
End: "18:00",
|
|
2462
|
+
Step: "00:30",
|
|
2463
|
+
CompareOne: "-1:-1",
|
|
2464
|
+
CompareHundred: "100:100",
|
|
2465
|
+
selClass: ".selected",
|
|
2466
|
+
queryClass: ".tiny-picker-panel__content",
|
|
2467
|
+
disableClass: ".time-select-item:not(.disabled)",
|
|
2468
|
+
defaultClass: ".default",
|
|
2469
|
+
Qurtyli: '[data-tag="li"]',
|
|
2470
|
+
MappingKeyCode: {
|
|
2471
|
+
40: 1,
|
|
2472
|
+
38: -1
|
|
2473
|
+
},
|
|
2474
|
+
DatePicker: "DatePicker",
|
|
2475
|
+
TimePicker: "TimePicker"
|
|
2476
|
+
}, g = {}, Q = ["\\d\\d?", "\\d{3}", "\\d{4}"], b = Q[0], Tt = Q[1], wt = Q[2], E = "[^\\s]+", Ee = /\[([^]*?)\]/gm, le = function() {
|
|
2477
|
+
}, Nt = {
|
|
2478
|
+
shortDate: "M/D/yy",
|
|
2479
|
+
mediumDate: "MMM d, yyyy",
|
|
2480
|
+
longDate: "MMMM d, yyyy",
|
|
2481
|
+
fullDate: "dddd, MMMM d, yyyy",
|
|
2482
|
+
default: "ddd MMM dd yyyy HH:mm:ss",
|
|
2483
|
+
shortTime: "HH:mm",
|
|
2484
|
+
mediumTime: "HH:mm:ss",
|
|
2485
|
+
longTime: "HH:mm:ss.SSS"
|
|
2486
|
+
}, Fe = function(e, t) {
|
|
2487
|
+
for (var n = [], o = 0, a = e.length; o < a; o++)
|
|
2488
|
+
n.push(e[o].substr(0, t));
|
|
2489
|
+
return n;
|
|
2490
|
+
}, se = function(e) {
|
|
2491
|
+
return function(t, n, o) {
|
|
2492
|
+
var a = o[e].indexOf(n.charAt(0).toUpperCase() + n.substr(1).toLowerCase());
|
|
2493
|
+
~a && (t.month = a);
|
|
2494
|
+
};
|
|
2495
|
+
}, h = function(e, t) {
|
|
2496
|
+
for (e = String(e), t = t || 2; e.length < t; )
|
|
2497
|
+
e = "0" + e;
|
|
2498
|
+
return e;
|
|
2499
|
+
}, Dt = function(e) {
|
|
2500
|
+
return e.replace(/[|\\{()[^$+*?.-]/g, "\\$&");
|
|
2501
|
+
}, Ce = /d{1,4}|M{1,4}|yy(?:yy)?|S{1,3}|Do|ZZ|([HhMsDm])\1?|[aA]|"[^"]*"|'[^']*'/g, Pe = z.fullWeeks, ze = z.fullMonths, Mt = Fe(ze, 3), kt = Fe(Pe, 3), xt = ["th", "st", "nd", "rd"];
|
|
2502
|
+
g.i18n = {
|
|
2503
|
+
dayNames: Pe,
|
|
2504
|
+
monthNames: ze,
|
|
2505
|
+
dayNamesShort: kt,
|
|
2506
|
+
monthNamesShort: Mt,
|
|
2507
|
+
amPm: ["am", "pm"],
|
|
2508
|
+
doFn: function(e) {
|
|
2509
|
+
return e + xt[e % 10 > 3 ? 0 : (e - e % 10 !== 10) * e % 10];
|
|
2510
|
+
}
|
|
2511
|
+
};
|
|
2512
|
+
var ce = {
|
|
2513
|
+
D: function(e) {
|
|
2514
|
+
return e.getDay();
|
|
2515
|
+
},
|
|
2516
|
+
DD: function(e) {
|
|
2517
|
+
return h(e.getDay());
|
|
2518
|
+
},
|
|
2519
|
+
Do: function(e, t) {
|
|
2520
|
+
return t.doFn(e.getDate());
|
|
2521
|
+
},
|
|
2522
|
+
d: function(e) {
|
|
2523
|
+
return e.getDate();
|
|
2524
|
+
},
|
|
2525
|
+
dd: function(e) {
|
|
2526
|
+
return h(e.getDate());
|
|
2527
|
+
},
|
|
2528
|
+
ddd: function(e, t) {
|
|
2529
|
+
return t.dayNamesShort[e.getDay()];
|
|
2530
|
+
},
|
|
2531
|
+
dddd: function(e, t) {
|
|
2532
|
+
return t.dayNames[e.getDay()];
|
|
2533
|
+
},
|
|
2534
|
+
M: function(e) {
|
|
2535
|
+
return e.getMonth() + 1;
|
|
2536
|
+
},
|
|
2537
|
+
MM: function(e) {
|
|
2538
|
+
return h(e.getMonth() + 1);
|
|
2539
|
+
},
|
|
2540
|
+
MMM: function(e, t) {
|
|
2541
|
+
return t.monthNamesShort[e.getMonth()];
|
|
2542
|
+
},
|
|
2543
|
+
MMMM: function(e, t) {
|
|
2544
|
+
return t.monthNames[e.getMonth()];
|
|
2545
|
+
},
|
|
2546
|
+
yy: function(e) {
|
|
2547
|
+
return h(String(e.getFullYear()), 4).substr(2);
|
|
2548
|
+
},
|
|
2549
|
+
yyyy: function(e) {
|
|
2550
|
+
return h(e.getFullYear(), 4);
|
|
2551
|
+
},
|
|
2552
|
+
h: function(e) {
|
|
2553
|
+
return e.getHours() % 12 || 12;
|
|
2554
|
+
},
|
|
2555
|
+
hh: function(e) {
|
|
2556
|
+
return h(e.getHours() % 12 || 12);
|
|
2557
|
+
},
|
|
2558
|
+
H: function(e) {
|
|
2559
|
+
return e.getHours();
|
|
2560
|
+
},
|
|
2561
|
+
HH: function(e) {
|
|
2562
|
+
return h(e.getHours());
|
|
2563
|
+
},
|
|
2564
|
+
m: function(e) {
|
|
2565
|
+
return e.getMinutes();
|
|
2566
|
+
},
|
|
2567
|
+
mm: function(e) {
|
|
2568
|
+
return h(e.getMinutes());
|
|
2569
|
+
},
|
|
2570
|
+
s: function(e) {
|
|
2571
|
+
return e.getSeconds();
|
|
2572
|
+
},
|
|
2573
|
+
ss: function(e) {
|
|
2574
|
+
return h(e.getSeconds());
|
|
2575
|
+
},
|
|
2576
|
+
S: function(e) {
|
|
2577
|
+
return Math.round(e.getMilliseconds() / 100);
|
|
2578
|
+
},
|
|
2579
|
+
SS: function(e) {
|
|
2580
|
+
return h(Math.round(e.getMilliseconds() / 10), 2);
|
|
2581
|
+
},
|
|
2582
|
+
SSS: function(e) {
|
|
2583
|
+
return h(e.getMilliseconds(), 3);
|
|
2584
|
+
},
|
|
2585
|
+
a: function(e, t) {
|
|
2586
|
+
return e.getHours() < 12 ? t.amPm[0] : t.amPm[1];
|
|
2587
|
+
},
|
|
2588
|
+
A: function(e, t) {
|
|
2589
|
+
return e.getHours() < 12 ? t.amPm[0].toUpperCase() : t.amPm[1].toUpperCase();
|
|
2590
|
+
},
|
|
2591
|
+
ZZ: function(e) {
|
|
2592
|
+
var t = e.getTimezoneOffset();
|
|
2593
|
+
return (t > 0 ? "-" : "+") + h(Math.floor(Math.abs(t) / 60) * 100 + Math.abs(t) % 60, 4);
|
|
2594
|
+
}
|
|
2595
|
+
}, w = {
|
|
2596
|
+
d: [b, function(r, e) {
|
|
2597
|
+
r.day = e;
|
|
2598
|
+
}],
|
|
2599
|
+
Do: [b + E, function(r, e) {
|
|
2600
|
+
r.day = parseInt(e, 10);
|
|
2601
|
+
}],
|
|
2602
|
+
M: [b, function(r, e) {
|
|
2603
|
+
r.month = e - 1;
|
|
2604
|
+
}],
|
|
2605
|
+
yy: [b, function(r, e) {
|
|
2606
|
+
var t = /* @__PURE__ */ new Date(), n = Number(String(t.getFullYear()).substr(0, 2));
|
|
2607
|
+
r.year = String(e > 68 ? n - 1 : n) + e;
|
|
2608
|
+
}],
|
|
2609
|
+
h: [b, function(r, e) {
|
|
2610
|
+
r.hour = e;
|
|
2611
|
+
}],
|
|
2612
|
+
m: [b, function(r, e) {
|
|
2613
|
+
r.minute = e;
|
|
2614
|
+
}],
|
|
2615
|
+
s: [b, function(r, e) {
|
|
2616
|
+
r.second = e;
|
|
2617
|
+
}],
|
|
2618
|
+
yyyy: [wt, function(r, e) {
|
|
2619
|
+
r.year = e;
|
|
2620
|
+
}],
|
|
2621
|
+
S: ["\\d", function(r, e) {
|
|
2622
|
+
r.millisecond = e * 100;
|
|
2623
|
+
}],
|
|
2624
|
+
SS: ["\\d{2}", function(r, e) {
|
|
2625
|
+
r.millisecond = e * 10;
|
|
2626
|
+
}],
|
|
2627
|
+
SSS: [Tt, function(r, e) {
|
|
2628
|
+
r.millisecond = e;
|
|
2629
|
+
}],
|
|
2630
|
+
D: [b, le],
|
|
2631
|
+
ddd: [E, le],
|
|
2632
|
+
MMM: [E, se("monthNamesShort")],
|
|
2633
|
+
MMMM: [E, se("monthNames")],
|
|
2634
|
+
a: [E, function(r, e, t) {
|
|
2635
|
+
var n = e.toLowerCase();
|
|
2636
|
+
n === t.amPm[0] ? r.isPm = !1 : n === t.amPm[1] && (r.isPm = !0);
|
|
2637
|
+
}],
|
|
2638
|
+
ZZ: ["[^\\s]*?[\\+\\-]\\d\\d:?\\d\\d|[^\\s]*?Z", function(r, e) {
|
|
2639
|
+
var t = String(e).match(/([+-]|\d\d)/gi), n;
|
|
2640
|
+
t && (n = Number(t[1] * 60) + parseInt(t[2], 10), r.timezoneOffset = t[0] === "+" ? n : -n);
|
|
2641
|
+
}]
|
|
2642
|
+
}, Et = ["A", "DD", "dd", "mm", "hh", "MM", "ss", "hh", "H", "HH"];
|
|
2643
|
+
g.masks = Nt;
|
|
2644
|
+
w.dddd = w.ddd;
|
|
2645
|
+
Et.forEach(function(r) {
|
|
2646
|
+
r === "MM" ? w[r] = w[r.substr(0, 1)] : w[r] = w[r.substr(0, 1).toLowerCase()];
|
|
2647
|
+
});
|
|
2648
|
+
g.format = function(r, e, t) {
|
|
2649
|
+
var n = t || g.i18n;
|
|
2650
|
+
if (typeof r == "number" && (r = new Date(r)), !O(r) || isNaN(r.getTime()))
|
|
2651
|
+
throw new Error("Invalid Date in fecha.format");
|
|
2652
|
+
e = g.masks[e] || e || g.masks.default;
|
|
2653
|
+
var o = [];
|
|
2654
|
+
return e = e.replace(Ee, function(a, i) {
|
|
2655
|
+
return o.push(i), "@@@";
|
|
2656
|
+
}), e = e.replace(Ce, function(a) {
|
|
2657
|
+
return a in ce ? ce[a](r, n) : a.slice(1, a.length - 1);
|
|
2658
|
+
}), e.replace(/@@@/g, function() {
|
|
2659
|
+
return o.shift();
|
|
2660
|
+
});
|
|
2661
|
+
};
|
|
2662
|
+
var Ft = function(e, t) {
|
|
2663
|
+
var n = [], o = Dt(e).replace(Ce, function(a) {
|
|
2664
|
+
if (w[a]) {
|
|
2665
|
+
var i = w[a];
|
|
2666
|
+
return t.push(i[1]), "(" + i[0] + ")";
|
|
2667
|
+
}
|
|
2668
|
+
return a;
|
|
2669
|
+
});
|
|
2670
|
+
return o = o.replace(/@@@/g, function() {
|
|
2671
|
+
return n.shift();
|
|
2672
|
+
}), o;
|
|
2673
|
+
}, Ct = function(e) {
|
|
2674
|
+
var t, n = /* @__PURE__ */ new Date();
|
|
2675
|
+
if (x(e.timezoneOffset)) {
|
|
2676
|
+
var d = e.year, m = e.month, p = e.day, f = e.hour, v = e.minute, N = e.second, Oe = e.millisecond;
|
|
2677
|
+
t = new Date(d || n.getFullYear(), m || 0, p || 1, f || 0, v || 0, N || 0, Oe || 0);
|
|
2678
|
+
} else {
|
|
2679
|
+
e.minute = Number(e.minute || 0) - Number(e.timezoneOffset);
|
|
2680
|
+
var o = e.year, a = e.month, i = e.day, l = e.hour, s = e.minute, u = e.second, c = e.millisecond;
|
|
2681
|
+
t = new Date(Date.UTC(o || n.getFullYear(), a || 0, i || 1, l || 0, s || 0, u || 0, c || 0));
|
|
2682
|
+
}
|
|
2683
|
+
return t;
|
|
2684
|
+
};
|
|
2685
|
+
g.parse = function(r, e, t) {
|
|
2686
|
+
var n = t || g.i18n;
|
|
2687
|
+
if (typeof e != "string")
|
|
2688
|
+
throw new TypeError("Invalid format in fecha.parse");
|
|
2689
|
+
if (e = g.masks[e] || e, r.length > 1e3)
|
|
2690
|
+
return null;
|
|
2691
|
+
var o = {}, a = [];
|
|
2692
|
+
e = e.replace(Ee, function(c, d) {
|
|
2693
|
+
return "@@@";
|
|
2694
|
+
});
|
|
2695
|
+
var i = Ft(e, a), l = r.match(new RegExp(i, "i"));
|
|
2696
|
+
if (!l)
|
|
2697
|
+
return null;
|
|
2698
|
+
for (var s = 1, u = l.length; s < u; s++)
|
|
2699
|
+
a[s - 1](o, l[s], n);
|
|
2700
|
+
return o.isPm === !0 && !x(o.hour) && Number(o.hour) !== 12 ? o.hour = Number(o.hour) + 12 : o.isPm === !1 && Number(o.hour) === 12 && (o.hour = 0), Ct(o);
|
|
2701
|
+
};
|
|
2702
|
+
const Pt = g;
|
|
2703
|
+
var ue = z.Weeks, de = z.MonhtList, zt = z.DateFormats.date, At = function(e) {
|
|
2704
|
+
return {
|
|
2705
|
+
dayNamesShort: ue.map(function(t) {
|
|
2706
|
+
return e("ui.datepicker.weeks.".concat(t));
|
|
2707
|
+
}),
|
|
2708
|
+
dayNames: ue.map(function(t) {
|
|
2709
|
+
return e("ui.datepicker.weeks.".concat(t));
|
|
2710
|
+
}),
|
|
2711
|
+
monthNamesShort: de.map(function(t) {
|
|
2712
|
+
return e("ui.datepicker.months.".concat(t));
|
|
2713
|
+
}),
|
|
2714
|
+
monthNames: de.map(function(t, n) {
|
|
2715
|
+
return e("ui.datepicker.month".concat(n + 1));
|
|
2716
|
+
}),
|
|
2717
|
+
amPm: ["am", "pm"]
|
|
2718
|
+
};
|
|
2719
|
+
}, Ot = function(e) {
|
|
2720
|
+
return !(x(e) || isNaN(new Date(e).getTime()) || Array.isArray(e));
|
|
2721
|
+
}, Rt = function(e) {
|
|
2722
|
+
return Ot(e) ? new Date(e) : null;
|
|
2723
|
+
}, It = function(e, t, n) {
|
|
2724
|
+
return e = Rt(e), e ? Pt.format(e, t || zt, At(n)) : "";
|
|
2725
|
+
}, Lt = function(e) {
|
|
2726
|
+
var t = 3, n = ",", o = ".";
|
|
2727
|
+
if (y(e))
|
|
2728
|
+
return e;
|
|
2729
|
+
if (typeof e == "string") {
|
|
2730
|
+
var a = e.match(/\d{2}([^\d]?)\d{3}([^\d]?)\d{2}/);
|
|
2731
|
+
a && a.length === 3 && (n = a[1], o = a[2]);
|
|
2732
|
+
}
|
|
2733
|
+
return {
|
|
2734
|
+
groupSeparator: n,
|
|
2735
|
+
groupSize: t,
|
|
2736
|
+
decimalSeparator: o
|
|
2737
|
+
};
|
|
2738
|
+
}, Ut = function(e) {
|
|
2739
|
+
var t = e.DateFormat, n = t === void 0 ? "yyyy-MM-dd" : t, o = e.TimeFormat, a = o === void 0 ? "HH:mm:ss" : o;
|
|
2740
|
+
return {
|
|
2741
|
+
DateFormat: n,
|
|
2742
|
+
DateTimeFormat: "".concat(n, " ").concat(a),
|
|
2743
|
+
TimeFormat: a
|
|
2744
|
+
};
|
|
2745
|
+
}, Ae = /(-|\+)(\d{2}):?(\d{2})$/, j = function(e) {
|
|
2746
|
+
var t = 0 - (/* @__PURE__ */ new Date()).getTimezoneOffset() / 60, n = typeof e == "string" && e.match(Ae);
|
|
2747
|
+
if (n) {
|
|
2748
|
+
var o = n[2] * 1 + n[3] * 1 / 60;
|
|
2749
|
+
e = o * "".concat(n[1], "1");
|
|
2750
|
+
}
|
|
2751
|
+
return V(e) && e >= -12 && e <= 12 ? e : t;
|
|
2752
|
+
};
|
|
2753
|
+
function Ht(r) {
|
|
2754
|
+
return function(e) {
|
|
2755
|
+
var t = T(T({}, Ut(e)), {}, {
|
|
2756
|
+
NumberFormat: Lt(e.NumberFormat),
|
|
2757
|
+
DbTimezone: j(e.DbTimezone),
|
|
2758
|
+
Timezone: j(e.Timezone),
|
|
2759
|
+
TimezoneOffset: e.TimezoneOffset
|
|
2760
|
+
}), n = {
|
|
2761
|
+
getFormatConfig: function() {
|
|
2762
|
+
return t;
|
|
2763
|
+
},
|
|
2764
|
+
setFormatConfig: function(a) {
|
|
2765
|
+
Object.assign(t, a);
|
|
2766
|
+
},
|
|
2767
|
+
getNumberFormat: function() {
|
|
2768
|
+
return t.NumberFormat;
|
|
2769
|
+
},
|
|
2770
|
+
getDateFormat: function() {
|
|
2771
|
+
return {
|
|
2772
|
+
DateTimeFormat: t.DateTimeFormat,
|
|
2773
|
+
TimeFormat: t.TimeFormat,
|
|
2774
|
+
Timezone: t.Timezone,
|
|
2775
|
+
DateFormat: t.DateFormat,
|
|
2776
|
+
DbTimezone: t.DbTimezone,
|
|
2777
|
+
TimezoneOffset: t.TimezoneOffset
|
|
2778
|
+
};
|
|
2779
|
+
},
|
|
2780
|
+
/**
|
|
2781
|
+
*
|
|
2782
|
+
* @param {Date|String} value 日期或日期字符串
|
|
2783
|
+
* @param {String} format 格式化模式
|
|
2784
|
+
* @returns {String}
|
|
2785
|
+
*/
|
|
2786
|
+
formatDate: function(a, i) {
|
|
2787
|
+
if (x(a))
|
|
2788
|
+
return a;
|
|
2789
|
+
var l = O(a) ? a : ie(a), s = t.DbTimezone, u = a.match && a.match(Ae), c = i === !1 || arguments[2] === !1;
|
|
2790
|
+
return u && (s = j(a), l = ie(a.replace("T", " ").slice(0, -5))), c || (l = this.getDateWithNewTimezone(l, s, t.Timezone, t.TimezoneOffset)), O(l) ? It(l, i || t.DateFormat, r) : null;
|
|
2791
|
+
},
|
|
2792
|
+
/**
|
|
2793
|
+
*
|
|
2794
|
+
* @param {Number} value 数字
|
|
2795
|
+
* @param {Object} format 格式化选项
|
|
2796
|
+
* @returns {String}
|
|
2797
|
+
*/
|
|
2798
|
+
formatNumber: function(a, i) {
|
|
2799
|
+
return rt(a, T(T({}, t.NumberFormat), i));
|
|
2800
|
+
},
|
|
2801
|
+
/**
|
|
2802
|
+
*
|
|
2803
|
+
* @param {String} value 格式化后的字符串
|
|
2804
|
+
* @param {Object} format 格式化选项
|
|
2805
|
+
* @returns {Number}
|
|
2806
|
+
*/
|
|
2807
|
+
recoverNumber: function(a, i) {
|
|
2808
|
+
return nt(a, T(T({}, t.NumberFormat), i));
|
|
2809
|
+
},
|
|
2810
|
+
/**
|
|
2811
|
+
*
|
|
2812
|
+
* @param {Date} value Date
|
|
2813
|
+
* @param {Number} from
|
|
2814
|
+
* @param {Number} to
|
|
2815
|
+
* @returns {String}
|
|
2816
|
+
*/
|
|
2817
|
+
getDateWithNewTimezone: function(a, i, l, s) {
|
|
2818
|
+
return i = i === 0 ? i : i || t.DbTimezone, l = l === 0 ? l : l || t.Timezone, s = s === 0 ? s : s || t.TimezoneOffset, bt(a, i, l, s);
|
|
2819
|
+
}
|
|
2820
|
+
};
|
|
2821
|
+
return n;
|
|
2822
|
+
};
|
|
2823
|
+
}
|
|
2824
|
+
const $t = "3.16.0";
|
|
2825
|
+
var Gt = ve, jt = I, Yt = ye, Wt = be, Vt = K, Kt = R, Jt = Y, qt = Ye, Bt = Ht(jt);
|
|
2826
|
+
const Zt = T(T({}, Ke), {}, {
|
|
2827
|
+
language: qt,
|
|
2828
|
+
globalization: Bt
|
|
2829
|
+
});
|
|
2830
|
+
export {
|
|
2831
|
+
Zt as default,
|
|
2832
|
+
Jt as enUS,
|
|
2833
|
+
Vt as extend,
|
|
2834
|
+
Bt as globalization,
|
|
2835
|
+
Yt as i18n,
|
|
2836
|
+
Wt as initI18n,
|
|
2837
|
+
qt as language,
|
|
2838
|
+
jt as t,
|
|
2839
|
+
Gt as use,
|
|
2840
|
+
$t as version,
|
|
2841
|
+
Kt as zhCN
|
|
2842
|
+
};
|