-
Notifications
You must be signed in to change notification settings - Fork 213
/
Copy pathzh.js
3073 lines (3073 loc) · 121 KB
/
zh.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { en } from "./en.js";
export const zh = {
...en,
productName: "Lowcoder",
productDesc: "快速构建内部工具,无任何限制",
notSupportedBrowser: "您当前使用的浏览器可能存在兼容性问题.为了获得更好的用户体验,建议使用最新版本的Chrome浏览器",
create: "创建",
move: "移动",
addItem: "添加",
newItem: "新建",
copy: "复制",
rename: "重命名",
delete: "删除",
deletePermanently: "删除",
remove: "移除",
recover: "恢复",
edit: "编辑",
view: "查看",
value: "值",
data: "数据",
information: "信息",
success: "成功",
warning: "警告",
error: "错误",
reference: "参考",
text: "文本",
basic: "基础",
label: "标题",
layout: "布局",
color: "颜色",
form: "表单",
menu: "菜单",
menuItem: "菜单项",
ok: "确定",
cancel: "取消",
finish: "完成",
reset: "重置",
icon: "图标",
code: "代码",
title: "标题",
emptyContent: "空内容",
more: "更多",
search: "搜索",
back: "返回",
accessControl: "访问控制",
copySuccess: "已复制",
copyError: "复制错误",
api: {
...en.api,
publishSuccess: "已发布",
recoverFailed: "恢复失败",
needUpdate: "您当前的版本过旧,请升级至最新版本."
},
codeEditor: {
...en.codeEditor,
notSupportAutoFormat: "当前的代码编辑器不支持自动格式化",
fold: "折叠"
},
exportMethod: {
...en.exportMethod,
setDesc: "设置属性:{property}",
clearDesc: "清除属性:{property}",
resetDesc: "重置属性:{property} 为默认值"
},
method: {
...en.method,
focus: "设置焦点",
focusOptions: "焦点选项,参考HTMLElement.focus()方法",
blur: "移除焦点",
click: "点击",
select: "选择所有文本",
setSelectionRange: "设置当前文本选择的起始和结束位置",
selectionStart: "从头选择字符.",
selectionEnd: "从倒数选择字符.",
setRangeText: "替换一段文本",
replacement: "要插入的字符串.",
replaceStart: "从头开始替换字符.",
replaceEnd: "从倒数开始替换字符."
},
errorBoundary: {
...en.errorBoundary,
encounterError: "加载组件失败,请检查您的配置.",
clickToReload: "点击重新加载",
errorMsg: "错误:",
},
imgUpload: {
...en.imgUpload,
notSupportError: "仅支持上传 {types} 类型的图像",
exceedSizeError: "图像大小不应超过 {size}"
},
gridCompOperator: {
...en.gridCompOperator,
notSupport: "不支持",
selectAtLeastOneComponent: "请至少选择一个组件",
selectCompFirst: "请在复制之前选择组件",
noContainerSelected: "[错误] 未选择容器",
deleteCompsSuccess: "删除成功,您可以使用 {undoKey} 撤销操作.",
deleteCompsTitle: "删除组件",
deleteCompsBody: "确定要删除所选的 {compNum} 个组件吗?",
cutCompsSuccess: "剪切成功!您可以使用 {pasteKey} 进行粘贴,或使用 {undoKey} 撤销操作."
},
leftPanel: {
...en.leftPanel,
queries: "查询",
globals: "全局变量",
propTipsArr: "{num} 项",
propTips: "{num} 个键",
propTipArr: "{num} 项",
propTip: "{num} 个键",
stateTab: "状态",
settingsTab: "设置",
toolbarTitle: "其他",
toolbarPreload: "脚本和样式",
components: "组件",
modals: "对话框",
expandTip: "点击展开 {component} 的数据",
collapseTip: "点击折叠 {component} 的数据",
layers: "图层",
activatelayers: "激活图层",
selectedComponents: "已选组件",
},
bottomPanel: {
...en.bottomPanel,
title: "查询",
run: "运行",
noSelectedQuery: "未选择查询",
metaData: "元数据",
noMetadata: "无元数据",
metaSearchPlaceholder: "搜索元数据",
allData: "所有表"
},
rightPanel: {
...en.rightPanel,
propertyTab: "属性",
noSelectedComps: "未选择组件,点击以选择一个.",
createTab: "插入",
searchPlaceHolder: "搜索组件或模块",
uiComponentTab: "组件",
extensionTab: "扩展",
modulesTab: "模块",
moduleListTitle: "模块",
pluginListTitle: "插件",
emptyModules: "模块是可复用的组件和查询的组合.",
searchNotFound: "找不到合适的组件?提交一个新的想法",
emptyPlugins: "未添加插件.",
contactUs: "联系我们",
issueHere: "这里."
},
prop: {
...en.prop,
expand: "展开",
columns: "列",
rowSelection: "行选择",
toolbar: "工具栏",
pagination: "分页",
logo: "标志",
style: "样式",
inputs: "输入",
meta: "元数据",
hide: "隐藏",
loading: "加载中",
disabled: "禁用",
placeholder: "占位符",
showClear: "显示清除按钮",
showSearch: "可搜索",
defaultValue: "默认值",
required: "必填字段",
readOnly: "只读",
readOnlyTooltip: "只读组件外观与普通组件相同,可以获得焦点和选择,但不能修改",
minimum: "最小值",
maximum: "最大值",
regex: "正则表达式",
minLength: "最小长度",
maxLength: "最大长度",
height: "高度",
width: "宽度",
selectApp: "应用程序",
showCount: "显示计数",
textType: "文本类型",
customRule: "自定义规则",
customRuleTooltip: "如果结果是非空字符串,则为错误消息.如果为空或null,则验证通过.\n示例:",
manual: "手动",
map: "映射",
json: "JSON",
use12Hours: "使用12小时制",
hourStep: "小时步长",
minuteStep: "分钟步长",
secondStep: "秒步长",
minDate: "最小日期",
maxDate: "最大日期",
minTime: "最小时间",
maxTime: "最大时间",
type: "类型",
showLabel: "显示标签",
showHeader: "显示标题",
showBody: "显示表体",
showFooter: "显示表尾",
"showSider": "显示 Sider",
"innerSider": "内部 Sider",
maskClosable: "点击蒙层关闭",
showMask: "显示蒙层",
scrollbar: "滚动条",
"textOverflow": "文本溢出",
"siderScrollbar": "在 Sider 中显示滚动条",
"siderRight": "右侧显示屏",
"siderWidth": "凫水宽度",
"siderWidthTooltip": "网格宽度支持百分比(%)和像素(px)。",
"siderCollapsedWidth": "折叠宽度",
"siderCollapsedWidthTooltip": "折叠宽度支持百分比(%)和像素(px)。",
"siderCollapsible": "Sider 折叠式",
"siderCollapsed": "Sider 崩溃",
"contentScrollbar": "在内容中显示滚动条",
"appID": "应用程序 ID",
"showApp": "在内容区域显示应用程序",
"showAppTooltip": "您可以在内容区域显示整个 Lowcoder 应用程序。请注意,对于模块,我们不支持输入、输出事件和方法。",
"baseURL": "Lowcoder API 基本 URL",
"horizontal": "水平",
"minHorizontalWidth": "最小水平宽度",
"horizontalGridCells": "水平网格单元",
"showHorizontalScrollbar": "显示水平滚动条",
"showVerticalScrollbar": "显示垂直滚动条",
},
autoHeightProp: {
...en.autoHeightProp,
auto: "自动",
fixed: "固定",
},
labelProp: {
...en.labelProp,
text: "标题",
tooltip: "提示",
position: "位置",
left: "左",
top: "上",
align: "对齐",
width: "宽度",
widthTooltip: "组件标题的宽度,支持百分比(%)和像素(px)为单位.",
},
"textOverflowProp": {
...en.textOverflowProp,
"ellipsis": "鼠标悬停",
"wrap": "包装"
},
eventHandler: {
...en.eventHandler,
eventHandlers: "事件处理器",
emptyEventHandlers: "无事件处理器",
incomplete: "选择不完整",
inlineEventTitle: "在 {eventName} 时",
event: "事件",
action: "操作",
noSelect: "无选择",
runQuery: "运行查询",
selectQuery: "选择查询",
controlComp: "控制组件",
runScript: "运行JavaScript代码",
runScriptPlaceHolder: "在此处编写代码",
component: "组件",
method: "方法",
setTempState: "设置临时状态",
state: "状态",
triggerModuleEvent: "触发模块事件",
moduleEvent: "模块事件",
goToApp: "跳转到指定应用",
queryParams: "查询参数",
hashParams: "哈希参数",
showNotification: "显示通知",
text: "文本",
level: "级别",
duration: "持续时间",
notifyDurationTooltip: "时间单位可以是秒(默认为s)或毫秒(ms),最大持续时间为{max}秒",
goToURL: "跳转到URL链接",
openInNewTab: "在新标签页中打开",
copyToClipboard: "复制到剪贴板",
copyToClipboardValue: "值",
export: "导出数据",
exportNoFileType: "未选择(可选)",
fileName: "文件名",
fileNameTooltip: "支持使用扩展名指定文件类型,例如image.png.",
fileType: "文件类型",
condition: "满足条件时运行",
conditionTooltip: "只有当此条件评估为“true”时才运行事件处理器",
debounce: "防抖",
throttle: "节流",
slowdownTooltip: "使用防抖或节流控制操作触发的频率,时间单位可以是毫秒(默认为ms)或秒(s).",
notHandledError: "未处理",
currentApp: "当前应用程序",
},
event: {
...en.event,
submit: "提交",
submitDesc: "在提交时触发",
change: "更改",
changeDesc: "在值更改时触发",
focus: "聚焦",
focusDesc: "在聚焦时触发",
blur: "失焦",
blurDesc: "在失焦时触发",
click: "点击",
clickDesc: "在点击时触发",
"doubleClick": "双击",
"doubleClickDesc": "在双击时触发",
"rightClick": "右键点击",
"rightClickDesc": "在右键点击时触发",
"keyDown": "按键",
"keyDownDesc": "在按键时触发",
"select": "选择",
"selectDesc": "在选择时触发",
"checked": "已检查",
"checkedDesc": "在复选框被选中时触发",
"unchecked": "未检查",
"uncheckedDesc": "在复选框未选中时触发",
"drag": "拖拽",
"dragDesc": "在拖拽时触发",
"drop": "放置",
"dropDesc": "在放置时触发",
"open": "打开",
"openDesc": "在打开时触发",
"mute": "静音",
"muteDesc": "在静音时触发",
"unmute": "取消静音",
"unmuteDesc": "在取消静音时触发",
"showCamera": "显示摄像头",
"showCameraDesc": "在显示摄像头时触发",
"hideCamera": "隐藏摄像头",
"hideCameraDesc": "在隐藏摄像头时触发",
"shareScreen": "共享屏幕",
"shareScreenDesc": "在共享屏幕时触发",
"shareScreenEnd": "共享屏幕结束",
"shareScreenEndDesc": "在共享屏幕结束时触发",
"shareControl": "共享控制",
"shareControlDesc": "在共享控制时触发",
"shareControlEnd": "共享控制结束",
"shareControlEndDesc": "在共享控制结束时触发",
"shareContent": "共享内容",
"shareContentDesc": "在共享内容时触发",
"shareContentEnd": "共享内容结束",
"shareContentEndDesc": "在共享内容结束时触发",
"stopShare": "停止共享",
"stopShareDesc": "在停止共享时触发",
"play": "播放",
"playDesc": "在播放时触发",
"pause": "暂停",
"pauseDesc": "在暂停时触发",
"ended": "结束",
"endedDesc": "在结束时触发",
"step": "步骤",
"stepDesc": "在步骤时触发",
"next": "下一步",
"nextDesc": "在下一步时触发",
"finished": "完成",
"finishedDesc": "在完成时触发",
"saved": "保存",
"savedDesc": "在保存时触发",
"edited": "编辑",
"editedDesc": "在编辑时触发",
"meetingStart": "会议开始",
"meetingStartDesc": "在会议开始时触发",
"meetingEnd": "会议结束",
"meetingEndDesc": "在会议结束时触发",
"meetingJoin": "会议加入",
"meetingJoinDesc": "在会议加入时触发",
"meetingLeave": "会议离开",
"meetingLeaveDesc": "在会议离开时触发",
"geoMapMove": "地图移动",
"geoMapMoveDesc": "在地图移动时触发",
"geoMapZoom": "地图缩放",
"geoMapZoomDesc": "在地图缩放时触发",
"geoMapSelect": "地图选择",
"geoMapSelectDesc": "在地图选择时触发",
"scannerSuccess": "扫描成功",
"scannerSuccessDesc": "在扫描成功时触发",
"scannerError": "扫描失败",
"scannerErrorDesc": "在扫描失败时触发",
"chartZoom": "图表缩放",
"chartZoomDesc": "在图表缩放时触发",
"chartHover": "图表悬停",
"chartHoverDesc": "在图表悬停时触发",
"chartSelect": "图表选择",
"chartSelectDesc": "在图表选择时触发",
"chartDeselect": "图表取消选择",
"chartDeselectDesc": "在图表取消选择时触发",
close: "关闭",
closeDesc: "在关闭时触发",
parse: "解析",
parseDesc: "在解析时触发",
success: "成功",
successDesc: "在成功时触发",
delete: "删除",
deleteDesc: "在删除时触发",
mention: "提及",
mentionDesc: "在提及时触发",
},
themeDetail: {
...en.themeDetail,
primary: "颜色主题",
primaryDesc: "大多数组件使用默认的颜色主题",
textDark: "深色文本颜色",
textDarkDesc: "当应用背景颜色为浅色时",
textLight: "浅色文本颜色",
textLightDesc: "当应用背景颜色为深色时",
canvas: "画布颜色",
canvasDesc: "应用的默认背景颜色",
primarySurface: "容器颜色",
primarySurfaceDesc: "用于诸如表格之类的组件的默认背景颜色",
borderRadius: "边框半径",
borderRadiusDesc: "大多数组件使用默认的边框半径",
chart: "图表样式",
chartDesc: "Echarts",
echartsJson: "主题配置",
margin: "外边距",
marginDesc: "默认外边距通常用于大多数组件",
padding: "内边距",
paddingDesc: "默认内边距通常用于大多数组件",
containerHeaderPadding: "头部边距",
containerheaderpaddingDesc: "默认头部边距通常用于大多数组件",
gridColumns: "网格列",
gridColumnsDesc: "默认列数通常用于大多数容器",
},
style: {
...en.style,
resetTooltip: "重置样式.删除输入框的值以重置单个字段.",
textColor: "文字颜色",
contrastText: "对比文本颜色",
generated: "已生成",
customize: "自定义",
staticText: "静态文本",
accent: "强调色",
validate: "验证消息",
border: "边框颜色",
borderRadius: "边框半径",
borderWidth: "边框宽度",
borderStyle: "边框样式",
background: "背景",
headerBackground: "头部背景",
footerBackground: "底部背景",
"siderBackground": "Sider 背景",
fill: "填充",
track: "轨道",
links: "链接",
thumb: "滑块",
thumbBorder: "滑块边框",
checked: "已选中",
unchecked: "未选中",
handle: "手柄",
tags: "标签",
tagsText: "标签文本",
multiIcon: "多选图标",
tabText: "选项卡文本",
tabAccent: "选项卡强调色",
checkedBackground: "已选中背景",
uncheckedBackground: "未选中背景",
uncheckedBorder: "未选中边框",
indicatorBackground: "指示器背景",
tableCellText: "单元格文本",
selectedRowBackground: "选中行背景",
hoverRowBackground: "悬停行背景",
hoverBackground: "悬停背景",
textTransform: "文本变换",
textDecoration: "文字装饰",
alternateRowBackground: "交替行背景",
tableHeaderBackground: "表头背景",
tableHeaderText: "表头文本",
toolbarBackground: "工具栏背景",
toolbarText: "工具栏文本",
pen: "画笔",
footerIcon: "底部图标",
tips: "提示",
margin: "外边距",
padding: "内边距",
marginLeft: "左外边距",
marginRight: "右外边距",
marginTop: "上外边距",
marginBottom: "下外边距",
containerHeaderPadding: "上内边距",
containerFooterPadding: "下内边距",
containerBodyPadding: "内边距",
"containerSiderPadding": "Sider 衬垫",
minWidth: "最小宽度",
text: "文本",
textSize: "字体大小",
textWeight: "字体粗细",
"fontFamily": "字体",
"fontStyle": "字体风格",
"backgroundImage": "背景图片",
"backgroundImageRepeat": "背景图片重复",
"backgroundImageSize": "背景图片大小",
"backgroundImagePosition": "背景图片位置",
"backgroundImageOrigin": "背景图片原点",
"headerBackgroundImage": "头部背景图片",
"headerBackgroundImageRepeat": "头部背景图片重复",
"headerBackgroundImageSize": "头部背景图片大小",
"headerBackgroundImagePosition": "头部背景图片位置",
"headerBackgroundImageOrigin": "头部背景图片原点",
"footerBackgroundImage": "底部背景图片",
"footerBackgroundImageRepeat": "底部背景图片重复",
"footerBackgroundImageSize": "底部背景图片大小",
"footerBackgroundImagePosition": "底部背景图片位置",
"footerBackgroundImageOrigin": "底部背景图片原点",
},
export: {
...en.export,
hiddenDesc: "如果为true,则隐藏组件",
disabledDesc: "如果为true,则将组件置为灰色且不可交互",
visibleDesc: "如果为true,则组件可见",
inputValueDesc: "输入框的当前值",
invalidDesc: "值是否无效",
placeholderDesc: "未设置值时显示的文本",
requiredDesc: "如果为true,则必须提供有效值",
submitDesc: "提交表单",
richTextEditorValueDesc: "编辑器的当前值",
richTextEditorReadOnlyDesc: "如果为true,则编辑器为只读",
richTextEditorHideToolBarDesc: "如果为true,则隐藏工具栏",
jsonEditorDesc: "当前的JSON数据",
sliderValueDesc: "当前选定的值",
sliderMaxValueDesc: "当前区间的最大值",
sliderMinValueDesc: "当前区间的最小值",
sliderStartDesc: "当前选定起始点的值",
sliderEndDesc: "当前选定结束点的值",
ratingValueDesc: "当前选定的评分",
ratingMaxDesc: "当前设置的最大评分",
datePickerValueDesc: "当前选定的日期",
datePickerFormattedValueDesc: "根据指定的格式格式化的选定日期",
datePickerTimestampDesc: "日期的当前选定时间戳(秒)",
dateRangeStartDesc: "当前选定的起始日期",
dateRangeEndDesc: "当前选定的结束日期",
dateRangeStartTimestampDesc: "开始日期的当前选定时间戳(秒)",
dateRangeEndTimestampDesc: "结束日期的当前选定时间戳(秒)",
dateRangeFormattedValueDesc: "根据指定的格式格式化的选定日期",
dateRangeFormattedStartValueDesc: "根据指定的格式格式化的起始日期",
dateRangeFormattedEndValueDesc: "根据指定的格式格式化的结束日期",
timePickerValueDesc: "当前选定的时间",
timePickerFormattedValueDesc: "根据指定的格式格式化的选定时间",
timeRangeStartDesc: "当前选定的起始时间",
timeRangeEndDesc: "当前选定的结束时间",
timeRangeFormattedValueDesc: "根据指定的格式格式化的选定时间",
timeRangeFormattedStartValueDesc: "根据指定的格式格式化的起始时间",
timeRangeFormattedEndValueDesc: "根据指定的格式格式化的结束时间"
},
validationDesc: {
...en.validationDesc,
email: "请输入有效的电子邮件地址",
url: "请输入有效的URL链接",
regex: "请输入与正则表达式匹配的内容",
maxLength: "字符数过多,当前长度为{length},最大长度为{maxLength}",
minLength: "字符数不足,当前长度为{length},最小长度为{minLength}",
maxValue: "大于最大值,当前值为{value},最大值为{max}",
minValue: "小于最小值,当前值为{value},最小值为{min}",
maxTime: "大于最大时间,当前时间为{time},最大时间为{maxTime}",
minTime: "小于最小时间,当前时间为{time},最小时间为{minTime}",
maxDate: "大于最大日期,当前日期为{date},最大日期为{maxDate}",
minDate: "小于最小日期,当前日期为{date},最小日期为{minDate}"
},
query: {
...en.query,
noQueries: "没有可用的查询.",
queryTutorialButton: "查看{value}文档",
datasource: "数据源",
newDatasource: "新建数据源",
generalTab: "常规",
notificationTab: "通知",
advancedTab: "高级",
showFailNotification: "执行失败时显示通知",
failCondition: "失败条件",
failConditionTooltip1: "自定义失败条件和相应的通知.",
failConditionTooltip2: "如果任何条件返回true,则将查询标记为失败并触发相应的通知.",
showSuccessNotification: "执行成功时显示通知",
successMessageLabel: "成功消息",
successMessage: "执行成功",
notifyDuration: "持续时间",
notifyDurationTooltip: "通知持续时间.时间单位可以是秒(s,默认)或毫秒(ms).默认值为{default}s,最大值为{max}s.",
successMessageWithName: "{name}执行成功",
failMessageWithName: "{name}执行失败:{result}",
showConfirmationModal: "运行前显示确认对话框",
confirmationMessageLabel: "确认消息",
confirmationMessage: "您确定要运行此查询吗?",
newQuery: "新建查询",
newFolder: "新建文件夹",
recentlyUsed: "最近使用",
folder: "文件夹",
folderNotEmpty: "文件夹不为空",
dataResponder: "数据响应器",
tempState: "临时状态",
transformer: "转换器",
quickRestAPI: "REST查询",
quickStreamAPI: "Stream查询",
quickGraphql: "GraphQL查询",
lowcoderAPI: "Lowcoder API",
executeJSCode: "运行JavaScript代码",
importFromQueryLibrary: "从查询库导入",
importFromFile: "从文件导入",
triggerType: "触发方式",
triggerTypeAuto: "输入更改或页面加载时触发",
triggerTypePageLoad: "页面加载时触发",
triggerTypeManual: "手动触发",
chooseDataSource: "选择数据源",
method: "方法",
updateExceptionDataSourceTitle: "更新失败的数据源",
updateExceptionDataSourceContent: "使用相同的失败数据源更新以下查询:",
update: "更新",
disablePreparedStatement: "禁用预编译语句",
disablePreparedStatementTooltip: "禁用预编译语句可以动态生成SQL,但存在SQL注入的风险",
timeout: "超时时间",
timeoutTooltip: "默认单位:毫秒(ms),支持的输入单位:毫秒(ms)、秒(s).\n" +
"默认值:{defaultSeconds}秒\n" +
"最大值:{maxSeconds}秒.\n" +
"\n" +
"例如:300(即300毫秒),800毫秒,5秒.",
periodic: "定期运行此查询",
periodicTime: "周期",
periodicTimeTooltip: "连续执行之间的时间间隔.\n" +
"默认单位:毫秒(ms),支持的输入单位:毫秒(ms)、秒(s).\n" +
"最小值:100毫秒,低于此值将禁用周期性执行.\n" +
"\n" +
"例如:300(即300毫秒),800毫秒,5秒.",
cancelPrevious: "忽略上一次未完成的执行结果.",
cancelPreviousTooltip: "",
dataSourceStatusError: "如果触发新的执行,将忽略之前未完成的执行结果(如果之前的执行未完成),被忽略的执行将不会触发查询的事件列表.",
success: "成功",
fail: "失败",
successDesc: "执行成功时触发",
failDesc: "执行失败时触发",
fixedDelayError: "查询未运行",
execSuccess: "执行成功",
execFail: "执行失败",
execIgnored: "忽略了此查询的结果.",
deleteSuccessMessage: "删除成功,您可以使用 {undoKey} 进行撤消.",
dataExportDesc: "当前查询获取的数据",
codeExportDesc: "当前查询状态代码",
successExportDesc: "当前查询是否成功执行",
messageExportDesc: "当前查询返回的信息",
extraExportDesc: "当前查询的其他数据",
isFetchingExportDesc: "当前查询是否在请求中",
runTimeExportDesc: "当前查询的执行时间(毫秒)",
latestEndTimeExportDesc: "最后运行时间",
triggerTypeExportDesc: "触发类型",
chooseResource: "选择资源",
createDataSource: "创建新的数据源",
editDataSource: "编辑",
datasourceName: "数据源名称",
datasourceNameRuleMessage: "请输入数据源名称",
generalSetting: "常规设置",
advancedSetting: "高级设置",
port: "端口",
portRequiredMessage: "请输入端口",
portErrorMessage: "请输入正确的端口",
connectionType: "连接类型",
regular: "常规",
host: "主机",
hostRequiredMessage: "请输入主机域名或IP地址",
userName: "用户名",
password: "密码",
encryptedServer: "-------- 服务器端加密 --------",
uriRequiredMessage: "请输入URL链接",
urlRequiredMessage: "请输入URL链接",
uriErrorMessage: "请输入正确的URL链接",
urlErrorMessage: "请输入正确的URL链接",
httpRequiredMessage: "请输入http://或https://",
databaseName: "数据库名称",
databaseNameRequiredMessage: "请输入数据库名称",
useSSL: "使用SSL",
userNameRequiredMessage: "请输入用户名",
passwordRequiredMessage: "请输入密码",
authentication: "身份验证",
authenticationType: "身份验证类型",
sslCertVerificationType: "SSL证书验证",
sslCertVerificationTypeDefault: "验证CA证书",
sslCertVerificationTypeSelf: "验证自签名证书",
sslCertVerificationTypeDisabled: "禁用",
selfSignedCert: "自签名证书",
selfSignedCertRequireMsg: "请提供您的证书",
enableTurnOffPreparedStatement: "启用切换查询的预编译语句",
enableTurnOffPreparedStatementTooltip: "您可以在查询的高级选项卡中启用或禁用预编译语句",
serviceName: "服务名称",
serviceNameRequiredMessage: "请输入您的服务名称",
useSID: "使用SID",
connectSuccessfully: "连接成功",
saveSuccessfully: "保存成功",
database: "数据库",
cloudHosting: "云托管的Lowcoder无法访问您的本地服务,如使用127.0.0.1或localhost.请尝试连接公共网络数据源或使用反向代理来访问您的私有服务.",
notCloudHosting: "对于Docker托管部署,Lowcoder使用桥接网络,因此对于主机地址,127.0.0.1和localhost是无效的.要访问本地机器上的数据源,请参考以下链接",
howToAccessHostDocLink: "如何访问主机API/数据库",
returnList: "返回列表",
chooseDatasourceType: "选择数据源类型",
viewDocuments: "文档",
testConnection: "测试连接",
save: "保存",
whitelist: "白名单",
whitelistTooltip: "当需要时,将以下Lowcoder的IP地址添加到数据源的白名单中.",
address: "地址:",
nameExists: "名称{name}已存在",
jsQueryDocLink: "关于JavaScript查询",
dynamicDataSourceConfigLoadingText: "加载额外数据源配置...",
dynamicDataSourceConfigErrText: "无法加载额外数据源配置.",
retry: "重试",
},
sqlQuery: {
...en.sqlQuery,
keyValuePairs: "键值对",
object: "对象",
allowMultiModify: "允许修改多行",
allowMultiModifyTooltip: "如果选择此参数,将操作符合条件的所有行.否则,只会操作符合条件的第一行.",
array: "数组",
insertList: "插入列表",
insertListTooltip: "当值不存在时插入的值",
filterRule: "筛选规则",
updateList: "更新列表",
updateListTooltip: "已存在的值会被相同的插入列表值覆盖",
sqlMode: "SQL模式",
guiMode: "GUI模式",
operation: "操作",
insert: "插入",
upsert: "插入,冲突时更新",
update: "更新",
delete: "删除",
bulkInsert: "批量插入",
bulkUpdate: "批量更新",
table: "表",
primaryKeyColumn: "主键列",
},
EsQuery: {
...en.EsQuery,
rawCommand: "原始命令",
queryTutorialButton: "查看Elasticsearch API文档",
request: "请求",
},
googleSheets: {
...en.googleSheets,
rowIndex: "行索引",
spreadsheetId: "电子表格",
sheetName: "工作表名称",
readData: "读取数据",
appendData: "追加行",
updateData: "更新行",
deleteData: "删除行",
clearData: "清除行",
serviceAccountRequireMessage: "请输入您的服务账号",
ASC: "升序",
DESC: "降序",
sort: "排序",
sortPlaceholder: "名称",
},
queryLibrary: {
...en.queryLibrary,
export: "导出为JSON",
noInput: "当前查询没有输入",
inputName: "名称",
inputDesc: "描述",
emptyInputs: "无输入",
clickToAdd: "点击添加",
chooseQuery: "选择查询",
viewQuery: "查看查询",
chooseVersion: "选择版本",
latest: "最新",
publish: "发布",
historyVersion: "历史版本",
deleteQueryLabel: "删除查询",
deleteQueryContent: "删除后无法恢复查询.是否删除查询?",
run: "运行",
readOnly: "只读",
exit: "退出",
recoverAppSnapshotContent: "将当前查询恢复到版本 {version}",
searchPlaceholder: "搜索查询",
allQuery: "所有查询",
deleteQueryTitle: "删除查询",
unnamed: "未命名",
publishNewVersion: "发布新版本",
publishSuccess: "已发布",
version: "版本",
desc: "描述",
},
snowflake: {
...en.snowflake,
accountIdentifierTooltip: "请参考",
extParamsTooltip: "配置更多连接参数",
},
lowcoderQuery: {
...en.lowcoderQuery,
queryOrgUsers: "查询工作区用户",
},
redisQuery: {
...en.redisQuery,
rawCommand: "原始命令",
command: "命令",
queryTutorial: "查看Redis命令文档",
},
httpQuery: {
...en.httpQuery,
bodyFormDataTooltip: "如果选择{type},值的格式应为{object}.示例:{example}",
text: "文本",
file: "文件",
extraBodyTooltip: "额外的body中的键值对将与JSON或表单数据类型一起添加到body中",
forwardCookies: "转发cookies",
forwardAllCookies: "转发所有cookies",
},
smtpQuery: {
...en.smtpQuery,
attachment: "附件",
attachmentTooltip: "可与文件上传组件一起使用,需要将数据转换为:",
MIMETypeUrl: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types",
sender: "发件人",
recipient: "收件人",
carbonCopy: "抄送",
blindCarbonCopy: "密送",
subject: "主题",
content: "内容",
contentTooltip: "支持输入文本或HTML",
},
// component Registry
uiCompCategory: {
...en.uiCompCategory,
"dashboards": "仪表板和报告",
"layout": "布局和导航",
"forms": "数据收集与表格",
"collaboration": "会议与合作",
"projectmanagement": "项目管理",
"scheduling": "日历和日程安排",
"documents": "文件和档案管理",
"itemHandling": "项目和签名处理",
"multimedia": "多媒体与动画",
"integration": "整合与扩展"
},
uiComp: {
...en.uiComp,
inputCompName: "输入框",
inputCompDesc: "输入框组件",
inputCompKeywords: "文本",
textAreaCompName: "多行文本",
textAreaCompDesc: "多行文本组件",
textAreaCompKeywords: "",
passwordCompName: "密码输入框",
passwordCompDesc: "密码输入框组件",
passwordCompKeywords: "",
richTextEditorCompName: "富文本",
richTextEditorCompDesc: "富文本编辑器组件",
richTextEditorCompKeywords: "",
numberInputCompName: "数字输入框",
numberInputCompDesc: "数字输入框组件",
numberInputCompKeywords: "",
sliderCompName: "滑块",
sliderCompDesc: "滑块组件",
sliderCompKeywords: "",
rangeSliderCompName: "范围滑块",
rangeSliderCompDesc: "范围滑块组件",
rangeSliderCompKeywords: "",
ratingCompName: "评分",
ratingCompDesc: "评分组件",
ratingCompKeywords: "",
switchCompName: "开关",
switchCompDesc: "开关组件",
switchCompKeywords: "",
selectCompName: "下拉单选",
selectCompDesc: "下拉单选组件",
selectCompKeywords: "",
multiSelectCompName: "下拉多选",
multiSelectCompDesc: "下拉多选组件",
multiSelectCompKeywords: "",
cascaderCompName: "级联选择",
cascaderCompDesc: "级联选择框组件",
cascaderCompKeywords: "",
checkboxCompName: "复选",
checkboxCompDesc: "复选框组件",
checkboxCompKeywords: "",
radioCompName: "单选",
radioCompDesc: "单选框组件",
radioCompKeywords: "",
segmentedControlCompName: "分段控件",
segmentedControlCompDesc: "分段控件组件",
segmentedControlCompKeywords: "",
fileUploadCompName: "附件",
fileUploadCompDesc: "文件上传组件",
fileUploadCompKeywords: "",
dateCompName: "日期",
dateCompDesc: "日期组件",
dateCompKeywords: "",
dateRangeCompName: "日期范围",
dateRangeCompDesc: "日期范围组件",
dateRangeCompKeywords: "",
timeCompName: "时间",
timeCompDesc: "时间组件",
timeCompKeywords: "",
timeRangeCompName: "时间范围",
timeRangeCompDesc: "时间范围组件",
timeRangeCompKeywords: "",
buttonCompName: "按钮",
buttonCompDesc: "按钮组件",
buttonCompKeywords: "",
linkCompName: "链接",
linkCompDesc: "链接组件",
linkCompKeywords: "",
scannerCompName: "扫码",
scannerCompDesc: "扫码组件",
scannerCompKeywords: "",
dropdownCompName: "下拉按钮组",
dropdownCompDesc: "下拉按钮组组件",
dropdownCompKeywords: "",
toggleButtonCompName: "切换按钮",
toggleButtonCompDesc: "切换按钮组件",
toggleButtonCompKeywords: "",
textCompName: "文本",
textCompDesc: "文本组件",
textCompKeywords: "",
tableCompName: "表格",
tableCompDesc: "表格组件",
tableCompKeywords: "",
imageCompName: "图片",
imageCompDesc: "图片组件",
imageCompKeywords: "",
progressCompName: "进度条",
progressCompDesc: "进度条组件",
progressCompKeywords: "",
progressCircleCompName: "圆形进度条",
progressCircleCompDesc: "圆形进度条组件",
progressCircleCompKeywords: "",
fileViewerCompName: "文件查看",
fileViewerCompDesc: "文件查看组件",
fileViewerCompKeywords: "",
dividerCompName: "分割线",
dividerCompDesc: "分割线组件",
dividerCompKeywords: "",
qrCodeCompName: "二维码",
qrCodeCompDesc: "二维码组件",
qrCodeCompKeywords: "",
formCompName: "表单",
formCompDesc: "表单组件",
formCompKeywords: "",
jsonSchemaFormCompName: "JSON表单",
jsonSchemaFormCompDesc: "JSON表单组件",
jsonSchemaFormCompKeywords: "",
containerCompName: "容器",
containerCompDesc: "容器组件",
containerCompKeywords: "",
floatTextContainerCompName: "浮动文本容器",
floatTextContainerCompDesc: "浮动文本容器组件",
floatTextContainerCompKeywords: "",
collapsibleContainerCompName: "可折叠容器",
collapsibleContainerCompDesc: "可折叠容器组件",
collapsibleContainerCompKeywords: "",
tabbedContainerCompName: "选项卡",
tabbedContainerCompDesc: "选项卡组件",
tabbedContainerCompKeywords: "",
modalCompName: "对话框",
modalCompDesc: "对话框组件",
modalCompKeywords: "",
listViewCompName: "列表视图",
listViewCompDesc: "列表视图组件",
listViewCompKeywords: "",
gridCompName: "网格",
gridCompDesc: "网格组件",
gridCompKeywords: "",
navigationCompName: "导航",
navigationCompDesc: "导航组件",
navigationCompKeywords: "",
iframeCompName: "嵌入网页",
iframeCompDesc: "iframe嵌入网页组件",
iframeCompKeywords: "",
customCompName: "自定义组件",
customCompDesc: "自定义组件",
customCompKeywords: "",
moduleCompName: "模块",
moduleCompDesc: "模块组件",
moduleCompKeywords: "",
jsonExplorerCompName: "JSON浏览",
jsonExplorerCompDesc: "JSON浏览组件",
jsonExplorerCompKeywords: "",
jsonEditorCompName: "JSON 编辑器",
jsonEditorCompDesc: "JSON 编辑器组件",
jsonEditorCompKeywords: "",
treeCompName: "树形组件",
treeCompDesc: "树形组件",
treeCompKeywords: "",
treeSelectCompName: "树形选择",
treeSelectCompDesc: "树形选择框组件",
treeSelectCompKeywords: "",
audioCompName: "音频",
audioCompDesc: "音频组件",
audioCompKeywords: "",
videoCompName: "视频",
videoCompDesc: "视频组件",
videoCompKeywords: "",
drawerCompName: "抽屉",
drawerCompDesc: "抽屉组件",
drawerCompKeywords: "",
chartCompName: "图表",
chartCompDesc: "图表组件",
chartCompKeywords: "",
carouselCompName: "轮播图",
carouselCompDesc: "轮播图组件",
carouselCompKeywords: "",
imageEditorCompName: "图片编辑器",
imageEditorCompDesc: "图片编辑器组件",
imageEditorCompKeywords: "",
mermaidCompName: "美人鱼图表",
mermaidCompDesc: "根据文本渲染美人鱼图表",
mermaidCompKeywords: "",
calendarCompName: "日历",
calendarCompDesc: "日历组件",
calendarCompKeywords: "",
signatureCompName: "签名",
signatureCompDesc: "签名组件",