dia.txt
64.7 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
# *DO NOT DIRECTLY EDIT THIS FILE, IT IS AUTOMATICALLY GENERATED AND IT IS BASED ON:*
# https://docs.google.com/spreadsheet/ccc?key=0AmQEO36liL4FdDJLWVNMaVV2UmRKSnpXU09MYkdGbEE
about=About
aboutDrawio=About draw.io
accessDenied=Access Denied
accounts=Accounts
action=Action
actualSize=Actual Size
add=Add
addAccount=Add account
addedFile=Added {1}
addImages=Add Images
addImageUrl=Add Image URL
addLayer=Add Layer
addProperty=Add Property
address=Address
addToExistingDrawing=Add to Existing Drawing
addToScratchpad=Add to Scratchpad
addWaypoint=Add Waypoint
adjustTo=Adjust to
advanced=Advanced
smartTemplate=Smart Template
align=Align
alignment=Alignment
allChangesLost=All changes will be lost!
allPages=All Pages
allProjects=All Projects
allSpaces=All Spaces
allTags=All Tags
anchor=Anchor
android=Android
angle=Angle
arc=Arc
areYouSure=Are you sure?
ensureDataSaved=Please ensure your data is saved before closing.
allChangesSaved=All changes saved
allChangesSavedInDrive=All changes saved in Drive
allowPopups=Allow pop-ups to avoid this dialog.
allowRelativeUrl=Allow relative URL
alreadyConnected=Nodes already connected
appearance=Appearance
apply=Apply
archiMate21=ArchiMate 2.1
arrange=Arrange
arrow=Arrow
arrows=Arrows
asNew=As New
atlas=Atlas
author=Author
authorizationRequired=Authorization required
authorizeThisAppIn=Authorize this app in {1}:
authorize=Authorize
authorizing=Authorizing
automatic=Automatic
autosave=Autosave
autosize=Autosize
attachments=Attachments
aws=AWS
aws3d=AWS 3D
azure=Azure
back=Back
background=Background
backgroundColor=Background Color
backgroundImage=Background Image
basic=Basic
beta=beta
blankDrawing=Blank Drawing
blankDiagram=Blank Diagram
block=Block
blockquote=Blockquote
blog=Blog
bold=Bold
bootstrap=Bootstrap
border=Border
borderColor=Border Color
borderWidth=Border Width
bottom=Bottom
bottomAlign=Bottom Align
bottomLeft=Bottom Left
bottomRight=Bottom Right
bpmn=BPMN
bringForward=Bring Forward
browser=Browser
bulletedList=Bulleted List
business=Business
busy=Operation in progress
cabinets=Cabinets
cancel=Cancel
center=Center
cannotLoad=Load attempts failed. Please try again later.
cannotLogin=Log in attempts failed. Please try again later.
cannotOpenFile=Cannot open file
change=Change
changeOrientation=Change Orientation
changeUser=Change user
changeStorage=Change storage
changesNotSaved=Changes have not been saved
classDiagram=Class Diagram
userJoined={1} has joined
userLeft={1} has left
chatWindowTitle=Chat
chooseAnOption=Choose an option
chromeApp=Chrome App
collaborativeEditingNotice=Important Notice for Collaborative Editing
compare=Compare
compressed=Compressed
commitMessage=Commit Message
configLinkWarn=This link configures draw.io. Only click OK if you trust whoever gave you it!
configLinkConfirm=Click OK to configure and restart draw.io.
container=Container
csv=CSV
dark=Dark
diagramLanguage=Diagram Language
diagramType=Diagram type
diagramXmlDesc=XML File
diagramHtmlDesc=HTML File
diagramPngDesc=Editable Bitmap Image
diagramSvgDesc=Editable Vector Image
didYouMeanToExportToPdf=Did you mean to export to PDF?
disabled=Disabled
draftFound=A draft for '{1}' has been found. Load it into the editor or discard it to continue.
draftRevisionMismatch=There is a different version of this diagram on a shared draft of this page. Please edit the diagram from the draft to ensure you are working with the latest version.
selectDraft=Select a draft to continue editing:
dragAndDropNotSupported=Drag and drop not supported for images. Would you like to import instead?
dropboxCharsNotAllowed=The following characters are not allowed: \ / : ? * " |
check=Check
checksum=Checksum
circle=Circle
cisco=Cisco
classic=Classic
clearDefaultStyle=Clear Default Style
clearWaypoints=Clear Waypoints
clipart=Clipart
close=Close
closingFile=Closing file
realtimeCollaboration=Real-Time Collaboration
collaborate=Collaborate
collaborator=Collaborator
collaborators=Collaborators
collapse=Collapse
collapseExpand=Collapse/Expand
collapse-expand=Click to collapse/expand\nShift-click to move neighbors \nAlt-click to protect group size
collapsible=Collapsible
comic=Comic
comment=Comment
commentsNotes=Comments/Notes
compress=Compress
configuration=Configuration
connect=Connect
connecting=Connecting
connectWithDrive=Connect with Google Drive
connection=Connection
connectionArrows=Connection Arrows
connectionPoints=Connection Points
constrainProportions=Constrain Proportions
containsValidationErrors=Contains validation errors
copiedToClipboard=Copied to clipboard
copy=Copy
copyConnect=Copy on connect
copyCreated=A copy of the file was created.
copyData=Copy Data
copyOf=Copy of {1}
copyOfDrawing=Copy of Drawing
copySize=Copy Size
copyStyle=Copy Style
create=Create
createBlankDiagram=Create Blank Diagram
createNewDiagram=Create New Diagram
createRevision=Create Revision
createShape=Create Shape
crop=Crop
curved=Curved
custom=Custom
current=Current
currentPage=Current page
cut=Cut
dashed=Dashed
decideLater=Decide later
default=Default
delete=Delete
deleteColumn=Delete Column
deleteLibrary401=Insufficient permissions to delete this library
deleteLibrary404=Selected library could not be found
deleteLibrary500=Error deleting library
deleteLibraryConfirm=You are about to permanently delete this library. Are you sure you want to do this?
deleteRow=Delete Row
description=Description
describeYourDiagram=Describe your diagram
device=Device
diagram=Diagram
diagramContent=Diagram Content
diagramLocked=Diagram has been locked to prevent further data loss.
diagramLockedBySince=The diagram is locked by {1} since {2} ago
diagramName=Diagram Name
diagramIsPublic=Diagram is public
diagramIsNotPublic=Diagram is not public
diamond=Diamond
diamondThin=Diamond (thin)
didYouKnow=Did you know...
direction=Direction
discard=Discard
discardChangesAndReconnect=Discard Changes and Reconnect
googleDriveMissingClickHere=Google Drive missing? Click here!
discardChanges=Discard Changes
disconnected=Disconnected
distribute=Distribute
done=Done
doNotShowAgain=Do not show again
dotted=Dotted
doubleClickOrientation=Doubleclick to change orientation
doubleClickTooltip=Doubleclick to insert text
doubleClickChangeProperty=Doubleclick to change property name
download=Download
downloadDesktop=Get Desktop
downloadAs=Download as
clickHereToSave=Click here to save.
dpi=DPI
draftDiscarded=Draft discarded
draftSaved=Draft saved
dragElementsHere=Drag elements here
dragImagesHere=Drag images or URLs here
dragUrlsHere=Drag URLs here
draw.io=draw.io
drawing=Drawing{1}
drawingEmpty=Drawing is empty
drawingTooLarge=Drawing is too large
drawioForWork=Draw.io for GSuite
dropbox=Dropbox
duplicate=Duplicate
duplicateIt=Duplicate {1}
divider=Divider
dx=Dx
dy=Dy
east=East
edit=Edit
editData=Edit Data
editDiagram=Edit Diagram
editGeometry=Edit Geometry
editImage=Edit Image
editImageUrl=Edit Image URL
editLink=Edit Link
editShape=Edit Shape
editStyle=Edit Style
editText=Edit Text
editTooltip=Edit Tooltip
glass=Glass
googleImages=Google Images
imageSearch=Image Search
eip=EIP
embed=Embed
embedFonts=Embed Fonts
embedImages=Embed Images
mainEmbedNotice=Paste this into the page
electrical=Electrical
ellipse=Ellipse
embedNotice=Paste this once at the end of the page
enterGroup=Enter Group
enterName=Enter Name
enterPropertyName=Enter Property Name
enterValue=Enter Value
entityRelation=Entity Relation
entityRelationshipDiagram=Entity Relationship Diagram
error=Error
errorDeletingFile=Error deleting file
errorLoadingFile=Error loading file
errorRenamingFile=Error renaming file
errorRenamingFileNotFound=Error renaming file. File was not found.
errorRenamingFileForbidden=Error renaming file. Insufficient access rights.
errorSavingDraft=Error saving draft
errorSavingFile=Error saving file
errorSavingFileUnknown=Error authorizing with Google's servers. Please refresh the page to re-attempt.
errorSavingFileForbidden=Error saving file. Insufficient access rights.
errorSavingFileNameConflict=Could not save diagram. Current page already contains file named '{1}'.
errorSavingFileNotFound=Error saving file. File was not found.
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
errorSavingFileSessionTimeout=Your session has ended. Please <a target='_blank' href='{1}'>{2}</a> and return to this tab to try to save again.
errorSendingFeedback=Error sending feedback.
errorUpdatingPreview=Error updating preview.
exit=Exit
exitGroup=Exit Group
expand=Expand
export=Export
exporting=Exporting
exportAs=Export as
exportOptionsDisabled=Export options disabled
exportOptionsDisabledDetails=The owner has disabled options to download, print or copy for commenters and viewers on this file.
externalChanges=External Changes
extras=Extras
facebook=Facebook
failedToSaveTryReconnect=Failed to save, trying to reconnect
featureRequest=Feature Request
feedback=Feedback
feedbackSent=Feedback successfully sent.
floorplans=Floorplans
file=File
fileChangedOverwriteDialog=The file has been modified. Do you want to save the file and overwrite those changes?
fileChangedSyncDialog=The file has been modified.
fileChangedSync=The file has been modified. Click here to synchronize.
overwrite=Overwrite
synchronize=Synchronize
filename=Filename
fileExists=File already exists
fileMovedToTrash=File was moved to trash
fileNearlyFullSeeFaq=File nearly full, please see FAQ
fileNotFound=File not found
repositoryNotFound=Repository not found
fileNotFoundOrDenied=The file was not found. It does not exist or you do not have access.
fileNotLoaded=File not loaded
fileNotSaved=File not saved
fileOpenLocation=How would you like to open these file(s)?
filetypeHtml=.html causes file to save as HTML with redirect to cloud URL
filetypePng=.png causes file to save as PNG with embedded data
filetypeSvg=.svg causes file to save as SVG with embedded data
fileWillBeSavedInAppFolder={1} will be saved in the app folder.
fill=Fill
fillColor=Fill Color
filterCards=Filter Cards
find=Find
fit=Fit
fitContainer=Resize Container
fitIntoContainer=Fit into Container
fitPage=Fit Page
fitPageWidth=Fit Page Width
fitTo=Fit to
fitToSheetsAcross=sheet(s) across
fitToBy=by
fitToSheetsDown=sheet(s) down
fitTwoPages=Two Pages
fitWindow=Fit Window
flip=Flip
flipH=Flip Horizontal
flipV=Flip Vertical
flowchart=Flowchart
folder=Folder
font=Font
fontColor=Font Color
fontFamily=Font Family
fontSize=Font Size
forbidden=You are not authorized to access this file
format=Format
formatPanel=Format Panel
formatted=Formatted
formattedText=Formatted Text
formatPng=PNG
formatGif=GIF
formatJpg=JPEG
formatPdf=PDF
formatSql=SQL
formatSvg=SVG
formatHtmlEmbedded=HTML
formatSvgEmbedded=SVG (with XML)
formatVsdx=VSDX
formatVssx=VSSX
formatXmlPlain=XML (Plain)
formatXml=XML
forum=Discussion/Help Forums
freehand=Freehand
fromTemplate=From Template
fromTemplateUrl=From Template URL
fromText=From Text
fromUrl=From URL
fromThisPage=From this page
fullscreen=Fullscreen
gap=Gap
gcp=GCP
general=General
getNotionChromeExtension=Get the Notion Chrome Extension
github=GitHub
gitlab=GitLab
gliffy=Gliffy
global=Global
googleDocs=Google Docs
googleDrive=Google Drive
googleGadget=Google Gadget
googlePlus=Google+
googleSharingNotAvailable=Sharing is only available via Google Drive. Please click Open below and share from the more actions menu:
googleSlides=Google Slides
googleSites=Google Sites
googleSheets=Google Sheets
gradient=Gradient
gradientColor=Color
grid=Grid
gridColor=Grid Color
gridSize=Grid Size
group=Group
guides=Guides
hateApp=I hate draw.io
heading=Heading
height=Height
help=Help
helpTranslate=Help us translate this application
hide=Hide
hideIt=Hide {1}
hidden=Hidden
home=Home
horizontal=Horizontal
horizontalFlow=Horizontal Flow
horizontalTree=Horizontal Tree
howTranslate=How good is the translation in your language?
html=HTML
htmlText=HTML Text
id=ID
iframe=IFrame
ignore=Ignore
image=Image
imageUrl=Image URL
images=Images
imagePreviewError=This image couldn't be loaded for preview. Please check the URL.
imageTooBig=Image too big
imgur=Imgur
import=Import
importFrom=Import from
includeCopyOfMyDiagram=Include a copy of my diagram
increaseIndent=Increase Indent
decreaseIndent=Decrease Indent
insert=Insert
insertColumnBefore=Insert Column Left
insertColumnAfter=Insert Column Right
insertEllipse=Insert Ellipse
insertImage=Insert Image
insertHorizontalRule=Insert Horizontal Rule
insertLink=Insert Link
insertPage=Insert Page
insertRectangle=Insert Rectangle
insertRhombus=Insert Rhombus
insertRowBefore=Insert Row Above
insertRowAfter=Insert Row After
insertText=Insert Text
inserting=Inserting
installApp=Install App
invalidFilename=Diagram names must not contain the following characters: \ / | : ; { } < > & + ? = "
invalidLicenseSeeThisPage=Your license is invalid, please see this <a target="_blank" href="https://www.drawio.com/doc/faq/license-drawio-confluence-jira-cloud">page</a>.
invalidInput=Invalid input
invalidName=Invalid name
invalidOrMissingFile=Invalid or missing file
invalidPublicUrl=Invalid public URL
isometric=Isometric
ios=iOS
italic=Italic
kennedy=Kennedy
keyboardShortcuts=Keyboard Shortcuts
labels=Labels
layers=Layers
landscape=Landscape
language=Language
leanMapping=Lean Mapping
lastChange=Last change {1} ago
lessThanAMinute=less than a minute
licensingError=Licensing Error
licenseHasExpired=The license for {1} has expired on {2}. Click here.
licenseRequired=This feature requires draw.io to be licensed.
licenseWillExpire=The license for {1} will expire on {2}. Click here.
light=Light
lineJumps=Line jumps
linkAccountRequired=If the diagram is not public a Google account is required to view the link.
linkText=Link Text
list=List
minute=minute
minutes=minutes
hours=hours
days=days
months=months
years=years
restartForChangeRequired=Changes will take effect after a restart of the application.
laneColor=Lanecolor
languageCode=Language Code
lastModified=Last modified
layout=Layout
left=Left
leftAlign=Left Align
leftToRight=Left to right
libraryTooltip=Drag and drop shapes here or click + to insert. Double click to edit.
lightbox=Lightbox
line=Line
lineend=Line end
lineheight=Line Height
linestart=Line start
linewidth=Linewidth
link=Link
links=Links
loading=Loading
lockUnlock=Lock/Unlock
loggedOut=Logged Out
logIn=log in
loveIt=I love {1}
lucidchart=Lucidchart
maps=Maps
mathematicalTypesetting=Mathematical Typesetting
makeCopy=Make a Copy
manual=Manual
merge=Merge
mermaid=Mermaid
microsoftOffice=Microsoft Office
microsoftExcel=Microsoft Excel
microsoftPowerPoint=Microsoft PowerPoint
microsoftWord=Microsoft Word
middle=Middle
minimal=Minimal
misc=Misc
mockups=Mockups
modern=Modern
modificationDate=Modification date
modifiedBy=Modified by
more=More
moreResults=More Results
moreShapes=More Shapes
move=Move
moveToFolder=Move to Folder
moving=Moving
moveSelectionTo=Move selection to {1}
myDrive=My Drive
myFiles=My Files
name=Name
navigation=Navigation
network=Network
networking=Networking
new=New
newLibrary=New Library
nextPage=Next Page
no=No
noPickFolder=No, pick folder
noAttachments=No attachments found
noColor=No Color
noFiles=No Files
noFileSelected=No file selected
noLibraries=No libraries found
noMoreResults=No more results
none=None
noOtherViewers=No other viewers
noPlugins=No plugins
noPreview=No preview
noResponse=No response from server
noResultsFor=No results for '{1}'
noRevisions=No revisions
noSearchResults=No search results found
noPageContentOrNotSaved=No anchors found on this page or it hasn't been saved yet
normal=Normal
north=North
notADiagramFile=Not a diagram file
notALibraryFile=Not a library file
notAvailable=Not available
notAUtf8File=Not a UTF-8 file
notConnected=Not connected
note=Note
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=Not using {1}?
numberedList=Numbered list
offline=Offline
ok=OK
oneDrive=OneDrive
online=Online
opacity=Opacity
open=Open
openArrow=Open Arrow
openExistingDiagram=Open Existing Diagram
openFile=Open File
openFrom=Open from
openLibrary=Open Library
openLibraryFrom=Open Library from
openLink=Open Link
openInNewWindow=Open in New Window
openInThisWindow=Open in This Window
openIt=Open {1}
openRecent=Open Recent
openSupported=Supported formats are files saved from this software (.xml), .vsdx and .gliffy
options=Options
organic=Organic
orgChart=Org Chart
orthogonal=Orthogonal
otherViewer=other viewer
otherViewers=other viewers
outline=Outline
oval=Oval
page=Page
pageContent=Page Content
pageNotFound=Page not found
pageWithNumber=Page-{1}
pages=Pages
pageTabs=Page Tabs
pageView=Page View
pageSetup=Page Setup
pageScale=Page Scale
pan=Pan
panTooltip=Space+Drag to pan
paperSize=Paper Size
pattern=Pattern
parallels=Parallels
paste=Paste
pasteData=Paste Data
pasteHere=Paste here
pasteSize=Paste Size
pasteStyle=Paste Style
perimeter=Perimeter
permissionAnyone=Anyone can edit
permissionAuthor=Owner and admins can edit
pickFolder=Pick a folder
pickLibraryDialogTitle=Select Library
publicDiagramUrl=Public URL of the diagram
placeholders=Placeholders
plantUml=PlantUML
plugins=Plugins
pluginUrl=Plugin URL
pluginWarning=The page has requested to load the following plugin(s):\n \n {1}\n \n Would you like to load these plugin(s) now?\n \n NOTE : Only allow plugins to run if you fully understand the security implications of doing so.\n
plusTooltip=Click to connect and clone (ctrl+click to clone, shift+click to connect). Drag to connect (ctrl+drag to clone).
portrait=Portrait
position=Position
posterPrint=Poster Print
preferences=Preferences
preview=Preview
previousPage=Previous Page
presentationMode=Presentation Mode
print=Print
printAllPages=Print All Pages
procEng=Proc. Eng.
project=Project
priority=Priority
processForHiringNewEmployee=Process for hiring a new employee
properties=Properties
publish=Publish
quickStart=Quick Start Video
rack=Rack
radial=Radial
radialTree=Radial Tree
readOnly=Read-only
reconnecting=Reconnecting
recentlyUpdated=Recently Updated
recentlyViewed=Recently Viewed
rectangle=Rectangle
redirectToNewApp=This file was created or modified in a newer version of this app. You will be redirected now.
realtimeTimeout=It looks like you've made a few changes while offline. We're sorry, these changes cannot be saved.
redo=Redo
refresh=Refresh
regularExpression=Regular Expression
relative=Relative
relativeUrlNotAllowed=Relative URL not allowed
rememberMe=Remember me
rememberThisSetting=Remember this setting
removeFormat=Clear Formatting
removeFromGroup=Remove from Group
removeIt=Remove {1}
removeWaypoint=Remove Waypoint
rename=Rename
renamed=Renamed
renameIt=Rename {1}
renaming=Renaming
replace=Replace
replaceIt={1} already exists. Do you want to replace it?
replaceExistingDrawing=Replace existing drawing
required=required
requirementDiagram=Requirement Diagram
reset=Reset
resetView=Reset View
resize=Resize
resizeLargeImages=Do you want to resize large images to make the application run faster?
retina=Retina
responsive=Responsive
restore=Restore
restoring=Restoring
retryingIn=Retrying in {1} second(s)
retryingLoad=Load failed. Retrying...
retryingLogin=Login time out. Retrying...
reverse=Reverse
revision=Revision
revisionHistory=Revision History
rhombus=Rhombus
right=Right
rightAlign=Right Align
rightToLeft=Right to left
rotate=Rotate
rotateTooltip=Click and drag to rotate, click to turn shape only by 90 degrees
rotation=Rotation
rounded=Rounded
save=Save
saveAndExit=Save & Exit
saveAs=Save As
saveAsXmlFile=Save as XML file?
saved=Saved
saveDiagramFirst=Please save the diagram first
saveDiagramsTo=Save diagrams to
saveLibrary403=Insufficient permissions to edit this library
saveLibrary500=There was an error while saving the library
saveLibraryReadOnly=Could not save library while read-only mode is active
saving=Saving
scratchpad=Scratchpad
scrollbars=Scrollbars
search=Search
searchShapes=Search Shapes
selectAll=Select All
selectionOnly=Selection Only
selectCard=Select Card
selectEdges=Select Edges
selectFile=Select File
selectFolder=Select Folder
selectFont=Select Font
selectNone=Select None
selectTemplate=Select Template
selectVertices=Select Vertices
sendBackward=Send Backward
sendMessage=Send
sendYourFeedback=Send your feedback
sequenceDiagram=Sequence Diagram
serviceUnavailableOrBlocked=Service unavailable or blocked
sessionExpired=Your session has expired. Please refresh the browser window.
sessionTimeoutOnSave=Your session has timed out and you have been disconnected from the Google Drive. Press OK to login and save.
setAsDefaultStyle=Set as Default Style
settings=Settings
shadow=Shadow
shape=Shape
shapes=Shapes
share=Share
shareCursor=Share Mouse Cursor
shareLink=Link for shared editing
sharingAvailable=Sharing available for Google Drive and OneDrive files.
saveItToGoogleDriveToCollaborate=You'll need to save "{1}" to Google Drive before you can collaborate.
saveToGoogleDrive=Save to Google Drive
sharp=Sharp
show=Show
showRemoteCursors=Show Remote Mouse Cursors
showStartScreen=Show Start Screen
sidebarTooltip=Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect.
signs=Signs
signOut=Sign out
simple=Simple
simpleArrow=Simple Arrow
simpleViewer=Simple Viewer
size=Size
sketch=Sketch
snapToGrid=Snap to Grid
solid=Solid
sourceSpacing=Source Spacing
south=South
software=Software
space=Space
spacing=Spacing
specialLink=Special Link
stateDiagram=State Diagram
standard=Standard
startDrawing=Start drawing
stopDrawing=Stop drawing
starting=Starting
straight=Straight
strikethrough=Strikethrough
strokeColor=Line Color
style=Style
subscript=Subscript
summary=Summary
superscript=Superscript
support=Support
swimlaneDiagram=Swimlane Diagram
sysml=SysML
tags=Tags
table=Table
tables=Tables
takeOver=Take Over
targetSpacing=Target Spacing
template=Template
templates=Templates
text=Text
textAlignment=Text Alignment
textOpacity=Text Opacity
theme=Theme
timeout=Timeout
title=Title
to=to
toBack=To Back
toFront=To Front
tooLargeUseDownload=Too large, use download instead.
toolbar=Toolbar
tooltips=Tooltips
top=Top
topAlign=Top Align
topLeft=Top Left
topRight=Top Right
transparent=Transparent
transparentBackground=Transparent Background
trello=Trello
tryAgain=Try again
tryOpeningViaThisPage=Try opening via this page
turn=Rotate shape only by 90°
type=Type
twitter=Twitter
uml=UML
unassigned=Unassigned
underline=Underline
undo=Undo
ungroup=Ungroup
unmerge=Unmerge
unsavedChanges=Unsaved changes
unsavedChangesClickHereToSave=Unsaved changes. Click here to save.
untitled=Untitled
untitledDiagram=Untitled Diagram
untitledLayer=Untitled Layer
untitledLibrary=Untitled Library
unknownError=Unknown error
updateFile=Update {1}
updatingDocument=Updating Document. Please wait...
updatingPreview=Updating Preview. Please wait...
updatingSelection=Updating Selection. Please wait...
upload=Upload
url=URL
useOffline=Use Offline
useRootFolder=Use root folder?
userManual=User Manual
vertical=Vertical
verticalFlow=Vertical Flow
verticalTree=Vertical Tree
view=View
viewerSettings=Viewer Settings
viewUrl=Link to view: {1}
voiceAssistant=Voice Assistant (beta)
warning=Warning
waypoints=Waypoints
west=West
where=Where
width=Width
wiki=Wiki
wordWrap=Word Wrap
writingDirection=Writing Direction
yes=Yes
yourEmailAddress=Your email address
zoom=Zoom
zoomIn=Zoom In
zoomOut=Zoom Out
basic=Basic
businessprocess=Business Processes
charts=Charts
engineering=Engineering
flowcharts=Flowcharts
gmdl=Material Design
mindmaps=Mindmaps
mockups=Mockups
networkdiagrams=Network Diagrams
nothingIsSelected=Nothing is selected
other=Other
softwaredesign=Software Design
venndiagrams=Venn Diagrams
webEmailOrOther=Web, email or any other internet address
webLink=Web Link
wireframes=Wireframes
property=Property
value=Value
showMore=Show More
showLess=Show Less
myDiagrams=My Diagrams
allDiagrams=All Diagrams
recentlyUsed=Recently used
listView=List view
gridView=Grid view
resultsFor=Results for '{1}'
oneDriveCharsNotAllowed=The following characters are not allowed: ~ " # % * : < > ? / \ { | }
oneDriveInvalidDeviceName=The specified device name is invalid
officeNotLoggedOD=You are not logged in to OneDrive. Please open draw.io task pane and login first.
officeSelectSingleDiag=Please select a single draw.io diagram only without other contents.
officeSelectDiag=Please select a draw.io diagram.
officeCannotFindDiagram=Cannot find a draw.io diagram in the selection
noDiagrams=No diagrams found
authFailed=Authentication failed
officeFailedAuthMsg=Unable to successfully authenticate user or authorize application.
convertingDiagramFailed=Converting diagram failed
officeCopyImgErrMsg=Due to some limitations in the host application, the image could not be inserted. Please manually copy the image then paste it to the document.
insertingImageFailed=Inserting image failed
officeCopyImgInst=Instructions: Right-click the image below. Select "Copy image" from the context menu. Then, in the document, right-click and select "Paste" from the context menu.
folderEmpty=Folder is empty
recent=Recent
sharedWithMe=Shared With Me
sharepointSites=Sharepoint Sites
errorFetchingFolder=Error fetching folder items
errorAuthOD=Error authenticating to OneDrive
officeMainHeader=Adds draw.io diagrams to your document.
officeStepsHeader=This add-in performs the following steps:
officeStep1=Connects to Microsoft OneDrive, Google Drive or your device.
officeStep2=Select a draw.io diagram.
officeStep3=Insert the diagram into the document.
officeAuthPopupInfo=Please complete the authentication in the pop-up window.
officeSelDiag=Select draw.io Diagram:
files=Files
shared=Shared
sharepoint=Sharepoint
officeManualUpdateInst=Instructions: Copy draw.io diagram from the document. Then, in the box below, right-click and select "Paste" from the context menu.
officeClickToEdit=Click icon to start editing:
pasteDiagram=Paste draw.io diagram here
connectOD=Connect to OneDrive
selectChildren=Select Children
selectSiblings=Select Siblings
selectParent=Select Parent
selectDescendants=Select Descendants
lastSaved=Last saved {1} ago
resolve=Resolve
reopen=Re-open
showResolved=Show Resolved
reply=Reply
objectNotFound=Object not found
reOpened=Re-opened
markedAsResolved=Marked as resolved
noCommentsFound=No comments found
comments=Comments
timeAgo={1} ago
confluenceCloud=Confluence Cloud
libraries=Libraries
confAnchor=Confluence Page Anchor
confTimeout=The connection has timed out
confSrvTakeTooLong=The server at {1} is taking too long to respond.
confCannotInsertNew=Cannot insert draw.io diagram to a new Confluence page
confSaveTry=Please save the page and try again.
confCannotGetID=Unable to determine page ID
confContactAdmin=Please contact your Confluence administrator.
readErr=Read Error
editingErr=Editing Error
confExtEditNotPossible=This diagram cannot be edited externally. Please try editing it while editing the page
confEditedExt=Diagram/Page edited externally
diagNotFound=Diagram Not Found
confEditedExtRefresh=Diagram/Page is edited externally. Please refresh the page.
confCannotEditDraftDelOrExt=Cannot edit diagrams in a draft page, diagram is deleted from the page, or diagram is edited externally. Please check the page.
retBack=Return back
confDiagNotPublished=The diagram does not belong to a published page
createdByDraw=Created by draw.io
filenameShort=Filename too short
invalidChars=Invalid characters
alreadyExst={1} already exists
draftReadErr=Draft Read Error
diagCantLoad=Diagram cannot be loaded
draftWriteErr=Draft Write Error
draftCantCreate=Draft could not be created
confDuplName=Duplicate diagram name detected. Please pick another name.
confSessionExpired=Looks like your session expired. Log in again to keep working.
login=Login
drawPrev=draw.io preview
drawDiag=draw.io diagram
invalidCallFnNotFound=Invalid Call: {1} not found
invalidCallErrOccured=Invalid Call: An error occurred, {1}
anonymous=Anonymous
confGotoPage=Go to containing page
showComments=Show Comments
confError=Error: {1}
gliffyImport=Gliffy Import
gliffyImportInst1=Click the "Start Import" button to import all Gliffy diagrams to draw.io.
gliffyImportInst2=Please note that the import procedure will take some time and the browser window must remain open until the import is completed.
startImport=Start Import
drawConfig=draw.io Configuration
customLib=Custom Libraries
customTemp=Custom Templates
pageIdsExp=Page IDs Export
drawReindex=draw.io re-indexing (beta)
working=Working
drawConfigNotFoundInst=draw.io Configuration Space (DRAWIOCONFIG) does not exist. This space is needed to store draw.io configuration files and custom libraries/templates.
createConfSp=Create Config Space
unexpErrRefresh=Unexpected error, please refresh the page and try again.
configJSONInst=Write draw.io JSON configuration in the editor below then click save. If you need help, please refer to
thisPage=this page
curCustLib=Current Custom Libraries
libName=Library Name
action1=Action
drawConfID=draw.io Config 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=For more details, please refer to
tempsPage=Templates page
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=Start Export
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=Diagram "{1}" is up to date.
confACheckPagesWDraw=Checking pages having draw.io diagrams.
confAErrOccured=An error occurred!
savedSucc=Saved successfully
confASaveFailedErr=Saving Failed (Unexpected Error)
character=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=Delete failed!
showID=Show ID
confAIncorrectLibFileType=Incorrect file type. Libraries should be XML files.
uploading=Uploading
confALibExist=This library already exists
confAUploadSucc=Uploaded successfully
confAUploadFailErr=Upload Failed (Unexpected Error)
hiResPreview=High Res Preview
officeNotLoggedGD=You are not logged in to Google Drive. Please open draw.io task pane and login first.
officePopupInfo=Please complete the process in the pop-up window.
pickODFile=Pick OneDrive File
createODFile=Create OneDrive File
pickGDriveFile=Pick Google Drive File
createGDriveFile=Create Google Drive File
pickDeviceFile=Pick Device File
vsdNoConfig="vsdurl" is not configured
ruler=Ruler
units=Units
points=Points
inches=Inches
millimeters=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=Macro Not Found
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=Importing diagram "{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=Org Chart Type
linear=Linear
hanger2=Hanger 2
hanger4=Hanger 4
fishbone1=Fishbone 1
fishbone2=Fishbone 2
1ColumnLeft=Single Column Left
1ColumnRight=Single Column Right
smart=Smart
parentChildSpacing=Parent Child Spacing
siblingSpacing=Sibling Spacing
confNoPermErr=Sorry, you don't have enough permissions to view this embedded diagram from page {1}
copyAsImage=Copy as Image
lucidImport=Lucidchart Import
lucidImportInst1=Click the "Start Import" button to import all Lucidchart diagrams.
installFirst=Please install {1} first
drawioChromeExt=draw.io Chrome Extension
loginFirstThen=Please login to {1} first, then {2}
errFetchDocList=Error: Couldn't fetch documents list
builtinPlugins=Built-in Plugins
extPlugins=External Plugins
backupFound=Backup file found
chromeOnly=This feature only works in Google Chrome
msgDeleted=This message has been deleted
confAErrFetchDrawList=Error fetching diagrams list. Some diagrams are skipped.
confAErrCheckDrawDiag=Cannot check diagram {1}
confAErrFetchPageList=Error fetching pages list
confADiagImportIncom={1} diagram "{2}" is imported partially and may have missing shapes
invalidSel=Invalid selection
diagNameEmptyErr=Diagram name cannot be empty
openDiagram=Open Diagram
newDiagram=New diagram
editable=Editable
confAReimportStarted=Re-import {1} diagrams started...
spaceFilter=Filter by spaces
curViewState=Current Viewer State
pageLayers=Page and Layers
customize=Customize
firstPage=First Page (All Layers)
curEditorState=Current Editor State
noAnchorsFound=No anchors found
attachment=Attachment
curDiagram=Current Diagram
recentDiags=Recent Diagrams
csvImport=CSV Import
chooseFile=Choose a file...
choose=Choose
gdriveFname=Google Drive filename
widthOfViewer=Width of the viewer (px)
heightOfViewer=Height of the viewer (px)
autoSetViewerSize=Automatically set the size of the viewer
thumbnail=Thumbnail
prevInDraw=Preview in draw.io
onedriveFname=OneDrive filename
diagFname=Diagram filename
diagUrl=Diagram URL
showDiag=Show Diagram
diagPreview=Diagram Preview
csvFileUrl=CSV File URL
generate=Generate
selectDiag2Insert=Please select a diagram to insert it.
errShowingDiag=Unexpected error. Cannot show diagram
noRecentDiags=No recent diagrams found
fetchingRecentFailed=Failed to fetch recent diagrams
useSrch2FindDiags=Use the search box to find draw.io diagrams
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=Unsupported file. Please check the specified URL
diagNotFoundChckUrl=Diagram not found or cannot be accessed. Please check the specified URL
csvNotFoundChckUrl=CSV file not found or cannot be accessed. Please check the specified URL
cantReadUpload=Cannot read the uploaded diagram
select=Select
errCantGetIdType=Unexpected Error: Cannot get content id or type.
errGAuthWinBlocked=Error: Google Authentication window blocked
authDrawAccess=Authorize draw.io to access {1}
connTimeout=The connection has timed out
errAuthSrvc=Error authenticating to {1}
plsSelectFile=Please select a file
mustBgtZ={1} must be greater than zero
cantLoadPrev=Cannot load file preview.
errAccessFile=Error: Access Denied. You do not have permission to access "{1}".
noPrevAvail=No preview is available.
personalAccNotSup=Personal accounts are not supported.
errSavingTryLater=Error occurred during saving, please try again later.
plsEnterFld=Please enter {1}
invalidDiagUrl=Invalid Diagram URL
unsupportedVsdx=Unsupported vsdx file
unsupportedImg=Unsupported image file
unsupportedFormat=Unsupported file format
plsSelectSingleFile=Please select a single file only
attCorrupt=Attachment file "{1}" is corrupted
loadAttFailed=Failed to load attachment "{1}"
embedDrawDiag=Embed draw.io Diagram
addDiagram=Add Diagram
embedDiagram=Embed Diagram
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=Processing drafts
updatingDrafts=Updating drafts
updateDrafts=Update drafts
notifications=Notifications
drawioImp=draw.io Import
confALibsImp=Importing draw.io Libraries
confALibsImpFailed=Importing {1} library failed
contributors=Contributors
drawDiagrams=draw.io Diagrams
errFileNotFoundOrNoPer=Error: Access Denied. File not found or you do not have permission to access "{1}" on {2}.
confACheckPagesWEmbed=Checking pages having embedded draw.io diagrams.
confADelBrokenEmbedDiagLnk=Removing broken embedded diagram links
replaceWith=Replace with
replaceAll=Replace All
confASkipDiagModified=Skipped "{1}" as it was modified after initial import
replFind=Replace/Find
matchesRepl={1} matches replaced
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=Last modified on
searchResults=Search Results
showAllTemps=Show all templates
notionToken=Notion Token
selectDB=Select Database
noDBs=No Databases
diagramEdited={1} diagram "{2}" edited
confDraftPermissionErr=Draft cannot be written. Do you have attachment write/read permission on this page?
confDraftTooBigErr=Draft size is too large. Pease check "Attachment Maximum Size" of "Attachment Settings" in Confluence Configuration?
owner=Owner
repository=Repository
branch=Branch
meters=Meters
teamsNoEditingMsg=Editor functionality is only available in Desktop environment (in MS Teams App or a web browser)
contactOwner=Contact Owner
viewerOnlyMsg=You cannot edit the diagrams in the mobile platform, please use the desktop client or a web browser.
website=Website
check4Updates=Check for updates
attWriteFailedRetry={1}: Attachment write failed, trying again in {2} seconds...
confPartialPageList=We couldn't fetch all pages due to an error in Confluence. Continuing using {1} pages only.
spellCheck=Spell checker
noChange=No Change
lblToSvg=Convert labels to SVG
txtSettings=Text Settings
LinksLost=Links will be lost
arcSize=Arc Size
editConnectionPoints=Edit Connection Points
notInOffline=Not supported while offline
notInDesktop=Not supported in Desktop App
confConfigSpaceArchived=draw.io Configuration space (DRAWIOCONFIG) is archived. Please restore it first.
confACleanOldVerStarted=Cleaning old diagram draft versions started
confACleanOldVerDone=Cleaning old diagram draft versions finished
confACleaningFile=Cleaning diagram draft "{1}" old versions
confAFileCleaned=Cleaning diagram draft "{1}" done
confAFileCleanFailed=Cleaning diagram draft "{1}" failed
confACleanOnly=Clean Diagram Drafts Only
brush=Brush
openDevTools=Open Developer Tools
autoBkp=Automatic Backup
confAIgnoreCollectErr=Ignore collecting current pages errors
drafts=Drafts
draftSaveInt=Draft save interval [sec] (0 to disable)
pluginsDisabled=External plugins disabled.
extExpNotConfigured=External image service is not configured
pathFilename=Path/Filename
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.
dataSourcePanel=Data Binding
basicComponents=Basic Components
chartComponents=Chart Components
controlComponents=Control Components
default=Default
lock=lock
unlock=unlock
dataDynamicEffect=Data dynamic effect
flicker=Flicker
showHide=Show/Hide
actRotate=Rotate
watersEffect=Waters effect
formType=Type
networkedDevices=Networked Devices
productScen=Product/Scenario
statusSettings=Status Settings
variableImage=Variable image
lift=Lift
pressDown=Press down
singleClick=Single click
doubleCLick=Double click
operationPassword=Operation operationPassword
dataSource=Data source
dataInteraction=Data interaction
display=Display
actHidden=Hidden
flow=Flow
stop=Stop
actOpen=Open
actClose=Close
openLink=Open link
openPage=Open page
variableAssignment=Variable assignment
paramsSettings=Parameter settings
attrDistrbution=Attribute distribution
deviceType=Device type
product=Product
organization=Organization
device=Device
attr=Attribute
deviceName=Device name
localImage=Local image
libraryGraphics=Library graphics
min=minimum value
max=Maximum value
averageValue=Average value
sum=Summation
count=Count
empty=Empty
label=Label
velocityOfFlow=Velocity of flow
defaultImage=Default image
queryTime=Query time
autoScroll=Automatic scrolling
residenceTime=Residence time
pollTime=Poll time
dayAgo=Day ago
second=Second
videoStreaming=Video streaming
videoAddress=Video address
channelNumber=Channel number
deviceId=Device id
playProtocol=Play protocol
videoBinding=Video binding
event=Event
action=Action
oneOrTwo=Unidirectional/Bidirectional
issueValue=Issue value
clickIssue=Click to perform command editing
issueFailCommand=Incorrect command issued
issueCommand=Issue command
clickEdit=Click to edit
editCommand=Editing commands
itIsRequired=It is a required field
serviceCommand=Service command
placeEnterServiceCommand=Please enter ASCII or HEX service command
flowMeterConfig=Flow meter configuration
inputText=Please enter
chooseText=Please choose
actionText=Action
createMessageText=Create a message
delText=Delete
state=Status
displayImage=Display Images
placeDataSource=Please bind the data source
commandIssuedOk=Command issued successfully
loadingText=Loading
linkText=Link
commandWay=Command issuance method
command=Command
transportType=Transport Protocol
service=Service
callMethod=Call Method
oneWay=One way
twoWay=Two way
custom=Custom
customCommand=Custom commands
serviceCall=Service call
displayType=Display type
dataType=Data type
cycleTime=Cycle time
aggMethod=Polymerization method
intervalTime=Interval time
unitText=Unit
realTime=Real time
history=history
customDistributionValue=Custom distribution value
isOkOperation=Are you sure about this operation ?
ranageValue=The value range is within
between=Between
dataLengthThan=The data length should be less than
background=Background color
color1=Color 1
color2=Color 2
color3=Color 3
noData=There is currently no data available
operationSuccessful=Operation successful
passwordHelp=Operation password: Click event interaction needs to be completed.
placeOperPassword=Please enter the operation password
enterMaxLessMin=The maximum value entered is less than the minimum value
flowValue100=The smaller the flow rate value, the faster the flow rate. The maximum value is 100, and the minimum value is 0.
passwordFail=Incorrect operation password
variable=Variable
waters=Waters
digitalClock=Digital clock
alarmList=Alarm list
video=Video
switch=Switch
lineChart=Line chart
dashboard=Dashboard
histogram=Histogram
circularFlow=Flow meter (circular)
squareFlow=Flow meter (square)
thermometer=Thermometer
button=Button
piping=Piping
yShaped=Y-shaped joint
tee=Tee
fourWayConnector=Four way connector
diagonalUp=Diagonal tee up
diagonalLower=Diagonal three-way lower
obliqueCross=Oblique cross
obliqueBend=Oblique Bend
straightTube=Straight tube
conversionJoint=Conversion joint
engine=Engine
3dEngine=3-D engine
servoMotor=servo motor
actuator=Actuator
reducer=Reducer
brakeMotor=Brake motor
industrialEngines=Industrial standard engines
brushlessMotor=Brushless Motor
intelligentMotor=Intelligent motor
steppingMotor=Stepping motor driver
airBrake=Air brake
simpleMotor=Simple motor
shaftEncoder=Shaft encoder
explosionMotor=explosion-proof motor
factoryFacilities=Factory Facilities
pulpFactory=Pulp Factory
processingFactory=Processing Factory
crane=Crane
refinery=Refinery
barbedWireMesh=Barbed wire mesh
ladder=Ladder
floorOffice=Floor Office
floorPlywood=Floor Plywood
staircase=Staircase
lightSmoke=Light Smoke
chimney=Chimney
productionPLatform=Production Platform
productionEquipment=Production Equipment
oilDrilling=Oil drilling rig
BrickChimney=Brick chimney
BrickChimneyWith=Brick chimney with frame
emergencyDevice=Emergency sprinkler device
redAndWhite=Red and White Chimney
greenBarbed=Green barbed wire mesh
greenWireMesh=Green wire mesh
channelLadder=Channel Ladder
pyramidCOmmunication=Pyramid Communication Tower
steelGrating=Steel grating
drillingEquipmen=Drilling equipment
wireMesh=Wire mesh
protectiveScreen=Protective screen
blackSmoke=Black Smoke
fan=Fan
filter=Filter
flowmeter=Flow meter
flowmeter1=Pressure
flowmeter2=Micro computer controller
flowmeter3=Exhaust pressure
flowmeter4=Intelligent Electromagnetic Flowmeter
flowmeter5=Intelligent Coriolis Flowmeter 1
flowmeter6=Intelligent Coriolis Flowmeter 2
flowmeter7=Analog output flow sensor
flowmeter8=Cyclonic flow meter
flowmeter9=Flow element
flowmeter10=Flow pipe
flowmeter11=Traffic Accumulator
flowmeter12=Flow meter
flowmeter13=Turbine flow meter
flowmeter14=Temperature
flowmeter15=Thermal mass flow meter
flowmeter16=Electromagnetic flowmeter 1
flowmeter17=Electromagnetic flowmeter 2
flowmeter18=Electromagnetic flowmeter 3
flowmeter19=Simple flow controller
flowmeter20=Simple flow controller 2
flowmeter21=Cone flowmeter
foodProcessing=Food processing
foodProcessing1=Stainless steel reducer 1
foodProcessing2=Stainless steel reducer 2
foodProcessing3=Stainless steel mixer (off)
foodProcessing4=Stainless steel mixer (on)
foodProcessing5=Stainless steel hopper
foodProcessing6=Cross band separator
foodProcessing7=Internal mixer emulsifier
foodProcessing8=Separators
foodProcessing9=Nitrogen generator
foodProcessing10=Sanitary inline mixer
foodProcessing11=Sanitary heater
foodProcessing12=Sanitary delivery pump
foodProcessing13=Fermentation
foodProcessing14=Beer bottle
foodProcessing15=Beer can
foodProcessing16=Curing furnace system
foodProcessing17=Shell and tube heat exchangers
foodProcessing18=Bottle cardboard
foodProcessing19=Micro flow meter
foodProcessing20=Tray sealing machine
foodProcessing21=Batch fluidized bed processors
foodProcessing22=Stirrer
foodProcessing23=Standard ribbon mixer
foodProcessing24=Slurry iron remover
foodProcessing25=Concentrate dispenser
foodProcessing26=Turbo emulsifier
foodProcessing27=Quenching and tempering system
foodProcessing28=Mixing funnel
foodProcessing29=Clean the air filter
foodProcessing30=Vacuum filling machine
foodProcessing31=Vacuum stirring mixer
foodProcessing32=Vacuum system
foodProcessing33=Vertical mixer
foodProcessing34=Filter machine
foodProcessing35=The tubes in a heat exchanger
foodProcessing36=Powder liquid mixer
foodProcessing37=Viscometer
foodProcessing38=Thin necked bottle
foodProcessing39=Thin necked bottle 2
foodProcessing40=Colloidal mill
foodProcessing41=Grain Warehouse 1
foodProcessing42=Grain Warehouse 2
foodProcessing43=Ultra fine soybean processing system
foodProcessing44=Filtering system
foodProcessing45=Filtering device
foodProcessing46=Food processing
foodProcessing47=Drum magnet
heater=Heater
heater1=Heater
heater2=Batch Oven
heater3=Heat exchanger
heater4=Heat exchanger 2,
heater5=Heat exchanger 3
heater6=Heat exchanger 4
heater7=Flame boiler
heater8=Heat recovery boiler
heater9=Oil fired boilers
heater10=Coal fired boilers
heater11=Evaporator
heater12=Steam mixer
heater13=Steam mixer 2
heater14=Steam boiler
heater15=Superheater
heater16=Boiler
heater17=Boiler 2
industry=Industry
industry1=Three stage high-speed shearing machine
industry2=Dimethoxymethane metering tank
industry3=The conveyor belt
industry4=Warehouse division
industry5=Shear machine
industry6=Trunk pipelines
industry7=Dry yeast powder silo
industry8=Finished cans
industry9=Maturity
industry10=Silo
industry11=Rotating liquid separator
industry12=Intelligent control cycle
industry13=Unit
industry14=Mother liquor tank
industry15=Mother liquor tank 2
industry16=Asphalt mixture tank
industry17=Asphalt expansion tank
industry18=Leakage bucket
industry19=Smoke pipe
industry20=Turbo
industry21=Liquid slag pool
industry22=Funnel
industry23=Sintering machine
industry24=Animal manure tank
industry25=Lime powder silo
industry26=Wine tank water
industry27=Efficient steam turbine
instrument=Instrument
lamp=Lamp
plant=Plant
powerSupply=Power supply
powerSupply1=Three phase switch box
powerSupply2=Uninterruptible power supply
powerSupply3=Communication driven
powerSupply4=AC Drive 2
powerSupply5=Instrument
powerSupply6=Heating unit
powerSupply7=Power Monitor
powerSupply8=Semiconductor controlled rectifier assembly
powerSupply9=Double line electric poles
powerSupply10=Power plants
powerSupply11=Generator
powerSupply12=Generator 2
powerSupply13=Transformer
powerSupply14=Transformer monitor
powerSupply15=Transformer components
powerSupply16=Variable speed transmission
powerSupply17=Base
powerSupply18=Sleeves
powerSupply19=Industrial wind turbine 1
powerSupply20=Industrial Wind Turbine 2
powerSupply21=Industrial wind turbine 3
powerSupply22=Electric poles with wires
powerSupply23=Protective gear device
powerSupply24=Control system
powerSupply25=Socket
powerSupply26=Rectifier 1
powerSupply27=Rectifier 2
powerSupply28=Circuit breakers
powerSupply29=Diesel generator
powerSupply30=Diesel supports UPS system
powerSupply31=A nuclear reactor
powerSupply32=Nuclear power plants
powerSupply33=Biogas power generation
powerSupply34=Temperature measuring rheostat
powerSupply35=Gas turbine
powerSupply36=Porcelain insulator
powerSupply37=Electronic instruments
powerSupply38=Surge arresters
powerSupply39=Power board
powerSupply40=Electric pole 1
powerSupply41=Electric pole 2
powerSupply42=Electric pole 3
powerSupply43=Electric pole 4
powerSupply44=Electric pole 5
powerSupply45=Cable distribution box
powerSupply46=Electrolyzers
powerSupply47=DC power supply
powerSupply48=Vacuum switch
powerSupply49=Simple Substation
powerSupply50=Insulators
powerSupply51=Starter
powerSupply52=Vehicle batteries
powerSupply53=Transmission Tower
powerSupply54=Recloser 2
powerSupply55=Coincider
powerSupply56=Concentrated Solar Power Plant 1
powerSupply57=Concentrated Solar Power Plant 2
powerSupply58=Motor driven
processCooling=Process cooling
cooler=Cooler
coolingTower=Cooling tower
coolingGroup=Cooling tower group
coldGenerator=Cold generator cooler
reactionProduct=Reaction product cooler
englineDriven=Engine driven cooler
absorptionCooler=Absorption cooler
largePortableCooler=Large portable cooler
naturalgas=Natural gas refrigeration system
waterCooled=Water-cooled cooler
temControl=Temperature control device
simpleCooling=simpleCooling
comfortCooling=Comfort cooling tower
explosionProof=Explosion proof industrial refrigerated freezer
processHeating=Process heating
processHeating1='Conveyor belt furnace
processHeating2=Low emission burner
processHeating3=Batch furnace
processHeating4=Tubular condenser
processHeating5=Rotary air preheater
processHeating6=High power burner
processHeating7=Solar collectors
processHeating8=Solar collector 2
processHeating9=Heat transfer oil heater 2
processHeating10=Heat transfer oil heater
processHeating11=Heat transfer oil heating system
processHeating12=Drying equipment
processHeating13=Drying equipment 2
processHeating14=Circulating heater
processHeating15=Heat exchange system
processHeating16=Rotating dryer
processHeating17=Flameless thermal oxidizer
processHeating18=Water heating device
processHeating19=Immersion heater
processHeating20=Drying Tower
processHeating21=Drying machine
processHeating22=Drying equipment
processHeating23=Heat exchanger 1
processHeating24=Heat exchanger 2
processHeating25=Heat exchanger 3
processHeating26=Heat exchanger 4
processHeating27=Heat exchanger 5
processHeating28=Heat exchanger 6
processHeating29=Heat exchanger 7
processHeating30=Heat exchanger 8
processHeating31=Heat exchanger 9
processHeating32=Heat exchange system
processHeating33=Heat recovery system 1
processHeating34=Heat Recovery System 2
processHeating35=Heat Recovery System 3
processHeating36=Hot fluid heater
processHeating37=Electric heater
processHeating38=Calender
processHeating39=Air preheater
processHeating40=Air preheater 2
processHeating41=Vertical preheater
processHeating42=Simple condenser
processHeating43=Simple heat exchanger
processHeating44=Expansion bend pipe
processHeating45=Evaporator
processHeating46=Steam Generator 1
processHeating47=Steam Generator 2
processHeating48=Steam Generator 3
processHeating49=Steam Generator 4
processHeating50=Steam mixer
processHeating51=Steam trap valve
processHeating52=Distillation equipment
processHeating53=Compensator 1
processHeating54=Compensator 2
processHeating55=Compensator 3
processHeating56=Superheater
processHeating57=Process heater
processHeating58=Yeast drying tower
processHeating59=Indirect high water heater
processHeating60=Preheater
processHeating61=Food insulated box
pump=Pump
sewage=Sewage disposal
sewage1=Central water purifier
sewage2=Central water softener
sewage3=Main clarifier
sewage4=Low speed ventilation wastewater treatment
sewage5=Reservoir
sewage6=Cooling Tower Group
sewage7=Water purifier
sewage8=Water purification system
sewage9=Water Purification System 2
sewage10=Oxygen concentrator
sewage11=Chlorinator
sewage12=Chemical feeder
sewage13=Pressing and filtering machine
sewage14=Anaerobic sequencing batch reactor
sewage15=Reverse osmosis host
sewage16=Absorber
sewage17=Spray nozzle
sewage18=Dome water tank
sewage19=Ground
sewage20=Processing Pool
sewage21=Processing tank
sewage22=The Great Dragonfly
sewage23=Container
sewage24=Small bottle filling machine
sewage25=Belt filter press
sewage26=Clarifier with cans
sewage27=Drying device
sewage28=Wastewater grinder
sewage29=Wastewater evaporator
sewage30=Diversion Canal
sewage31=Drainage pool
sewage32=Drainage system
sewage33=Slant plate clarifier
sewage34=Rotating liquid separator
sewage35=Aeration tank 1
sewage36=Aeration tank 2
sewage37=Aerated digestion tank 1
sewage38=Aerated digestion tank 2
sewage39=Plate clarifier
sewage40=Grille
sewage41=Paddle dryer
sewage42=Civil tap water
sewage43=Gas treatment
sewage44=Water treatment plant
sewage45=Water treatment pool (top view)
sewage46=Water treatment system
sewage47=Water treatment tank
sewage48=Canal
sewage49=Hydrolysis sedimentation tank
sewage50=Hydrolysis acidification tank
sewage51=Faucet
sewage52=Pond
sewage53=Sewage tank bubble diffuser
sewage54=Sewage tank
sewage55=Sludge Pond
sewage56=Sludge concentration tank
sewage57=Sludge digestion tank
sewage58=Sedimentation tank 2
sewage59=Sedimentation tank
sewage60=Sedimentation tank
sewage61=Asphalt filter
sewage62=Oil water separation and recovery device
sewage63=Oil water separator 1
sewage64=Oil water separator 2
sewage65=Fuel tank digestion tank
sewage66=Washing water treatment and recycling system
sewage67=Scrubber equipment
sewage68=Flow valve
sewage69=Floating oil recovery device
sewage70=Bathtub
sewage71=Digestive pool
sewage72=Wet dust collector
sewage73=Dissolved air flotation device
sewage74=Solution feeder
sewage75=Water filter
sewage76=Filter membrane
sewage77=Submersible mixer
sewage78=Clarifier 1
sewage79=Clarifier 2
sewage80=Clarifiers and concentrators
sewage81=Clarifier (Side)
sewage82=Filling machine
sewage83=Ash treatment tank
sewage84=Incinerator
sewage85=Spherical storage tank 1
sewage86=Spherical storage tank 2
sewage87=Biological reaction tank
sewage88=Biological treatment equipment
sewage89=Electric valve gate (closed)
sewage90=Electric valve gate (open)
sewage91=Vacuum filter
sewage92=Carbon absorber
sewage93=Air diffusion device
sewage94=Sieve
sewage95=Simple evaporator
sewage96=Simple high-level slot
sewage97=Fine filter
sewage98=Tightly coupled self priming pump
sewage99=Flocculator
sewage100= Polymer injection device
sewage101= Polymer mixing device
sewage102= Evaporator
sewage103= Evaporation device
sewage104= Reservoir
sewage105= Blue filter
sewage106= Screw drive
sewage107= Bag filter
sewage108= Luxury vertical pipeline machine
sewage109= Ultra fine screening machine
sewage110= Drum thickener
sewage111= Filter 2
sewage112= Filter 3
sewage113= Filter 4
sewage114= Filter 5
sewage115= Filter 6
sewage116= Filter
sewage117= Filter housing
sewage118= Gravity belt mechanical concentrator
sewage119= Explosion proof maintenance
sewage120= Pre filter
sewage121= High level slot 1
sewage122= High level slot 2
sewage123= High level slot 3
sewage124= High level slot 4
sewage125= High slot 5
sewage126= Drum filter
sink=Sink
sink1=5 gallon bucket
sink2=Stainless steel cylindrical storage tank
sink3=Ethanol storage
sink4=Product
sink5=Chamber type pump
sink6=Insulation tank
sink7=Air storage tank
sink8=Tank 1
sink9=Tank 10
sink10=Tank 11
sink11=Tank 12
sink12=Tank 13
sink13=Tank 14
sink14=Tank 15
sink15=Tank 16
sink16=Tank 2
sink17=Tank 3
sink18=Tank 4
sink19=Tank 5
sink20=Tank 6
sink21=Tank 7
sink22=Tank 8
sink23=Tank 9
sink24=Storage tanks
sink25=Tank Support 1
sink26=Tank Support 2
sink27=Tank Group
sink28=Smooth Silo
sink29=Section storage tank
sink30=A very smooth piggy bank
sink31=Pressure vessels
sink32=Raw water tank
sink33=Reactor 1
sink34=Reactor 2
sink35=Reactor 3
sink36=Reactor 4
sink37=Reactor tank
sink38=Homogeneous storage tanks
sink39=Underground storage tanks
sink40=Large conical bottom polyethylene storage tank
sink41=Storage Device 1
sink42=Storage Device 2
sink43=Storage Device 3
sink44=Storage Device 4
sink45=Domestic hot water storage tanks
sink46=Container
sink47=Reactor with stirrer
sink48=Reinforced storage tank with mixer
sink49=Storage tanks with ladders
sink50=Polyethylene storage tank with mixer
sink51=Reactor with hatch and ladder
sink52=Storage tanks with rivets and ladders
sink53=Tank with rivets
sink54=Flat container 1
sink55=Flat container 2
sink56=Flat container 3
sink57=Flat container 4
sink58=Flat container 5
sink59=Flat container 6
sink60=Flat container 7
sink61=Mixing tank
sink62=Hopper
sink63=Daily melt trough
sink64=Temporary storage tank
sink65=A storage tank with double supporting feet
sink66=A circular reactor with legs
sink67=A pond with plants
sink68=A silo with a vertical ladder
sink69=Savings with hatches
sink70=Silos with spiral ladders
sink71=Spherical storage tanks with rivets
sink72=Bucket
sink73=Elliptical bulk storage tanks
sink74=Molded polyethylene tank
sink75=Cylinder
sink76=Pond
sink77=Digestive reaction tank
sink78=Liquid storage drum
sink79=Hydraulic pneumatic tank
sink80=Heat exchanger
sink81=Independent storage tanks
sink82=Glass striped storage tank
sink83=Spherical storage tank
sink84=Domestic hot water tank
sink85=Stabilizing tank
sink86=Simple Tank 1
sink87=Simple Tank 2
sink88=Simple Tank 3
sink89=Simple Tank 4
sink90=Simple Tank 5
sink91=Simple Tank System
sink92=Simple reactor
sink93=Simple processing tank
sink94=Powder storage tank
sink95=Green container
sink96=Green oil cylinder
sink97=Corrosion resistant tank
sink98=Polyethylene storage tanks
sink99=Polyethylene storage tank 2
sink100=Polyethylene chemical mixing tank
sink101=Polyethylene mixing and filling tank
sink102=Hatch
sink103=Bolt 1
sink104=Bolt 2
sink105=Dosing pool
sink106=Brewing Pot
sink107=Drum groove
valve=Valve
ashDischarge=Ash discharge valve
twoWayValve=Two-way valve
verticalOneWay=Vertical one-way valve
verticalControl=Vertical control valve
plasticSwing=Plastic swing check valve
pinchValve=Pinch calve
safetyValve=Safety valve
manualValve=Manual valve
controlValve=Control valve
rotaryValve=Rotary valve
horizontalValve=Horizontal one-way valve
horizontalControlValve=Horizontal control valve
flangeControlValve=Flange control valve
ballValve=Ball valve
electricValve=Electric valve
air=Air
selectImage=Image select
clickDownload=Click upload
clickOrDragUpload=Click Upload or drag Upload
uploadDesc=The image format can be png, jpg(jpeg), gif, and the size cannot exceed 5M
intervalSecond=Second
intervalMinute=Minute
intervalHour=Hour
intervalDay=Day
chooseDevice=Please select a device
startDate=Start date
endDate=End date
accessToken=Access token
pleaseInputAccessToken=Please enter the access token
standardSize=Recommended size
time=Time
CLEARED_UNACK=Clear unacknowledged
ACTIVE_UNACK=Activation unconfirmed
CLEARED_ACK=Clear confirmed
ACTIVE_ACK=Activation confirmed
exampleDevice=Example device
clockSunday=Sunday
clockMonday=Monday
clockTuesday=Tuesday
clockWednesday=Wednesday
clockThursday=Thursday
clockFriday=Friday
clockSaturday=Saturday
clockYear=Year
clockMonth=Month
clockDay=Day