dia_zh.txt
62 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
# *DO NOT DIRECTLY EDIT THIS FILE, IT IS AUTOMATICALLY GENERATED AND IT IS BASED ON:*
# https://docs.google.com/spreadsheet/ccc?key=0AmQEO36liL4FdDJLWVNMaVV2UmRKSnpXU09MYkdGbEE
about=关于
aboutDrawio=关于 draw.io
accessDenied=没有权限访问
accounts=账号
action=操作
actualSize=实际尺寸
add=添加
addAccount=添加账户
addedFile=已添加 {1}
addImages=添加图片
addImageUrl=添加图片地址
addLayer=添加图层
addProperty=添加属性
address=地址
addToExistingDrawing=添加至当前绘图
addToScratchpad=添加到便签本
addWaypoint=添加航点
adjustTo=调整到
advanced=高级
smartTemplate=Smart Template
align=对齐
alignment=对齐
allChangesLost=所有修改均将会丢失!
allPages=所有页面
allProjects=所有方案
allSpaces=所有部分
allTags=所有标签
anchor=锚
android=Android
angle=角度
arc=圆弧
areYouSure=是否确定?
ensureDataSaved=关闭前请确保您的数据已保存。
allChangesSaved=所有更改均已保存
allChangesSavedInDrive=所有更改均保存至 Google Drive 中
allowPopups=允许弹出式窗口以阻止此对话框
allowRelativeUrl=允许相对地址
alreadyConnected=节点已连接
appearance=外观
apply=应用
archiMate21=ArchiMate 2.1
arrange=调整图形
arrow=箭头
arrows=箭头
asNew=作为新绘图
atlas=Atlas
author=作者
authorizationRequired=需要授权
authorizeThisAppIn=在 {1} 里授权此应用:
authorize=授权
authorizing=正在授权
automatic=自动
autosave=自动保存
autosize=自动调整
attachments=附件
aws=AWS
aws3d=AWS 3D
azure=Azure
back=后退
background=背景
backgroundColor=背景色
backgroundImage=背景图片
basic=基本
beta=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=类图
userJoined={1} 已加入
userLeft={1} 已离开
chatWindowTitle=聊天
chooseAnOption=请选择一项
chromeApp=Chrome 应用
collaborativeEditingNotice=协同编辑的重要通知
compare=比较
compressed=已压缩
commitMessage=提交信息
configLinkWarn=该链接将配置 draw.io. 仅当您信任提供给你链接的人时点击确定.
configLinkConfirm=点击确定配置并重启 draw.io
container=容器
csv=CSV
dark=深色
diagramLanguage=绘图语言
diagramType=绘图类型
diagramXmlDesc=XML 文件
diagramHtmlDesc=HTML 文件
diagramPngDesc=可编辑位图文件
diagramSvgDesc=可编辑矢量图文件
didYouMeanToExportToPdf=是否要导出到 PDF?
disabled=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=连接点
constrainProportions=限制比例
containsValidationErrors=包含验证错误
copiedToClipboard=已复制到剪贴板
copy=复制
copyConnect=连接时复制
copyCreated=已经创建文件的副本。
copyData=复制数据
copyOf={1} 的副本
copyOfDrawing=绘图副本
copySize=复制大小
copyStyle=复制样式
create=创建
createBlankDiagram=创建空白绘图
createNewDiagram=创建新绘图
createRevision=创建修订版本
createShape=创建图形
crop=导出单页
curved=曲线
custom=自定义
current=当前
currentPage=当前页
cut=剪切
dashed=虚线
decideLater=稍后再决定
default=默认值
delete=删除
deleteColumn=删除列
deleteLibrary401=没有权限删除此图库
deleteLibrary404=未找到所选图库
deleteLibrary500=删除图库时出错
deleteLibraryConfirm=您即将永久删除此图库。您确定要这样操作吗?
deleteRow=删除行
description=描述
describeYourDiagram=Describe your diagram
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=编辑链接
editShape=编辑图形
editStyle=编辑样式
editText=编辑文字
editTooltip=编辑提示
glass=玻璃
googleImages=Google 图片
imageSearch=图片搜索
eip=EIP
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=展开
export=导出
exporting=正在导出
exportAs=导出为
exportOptionsDisabled=已禁止导出
exportOptionsDisabledDetails=所有者已禁止评论者及浏览者下载、打印或复制该文件。
externalChanges=外部修改
extras=其它
facebook=Facebook
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=查找
fit=适应大小
fitContainer=调整容器尺寸
fitIntoContainer=适应容器尺寸
fitPage=整页显示
fitPageWidth=适应页面宽度
fitTo=适应
fitToSheetsAcross=横向页数
fitToBy=按
fitToSheetsDown=纵向页数
fitTwoPages=双页
fitWindow=适应窗口大小
flip=翻转
flipH=水平翻转
flipV=垂直翻转
flowchart=流程图
folder=文件夹
font=字体
fontColor=字体颜色
fontFamily=字体
fontSize=字体大小
forbidden=您没有该文件的访问权限
format=格式
formatPanel=格式面板
formatted=格式化
formattedText=格式化文本
formatPng=PNG
formatGif=GIF
formatJpg=JPEG
formatPdf=PDF
formatSql=SQL
formatSvg=SVG
formatHtmlEmbedded=HTML
formatSvgEmbedded=SVG(XML)
formatVsdx=VSDX
formatVssx=VSSX
formatXmlPlain=XML(文本文件)
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
googlePlus=Google+
googleSharingNotAvailable=分享只有使用 Google Drive 时可用. 请点击下方的打开, 从更多操作菜单中分享.
googleSlides=Google 幻灯片
googleSites=Google 协作平台
googleSheets=Google 表格
gradient=渐变
gradientColor=颜色
grid=网格
gridColor=网格线颜色
gridSize=网格大小
group=组合
guides=参考线
hateApp=我讨厌 draw.io
heading=标题
height=高
help=帮助
helpTranslate=帮助我们翻译此应用
hide=隐藏
hideIt=隐藏 {1}
hidden=已隐藏
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=右边插入列
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 地址
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=Language Code
lastModified=最近修改
layout=布局
left=左
leftAlign=左对齐
leftToRight=右对齐
libraryTooltip=将图形拖放至此或单击+以插入。双击进行编辑。
lightbox=灯箱特效
line=线条
lineend=线末端
lineheight=行高
linestart=线始端
linewidth=线宽
link=连接
links=连接
loading=加载中
lockUnlock=锁定 / 解锁
loggedOut=注销
logIn=登录
loveIt=我爱 {1}
lucidchart=Lucidchart
maps=地图
mathematicalTypesetting=数学排版
makeCopy=创建副本
manual=手册
merge=合并
mermaid=Mermaid
microsoftOffice=Microsoft Office
microsoftExcel=Microsoft Excel
microsoftPowerPoint=Microsoft PowerPoint
microsoftWord=Microsoft Word
middle=垂直居中
minimal=Minimal
misc=杂项
mockups=实体模型
modern=Modern
modificationDate=修改日期
modifiedBy=修改者
more=更多
moreResults=更多结果
moreShapes=更多图形
move=移动
moveToFolder=移动至文件夹
moving=移动中
moveSelectionTo=将所选移至 {1}
myDrive=My Drive
myFiles=My Files
name=名称
navigation=导航
network=网络
networking=网络
new=新建
newLibrary=新增图库
nextPage=下一页
no=否
noPickFolder=不,选择文件夹
noAttachments=未找到附件
noColor=无颜色
noFiles=无文件
noFileSelected=未选择文件
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=正交
otherViewer=其他查阅者
otherViewers=其他查阅者
outline=缩略图
oval=椭圆形
page=页面
pageContent=页面内容
pageNotFound=未找到页面
pageWithNumber=第 {1} 页
pages=页面
pageTabs=页面标签
pageView=页面视图
pageSetup=页面设置
pageScale=页面比例
pan=移动画布
panTooltip=按住空格键并拖拽以移动画布
paperSize=页面尺寸
pattern=样式
parallels=Parallels
paste=粘贴
pasteData=粘贴数据
pasteHere=在这粘贴
pasteSize=粘贴大小
pasteStyle=粘贴样式
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+拖拽进行复制)。
portrait=竖向
position=位置
posterPrint=海报样式
preferences=首选项
preview=预览
previousPage=上一页
presentationMode=Presentation Mode
print=打印
printAllPages=打印所有页
procEng=工艺流程
project=方案
priority=优先级
processForHiringNewEmployee=Process for hiring a new employee
properties=属性
publish=发布
quickStart=快速入门视频
rack=机架
radial=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=Requirement Diagram
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=搜索图形
selectAll=全选
selectionOnly=仅所选内容
selectCard=选择卡片
selectEdges=选择边线
selectFile=选择文件
selectFolder=选择文件夹
selectFont=选择字体
selectNone=全不选
selectTemplate=选择模板
selectVertices=选择顶点
sendBackward=下移一层
sendMessage=发送
sendYourFeedback=发送您的反馈
sequenceDiagram=Sequence Diagram
serviceUnavailableOrBlocked=服务无法使用或已被屏蔽
sessionExpired=会话已过期,请刷新浏览器窗口。
sessionTimeoutOnSave=会话已超时,您的 Google Drive 连接已断开。按确定键登录并保存。
setAsDefaultStyle=设置为默认样式
settings=设置
shadow=阴影
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=草图
snapToGrid=对齐到网格
solid=实线
sourceSpacing=源距
south=向下
software=软件
space=空间
spacing=间距
specialLink=特殊链接
stateDiagram=State Diagram
standard=标准
startDrawing=开始绘图
stopDrawing=结束绘图
starting=开启中
straight=直线
strikethrough=删除线
strokeColor=线条颜色
style=样式
subscript=下标
summary=概要
superscript=上标
support=支持
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=类型
twitter=Twitter
uml=UML
unassigned=Unassigned
underline=下划线
undo=撤销
ungroup=取消组合
unmerge=取消合并
unsavedChanges=未保存的更改
unsavedChangesClickHereToSave=修改未保存。点击此处保存。
untitled=未命名
untitledDiagram=未命名绘图
untitledLayer=未命名图层
untitledLibrary=未命名图库
unknownError=未知错误
updateFile=更新{1}
updatingDocument=文件更新中。请稍候...
updatingPreview=预览更新中。请稍候...
updatingSelection=选择更新中。请稍候...
upload=上传
url=URL
useOffline=离线使用
useRootFolder=要使用根目录吗?
userManual=用户手册
vertical=垂直
verticalFlow=垂直流
verticalTree=垂直树
view=查看
viewerSettings=查看器设置
viewUrl=用于查看的链接:{1}
voiceAssistant=语音助手(测试版)
warning=警告
waypoints=航点
west=向左
where=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=Web链接
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=Return back
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=Go to containing page
showComments=显示评论
confError=错误:{1}
gliffyImport=导入 Gliffy
gliffyImportInst1=点击 "开始导入" 按钮导入所有 Gliffy 绘图到 draw.io。
gliffyImportInst2=请注意,导入过程需要一些时间,导入完成前浏览器窗口必须保持打开状态。
startImport=开始导入
drawConfig=draw.io 配置
customLib=自定义库
customTemp=自定义模板
pageIdsExp=导出页面 ID
drawReindex=draw.io 正在重新索引 (测试)
working=Working
drawConfigNotFoundInst=draw.io 配置空间 (DRAWIOCONFIG) 不存在. 存储 draw.io 配置文件和自定义库/模板时需要该空间.
createConfSp=创建配置空间
unexpErrRefresh=发生意外错误, 请刷新页面, 然后重试.
configJSONInst=在下方编辑器填写 draw.io JSON 配置内容然后点击保存. 如果需要帮助, 请参考
thisPage=this page
curCustLib=Current Custom Libraries
libName=Library Name
action=操作
drawConfID=draw.io 配置 ID
addLibInst=Click the "Add Library" button to upload a new library.
addLib=Add Library
customTempInst1=Custom templates are draw.io diagrams saved in children pages of
customTempInst2=如需更多信息,请参考
tempsPage=模板页面
pageIdsExpInst1=Select export target, then click the "Start Export" button to export all pages IDs.
pageIdsExpInst2=Please note that the export procedure will take some time and the browser window must remain open until the export is completed.
startExp=开始导出
refreshDrawIndex=Refresh draw.io Diagrams Index
reindexInst1=Click the "Start Indexing" button to refresh draw.io diagrams index.
reindexInst2=Please note that the indexing procedure will take some time and the browser window must remain open until the indexing is completed.
startIndexing=Start Indexing
confAPageFoundFetch=Page "{1}" found. Fetching
confAAllDiagDone=All {1} diagrams processed. Process finished.
confAStartedProcessing=Started processing page "{1}"
confAAllDiagInPageDone=All {1} diagrams in page "{2}" processed successfully.
confAPartialDiagDone={1} out of {2} {3} diagrams in page "{4}" processed successfully.
confAUpdatePageFailed=Updating page "{1}" failed.
confANoDiagFoundInPage=No {1} diagrams found in page "{2}".
confAFetchPageFailed=Fetching the page failed.
confANoDiagFound=No {1} diagrams found. Process finished.
confASearchFailed=Searching for {1} diagrams failed. Please try again later.
confAGliffyDiagFound={2} diagram "{1}" found. Importing
confAGliffyDiagImported={2} diagram "{1}" imported successfully.
confASavingImpGliffyFailed=Saving imported {2} diagram "{1}" failed.
confAImportedFromByDraw=Imported from "{1}" by draw.io
confAImportGliffyFailed=Importing {2} diagram "{1}" failed.
confAFetchGliffyFailed=Fetching {2} diagram "{1}" failed.
confACheckBrokenDiagLnk=Checking for broken diagrams links.
confADelDiagLinkOf=Deleting diagram link of "{1}"
confADupLnk=(duplicate link)
confADelDiagLnkFailed=Deleting diagram link of "{1}" failed.
confAUnexpErrProcessPage=Unexpected error during processing the page with id: {1}
confADiagFoundIndex=Diagram "{1}" found. Indexing
confADiagIndexSucc=Diagram "{1}" indexed successfully.
confAIndexDiagFailed=Indexing diagram "{1}" failed.
confASkipDiagOtherPage=Skipped "{1}" as it belongs to another page!
confADiagUptoDate=绘图 "{1}" 已是最新。
confACheckPagesWDraw=正在检查包含 draw.io 绘图的页面。
confAErrOccured=发生错误!
savedSucc=保存成功
confASaveFailedErr=保存失败(意外错误)
character=字符
confAConfPageDesc=This page contains draw.io configuration file (configuration.json) as attachment
confALibPageDesc=This page contains draw.io custom libraries as attachments
confATempPageDesc=This page contains draw.io custom templates as attachments
working=Working
confAConfSpaceDesc=This space is used to store draw.io configuration files and custom libraries/templates
confANoCustLib=No Custom Libraries
delFailed=删除失败!
showID=显示 ID
confAIncorrectLibFileType=无效的文件类型。库应该是 XML 文件。
uploading=正在上传
confALibExist=库已经存在
confAUploadSucc=上传成功
confAUploadFailErr=上传失败(意外错误)
hiResPreview=高分辨率预览
officeNotLoggedGD=您没有登录到 Google Drive。请先打开 draw.io 任务面板并登录。
officePopupInfo=请在弹出的窗口中完成流程。
pickODFile=选择 OneDrive 文件
createODFile=创建 OneDrive 文件
pickGDriveFile=选择 Google Drive 文件
createGDriveFile=创建 Goole Drive 文件
pickDeviceFile=选择设备文件
vsdNoConfig="vsdurl" 没有配置
ruler=标尺
units=单位
points=点
inches=英寸
millimeters=毫米
confEditDraftDelOrExt=This diagram is in a draft page, is deleted from the page, or is edited externally. It will be saved as a new attachment version and may not be reflected in the page.
confDiagEditedExt=Diagram is edited in another session. It will be saved as a new attachment version but the page will show other session's modifications.
macroNotFound=找不到宏
confAInvalidPageIdsFormat=Incorrect Page IDs file format
confACollectingCurPages=Collecting current pages
confABuildingPagesMap=Building pages mapping
confAProcessDrawDiag=Started processing imported draw.io diagrams
confAProcessDrawDiagDone=Finished processing imported draw.io diagrams
confAProcessImpPages=Started processing imported pages
confAErrPrcsDiagInPage=Error processing draw.io diagrams in page "{1}"
confAPrcsDiagInPage=Processing draw.io diagrams in page "{1}"
confAImpDiagram=正在导入绘图 "{1}"
confAImpDiagramFailed=Importing diagram "{1}" failed. Cannot find its new page ID. Maybe it points to a page that is not imported.
confAImpDiagramError=Error importing diagram "{1}". Cannot fetch or save the diagram. Cannot fix this diagram links.
confAUpdateDgrmCCFailed=Updating link to diagram "{1}" failed.
confImpDiagramSuccess=Updating diagram "{1}" done successfully.
confANoLnksInDrgm=No links to update in: {1}
confAUpdateLnkToPg=Updated link to page: "{1}" in diagram: "{2}"
confAUpdateLBLnkToPg=Updated lightbox link to page: "{1}" in diagram: "{2}"
confAUpdateLnkBase=Updated base URL from: "{1}" to: "{2}" in diagram: "{3}"
confAPageIdsImpDone=Page IDs Import finished
confAPrcsMacrosInPage=Processing draw.io macros in page "{1}"
confAErrFetchPage=Error fetching page "{1}"
confAFixingMacro=Fixing macro of diagram "{1}"
confAErrReadingExpFile=Error reading export file
confAPrcsDiagInPageDone=Processing draw.io diagrams in page "{1}" finished
confAFixingMacroSkipped=Fixing macro of diagram "{1}" failed. Cannot find its new page ID. Maybe it points to a page that is not imported.
pageIdsExpTrg=Export target
confALucidDiagImgImported={2} diagram "{1}" image extracted successfully
confASavingLucidDiagImgFailed=Extracting {2} diagram "{1}" image failed
confGetInfoFailed=Fetching file info from {1} failed.
confCheckCacheFailed=Cannot get cached file info.
confReadFileErr=Cannot read "{1}" file from {2}.
confSaveCacheFailed=Unexpected error. Cannot save cached file
orgChartType=组织结构图类型
linear=线性
hanger2=Hanger 2
hanger4=Hanger 4
fishbone1=Fishbone 1
fishbone2=Fishbone 2
1ColumnLeft=单列居左
1ColumnRight=单列居右
smart=智能
parentChildSpacing=父子间距
siblingSpacing=兄弟间距
confNoPermErr=抱歉,您没有足够的权限查看页面 {1} 中嵌入的绘图
copyAsImage=复制为图像
lucidImport=导入 Lucidchart
lucidImportInst1=点击 "开始导入" 按钮导入所有 Lucidchart 图表
installFirst=请先安装 {1}
drawioChromeExt=draw.io Chrome 扩展
loginFirstThen=请先登录 {1},然后 {2}
errFetchDocList=错误:无法获取文档列表
builtinPlugins=内置插件
extPlugins=扩展插件
backupFound=找到备份文件
chromeOnly=该功能只适用于 Google Chrome
msgDeleted=消息已经删除
confAErrFetchDrawList=无法获取绘图列表。部分绘图已跳过。
confAErrCheckDrawDiag=无法检查绘图 {1}
confAErrFetchPageList=无法获取页面列表
confADiagImportIncom={1} diagram "{2}" is imported partially and may have missing shapes
invalidSel=无效选择
diagNameEmptyErr=绘图名称不能为空
openDiagram=打开绘图
newDiagram=新绘图
editable=可编辑
confAReimportStarted=Re-import {1} diagrams started...
spaceFilter=Filter by spaces
curViewState=查看器当前状态
pageLayers=页面和图层
customize=自定义
firstPage=第一页 (所有图层)
curEditorState=编辑器当前状态
noAnchorsFound=未找到锚点
attachment=附件
curDiagram=当前绘图
recentDiags=最近绘图
csvImport=导入 CSV
chooseFile=选择文件...
choose=选择
gdriveFname=Google Drive 文件名
widthOfViewer=查看器宽度 (px)
heightOfViewer=查看器高度 (px)
autoSetViewerSize=自动设置查看器的大小
thumbnail=缩略图
prevInDraw=在 draw.io 中预览
onedriveFname=OneDrive 文件名
diagFname=绘图文件名
diagUrl=绘图地址
showDiag=显示绘图
diagPreview=绘图预览
csvFileUrl=CSV 文件 URL
generate=生成
selectDiag2Insert=请选择绘图并插入。
errShowingDiag=意外的错误。无法显示绘图。
noRecentDiags=没有最近的绘图
fetchingRecentFailed=无法获取最近的绘图
useSrch2FindDiags=使用搜索框查找 draw.io 绘图
cantReadChckPerms=Cannot read the specified diagram. Please check you have read permission on that file.
cantFetchChckPerms=Cannot fetch diagram info. Please check you have read permission on that file.
searchFailed=Searching failed. Please try again later.
plsTypeStr=Please type a search string.
unsupportedFileChckUrl=不支持的文件。请检查指定URL
diagNotFoundChckUrl=绘图不存在或无法访问。请检查指定URL
csvNotFoundChckUrl=CSV 文件不存在或无法访问。请检查指定URL
cantReadUpload=无法读取上传的绘图
select=选择
errCantGetIdType=Unexpected Error: Cannot get content id or type.
errGAuthWinBlocked=Error: Google Authentication window blocked
authDrawAccess=Authorize draw.io to access {1}
connTimeout=连接超时
errAuthSrvc=无法与 {1} 认证
plsSelectFile=请选择文件
mustBgtZ={1} 应大于或等于0
cantLoadPrev=无法加载文件预览
errAccessFile=错误:访问被拒绝。请没有权限访问 "{1}"。
noPrevAvail=预览不可用。
personalAccNotSup=个人设置不支持。
errSavingTryLater=保存时发生错误,请稍后重试。
plsEnterFld=请输入 {1}
invalidDiagUrl=无效的绘图地址
unsupportedVsdx=不支持的 vsdx 文件
unsupportedImg=不支持的图片文件
unsupportedFormat=不支持的文件格式
plsSelectSingleFile=请仅选择单个文件
attCorrupt=附件文件 "{1}" 损坏
loadAttFailed=无法加载附件 "{1}"
embedDrawDiag=嵌入 draw.io 绘图
addDiagram=添加绘图
embedDiagram=嵌入绘图
editOwningPg=Edit owning page
deepIndexing=Deep Indexing (Index diagrams that aren't used in any page also)
confADeepIndexStarted=Deep Indexing Started
confADeepIndexDone=Deep Indexing Done
officeNoDiagramsSelected=No diagrams found in the selection
officeNoDiagramsInDoc=No diagrams found in the document
officeNotSupported=This feature is not supported in this host application
someImagesFailed={1} out of {2} failed due to the following errors
importingNoUsedDiagrams=Importing {1} Diagrams not used in pages
importingDrafts=Importing {1} Diagrams in drafts
processingDrafts=处理草稿
updatingDrafts=正在更新草稿
updateDrafts=更新草稿
notifications=通知
drawioImp=draw.io 导入
confALibsImp=导入 draw.io 库
confALibsImpFailed=导入 {1} 库失败
contributors=贡献者
drawDiagrams=draw.io 绘图
errFileNotFoundOrNoPer=错误:访问被拒绝。文件不存在或您没有在 {2} 访问 {1} 的权限。
confACheckPagesWEmbed=正在检查嵌入了 draw.io 绘图的页面。
confADelBrokenEmbedDiagLnk=正在移除失效的嵌入绘图链接
replaceWith=替换为
replaceAll=全部替换
confASkipDiagModified=Skipped "{1}" as it was modified after initial import
replFind=替换 / 查找
matchesRepl={1} 个匹配已替换
draftErrDataLoss=An error occurred while reading the draft file. The diagram cannot be edited now to prevent any possible data loss. Please try again later or contact support.
ibm=IBM
linkToDiagramHint=Add a link to this diagram. The diagram can only be edited from the page that owns it.
linkToDiagram=Link to Diagram
changedBy=Changed By
lastModifiedOn=最后修改于
searchResults=搜索结果
showAllTemps=显示所有模板
notionToken=Notion 令牌
selectDB=选择数据库
noDBs=没有数据库
diagramEdited={1} diagram "{2}" edited
confDraftPermissionErr=无法写入草稿。您是否有写入/读取该页面附件的权限?
confDraftTooBigErr=草稿文件过大。请检查 Confluence 配置中 "附件设置" 里的 "附件最大大小"?
owner=所有者
repository=仓库
branch=分支
meters=米
teamsNoEditingMsg=编辑器功能仅在桌面环境中可用(在微软 Teams 应用或浏览器中)
contactOwner=联系所有者
viewerOnlyMsg=您不能在移动平台编辑绘图,请使用桌面客户端或网页浏览器。
website=网站
check4Updates=检查更新
attWriteFailedRetry={1}: 附件写入失败,请在 {2} 秒后重试...
confPartialPageList=由于 Confluence 的问题,我们无法获取所有的页面。仅使用 {1} 页面继续。
spellCheck=拼写检查
noChange=无变化
lblToSvg=转换标签为 SVG
txtSettings=文本设置
LinksLost=连接将会丢失
arcSize=弧度
editConnectionPoints=编辑连接点
notInOffline=离线时不支持
notInDesktop=桌面应用中不支持
confConfigSpaceArchived=draw.io 配置空间 (DRAWIOCONFIG) 已存档。请先恢复。
confACleanOldVerStarted=开始清理旧的绘图草稿版本
confACleanOldVerDone=清理旧的绘图草稿版本完成
confACleaningFile=清理绘图草稿 "{1}" 旧的版本
confAFileCleaned=清理绘图草稿 "{1}" 完成
confAFileCleanFailed=清理绘图草稿 "{1}" 失败
confACleanOnly=仅清理绘图草稿
brush=笔刷
openDevTools=打开开发者工具
autoBkp=自动备份
confAIgnoreCollectErr=忽略收集当前页面的错误
drafts=草稿
draftSaveInt=草稿保存间隔 [秒] (0为禁用)
pluginsDisabled=外部插件已禁用
extExpNotConfigured=没有配置外部图片服务
pathFilename=路径/文件名
confAHugeInstances=Very Large Instances
confAHugeInstancesDesc=If this instance includes 100,000+ pages, it is faster to request the current instance pages list from Atlassian. Please contact our support for more details.
choosePageIDsFile=Choose current page IDs csv file
chooseDrawioPsgesFile=Choose pages with draw.io diagrams csv file
private=Private
diagramTooLarge=The diagram is too large, please reduce its size and try again.
selectAdminUsers=Select Admin Users
xyzTeam={1} Team
addTeamTitle=Adding a new draw.io Team
addTeamInst1=To create a new draw.io Team, you need to create a new Atlassian group with "drawio-" postfix (e.g, a group named "drawio-marketing").
addTeamInst2=Then, configure which team member can edit/add configuration, templates, and libraries from this page.
drawioTeams=draw.io Teams
members=Members
adminEditors=Admins/Editors
allowAll=Allow all
noTeams=No teams found
errorLoadingTeams=Error Loading Teams
noTeamMembers=No team members found
errLoadTMembers=Error loading team members
errCreateTeamPage=Error creating team "{1}" page in "draw.io Configuration" space, please check you have the required permissions.
gotoConfigPage=Please create the space from draw.io "Configuration" page.
noAdminsSelected=No admins/editors selected
errCreateConfigFile=Error creating "configuration.json" file, please check you have the required permissions.
errSetPageRestr=Error setting page restrictions
notAdmin4Team=You are not an admin for this team
configUpdated=Configuration updated, restart the editor if you want to work with last configuration.
outOfDateRevisionAlert=You are editing a historical revision of the diagram, please review the revision and open it to replace the latest version. Or close and overwrite/merge later.
confAErrFaqs=There are {1} error(s), the following instructions may help fixing most of the cases. (Please download the log for future references)
confA403ErrFaq=There are ({1}) 403 error(s). The current users must have add (write) permissions on all pages and attachments. Even admins sometimes are not allowed to write to some pages via page restrictions
confA404ErrFaq=There are ({1}) 404 error(s). The attachment/page is not found. This is due to improper migration or the diagram file (an attachment of the page) is deleted.
confA500ErrFaq=There are ({1}) 500 error(s). An internal server error in Confluence Cloud. Such errors are due to overloading the server and usually fixed by retrying the process.
confAOtherErrFaq=There are ({1}) other error(s). Please check the error description. If the description is not clear, please contact our support.
Electrical / Logic Gates=电气 / 逻辑门
Electrical / Resistors=电气 / 电阻器
Electrical / Capacitors=电气 / 电容器
Electrical / Inductors=电气 / 电感器
Electrical / Switches and Relays=电气 / 开关和继电器
Electrical / Diodes=电气 / 二极管
Electrical / Sources=电气 / 电源
Electrical / Transistors=电气 / 晶体管
Electrical / Instruments=电气 / 仪器
Electrical / Misc=电气 / 杂项
Electrical / Audio=电气 / 蜂鸣器
Electrical / PLC Ladder=电气 / PLC
Electrical / Optical=电气 / 光学
Electrical / Vacuum Tubes=电气 / 真空管
Electrical / Waveforms=电气 / 波形
Electrical / Rotating Equipment & Mechanical Functions=电气 / 旋转设备和机械功能
Electrical / Transmission Paths=电气 / 传输路径
dataSourcePanel=数据绑定
basicComponents=基础元件
chartComponents=图表元件
controlComponents=控制元件
default=默认
lock=锁定
unlock=解锁
dataDynamicEffect=数据动效
flicker=闪烁
showHide=显示/隐藏
actRotate=旋转
watersEffect=水流动效
formType=类型
networkedDevices=联网设备
productScen=产品/场景
statusSettings=状态设置
variableImage=变量图片
lift=抬起
pressDown=按下
singleClick=单击
doubleCLick=双击
operationPassword=操作密码
dataSource=数据源
dataInteraction=数据交互
display=显示
acrHidden=隐藏
flow=流动
stop=停止
actOpen=开启
actClose=关闭
openLink=打开链接
openPage=打开页面
variableAssignment=变量赋值
paramsSettings=参数设置
attrDistrbution=属性下发
deviceType=设备类型
product=产品
organization=组织
device=设备
attr=属性
deviceName=设备名称
localImage=本地图片
libraryGraphics=图库图形
min=最小值
max=最大值
averageValue=平均值
sum=求和
count=计数
empty=空
label=标签
velocityOfFlow=流速
defaultImage=默认图片
queryTime=查询时间
autoScroll=自动滚动
residenceTime=停留时间
pollTime=轮询时间
dayAgo=天之前
second=秒
videoStreaming=视频流
videoAddress=视频地址
channelNumber=通道号
deviceId=设备id
playProtocol=播放协议
videoBinding=视频绑定
event=事件
action1=动作
oneOrTwo=单向/双向
issueValue=下发值
clickIssue=点击进行命令编辑
issueFailCommand=下发命令不正确
issueCommand=下发命令
clickEdit=点击编辑
editCommand=编辑命令
itIsRequired=是必填项
serviceCommand=服务命令
placeEnterServiceCommand=请输入ASCII或HEX服务命令
flowMeterConfig=流量计配置
inputText=请输入
chooseText=请选择
actionText=操作
createMessageText=添加一条
delText=删除
state=状态
displayImage=展示图片
placeDataSource=请绑定数据源
commandIssuedOk=命令下发成功
loadingText=加载中...
linkText=链接
commandWay=命令下发方式
command=命令
transportType=传输协议
service=服务
callMethod=调用方式
oneWay=单向
twoWay=双向
custom=自定义
customCommand=自定义命令
serviceCall=服务调用
displayType=展示类型
dataType=数据类型
cycleTime=时间周期
aggMethod=聚合方式
intervalTime=间隔时间
unitText=单位
realTime=实时
history=历史
customDistributionValue=自定义下发值
isOkOperation=是否确认此操作?
ranageValue=取值范围在
between=之间
dataLengthThan=数据长度应该小于
background=背景颜色
color1=颜色一
color2=颜色二
color3=颜色三
noData=暂无数据
operationSuccessful=操作成功
passwordHelp=操作密码: 需完成单击事件交互。
placeOperPassword=请输入操作密码
enterMaxMin=输入的最大值小于最小值
flowValue100=流速值越小,流速越快。最大值为100,最小值为0。
passwordFail=操作密码不正确
variable=变量
waters=水流
digitalClock=数字时钟
alarmList=告警列表
video=视频
switch=开关
lineChart=折线图
dashboard=仪表盘
histogram=柱状图
circularFlow=流量计(圆形)
squareFlow=流量计(正方形)
thermometer=温度计
button=按钮
piping=管道
yShaped=Y形接头
tee=三通
fourWayConnector=四通
diagonalUp=斜三通 上
diagonalLower=斜三通 下
obliqueCross=斜四通
obliqueBend=斜面弯管
straightTube=直管
conversionJoint=转换接头
engine=发动机
3dEngine=3-D 发动机
servoMotor=伺服电机
actuator=促动器
reducer=减速器
brakeMotor=制动马达
industrialEngines=工业标准发动机
brushlessMotor=无刷电机
intelligentMotor=智能马达
steppingMotor=步进电机驱动器
airBrake=气压制动器
simpleMotor=简单马达
shaftEncoder=轴角编码器
explosionMotor=防爆电动机
factoryFacilities=工厂设施
pulpFactory=制浆厂
processingFactory=加工工厂
crane=吊车
refinery=提炼厂
barbedWireMesh=有刺铁丝网
ladder=梯子
floorOffice=楼层办公室
floorPlywood=楼层夹板
staircase=楼梯
lightSmoke=淡烟
chimney=烟囱
productionPLatform=生产平台
productionEquipment=生产设备
oilDrilling=石油钻塔
BrickChimney=砖烟囱
BrickChimneyWith=砖烟囱带架
emergencyDevice=紧急喷淋装置
redAndWhite=红白条烟囱
greenBarbed=绿色有刺铁丝网
greenWireMesh=绿色铁丝网
channelLadder=通道梯
pyramidCOmmunication=金字塔型通信塔
steelGrating=钢格板
drillingEquipment=钻探设备
wireMesh=铁丝网
protectiveScreen=防护筛
blackSmoke=黑色烟雾
fan=风机
filter=过滤器
flowmeter=流量计
flowmeter1=压力
flowmeter2=微电脑控制器
flowmeter3=排气压力
flowmeter4=智能电磁流量计
flowmeter5=智能科氏流量计 1
flowmeter6=智能科氏流量计 2
flowmeter7=模拟输出流量传感器
flowmeter8=气旋流量计
flowmeter9=流元件
flowmeter10=流管
flowmeter11=流量积算器
flowmeter12=流量计
flowmeter13=涡轮流量计
flowmeter14=温度
flowmeter15=热式质量流量计
flowmeter16=电磁流量计 1
flowmeter17=电磁流量计 2
flowmeter18=电磁流量计3
flowmeter19=简单流量控制器
flowmeter20=简单流量控制器2
flowmeter21=锥式流量计
foodProcessing=食品加工
foodProcessing1=不锈钢减速机 1
foodProcessing2=不锈钢减速机 2
foodProcessing3=不锈钢搅拌机 (关)
foodProcessing4=不锈钢搅拌机(开)
foodProcessing5=不锈钢料斗
foodProcessing6=交叉带分隔符
foodProcessing7=内联搅拌机乳化器
foodProcessing8=分离器
foodProcessing9=制氮机
foodProcessing10=卫生内联混合器
foodProcessing11=卫生加热器
foodProcessing12=卫生输送泵
foodProcessing13=发酵
foodProcessing14=啤酒瓶
foodProcessing15=啤酒罐
foodProcessing16=固化炉系统
foodProcessing17=壳管换热器
foodProcessing18=奶瓶用纸板
foodProcessing19=微流量计
foodProcessing20=托盘封口机
foodProcessing21=批处理流化床处理器
foodProcessing22=搅拌器
foodProcessing23=标准丝带搅拌机
foodProcessing24=浆料除铁器
foodProcessing25=浓缩物分配器
foodProcessing26=涡轮乳化剂
foodProcessing27=淬火和回火系统
foodProcessing28=混台漏斗
foodProcessing29=清洁空气过滤器
foodProcessing30=真空填充机
foodProcessing31=真空搅拌混合机
foodProcessing32=真空系统
foodProcessing33=立式搅拌机
foodProcessing34=筛选机
foodProcessing35=管传热器中的管
foodProcessing36=粉液搅拌机
foodProcessing37=粘度计
foodProcessing38=细颈瓶
foodProcessing39=细颈瓶2
foodProcessing40=胶体磨
foodProcessing41=谷粮仓 1
foodProcessing42=谷粮仓 2
foodProcessing43=超细大豆处理系统
foodProcessing44=过滤系统
foodProcessing45=过滤装置
foodProcessing46=食品加工
foodProcessing47=鼓形磁铁
heater=加热器
heater1=加热器
heater2=批烤箱
heater3=换热器
heater4=换热器2
heater5=换热器3
heater6=换热器4
heater7=火焰锅炉
heater8=热回收锅炉
heater9=燃油锅炉
heater10=燃煤锅炉
heater11=蒸发器
heater12=蒸汽混合器
heater13=蒸汽混合器2
heater14=蒸汽锅炉
heater15=过热器
heater16=锅炉
heater17=锅炉2
industry=工业
industry1=三级高速剪切机
industry2=二甲氧基甲烷计量罐
industry3=传送带
industry4=分仓
industry5=剪切机
industry6=干线管道
industry7=干酵母粉仓
industry8=成品罐
industry9=成熟度
industry10=料仓
industry11=旋液分离器
industry12=智能控制周期
industry13=机组
industry14=母液槽
industry15=母液槽2
industry16=沥青混合料槽
industry17=沥青膨胀罐
industry18=泄料桶
industry19=消烟管
industry20=涡轮
industry21=液态渣池
industry22=漏斗
industry23=烧结机
industry24=畜粪池
industry25=石灰粉仓
industry26=酒槽水
industry27=高效汽轮机
instrument=仪表
lamp=灯
plant=植物
powerSupply=电源
powerSupply1=三相开关盒
powerSupply2=不间断电源
powerSupply3=交流驱动
powerSupply4=交流驱动2
powerSupply5=仪表
powerSupply6=供热机组
powerSupply7=功率监控器
powerSupply8=半导体控制整流器组装
powerSupply9=双线电线杆
powerSupply10=发电厂
powerSupply11=发电机
powerSupply12=发电机2
powerSupply13=变压器
powerSupply14=变压器监控器
powerSupply15=变压器组件
powerSupply16=变速传动
powerSupply17=基座
powerSupply18=套管
powerSupply19=工业风力发电机 1
powerSupply20=工业风力发电机 2
powerSupply21=工业风力发电机 3
powerSupply22=带电线的电线杆
powerSupply23=护具装置
powerSupply24=控制系统
powerSupply25=插座
powerSupply26=整流器 1
powerSupply27=整流器 2
powerSupply28=断路器
powerSupply29=柴油发电机
powerSupply30=柴油支持UPS系统
powerSupply31=核反应堆
powerSupply32=核电站
powerSupply33=沼气发电
powerSupply34=测温变阻器
powerSupply35=燃气轮机
powerSupply36=瓷绝缘体
powerSupply37=电子仪表
powerSupply38=电涌放电器
powerSupply39=电源板
powerSupply40=电线杆 1
powerSupply41=电线杆 2
powerSupply42=电线杆 3
powerSupply43=电线杆 4
powerSupply44=电线杆 5
powerSupply45=电缆分线箱
powerSupply46=电解器
powerSupply47=直流电源
powerSupply48=真空开关
powerSupply49=简易变电站
powerSupply50=绝缘体
powerSupply51=起动机
powerSupply52=车用蓄电池
powerSupply53=输电塔
powerSupply54=重合器 2
powerSupply55=重合器
powerSupply56=集中太阳能发电厂 1
powerSupply57=集中太阳能发电厂 2
powerSupply58=马达驱动
processCooling=制程冷却
cooler=冷却器
coolingTower=冷却塔
coolingGroup=冷却塔群塔
coldGenerator=冷发电机冷却器
reactionProduct=反应产品冷却器
englineDriven=发动机驱动冷却器
absorptionCooler=吸收式冷却器
largePortableCooler=大型便携式冷却器
naturalgas=天然气制冷系统
waterCooled=水冷式冷却器
temControl=温度控制装置
simpleCooling=简单冷却塔
comfortCooling=舒适性冷却塔
explosionProof=防爆工业冷藏冷冻箱
processHeating=制程加热
processHeating1= 带式炉
processHeating2= 低排放燃烧器
processHeating3= 分批式炉
processHeating4= 列管式冷凝器
processHeating5= 回转式空气预热器
processHeating6= 大功率燃烧器
processHeating7= 太阳能集热器
processHeating8= 太阳能集热器2
processHeating9= 导热油加热器 2
processHeating10=导热油加热器
processHeating11=导热油加热系统
processHeating12=干燥设备
processHeating13=干燥设备2
processHeating14=循环式加热器
processHeating15=换热系统
processHeating16=旋转干燥器
processHeating17=无焰热氧化器
processHeating18=水加热装置
processHeating19=浸没式加热器
processHeating20=烘干塔
processHeating21=烘干机
processHeating22=烘干设备
processHeating23=热交换器 1
processHeating24=热交换器 2
processHeating25=热交换器 3
processHeating26=热交换器 4
processHeating27=热交换器 5
processHeating28=热交换器 6
processHeating29=热交换器 7
processHeating30=热交换器 8
processHeating31=热交换器 9
processHeating32=热交换系统
processHeating33=热回收系统 1
processHeating34=热回收系统 2
processHeating35=热回收系统 3
processHeating36=热流体加热器
processHeating37=电加热器
processHeating38=砑光机
processHeating39=空气预热器
processHeating40=空气预热器2
processHeating41=竖式预热器
processHeating42=简易冷凝器
processHeating43=简易热交换器
processHeating44=膨胀弯管
processHeating45=蒸发器
processHeating46=蒸汽发生器 1
processHeating47=蒸汽发生器 2
processHeating48=蒸汽发生器 3
processHeating49=蒸汽发生器 4
processHeating50=蒸汽混合器
processHeating51=蒸汽疏水阀
processHeating52=蒸馏设备
processHeating53=补偿器 1
processHeating54=补偿器 2
processHeating55=补偿器 3
processHeating56=过热器
processHeating57=过程加热器
processHeating58=酵母干燥塔
processHeating59=间接大水量加热器
processHeating60=预热器
processHeating61=食物保温箱
pump=泵
sewage=污水处理
sewage1=中央净水器
sewage2=中央软水器
sewage3=主澄清器
sewage4=低速通风废水处理
sewage5=储水池
sewage6=冷却塔组
sewage7=净水器
sewage8=净水系统
sewage9=净水系统2
sewage10=制氧机
sewage11=加氯器
sewage12=化学品加料机
sewage13=压榨过滤机
sewage14=厌氧序批式反应器
sewage15=反渗透主机
sewage16=吸收器
sewage17=喷头
sewage18=圆顶水箱
sewage19=地面
sewage20=处理池
sewage21=处理罐
sewage22=大蜻蜓
sewage23=容器
sewage24=小瓶灌装机
sewage25=带式压滤机
sewage26=带罐澄清器
sewage27=干燥装置
sewage28=废水研磨机
sewage29=废水蒸发器
sewage30=引水渠
sewage31=排水池
sewage32=排水系统
sewage33=斜板澄清器
sewage34=旋液分离器
sewage35=曝气池 1
sewage36=曝气池 2
sewage37=曝气消化池 1
sewage38=曝气消化池 2
sewage39=板式澄清器
sewage40=格栅
sewage41=桨式干燥机
sewage42=民用自来水
sewage43=气体处理
sewage44=水处理厂
sewage45=水处理池(俯视)
sewage46=水处理系统
sewage47=水处理罐
sewage48=水渠
sewage49=水解沉砂池
sewage50=水解酸化池
sewage51=水龙头
sewage52=池塘
sewage53=污水槽气泡扩散器
sewage54=污水罐
sewage55=污泥塘
sewage56=污泥浓缩池
sewage57=污泥消化池
sewage58=沉淀池 2
sewage59=沉淀池
sewage60=沉砂池
sewage61=沥青过滤器
sewage62=油水分离和回收装置
sewage63=油水分离器 1
sewage64=油水分离器 2
sewage65=油箱消化池
sewage66=洗水处理和回收系统
sewage67=洗涤器设备
sewage68=流阀
sewage69=浮油回收器
sewage70=浴缸
sewage71=消化池
sewage72=湿式收尘器
sewage73=溶气浮选装置
sewage74=溶液给料机
sewage75=滤水器
sewage76=滤膜
sewage77=潜水式搅拌器
sewage78=澄清器 1
sewage79=澄清器 2
sewage80=澄清器和浓缩器
sewage81=澄清器(侧面)
sewage82=灌装机
sewage83=灰处理池
sewage84=焚化炉
sewage85=球形储罐 1
sewage86=球形储罐 2
sewage87=生物反应池
sewage88=生物处理设备
sewage89=电动阀式浇口(关闭)
sewage90=电动阀式浇口(打开)
sewage91=真空过滤器
sewage92=碳吸收器
sewage93=空气扩散装置
sewage94=筛子
sewage95=简单蒸发器
sewage96=简单高位槽
sewage97=精细过滤器
sewage98=紧密耦合自吸泵
sewage99=絮凝器
sewage100=聚合物注入装置
sewage101=聚合物混合装置
sewage102=蒸发器
sewage103=蒸发装置
sewage104=蓄水池
sewage105=蓝色过滤器
sewage106=螺杆传动
sewage107=袋式过滤器
sewage108=豪华立式管线机
sewage109=超微细筛机
sewage110=转鼓浓缩机
sewage111=过滤器 2
sewage112=过滤器 3
sewage113=过滤器 4
sewage114=过滤器 5
sewage115=过滤器 6
sewage116=过滤器
sewage117=过滤器外壳
sewage118=重力带式机械浓缩机
sewage119=防爆维护
sewage120=预滤器
sewage121=高位槽 1
sewage122=高位槽 2
sewage123=高位槽 3
sewage124=高位槽 4
sewage125=高位槽 5
sewage126=鼓式过滤器
sink=水槽
sink1= 5加仑桶
sink2= 不锈钢柱形储罐
sink3= 乙醇存储
sink4= 产品
sink5= 仓式泵
sink6= 保温罐
sink7= 储气罐
sink8= 储罐 1
sink9= 储罐 10
sink10= 储罐 11
sink11= 储罐 12
sink12= 储罐 13
sink13= 储罐 14
sink14= 储罐 15
sink15= 储罐 16
sink16= 储罐 2
sink17= 储罐 3
sink18= 储罐 4
sink19= 储罐 5
sink20= 储罐 6
sink21= 储罐 7
sink22= 储罐 8
sink23= 储罐 9
sink24= 储罐
sink25= 储罐支架 1
sink26= 储罐支架 2
sink27= 储罐群
sink28= 光滑筒仓
sink29= 剖面储罐
sink30= 十分光滑的储蓄罐
sink31= 压力容器
sink32= 原水箱
sink33= 反应器 1
sink34= 反应器 2
sink35= 反应器 3
sink36= 反应器 4
sink37= 反应器 tank
sink38= 同质化储罐
sink39= 地下储罐
sink40= 大型锥底聚乙烯储罐
sink41= 存储设备 1
sink42= 存储设备 2
sink43= 存储设备 3
sink44= 存储设备 4
sink45= 家用热水储罐
sink46= 容器
sink47= 带搅拌器的反应器
sink48= 带搅拌机的加强型储罐
sink49= 带梯子的储罐
sink50= 带混合器的聚乙烯储罐
sink51= 带舱口和梯子的反应器
sink52= 带铆钉和梯子的储罐
sink53= 带铆钉的储罐
sink54= 扁容器 1
sink55= 扁容器 2
sink56= 扁容器 3
sink57= 扁容器 4
sink58= 扁容器 5
sink59= 扁容器 6
sink60= 扁容器 7
sink61= 搅拌罐
sink62= 料斗
sink63= 日量熔槽
sink64= 暂存罐
sink65= 有双支撑脚的的储罐
sink66= 有支脚的圆形反应堆
sink67= 有植物的池塘
sink68= 有直梯的筒仓
sink69= 有舱口的储蓄
sink70= 有螺旋梯的筒仓
sink71= 有铆钉的球形储罐
sink72= 桶
sink73= 椭圆散装储罐
sink74= 模制聚乙烯罐
sink75= 气缸
sink76= 池塘
sink77= 消化反应池
sink78= 液体存储鼓
sink79= 液压气动罐
sink80= 热交换器
sink81= 独立式储罐
sink82= 玻璃条纹式储罐
sink83= 球形储罐
sink84= 生活热水箱
sink85= 稳定罐
sink86= 简单储罐 1
sink87= 简单储罐 2
sink88= 简单储罐 3
sink89= 简单储罐 4
sink90= 简单储罐 5
sink91= 简单储罐系统
sink92= 简单反应器
sink93= 简单处理罐
sink94= 粉末储罐
sink95= 绿色容器
sink96= 绿色油缸
sink97= 耐腐蚀槽
sink98= 聚乙烯储罐
sink99= 聚乙烯储罐2
sink100=聚乙烯化学混合槽
sink101=聚乙烯混合和填充槽
sink102=舱口
sink103=螺栓 1
sink104=螺栓 2
sink105=配量池
sink106=酿造锅
sink107=鼓式槽
valve=阀门
ashDischarge=卸灰阀
twoWayValve=双通阀
verticalOneWay=垂直单向阀
verticalControl=垂直控制阀
plasticSwing=塑料旋启式止回阀
pinchValve=夹管阀
safetyValve=安全阀
manualValve=手动阀
controlValve=控制阀
rotaryValve=旋转阀
horizontalValve=水平单向阀
horizontalControlValve=水平控制阀
flangeControlValve=法兰控制阀
ballValve=球形阀
electricValve=电动阀
air=空气
selectImage=图片选择
clickDownload=点击上传
clickOrDragUpload=点击上传或拖拽上传
uploadDesc=图片格式支持png、jpg(jpeg)、gif, 大小不能超过5M
intervalSecond=秒
intervalMinute=分
intervalHour=时
intervalDay=天
chooseDevice=请选择设备
startDate=开始日期
endDate=结束日期
accessToken=访问令牌
pleaseInputAccessToken=请输入访问令牌
standardSize=推荐尺寸
time=时间
CLEARED_UNACK=清除未确认
ACTIVE_UNACK=激活未确认
CLEARED_ACK=清除已确认
ACTIVE_ACK=激活已确认
exampleDevice=实例设备
clockSunday=星期天
clockMonday=星期一
clockTuesday=星期二
clockWednesday=星期三
clockThursday=星期四
clockFriday=星期五
clockSaturday=星期天
clockYear=年
clockMonth=月
clockDay=日