Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dia_i18n.txt « resources « webapp « main « src - github.com/jgraph/drawio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 211c54a4df59b7015f642b0fab0f774807de23a9 (plain)
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
# *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=aboutDrawio
accessDenied=accessDenied
action=action
actualSize=actualSize
add=add
addAccount=addAccount
addedFile=addedFile
addImages=addImages
addImageUrl=addImageUrl
addLayer=addLayer
addProperty=addProperty
address=address
addToExistingDrawing=addToExistingDrawing
addWaypoint=addWaypoint
adjustTo=adjustTo
advanced=advanced
align=align
alignment=alignment
allChangesLost=allChangesLost
allPages=allPages
allProjects=allProjects
allSpaces=allSpaces
allTags=allTags
anchor=anchor
android=android
angle=angle
arc=arc
areYouSure=areYouSure
ensureDataSaved=ensureDataSaved
allChangesSaved=allChangesSaved
allChangesSavedInDrive=allChangesSavedInDrive
allowPopups=allowPopups
allowRelativeUrl=allowRelativeUrl
alreadyConnected=alreadyConnected
apply=apply
archiMate21=archiMate21
arrange=arrange
arrow=arrow
arrows=arrows
asNew=asNew
atlas=atlas
author=author
authorizationRequired=authorizationRequired
authorizeThisAppIn=authorizeThisAppIn
authorize=authorize
authorizing=authorizing
automatic=automatic
autosave=autosave
autosize=autosize
attachments=attachments
aws=aws
aws3d=aws3d
azure=azure
back=back
background=background
backgroundColor=backgroundColor
backgroundImage=backgroundImage
basic=basic
beta=beta
blankDrawing=blankDrawing
blankDiagram=blankDiagram
block=block
blockquote=blockquote
blog=blog
bold=bold
bootstrap=bootstrap
border=border
borderColor=borderColor
borderWidth=borderWidth
bottom=bottom
bottomAlign=bottomAlign
bottomLeft=bottomLeft
bottomRight=bottomRight
bpmn=bpmn
bringForward=bringForward
browser=browser
bulletedList=bulletedList
business=business
busy=busy
cabinets=cabinets
cancel=cancel
center=center
cannotLoad=cannotLoad
cannotLogin=cannotLogin
cannotOpenFile=cannotOpenFile
change=change
changeOrientation=changeOrientation
changeUser=changeUser
changeStorage=changeStorage
changesNotSaved=changesNotSaved
classDiagram=classDiagram
userJoined=userJoined
userLeft=userLeft
chatWindowTitle=chatWindowTitle
chooseAnOption=chooseAnOption
chromeApp=chromeApp
collaborativeEditingNotice=collaborativeEditingNotice
compare=compare
compressed=compressed
commitMessage=commitMessage
configLinkWarn=configLinkWarn
configLinkConfirm=configLinkConfirm
container=container
csv=csv
dark=dark
diagramXmlDesc=diagramXmlDesc
diagramHtmlDesc=diagramHtmlDesc
diagramPngDesc=diagramPngDesc
diagramSvgDesc=diagramSvgDesc
didYouMeanToExportToPdf=didYouMeanToExportToPdf
draftFound=draftFound
draftRevisionMismatch=draftRevisionMismatch
selectDraft=selectDraft
dragAndDropNotSupported=dragAndDropNotSupported
dropboxCharsNotAllowed=dropboxCharsNotAllowed
check=check
checksum=checksum
circle=circle
cisco=cisco
classic=classic
clearDefaultStyle=clearDefaultStyle
clearWaypoints=clearWaypoints
clipart=clipart
close=close
closingFile=closingFile
realtimeCollaboration=realtimeCollaboration
collaborator=collaborator
collaborators=collaborators
collapse=collapse
collapseExpand=collapseExpand
collapse-expand=collapse-expand
collapsible=collapsible
comic=comic
comment=comment
commentsNotes=commentsNotes
compress=compress
configuration=configuration
connect=connect
connecting=connecting
connectWithDrive=connectWithDrive
connection=connection
connectionArrows=connectionArrows
connectionPoints=connectionPoints
constrainProportions=constrainProportions
containsValidationErrors=containsValidationErrors
copiedToClipboard=copiedToClipboard
copy=copy
copyConnect=copyConnect
copyCreated=copyCreated
copyData=copyData
copyOf=copyOf
copyOfDrawing=copyOfDrawing
copySize=copySize
copyStyle=copyStyle
create=create
createNewDiagram=createNewDiagram
createRevision=createRevision
createShape=createShape
crop=crop
curved=curved
custom=custom
current=current
currentPage=currentPage
cut=cut
dashed=dashed
decideLater=decideLater
default=default
delete=delete
deleteColumn=deleteColumn
deleteLibrary401=deleteLibrary401
deleteLibrary404=deleteLibrary404
deleteLibrary500=deleteLibrary500
deleteLibraryConfirm=deleteLibraryConfirm
deleteRow=deleteRow
description=description
device=device
diagram=diagram
diagramContent=diagramContent
diagramLocked=diagramLocked
diagramLockedBySince=diagramLockedBySince
diagramName=diagramName
diagramIsPublic=diagramIsPublic
diagramIsNotPublic=diagramIsNotPublic
diamond=diamond
diamondThin=diamondThin
didYouKnow=didYouKnow
direction=direction
discard=discard
discardChangesAndReconnect=discardChangesAndReconnect
googleDriveMissingClickHere=googleDriveMissingClickHere
discardChanges=discardChanges
disconnected=disconnected
distribute=distribute
done=done
doNotShowAgain=doNotShowAgain
dotted=dotted
doubleClickOrientation=doubleClickOrientation
doubleClickTooltip=doubleClickTooltip
doubleClickChangeProperty=doubleClickChangeProperty
download=download
downloadDesktop=downloadDesktop
downloadAs=downloadAs
clickHereToSave=clickHereToSave
dpi=dpi
draftDiscarded=draftDiscarded
draftSaved=draftSaved
dragElementsHere=dragElementsHere
dragImagesHere=dragImagesHere
dragUrlsHere=dragUrlsHere
draw.io=draw.io
drawing=drawing
drawingEmpty=drawingEmpty
drawingTooLarge=drawingTooLarge
drawioForWork=drawioForWork
dropbox=dropbox
duplicate=duplicate
duplicateIt=duplicateIt
divider=divider
dx=dx
dy=dy
east=east
edit=edit
editData=editData
editDiagram=editDiagram
editGeometry=editGeometry
editImage=editImage
editImageUrl=editImageUrl
editLink=editLink
editShape=editShape
editStyle=editStyle
editText=editText
editTooltip=editTooltip
glass=glass
googleImages=googleImages
imageSearch=imageSearch
eip=eip
embed=embed
embedFonts=embedFonts
embedImages=embedImages
mainEmbedNotice=mainEmbedNotice
electrical=electrical
ellipse=ellipse
embedNotice=embedNotice
enterGroup=enterGroup
enterName=enterName
enterPropertyName=enterPropertyName
enterValue=enterValue
entityRelation=entityRelation
entityRelationshipDiagram=entityRelationshipDiagram
error=error
errorDeletingFile=errorDeletingFile
errorLoadingFile=errorLoadingFile
errorRenamingFile=errorRenamingFile
errorRenamingFileNotFound=errorRenamingFileNotFound
errorRenamingFileForbidden=errorRenamingFileForbidden
errorSavingDraft=errorSavingDraft
errorSavingFile=errorSavingFile
errorSavingFileUnknown=errorSavingFileUnknown
errorSavingFileForbidden=errorSavingFileForbidden
errorSavingFileNameConflict=errorSavingFileNameConflict
errorSavingFileNotFound=errorSavingFileNotFound
errorSavingFileReadOnlyMode=errorSavingFileReadOnlyMode
errorSavingFileSessionTimeout=errorSavingFileSessionTimeout
errorSendingFeedback=errorSendingFeedback
errorUpdatingPreview=errorUpdatingPreview
exit=exit
exitGroup=exitGroup
expand=expand
export=export
exporting=exporting
exportAs=exportAs
exportOptionsDisabled=exportOptionsDisabled
exportOptionsDisabledDetails=exportOptionsDisabledDetails
externalChanges=externalChanges
extras=extras
facebook=facebook
failedToSaveTryReconnect=failedToSaveTryReconnect
featureRequest=featureRequest
feedback=feedback
feedbackSent=feedbackSent
floorplans=floorplans
file=file
fileChangedOverwriteDialog=fileChangedOverwriteDialog
fileChangedSyncDialog=fileChangedSyncDialog
fileChangedSync=fileChangedSync
overwrite=overwrite
synchronize=synchronize
filename=filename
fileExists=fileExists
fileMovedToTrash=fileMovedToTrash
fileNearlyFullSeeFaq=fileNearlyFullSeeFaq
fileNotFound=fileNotFound
repositoryNotFound=repositoryNotFound
fileNotFoundOrDenied=fileNotFoundOrDenied
fileNotLoaded=fileNotLoaded
fileNotSaved=fileNotSaved
fileOpenLocation=fileOpenLocation
filetypeHtml=filetypeHtml
filetypePng=filetypePng
filetypeSvg=filetypeSvg
fileWillBeSavedInAppFolder=fileWillBeSavedInAppFolder
fill=fill
fillColor=fillColor
filterCards=filterCards
find=find
fit=fit
fitContainer=fitContainer
fitIntoContainer=fitIntoContainer
fitPage=fitPage
fitPageWidth=fitPageWidth
fitTo=fitTo
fitToSheetsAcross=fitToSheetsAcross
fitToBy=fitToBy
fitToSheetsDown=fitToSheetsDown
fitTwoPages=fitTwoPages
fitWindow=fitWindow
flip=flip
flipH=flipH
flipV=flipV
flowchart=flowchart
folder=folder
font=font
fontColor=fontColor
fontFamily=fontFamily
fontSize=fontSize
forbidden=forbidden
format=format
formatPanel=formatPanel
formatted=formatted
formattedText=formattedText
formatPng=formatPng
formatGif=formatGif
formatJpg=formatJpg
formatPdf=formatPdf
formatSql=formatSql
formatSvg=formatSvg
formatHtmlEmbedded=formatHtmlEmbedded
formatSvgEmbedded=formatSvgEmbedded
formatVsdx=formatVsdx
formatVssx=formatVssx
formatXmlPlain=formatXmlPlain
formatXml=formatXml
forum=forum
freehand=freehand
fromTemplate=fromTemplate
fromTemplateUrl=fromTemplateUrl
fromText=fromText
fromUrl=fromUrl
fromThisPage=fromThisPage
fullscreen=fullscreen
gap=gap
gcp=gcp
general=general
getNotionChromeExtension=getNotionChromeExtension
github=github
gitlab=gitlab
gliffy=gliffy
global=global
googleDocs=googleDocs
googleDrive=googleDrive
googleGadget=googleGadget
googlePlus=googlePlus
googleSharingNotAvailable=googleSharingNotAvailable
googleSlides=googleSlides
googleSites=googleSites
googleSheets=googleSheets
gradient=gradient
gradientColor=gradientColor
grid=grid
gridColor=gridColor
gridSize=gridSize
group=group
guides=guides
hateApp=hateApp
heading=heading
height=height
help=help
helpTranslate=helpTranslate
hide=hide
hideIt=hideIt
hidden=hidden
home=home
horizontal=horizontal
horizontalFlow=horizontalFlow
horizontalTree=horizontalTree
howTranslate=howTranslate
html=html
htmlText=htmlText
id=id
iframe=iframe
ignore=ignore
image=image
imageUrl=imageUrl
images=images
imagePreviewError=imagePreviewError
imageTooBig=imageTooBig
imgur=imgur
import=import
importFrom=importFrom
includeCopyOfMyDiagram=includeCopyOfMyDiagram
increaseIndent=increaseIndent
decreaseIndent=decreaseIndent
insert=insert
insertColumnBefore=insertColumnBefore
insertColumnAfter=insertColumnAfter
insertEllipse=insertEllipse
insertImage=insertImage
insertHorizontalRule=insertHorizontalRule
insertLink=insertLink
insertPage=insertPage
insertRectangle=insertRectangle
insertRhombus=insertRhombus
insertRowBefore=insertRowBefore
insertRowAfter=insertRowAfter
insertText=insertText
inserting=inserting
installApp=installApp
invalidFilename=invalidFilename
invalidLicenseSeeThisPage=invalidLicenseSeeThisPage
invalidInput=invalidInput
invalidName=invalidName
invalidOrMissingFile=invalidOrMissingFile
invalidPublicUrl=invalidPublicUrl
isometric=isometric
ios=ios
italic=italic
kennedy=kennedy
keyboardShortcuts=keyboardShortcuts
labels=labels
layers=layers
landscape=landscape
language=language
leanMapping=leanMapping
lastChange=lastChange
lessThanAMinute=lessThanAMinute
licensingError=licensingError
licenseHasExpired=licenseHasExpired
licenseRequired=licenseRequired
licenseWillExpire=licenseWillExpire
lineJumps=lineJumps
linkAccountRequired=linkAccountRequired
linkText=linkText
list=list
minute=minute
minutes=minutes
hours=hours
days=days
months=months
years=years
restartForChangeRequired=restartForChangeRequired
laneColor=laneColor
lastModified=lastModified
layout=layout
left=left
leftAlign=leftAlign
leftToRight=leftToRight
libraryTooltip=libraryTooltip
lightbox=lightbox
line=line
lineend=lineend
lineheight=lineheight
linestart=linestart
linewidth=linewidth
link=link
links=links
loading=loading
lockUnlock=lockUnlock
loggedOut=loggedOut
logIn=logIn
loveIt=loveIt
lucidchart=lucidchart
maps=maps
mathematicalTypesetting=mathematicalTypesetting
makeCopy=makeCopy
manual=manual
merge=merge
mermaid=mermaid
microsoftOffice=microsoftOffice
microsoftExcel=microsoftExcel
microsoftPowerPoint=microsoftPowerPoint
microsoftWord=microsoftWord
middle=middle
minimal=minimal
misc=misc
mockups=mockups
modificationDate=modificationDate
modifiedBy=modifiedBy
more=more
moreResults=moreResults
moreShapes=moreShapes
move=move
moveToFolder=moveToFolder
moving=moving
moveSelectionTo=moveSelectionTo
name=name
navigation=navigation
network=network
networking=networking
new=new
newLibrary=newLibrary
nextPage=nextPage
no=no
noPickFolder=noPickFolder
noAttachments=noAttachments
noColor=noColor
noFiles=noFiles
noFileSelected=noFileSelected
noLibraries=noLibraries
noMoreResults=noMoreResults
none=none
noOtherViewers=noOtherViewers
noPlugins=noPlugins
noPreview=noPreview
noResponse=noResponse
noResultsFor=noResultsFor
noRevisions=noRevisions
noSearchResults=noSearchResults
noPageContentOrNotSaved=noPageContentOrNotSaved
normal=normal
north=north
notADiagramFile=notADiagramFile
notALibraryFile=notALibraryFile
notAvailable=notAvailable
notAUtf8File=notAUtf8File
notConnected=notConnected
note=note
notion=notion
notSatisfiedWithImport=notSatisfiedWithImport
notUsingService=notUsingService
numberedList=numberedList
offline=offline
ok=ok
oneDrive=oneDrive
online=online
opacity=opacity
open=open
openArrow=openArrow
openExistingDiagram=openExistingDiagram
openFile=openFile
openFrom=openFrom
openLibrary=openLibrary
openLibraryFrom=openLibraryFrom
openLink=openLink
openInNewWindow=openInNewWindow
openInThisWindow=openInThisWindow
openIt=openIt
openRecent=openRecent
openSupported=openSupported
options=options
organic=organic
orgChart=orgChart
orthogonal=orthogonal
otherViewer=otherViewer
otherViewers=otherViewers
outline=outline
oval=oval
page=page
pageContent=pageContent
pageNotFound=pageNotFound
pageWithNumber=pageWithNumber
pages=pages
pageView=pageView
pageSetup=pageSetup
pageScale=pageScale
pan=pan
panTooltip=panTooltip
paperSize=paperSize
pattern=pattern
parallels=parallels
paste=paste
pasteData=pasteData
pasteHere=pasteHere
pasteSize=pasteSize
pasteStyle=pasteStyle
perimeter=perimeter
permissionAnyone=permissionAnyone
permissionAuthor=permissionAuthor
pickFolder=pickFolder
pickLibraryDialogTitle=pickLibraryDialogTitle
publicDiagramUrl=publicDiagramUrl
placeholders=placeholders
plantUml=plantUml
plugins=plugins
pluginUrl=pluginUrl
pluginWarning=pluginWarning
plusTooltip=plusTooltip
portrait=portrait
position=position
posterPrint=posterPrint
preferences=preferences
preview=preview
previousPage=previousPage
print=print
printAllPages=printAllPages
procEng=procEng
project=project
priority=priority
properties=properties
publish=publish
quickStart=quickStart
rack=rack
radial=radial
radialTree=radialTree
readOnly=readOnly
reconnecting=reconnecting
recentlyUpdated=recentlyUpdated
recentlyViewed=recentlyViewed
rectangle=rectangle
redirectToNewApp=redirectToNewApp
realtimeTimeout=realtimeTimeout
redo=redo
refresh=refresh
regularExpression=regularExpression
relative=relative
relativeUrlNotAllowed=relativeUrlNotAllowed
rememberMe=rememberMe
rememberThisSetting=rememberThisSetting
removeFormat=removeFormat
removeFromGroup=removeFromGroup
removeIt=removeIt
removeWaypoint=removeWaypoint
rename=rename
renamed=renamed
renameIt=renameIt
renaming=renaming
replace=replace
replaceIt=replaceIt
replaceExistingDrawing=replaceExistingDrawing
required=required
reset=reset
resetView=resetView
resize=resize
resizeLargeImages=resizeLargeImages
retina=retina
responsive=responsive
restore=restore
restoring=restoring
retryingIn=retryingIn
retryingLoad=retryingLoad
retryingLogin=retryingLogin
reverse=reverse
revision=revision
revisionHistory=revisionHistory
rhombus=rhombus
right=right
rightAlign=rightAlign
rightToLeft=rightToLeft
rotate=rotate
rotateTooltip=rotateTooltip
rotation=rotation
rounded=rounded
save=save
saveAndExit=saveAndExit
saveAs=saveAs
saveAsXmlFile=saveAsXmlFile
saved=saved
saveDiagramFirst=saveDiagramFirst
saveDiagramsTo=saveDiagramsTo
saveLibrary403=saveLibrary403
saveLibrary500=saveLibrary500
saveLibraryReadOnly=saveLibraryReadOnly
saving=saving
scratchpad=scratchpad
scrollbars=scrollbars
search=search
searchShapes=searchShapes
selectAll=selectAll
selectionOnly=selectionOnly
selectCard=selectCard
selectEdges=selectEdges
selectFile=selectFile
selectFolder=selectFolder
selectFont=selectFont
selectNone=selectNone
selectTemplate=selectTemplate
selectVertices=selectVertices
sendBackward=sendBackward
sendMessage=sendMessage
sendYourFeedback=sendYourFeedback
serviceUnavailableOrBlocked=serviceUnavailableOrBlocked
sessionExpired=sessionExpired
sessionTimeoutOnSave=sessionTimeoutOnSave
setAsDefaultStyle=setAsDefaultStyle
shadow=shadow
shape=shape
shapes=shapes
share=share
shareCursor=shareCursor
shareLink=shareLink
sharingAvailable=sharingAvailable
sharp=sharp
show=show
showRemoteCursors=showRemoteCursors
showStartScreen=showStartScreen
sidebarTooltip=sidebarTooltip
signs=signs
signOut=signOut
simple=simple
simpleArrow=simpleArrow
simpleViewer=simpleViewer
size=size
sketch=sketch
snapToGrid=snapToGrid
solid=solid
sourceSpacing=sourceSpacing
south=south
software=software
space=space
spacing=spacing
specialLink=specialLink
standard=standard
startDrawing=startDrawing
stopDrawing=stopDrawing
starting=starting
straight=straight
strikethrough=strikethrough
strokeColor=strokeColor
style=style
subscript=subscript
summary=summary
superscript=superscript
support=support
swimlaneDiagram=swimlaneDiagram
sysml=sysml
tags=tags
table=table
tables=tables
takeOver=takeOver
targetSpacing=targetSpacing
template=template
templates=templates
text=text
textAlignment=textAlignment
textOpacity=textOpacity
theme=theme
timeout=timeout
title=title
to=to
toBack=toBack
toFront=toFront
tooLargeUseDownload=tooLargeUseDownload
toolbar=toolbar
tooltips=tooltips
top=top
topAlign=topAlign
topLeft=topLeft
topRight=topRight
transparent=transparent
transparentBackground=transparentBackground
trello=trello
tryAgain=tryAgain
tryOpeningViaThisPage=tryOpeningViaThisPage
turn=turn
type=type
twitter=twitter
uml=uml
underline=underline
undo=undo
ungroup=ungroup
unmerge=unmerge
unsavedChanges=unsavedChanges
unsavedChangesClickHereToSave=unsavedChangesClickHereToSave
untitled=untitled
untitledDiagram=untitledDiagram
untitledLayer=untitledLayer
untitledLibrary=untitledLibrary
unknownError=unknownError
updateFile=updateFile
updatingDocument=updatingDocument
updatingPreview=updatingPreview
updatingSelection=updatingSelection
upload=upload
url=url
useOffline=useOffline
useRootFolder=useRootFolder
userManual=userManual
vertical=vertical
verticalFlow=verticalFlow
verticalTree=verticalTree
view=view
viewerSettings=viewerSettings
viewUrl=viewUrl
voiceAssistant=voiceAssistant
warning=warning
waypoints=waypoints
west=west
width=width
wiki=wiki
wordWrap=wordWrap
writingDirection=writingDirection
yes=yes
yourEmailAddress=yourEmailAddress
zoom=zoom
zoomIn=zoomIn
zoomOut=zoomOut
basic=basic
businessprocess=businessprocess
charts=charts
engineering=engineering
flowcharts=flowcharts
gmdl=gmdl
mindmaps=mindmaps
mockups=mockups
networkdiagrams=networkdiagrams
nothingIsSelected=nothingIsSelected
other=other
softwaredesign=softwaredesign
venndiagrams=venndiagrams
webEmailOrOther=webEmailOrOther
webLink=webLink
wireframes=wireframes
property=property
value=value
showMore=showMore
showLess=showLess
myDiagrams=myDiagrams
allDiagrams=allDiagrams
recentlyUsed=recentlyUsed
listView=listView
gridView=gridView
resultsFor=resultsFor
oneDriveCharsNotAllowed=oneDriveCharsNotAllowed
oneDriveInvalidDeviceName=oneDriveInvalidDeviceName
officeNotLoggedOD=officeNotLoggedOD
officeSelectSingleDiag=officeSelectSingleDiag
officeSelectDiag=officeSelectDiag
officeCannotFindDiagram=officeCannotFindDiagram
noDiagrams=noDiagrams
authFailed=authFailed
officeFailedAuthMsg=officeFailedAuthMsg
convertingDiagramFailed=convertingDiagramFailed
officeCopyImgErrMsg=officeCopyImgErrMsg
insertingImageFailed=insertingImageFailed
officeCopyImgInst=officeCopyImgInst
folderEmpty=folderEmpty
recent=recent
sharedWithMe=sharedWithMe
sharepointSites=sharepointSites
errorFetchingFolder=errorFetchingFolder
errorAuthOD=errorAuthOD
officeMainHeader=officeMainHeader
officeStepsHeader=officeStepsHeader
officeStep1=officeStep1
officeStep2=officeStep2
officeStep3=officeStep3
officeAuthPopupInfo=officeAuthPopupInfo
officeSelDiag=officeSelDiag
files=files
shared=shared
sharepoint=sharepoint
officeManualUpdateInst=officeManualUpdateInst
officeClickToEdit=officeClickToEdit
pasteDiagram=pasteDiagram
connectOD=connectOD
selectChildren=selectChildren
selectSiblings=selectSiblings
selectParent=selectParent
selectDescendants=selectDescendants
lastSaved=lastSaved
resolve=resolve
reopen=reopen
showResolved=showResolved
reply=reply
objectNotFound=objectNotFound
reOpened=reOpened
markedAsResolved=markedAsResolved
noCommentsFound=noCommentsFound
comments=comments
timeAgo=timeAgo
confluenceCloud=confluenceCloud
libraries=libraries
confAnchor=confAnchor
confTimeout=confTimeout
confSrvTakeTooLong=confSrvTakeTooLong
confCannotInsertNew=confCannotInsertNew
confSaveTry=confSaveTry
confCannotGetID=confCannotGetID
confContactAdmin=confContactAdmin
readErr=readErr
editingErr=editingErr
confExtEditNotPossible=confExtEditNotPossible
confEditedExt=confEditedExt
diagNotFound=diagNotFound
confEditedExtRefresh=confEditedExtRefresh
confCannotEditDraftDelOrExt=confCannotEditDraftDelOrExt
retBack=retBack
confDiagNotPublished=confDiagNotPublished
createdByDraw=createdByDraw
filenameShort=filenameShort
invalidChars=invalidChars
alreadyExst=alreadyExst
draftReadErr=draftReadErr
diagCantLoad=diagCantLoad
draftWriteErr=draftWriteErr
draftCantCreate=draftCantCreate
confDuplName=confDuplName
confSessionExpired=confSessionExpired
login=login
drawPrev=drawPrev
drawDiag=drawDiag
invalidCallFnNotFound=invalidCallFnNotFound
invalidCallErrOccured=invalidCallErrOccured
anonymous=anonymous
confGotoPage=confGotoPage
showComments=showComments
confError=confError
gliffyImport=gliffyImport
gliffyImportInst1=gliffyImportInst1
gliffyImportInst2=gliffyImportInst2
startImport=startImport
drawConfig=drawConfig
customLib=customLib
customTemp=customTemp
pageIdsExp=pageIdsExp
drawReindex=drawReindex
working=working
drawConfigNotFoundInst=drawConfigNotFoundInst
createConfSp=createConfSp
unexpErrRefresh=unexpErrRefresh
configJSONInst=configJSONInst
thisPage=thisPage
curCustLib=curCustLib
libName=libName
action=action
drawConfID=drawConfID
addLibInst=addLibInst
addLib=addLib
customTempInst1=customTempInst1
customTempInst2=customTempInst2
tempsPage=tempsPage
pageIdsExpInst1=pageIdsExpInst1
pageIdsExpInst2=pageIdsExpInst2
startExp=startExp
refreshDrawIndex=refreshDrawIndex
reindexInst1=reindexInst1
reindexInst2=reindexInst2
startIndexing=startIndexing
confAPageFoundFetch=confAPageFoundFetch
confAAllDiagDone=confAAllDiagDone
confAStartedProcessing=confAStartedProcessing
confAAllDiagInPageDone=confAAllDiagInPageDone
confAPartialDiagDone=confAPartialDiagDone
confAUpdatePageFailed=confAUpdatePageFailed
confANoDiagFoundInPage=confANoDiagFoundInPage
confAFetchPageFailed=confAFetchPageFailed
confANoDiagFound=confANoDiagFound
confASearchFailed=confASearchFailed
confAGliffyDiagFound=confAGliffyDiagFound
confAGliffyDiagImported=confAGliffyDiagImported
confASavingImpGliffyFailed=confASavingImpGliffyFailed
confAImportedFromByDraw=confAImportedFromByDraw
confAImportGliffyFailed=confAImportGliffyFailed
confAFetchGliffyFailed=confAFetchGliffyFailed
confACheckBrokenDiagLnk=confACheckBrokenDiagLnk
confADelDiagLinkOf=confADelDiagLinkOf
confADupLnk=confADupLnk
confADelDiagLnkFailed=confADelDiagLnkFailed
confAUnexpErrProcessPage=confAUnexpErrProcessPage
confADiagFoundIndex=confADiagFoundIndex
confADiagIndexSucc=confADiagIndexSucc
confAIndexDiagFailed=confAIndexDiagFailed
confASkipDiagOtherPage=confASkipDiagOtherPage
confADiagUptoDate=confADiagUptoDate
confACheckPagesWDraw=confACheckPagesWDraw
confAErrOccured=confAErrOccured
savedSucc=savedSucc
confASaveFailedErr=confASaveFailedErr
character=character
confAConfPageDesc=confAConfPageDesc
confALibPageDesc=confALibPageDesc
confATempPageDesc=confATempPageDesc
working=working
confAConfSpaceDesc=confAConfSpaceDesc
confANoCustLib=confANoCustLib
delFailed=delFailed
showID=showID
confAIncorrectLibFileType=confAIncorrectLibFileType
uploading=uploading
confALibExist=confALibExist
confAUploadSucc=confAUploadSucc
confAUploadFailErr=confAUploadFailErr
hiResPreview=hiResPreview
officeNotLoggedGD=officeNotLoggedGD
officePopupInfo=officePopupInfo
pickODFile=pickODFile
createODFile=createODFile
pickGDriveFile=pickGDriveFile
createGDriveFile=createGDriveFile
pickDeviceFile=pickDeviceFile
vsdNoConfig=vsdNoConfig
ruler=ruler
units=units
points=points
inches=inches
millimeters=millimeters
confEditDraftDelOrExt=confEditDraftDelOrExt
confDiagEditedExt=confDiagEditedExt
macroNotFound=macroNotFound
confAInvalidPageIdsFormat=confAInvalidPageIdsFormat
confACollectingCurPages=confACollectingCurPages
confABuildingPagesMap=confABuildingPagesMap
confAProcessDrawDiag=confAProcessDrawDiag
confAProcessDrawDiagDone=confAProcessDrawDiagDone
confAProcessImpPages=confAProcessImpPages
confAErrPrcsDiagInPage=confAErrPrcsDiagInPage
confAPrcsDiagInPage=confAPrcsDiagInPage
confAImpDiagram=confAImpDiagram
confAImpDiagramFailed=confAImpDiagramFailed
confAImpDiagramError=confAImpDiagramError
confAUpdateDgrmCCFailed=confAUpdateDgrmCCFailed
confImpDiagramSuccess=confImpDiagramSuccess
confANoLnksInDrgm=confANoLnksInDrgm
confAUpdateLnkToPg=confAUpdateLnkToPg
confAUpdateLBLnkToPg=confAUpdateLBLnkToPg
confAUpdateLnkBase=confAUpdateLnkBase
confAPageIdsImpDone=confAPageIdsImpDone
confAPrcsMacrosInPage=confAPrcsMacrosInPage
confAErrFetchPage=confAErrFetchPage
confAFixingMacro=confAFixingMacro
confAErrReadingExpFile=confAErrReadingExpFile
confAPrcsDiagInPageDone=confAPrcsDiagInPageDone
confAFixingMacroSkipped=confAFixingMacroSkipped
pageIdsExpTrg=pageIdsExpTrg
confALucidDiagImgImported=confALucidDiagImgImported
confASavingLucidDiagImgFailed=confASavingLucidDiagImgFailed
confGetInfoFailed=confGetInfoFailed
confCheckCacheFailed=confCheckCacheFailed
confReadFileErr=confReadFileErr
confSaveCacheFailed=confSaveCacheFailed
orgChartType=orgChartType
linear=linear
hanger2=hanger2
hanger4=hanger4
fishbone1=fishbone1
fishbone2=fishbone2
1ColumnLeft=1ColumnLeft
1ColumnRight=1ColumnRight
smart=smart
parentChildSpacing=parentChildSpacing
siblingSpacing=siblingSpacing
confNoPermErr=confNoPermErr
copyAsImage=copyAsImage
lucidImport=lucidImport
lucidImportInst1=lucidImportInst1
installFirst=installFirst
drawioChromeExt=drawioChromeExt
loginFirstThen=loginFirstThen
errFetchDocList=errFetchDocList
builtinPlugins=builtinPlugins
extPlugins=extPlugins
backupFound=backupFound
chromeOnly=chromeOnly
msgDeleted=msgDeleted
confAErrFetchDrawList=confAErrFetchDrawList
confAErrCheckDrawDiag=confAErrCheckDrawDiag
confAErrFetchPageList=confAErrFetchPageList
confADiagImportIncom=confADiagImportIncom
invalidSel=invalidSel
diagNameEmptyErr=diagNameEmptyErr
openDiagram=openDiagram
newDiagram=newDiagram
editable=editable
confAReimportStarted=confAReimportStarted
spaceFilter=spaceFilter
curViewState=curViewState
pageLayers=pageLayers
customize=customize
firstPage=firstPage
curEditorState=curEditorState
noAnchorsFound=noAnchorsFound
attachment=attachment
curDiagram=curDiagram
recentDiags=recentDiags
csvImport=csvImport
chooseFile=chooseFile
choose=choose
gdriveFname=gdriveFname
widthOfViewer=widthOfViewer
heightOfViewer=heightOfViewer
autoSetViewerSize=autoSetViewerSize
thumbnail=thumbnail
prevInDraw=prevInDraw
onedriveFname=onedriveFname
diagFname=diagFname
diagUrl=diagUrl
showDiag=showDiag
diagPreview=diagPreview
csvFileUrl=csvFileUrl
generate=generate
selectDiag2Insert=selectDiag2Insert
errShowingDiag=errShowingDiag
noRecentDiags=noRecentDiags
fetchingRecentFailed=fetchingRecentFailed
useSrch2FindDiags=useSrch2FindDiags
cantReadChckPerms=cantReadChckPerms
cantFetchChckPerms=cantFetchChckPerms
searchFailed=searchFailed
plsTypeStr=plsTypeStr
unsupportedFileChckUrl=unsupportedFileChckUrl
diagNotFoundChckUrl=diagNotFoundChckUrl
csvNotFoundChckUrl=csvNotFoundChckUrl
cantReadUpload=cantReadUpload
select=select
errCantGetIdType=errCantGetIdType
errGAuthWinBlocked=errGAuthWinBlocked
authDrawAccess=authDrawAccess
connTimeout=connTimeout
errAuthSrvc=errAuthSrvc
plsSelectFile=plsSelectFile
mustBgtZ=mustBgtZ
cantLoadPrev=cantLoadPrev
errAccessFile=errAccessFile
noPrevAvail=noPrevAvail
personalAccNotSup=personalAccNotSup
errSavingTryLater=errSavingTryLater
plsEnterFld=plsEnterFld
invalidDiagUrl=invalidDiagUrl
unsupportedVsdx=unsupportedVsdx
unsupportedImg=unsupportedImg
unsupportedFormat=unsupportedFormat
plsSelectSingleFile=plsSelectSingleFile
attCorrupt=attCorrupt
loadAttFailed=loadAttFailed
embedDrawDiag=embedDrawDiag
addDiagram=addDiagram
embedDiagram=embedDiagram
editOwningPg=editOwningPg
deepIndexing=deepIndexing
confADeepIndexStarted=confADeepIndexStarted
confADeepIndexDone=confADeepIndexDone
officeNoDiagramsSelected=officeNoDiagramsSelected
officeNoDiagramsInDoc=officeNoDiagramsInDoc
officeNotSupported=officeNotSupported
someImagesFailed=someImagesFailed
importingNoUsedDiagrams=importingNoUsedDiagrams
importingDrafts=importingDrafts
processingDrafts=processingDrafts
updatingDrafts=updatingDrafts
updateDrafts=updateDrafts
notifications=notifications
drawioImp=drawioImp
confALibsImp=confALibsImp
confALibsImpFailed=confALibsImpFailed
contributors=contributors
drawDiagrams=drawDiagrams
errFileNotFoundOrNoPer=errFileNotFoundOrNoPer
confACheckPagesWEmbed=confACheckPagesWEmbed
confADelBrokenEmbedDiagLnk=confADelBrokenEmbedDiagLnk
replaceWith=replaceWith
replaceAll=replaceAll
confASkipDiagModified=confASkipDiagModified
replFind=replFind
matchesRepl=matchesRepl
draftErrDataLoss=draftErrDataLoss
ibm=ibm
linkToDiagramHint=linkToDiagramHint
linkToDiagram=linkToDiagram
changedBy=changedBy
lastModifiedOn=lastModifiedOn
searchResults=searchResults
showAllTemps=showAllTemps
notionToken=notionToken
selectDB=selectDB
noDBs=noDBs
diagramEdited=diagramEdited
confDraftPermissionErr=confDraftPermissionErr
confDraftTooBigErr=confDraftTooBigErr
owner=owner
repository=repository
branch=branch
meters=meters
teamsNoEditingMsg=teamsNoEditingMsg
contactOwner=contactOwner
viewerOnlyMsg=viewerOnlyMsg
website=website
check4Updates=check4Updates
attWriteFailedRetry=attWriteFailedRetry
confPartialPageList=confPartialPageList
spellCheck=spellCheck
noChange=noChange
lblToSvg=lblToSvg
txtSettings=txtSettings
LinksLost=LinksLost
arcSize=arcSize
editConnectionPoints=editConnectionPoints
notInOffline=notInOffline
notInDesktop=notInDesktop
confConfigSpaceArchived=confConfigSpaceArchived
confACleanOldVerStarted=confACleanOldVerStarted
confACleanOldVerDone=confACleanOldVerDone
confACleaningFile=confACleaningFile
confAFileCleaned=confAFileCleaned
confAFileCleanFailed=confAFileCleanFailed
confACleanOnly=confACleanOnly
brush=brush
openDevTools=openDevTools
autoBkp=autoBkp
confAIgnoreCollectErr=confAIgnoreCollectErr
drafts=drafts
draftSaveInt=draftSaveInt