-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdia_zh.txt
More file actions
1379 lines (1379 loc) · 48.4 KB
/
dia_zh.txt
File metadata and controls
1379 lines (1379 loc) · 48.4 KB
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
about=关于
aboutDrawio=关于 draw.io
accessDenied=没有权限访问
accounts=账号
action=操作
actualSize=实际尺寸
adaptiveColors=自适应颜色
add=添加
addAccount=添加账户
addedFile=已添加 {1}
addImages=添加图片
addImageUrl=添加图片地址
addLayer=添加图层
addProperty=添加属性
address=地址
addToExistingDrawing=添加至当前绘图
addToScratchpad=添加到便签本
addWaypoint=添加路径点
adjustTo=调整到
advanced=高级
copyDiagramToClipboard=将图表复制到剪贴板
copySelectionToClipboard=将选择内容复制到剪贴板
smartTemplate=智能模板
align=对齐
alignment=对齐
allChangesLost=所有修改均将会丢失!
allPages=所有页面
allProjects=所有项目
allSelectedObjectsInThisLayer=所有选定的对象都在此图层中
allSpaces=所有空间
allTags=所有标签
anchor=锚点
android=Android
angle=角度
animations=动画
arc=圆弧
areYouSure=是否确定?
ensureDataSaved=关闭前请确保您的数据已保存。
allChangesSaved=所有更改均已保存
allChangesSavedInDrive=所有更改均保存至 Google Drive 中
allowPopups=允许弹出式窗口以避免此对话框。
allowRelativeUrl=允许相对地址
alreadyConnected=节点已连接
appearance=外观
apply=应用
archiMate21=ArchiMate 2.1
arrange=排列
arrow=箭头
arrows=箭头
askMeAnything=有问题尽管问我
asNew=作为新绘图
atlas=Atlas
author=作者
authorizationRequired=需要授权
authorizeThisAppIn=在 {1} 里授权此应用:
authorize=授权
authorizing=正在授权
automatic=自动
autosave=自动保存
autosizeText=自动字体大小
autosize=自动调整
attachments=附件
aws=AWS
aws3d=AWS 3D
azure=Azure
back=返回
background=背景
backgroundColor=背景色
backgroundImage=背景图片
basic=基本
beta=测试版
blankDrawing=空白绘图
blankDiagram=空白框图
block=区块
blockquote=区块引言
blog=博客
bold=粗体
bootstrap=Bootstrap
border=边框
borderColor=边框颜色
borderWidth=边框宽度
bottom=下
bottomAlign=向下对齐
bottomLeft=左下
bottomRight=右下
bpmn=BPMN
bringForward=上移一层
browser=浏览器
bulletedList=项目符号列表
business=商务
busy=处理中
cabinets=机箱
cancel=取消
center=水平居中
cannotLoad=载入失败。请稍后重试。
cannotLogin=登录失败。请稍后重试。
cannotOpenFile=无法打开文件
change=更改
changeOrientation=改变方向
changeUser=更改用户
changeStorage=修改存储方式
changesNotSaved=更改尚未保存
classDiagram=类图
closePath=关闭路径
updateDiagramFromClipboard=从剪贴板更新图表
userJoined={1} 已加入
userLeft={1} 已离开
chatWindowTitle=聊天
chooseAnOption=请选择一项
clickToAdd=单击画布以添加点
collaborativeEditingNotice=协同编辑的重要通知
compare=比较
compressed=已压缩
commitMessage=提交信息
configLinkWarn=该链接将配置 draw.io。仅当您信任提供该链接的人时才点击确定!
configLinkConfirm=点击确定配置并重启 draw.io。
container=容器
csv=CSV
currentLayer=当前层
dark=深色
diagramLanguage=绘图语言
diagramType=绘图类型
diagramXmlDesc=XML 文件
diagramHtmlDesc=HTML 文件
diagramPngDesc=可编辑位图文件
diagramSvgDesc=可编辑矢量图文件
didYouMeanToExportToPdf=是否要导出到 PDF?
disabled=已禁用
draftFound=已找到 '{1}' 的草稿。将其加载到编辑器或丢弃以继续。
draftRevisionMismatch=此页面的共享草稿中有此图表的不同版本。请从草稿中编辑该图表,以确保您使用的是最新版本。
selectDraft=选择一个草稿继续编辑:
dragAndDropNotSupported=暂不支持图片拖放功能。是否要使用导入?
dropboxCharsNotAllowed=系统不允许使用下列字符:\ / : ? * " |
check=核查
checksum=校验码
circle=圆形
cisco=Cisco
classic=经典
clearDefaultStyle=清除默认风格
clearWaypoints=清除路径点
clipart=剪贴画
close=关闭
closingFile=正在关闭文件
realtimeCollaboration=实时协作
collaborate=协作
collaborator=协作者
collaborators=协作者
collapse=折叠
collapseExpand=折叠 / 展开
collapse-expand=点击折叠 / 展开\nShift-点击以移动周边图形 \nAlt-点击以保护组别尺寸
collapsible=可折叠
comic=手绘
comment=评论
commentsNotes=评论 / 备注
compress=压缩
configuration=配置
connect=连接
connecting=正在连接
connectWithDrive=连接 Google Drive
connection=连接
connectionArrows=连接箭头
connectionPoints=连接点
connector=连接器
constrainProportions=限制比例
containsValidationErrors=包含验证错误
copiedToClipboard=已复制到剪贴板
copy=复制
copyConnect=连接时复制
copyCreated=已经创建文件的副本。
copyData=复制数据
copyOf={1} 的副本
copyOfDrawing=绘图副本
copySize=复制大小
copyStyle=复制样式
copyTextStyle=复制文本样式
create=创建
createDiagram=创建图表
createBlankDiagram=创建空白绘图
createNewDiagram=创建新绘图
createRevision=创建修订版本
createShape=创建图形
crop=裁剪
curved=曲线
custom=自定义
current=当前
currentPage=当前页
cut=剪切
dashed=虚线
decideLater=稍后再决定
default=默认
delete=删除
deleteAll=全部删除
deleteColumn=删除列
deleteLibrary401=没有权限删除此库
deleteLibrary404=未找到所选库
deleteLibrary500=删除库时出错
deleteLibraryConfirm=您即将永久删除此库。您确定要这样操作吗?
deleteRow=删除行
description=描述
describeYourDiagram=描述您的绘图
device=设备
diagram=绘图
diagramContent=绘图内容
diagramLocked=绘图已经锁定以避免进一步的数据丢失。
diagramLockedBySince=绘图已经在 {2} 之前被 {1} 锁定
diagramName=绘图名称
diagramIsPublic=绘图为公开状态
diagramIsNotPublic=绘图为未公开状态
diamond=菱形
diamondThin=菱形(细)
didYouKnow=您知道吗......
direction=方向
discard=丢弃
discardChangesAndReconnect=放弃更改并重新连接
googleDriveMissingClickHere=找不到 Google Drive?请点击这里!
discardChanges=放弃更改
disconnected=未连接
distribute=等距分布
done=完成
doNotShowAgain=不再显示
dotted=点线
doubleClickOrientation=双击以改变方向
doubleClickTooltip=双击以插入文字
doubleClickChangeProperty=双击以更改属性名
download=下载
downloadDesktop=获取桌面版
downloadAs=下载为
clickHereToSave=点击此处保存。
dpi=DPI
draftDiscarded=草稿已丢弃
draftSaved=草稿已保存
dragElementsHere=把元素拖至此处
dragImagesHere=把图像或网络链接拖至此处
dragUrlsHere=将 URL 地址拖至此处
draw.io=draw.io
drawing=绘图{1}
drawingEmpty=绘图空白
drawingTooLarge=绘图过大
drawioForWork=Draw.io for GSuite
dropbox=Dropbox
duplicate=复制
duplicateIt=复制 {1}
divider=分隔线
dx=Dx
dy=Dy
east=向右
edit=编辑
editData=编辑数据
editDiagram=编辑绘图
editGeometry=编辑几何图形
editImage=编辑图片
editImageUrl=编辑图片 URL 地址
editLink=编辑链接
editPolygon=编辑多边形
editShape=编辑图形
editStyle=编辑样式
editText=编辑文字
editTooltip=编辑提示
glass=玻璃
googleImages=Google 图片
imageSearch=图片搜索
eip=EIP
effects=效果
embed=嵌入
embedFonts=嵌入字体
embedImages=嵌入图片
mainEmbedNotice=将此粘贴至页面上
electrical=电路
ellipse=椭圆形
embedNotice=将此一次性粘贴至本页页尾
enterGroup=进入组
enterName=输入名称
enterPropertyName=输入属性名
enterValue=输入值
entityRelation=实体关系
entityRelationshipDiagram=E-R图
error=出错
errorDeletingFile=删除文件出错
errorLoadingFile=加载文件出错
errorRenamingFile=文件修改名称出错
errorRenamingFileNotFound=文件修改名称出错。找不到文件。
errorRenamingFileForbidden=文件修改名称出错。没有足够的访问权限。
errorSavingDraft=保存草稿出错
errorSavingFile=保存文件出错
errorSavingFileUnknown=Google 服务器授权出错。请刷新页面,然后重试。
errorSavingFileForbidden=保存文件时出错。没有足够的访问权限。
errorSavingFileNameConflict=无法保存此绘图。当前页面已经包含名为 '{1}' 的文件。
errorSavingFileNotFound=保存文件时出错,文件未找到。
errorSavingFileReadOnlyMode=只读模式开启时无法保存绘图。
errorSavingFileSessionTimeout=您的会话已经结束。请 <a target='_blank' href='{1}'>{2}</a>,然后返回此标签以尝试再次保存。
errorSendingFeedback=发送反馈出错。
errorUpdatingPreview=更新预览出错。
exit=退出
exitGroup=退出编辑组
expand=展开
explore=探索
export=导出
exporting=正在导出
exportAs=导出为
exportOptionsDisabled=已禁止导出
exportOptionsDisabledDetails=所有者已禁止评论者及浏览者下载、打印或复制该文件。
externalChanges=外部修改
extras=其它
failedToSaveTryReconnect=保存失败,正在尝试重新连接
featureRequest=功能请求
feedback=反馈
feedbackSent=反馈发送成功
floorplans=平面图
file=文件
fileChangedOverwriteDialog=文件已经被修改。是否保存文件并覆盖这些更改?
fileChangedSyncDialog=文件已经被修改。
fileChangedSync=文件已经被修改。点击这里进行同步。
overwrite=覆盖
synchronize=同步
filename=文件名
fileExists=文件已存在
fileMovedToTrash=文件已经移到垃圾箱
fileNearlyFullSeeFaq=文件即将达到上限,请参阅常见问题
fileNotFound=未找到文件
repositoryNotFound=未找到资源库
fileNotFoundOrDenied=文件未找到。其不存在或您没有查阅权限。
fileNotLoaded=文件未加载
fileNotSaved=文件未保存
fileOpenLocation=你想如何打开这些文件?
filetypeHtml=.html 会保存文件为 HTML 格式并重定向到云端 URL
filetypePng=.png 会保存文件为 PNG 格式并包含嵌入数据
filetypeSvg=.svg 会保存文件为 SVG 格式并包含嵌入数据
fileWillBeSavedInAppFolder={1} 将保存至应用软件文件夹
fill=填充
fillColor=填充色
filterCards=卡片筛选
find=查找
findInDiagram=在图中查找
fit=适应大小
fitContainer=调整容器尺寸
fitIntoContainer=适应容器尺寸
fitPage=整页显示
fitPageWidth=适应页面宽度
fitTo=适应
fitToSheetsAcross=横向页数
fitToBy=×
fitToSheetsDown=纵向页数
fitTwoPages=双页
fitWindow=适应窗口大小
flip=翻转
flipH=水平翻转
flipV=垂直翻转
flowAnimation=流动动画
flowchart=流程图
folder=文件夹
font=字体
fontColor=字体颜色
fontFamily=字体
fontSize=字体大小
forbidden=您没有该文件的访问权限
format=格式
formatAnimatedGif=动画 GIF
formatPanel=格式面板
formatted=格式化
formattedText=格式化文本
formatPng=PNG
formatGif=GIF
formatJpg=JPEG
formatPdf=PDF
formatSql=SQL
formatSvg=SVG
formatHtmlEmbedded=HTML
formatVsdx=VSDX
formatWebp=WebP
formatXml=XML
forum=讨论组 / 帮助论坛
freehand=自由绘图
fromTemplate=从模板
fromTemplateUrl=从模板 URL 地址
fromText=从文本
fromUrl=从 URL 地址
fromThisPage=从当前页
fullscreen=全屏
gap=间隙
gcp=GCP
general=通用
getNotionChromeExtension=获取 Notion Chrome 扩展程序
github=GitHub
gitlab=GitLab
gliffy=Gliffy
global=全局
googleDocs=Google 文档
googleDrive=Google Drive
googleGadget=Google Gadget
googleSharingNotAvailable=分享只有使用 Google Drive 时可用. 请点击下方的打开, 从更多操作菜单中分享.
googleSlides=Google 幻灯片
googleSites=Google 协作平台
googleSheets=Google 表格
gradient=渐变
gradientColor=颜色
grid=网格
gridColor=网格线颜色
gridSize=网格大小
group=组合
guides=参考线
heading=标题
height=高
help=帮助
helpTranslate=帮助我们翻译此应用
hide=隐藏
hideIt=隐藏 {1}
hidden=已隐藏
shiftClickShowOnly=Shift+点击:仅显示 {1}
highContrast=高对比度
home=主页
horizontal=水平
horizontalFlow=水平流
horizontalTree=水平树
howTranslate=你所选语言的翻译质量如何?
html=HTML
htmlText=HTML 文本
id=ID
iframe=IFrame
ignore=忽略
image=图片
imageUrl=图片 URL 地址
images=图片
imagePreviewError=无法预览图片。请检查 URL 地址。
imageTooBig=图片太大
imgur=Imgur
import=导入
importFrom=导入自
includeCopyOfMyDiagram=包含绘图副本
increaseIndent=增加缩进
decreaseIndent=减少缩进
insert=插入
insertColumnBefore=左边插入列
insertColumnAfter=右边插入列
insertDiagramFromClipboard=从剪贴板插入图表
insertEllipse=插入椭圆
insertImage=插入图片
insertHorizontalRule=插入水平线
insertLink=插入链接
insertPage=插入页面
insertRectangle=插入矩形
insertRhombus=插入菱形
insertRowBefore=上方插入行
insertRowAfter=下方插入行
insertText=插入文本
inserting=正在插入
installApp=安装应用
invalidFilename=绘图名称不能包含以下特殊字符: \ / | : ; { } < > & + ? = "
invalidLicenseSeeThisPage=您的许可无效,请参阅此<a target="_blank" href="https://www.drawio.com/doc/faq/license-drawio-confluence-jira-cloud">页面</a>。
invalidInput=无效输入
invalidName=无效名称
invalidOrMissingFile=无效或丢失的文件
invalidPublicUrl=无效的公开 URL 地址
invertSelection=反转选择
isometric=等轴测
ios=iOS
italic=斜体
kennedy=Kennedy
keyboardShortcuts=快捷键
labels=标签
layers=图层
landscape=横向
language=语言
leanMapping=价值流图
lastChange=最新更改于 {1} 以前
lessThanAMinute=一分钟以内
licensingError=授权出错
licenseHasExpired={1} 的许可证已于 {2} 过期。请点击此处。
licenseRequired=该功能需要 draw.io 授权。
licenseWillExpire={1} 的许可证将于 {2} 过期。请点击此处。
light=浅色
lineJumps=跨线
linkAccountRequired=如果绘图未公开,则需要提供谷歌账户才能查看该链接。
linkText=链接文本
list=列表
minute=分钟
minutes=分钟
hours=小时
days=天
months=月
years=年
restartForChangeRequired=更改将在应用程序重启后生效。
laneColor=泳道颜色
languageCode=语言代码
lastModified=最近修改
layout=布局
left=左
leftAlign=左对齐
leftToRight=从左到右
libraryTooltip=将图形拖放至此或单击+以插入。双击进行编辑。
lightbox=灯箱特效
line=线条
lineend=线末端
lineheight=行高
linestart=线始端
linewidth=线宽
link=链接
links=链接
loading=加载中
lock=锁定
locked=已锁定
lockUnlock=锁定 / 解锁
loggedOut=已注销
logIn=登录
lucidchart=Lucidchart
maps=地图
mathematicalTypesetting=数学排版
makeCopy=创建副本
manual=手册
maximize=最大化
merge=合并
mermaid=Mermaid
microsoftOffice=Microsoft Office
microsoftExcel=Microsoft Excel
microsoftPowerPoint=Microsoft PowerPoint
microsoftWord=Microsoft Word
middle=垂直居中
minimal=极简
minimize=最小化
misc=杂项
mockups=原型图
modern=现代
modificationDate=修改日期
modifiedBy=修改者
more=更多
moreResults=更多结果
moreShapes=更多图形
move=移动
moveToFolder=移动至文件夹
moving=移动中
moveSelectionTo=将所选移至 {1}
myDrive=我的云端硬盘
myFiles=我的文件
name=名称
navigation=导航
network=网络
networking=网络
new=新建
newLibrary=新增库
nextPage=下一页
no=否
noPickFolder=不,选择文件夹
noAttachments=未找到附件
noColor=无颜色
noFiles=无文件
noFileSelected=未选择文件
noAnimationsInDiagram=图表中未找到动画
noLibraries=未找到库
noMoreResults=无其他结果
none=无
noOtherViewers=无其他查阅者
noPlugins=无插件
noPreview=无预览
noResponse=服务器无响应
noResultsFor=未找到 '{1}' 的相关结果
noRevisions=无修订
noSearchResults=查询无结果
noPageContentOrNotSaved=此页面上找不到锚点,或尚未保存
normal=正常
north=向上
notADiagramFile=非绘图文件
notALibraryFile=非库文件
notAvailable=不可用
notAUtf8File=非 UTF-8 格式文件
notConnected=未连接
note=备注
notion=Notion
notSatisfiedWithImport=对导入不满意?
notUsingService=未使用 {1}?
numberedList=编号列表
offline=离线
ok=确定
oneDrive=OneDrive
online=在线
opacity=不透明度
open=打开
openArrow=开放箭头
openExistingDiagram=打开现有绘图
openFile=打开文件
openFrom=从...打开
openLibrary=打开库
openLibraryFrom=从...打开库
openLink=打开链接
openInNewWindow=在新窗口打开
openInThisWindow=在当前窗口打开
openIt=打开{1}
openRecent=打开最近使用的文件
openSupported=支持的格式有本软件保存的文件 (.xml), .vsdx 及 .gliffy
options=选项
organic=力导向图
orgChart=组织结构图
orthogonal=正交
orthogonalStrict=正交 (严格)
otherViewer=其他查阅者
otherViewers=其他查阅者
outline=缩略图
oval=椭圆形
page=页面
pageContent=页面内容
pageNotFound=未找到页面
pageWithNumber=第 {1} 页
pages=页面
pageTabs=页面标签
pageView=页面视图
pageSetup=页面设置
pageScale=页面比例
pan=移动画布
panTooltip=按住空格键并拖拽以移动画布
paperSize=纸张尺寸
pattern=样式
parallels=平行线
paste=粘贴
pasteData=粘贴数据
pasteHere=在这粘贴
pasteSize=粘贴大小
pasteStyle=粘贴样式
pasteTextStyle=粘贴文本样式
perimeter=周长
permissionAnyone=任何人均可编辑
permissionAuthor=所有者和管理员可编辑
pickFolder=选择文件夹
pickLibraryDialogTitle=选择库
publicDiagramUrl=绘图的公共 URL 地址
placeholders=占位符
plantUml=PlantUML
plugins=插件
pluginUrl=插件 URL 地址
pluginWarning=本页面已要求载入以下插件:\n \n {1}\n \n 是否现在载入这些插件?\n \n 备注:确保在完全理解与此相关的安全问题的情况下再允许这些插件运行。\n
plusTooltip=单击进行连接与复制(ctrl+单击进行复制,shift+单击进行连接)。拖拽进行连接(ctrl+拖拽进行复制)。
polygon=多边形
portrait=竖向
position=位置
posterPrint=海报打印
preferences=首选项
preview=预览
previousPage=上一页
presentationMode=演示模式
print=打印
procEng=工艺流程
project=项目
priority=优先级
processForHiringNewEmployee=新员工招聘流程
promptOnly=仅提示
promptWithDiagram=带图表提示
promptWithSelection=带选区提示
properties=属性
publish=发布
quickStart=快速入门视频
rack=机架
radial=径向
radialTree=径向树
readOnly=只读
reconnecting=正在重新连接
recentlyUpdated=最近更新
recentlyViewed=最近阅览
rectangle=矩形
redirectToNewApp=该文件是在此应用软件的新版本中所创建或修改的。正在重新定向。
realtimeTimeout=似乎您在离线状态下做过更改。抱歉,这些更改无法保存。
redo=重做
refresh=刷新
regularExpression=正则表达式
relative=相对
relativeUrlNotAllowed=不允许使用相对 URL 地址
rememberMe=记住我
rememberThisSetting=记住此设置
removeFormat=清除格式
removeFromGroup=移出组合
removeIt=删除 {1}
removeWaypoint=删除路径点
rename=重命名
renamed=已重命名
renameIt=重命名 {1}
renaming=正在重命名
replace=替换
replaceIt={1} 已经存在了。确定要替换它吗?
replaceExistingDrawing=替换当前绘图
required=必填
requirementDiagram=需求图
reset=重置
resetView=重置视图
resize=调整大小
resizeLargeImages=您是否想调整大图片的大小使应用运行更快?
retina=Retina
responsive=响应式
restore=恢复
restoring=正在恢复
retryingIn={1} 秒后重试
retryingLoad=载入失败,正在重试...
retryingLogin=登录超时,正在重试...
reverse=翻转
revision=修订
revisionHistory=修订历史
rhombus=菱形
right=右
rightAlign=右对齐
rightToLeft=由右至左
rotate=旋转
rotateTooltip=点击并拖拽旋转,点击仅将形状旋转90度
rotation=旋转
rounded=圆角
save=保存
saveAndExit=保存并退出
saveAs=另存为
saveAsXmlFile=另存为XML文件?
saved=已保存
saveDiagramFirst=请先保存绘图
saveDiagramsTo=保存绘图到
saveLibrary403=没有足够的权限编辑此库
saveLibrary500=保存库时出错
saveLibraryReadOnly=只读模式开启时无法保存库
saving=正在保存
scratchpad=便笺本
scrollbars=滚动条
search=搜索
searchShapes=搜索图形
searchShapesInOpenLibraries=在已打开的库中搜索图形
selectAll=全选
selectionOnly=仅所选内容
selectCard=选择卡片
selectEdges=选择边线
selectedPage=所选页面
selectFile=选择文件
selectFolder=选择文件夹
selectFont=选择字体
selection=选择
selectNone=全不选
selectObjectsInLayer=在图层中选择对象
selectTemplate=选择模板
selectVertices=选择顶点
sendBackward=下移一层
sendMessage=发送
sendYourFeedback=发送您的反馈
sequenceDiagram=时序图
serviceUnavailableOrBlocked=服务无法使用或已被屏蔽
sessionExpired=会话已过期,请刷新浏览器窗口。
sessionTimeoutOnSave=会话已超时,您的 Google Drive 连接已断开。按确定键登录并保存。
setAsDefaultStyle=设置为默认样式
settings=设置
shadow=阴影
shadows=阴影
shape=形状
shapes=形状
share=共享
shareCursor=Share Mouse Cursor
shareLink=共享编辑的链接
sharingAvailable=共享可用于 Google Drive 和 OneDrive 文件.
saveItToGoogleDriveToCollaborate=You'll need to save "{1}" to Google Drive before you can collaborate.
saveToGoogleDrive=Save to Google Drive
sharp=锐利
show=显示
showRemoteCursors=Show Remote Mouse Cursors
showStartScreen=显示开始画面
sidebarTooltip=单击以展开。将图形拖拽至绘图中。Shift+单击以改变所选内容。Alt+单击以插入及连接。
signs=标识
signOut=注销
simple=简易
simpleArrow=简单箭头
simpleViewer=Simple Viewer
size=大小
sketch=草图
smoothing=Smoothing
snapToGrid=对齐到网格
solid=实线
sourceSpacing=源距
south=向下
software=软件
space=空间
spacing=间距
specialLink=特殊链接
stateDiagram=状态图
standard=标准
startDrawing=开始绘图
stopDrawing=结束绘图
starting=开启中
straight=直线
strikethrough=删除线
strokeColor=线条颜色
style=样式
subscript=下标
summary=概要
superscript=上标
support=支持
swap=交换
swimlaneDiagram=泳道图
sysml=SysML
tags=标签
table=表格
tables=表格
takeOver=接管
targetSpacing=目标间距
template=模板
templates=模板
text=文本
textAlignment=文本对齐
textOpacity=字体不透明度
theme=主题
timeout=超时
title=标题
to=至
toBack=移至最后
toFront=移至最前
tooLargeUseDownload=文件太大,请使用下载。
toolbar=工具栏
tooltips=提示
top=上
topAlign=向上对齐
topLeft=左上
topRight=右上
transparent=透明
transparentBackground=透明背景
trello=Trello
tryAgain=重试
tryOpeningViaThisPage=尝试通过此页面开启
turn=旋转90°
type=类型
typeSlashToSearch=键入 / 进行搜索
uml=UML
unassigned=未分配
underline=下划线
undo=撤销
ungroup=取消组合
unlock=解锁
unmerge=取消合并
unsavedChanges=未保存的更改
unsavedChangesClickHereToSave=修改未保存。点击此处保存。
untitled=未命名
untitledDiagram=未命名绘图
untitledLayer=未命名图层
untitledLibrary=未命名库
unknownError=未知错误
unknownUser=未知用户
updateExistingDrawing=更新现有绘图
updateFile=更新{1}
updatingDocument=文件更新中。请稍候...
updatingPreview=预览更新中。请稍候...
updatingSelection=选择更新中。请稍候...
upload=上传
url=URL
useBlackAndWhite=使用黑白
useCurrentSettings=使用当前设置
useOffline=离线使用
userDefined=用户自定义
useRootFolder=要使用根目录吗?
userManual=用户手册
vertical=垂直
verticalFlow=垂直流
verticalTree=垂直树
view=查看
viewerSettings=查看器设置
viewUrl=用于查看的链接:{1}
warning=警告
waypoints=路径点
west=向左
where=位置
width=宽
wiki=Wiki
wordWrap=自动换行
writingDirection=书写方向
yes=是
yourEmailAddress=您的电子邮件地址
zoom=缩放
zoomIn=放大
zoomOut=缩小
basic=基本
businessprocess=业务流程图
charts=图表
engineering=工程
flowcharts=流程图
gmdl=材料设计
mindmaps=思维导图
mockups=原型图
networkdiagrams=网络结构图
nothingIsSelected=未选择任何内容
other=其他
softwaredesign=软件设计图
venndiagrams=维恩图
webEmailOrOther=网站、电子邮件或其他网络地址
webLink=网页链接
wireframes=线框图
property=属性
value=值
showMore=显示更多
showLess=显示更少
myDiagrams=我的绘图
allDiagrams=全部绘图
recentlyUsed=最近使用
listView=列表视图
gridView=网格视图
resultsFor={1}' 的结果
oneDriveCharsNotAllowed=不允许下列字符: ~ " # % * : < > ? / \ { | }
oneDriveInvalidDeviceName=指定的设备名称无效
officeNotLoggedOD=您没有登录到 OneDrive. 请先打开 draw.io 任务栏并登录.
officeSelectSingleDiag=请选择一个没有其他内容的 draw.io 绘图
officeSelectDiag=请选择 draw.io 绘图
officeCannotFindDiagram=在选择中无法找到 draw.io 绘图
noDiagrams=没有找到绘图
authFailed=认证失败
officeFailedAuthMsg=无法成功认证用户或认证应用
convertingDiagramFailed=转换绘图失败
officeCopyImgErrMsg=由于主机应用的一些限制, 图片无法被插入. 请手动复制图片然后粘贴到文档中.
insertingImageFailed=插入图片失败
officeCopyImgInst=说明: 右键点击下方的图片. 在上下文菜单中选择 "复制图片". 然后在文档中, 右键点击并在上下文菜单中选择 "粘贴"
folderEmpty=文件夹为空
recent=最近
sharedWithMe=与我分享
sharepointSites=Sharepoint 站点
errorFetchingFolder=获取文件夹项目出错
errorAuthOD=OneDrive 认证出错
officeMainHeader=添加 draw.io 绘图到您的文档
officeStepsHeader=该加载项执行以下步骤:
officeStep1=连接到 Microsoft OneDrive, Google Drive 或您的设备
officeStep2=选择 draw.io 绘图
officeStep3=插入绘图到文档
officeAuthPopupInfo=请在弹出的窗口中完成认证
officeSelDiag=选择 draw.io 绘图:
files=文件
shared=已分享
sharepoint=Sharepoint
officeManualUpdateInst=说明: 从文档中复制 draw.io 绘图. 然后在下方的框中右键点击然后在上下文菜单中选择 "粘贴".
officeClickToEdit=点击图标开始编辑:
pasteDiagram=在这里粘贴 draw.io 绘图
connectOD=连接到 OneDrive
selectChildren=选择子元素
selectSiblings=选择同级元素
selectParent=选择父元素
selectDescendants=选择所有子代元素
lastSaved=上次保存于 {1} 前
resolve=解决
reopen=重新打开
showResolved=显示已解决
reply=回复
objectNotFound=找不到对象
reOpened=重新打开的
markedAsResolved=标记为已解决
noCommentsFound=找不到评论
comments=评论
timeAgo={1} 之前
confluenceCloud=Confluence 云
libraries=库
confAnchor=Confluence 页面锚点
confTimeout=连接超时
confSrvTakeTooLong={1} 服务器响应时间过长
confCannotInsertNew=无法在新的 Confluence 页中插入 draw.io 绘图
confSaveTry=请保存页面并重试
confCannotGetID=无法确定页面ID
confContactAdmin=请联系您的 Confluence 管理员
readErr=读取错误
editingErr=编辑错误
confExtEditNotPossible=绘图无法在外部编辑. 请尝试在编辑页面时编辑它.
confEditedExt=绘图/页面 已在外部编辑
diagNotFound=未找到绘图
confEditedExtRefresh=绘图/页面 已在外部编辑. 请刷新页面.
confCannotEditDraftDelOrExt=无法在草稿页面中进行编辑, 该绘图已经在其他页面删除或外部编辑. 请检查页面.
retBack=返回
confDiagNotPublished=该绘图不属于已发布的页面
createdByDraw=使用 draw.io 创建
filenameShort=文件名太短
invalidChars=无效的字符
alreadyExst={1} 已经存在
draftReadErr=草稿读取错误
diagCantLoad=无法加载绘图
draftWriteErr=草稿写入错误
draftCantCreate=无法创建草稿
confDuplName=检测到重复的绘图名. 请重新选择.
confSessionExpired=您的会话似乎已过期。请重新登录以继续工作。
login=登录
drawPrev=draw.io 预览
drawDiag=draw.io 绘图
invalidCallFnNotFound=无效调用: 无法找到 {1}
invalidCallErrOccured=无效调用: 检测到错误, {1}
anonymous=匿名
confGotoPage=转到所在页面
showComments=显示评论
confError=错误:{1}
gliffyImport=导入 Gliffy
gliffyImportInst1=点击 "开始导入" 按钮导入所有 Gliffy 绘图到 draw.io。
gliffyImportInst2=请注意,导入过程需要一些时间,导入完成前浏览器窗口必须保持打开状态。
startImport=开始导入
drawConfig=draw.io 配置
customLib=自定义库
customTemp=自定义模板
pageIdsExp=导出页面 ID
drawReindex=draw.io 正在重新索引
working=处理中
drawConfigNotFoundInst=draw.io 配置空间 (DRAWIOCONFIG) 不存在. 存储 draw.io 配置文件和自定义库/模板时需要该空间.
createConfSp=创建配置空间
unexpErrRefresh=发生意外错误, 请刷新页面, 然后重试.
configJSONInst=在下方编辑器填写 draw.io JSON 配置内容然后点击保存. 如果需要帮助, 请参考
thisPage=此页面
curCustLib=当前自定义库
libName=库名称
action=操作
drawConfID=draw.io 配置 ID
addLibInst=点击“添加库”按钮并上传一个新的库。
addLib=添加库
customTempInst1=自定义模板是保存在以下页面的子页面中的 draw.io 图表
customTempInst2=如需更多信息,请参考
tempsPage=模板页面
pageIdsExpInst1=选择导出目标,然后点击"开始导出"按钮以导出所有的页面 ID。
pageIdsExpInst2=请注意,导出过程需要一些时间,在导出完成之前,浏览器窗口必须保持打开状态。
startExp=开始导出