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

dia_th.txt « resources « webapp « main « src - github.com/jgraph/drawio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1728db3d8c7cc15274f3d0ad8b76b5b224bc8252 (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
1204
1205
1206
# *DO NOT DIRECTLY EDIT THIS FILE, IT IS AUTOMATICALLY GENERATED AND IT IS BASED ON:*
# https://docs.google.com/spreadsheet/ccc?key=0AmQEO36liL4FdDJLWVNMaVV2UmRKSnpXU09MYkdGbEE
about=เกี่ยวกับ
aboutDrawio=เกี่ยวกับ draw.io
accessDenied=ปฏิเสธการเข้าถึง
action=Action
actualSize=ขนาดปกติ
add=เพิ่ม
addAccount=Add account
addedFile=เพิ่ม  {1} แล้ว
addImages=เพิ่มรูปภาพ
addImageUrl=เพิ่ม URL รูปภาพ
addLayer=เพิ่มชั้น
addProperty=เพิ่มคุณสมบัติ
address=ที่อยู่
addToExistingDrawing=เพิ่มเข้าสู่การวาดปัจจุบัน
addWaypoint=เพิ่มการวางตำแหน่ง
adjustTo=แก้ไขไป
advanced=การตั้งค่าขั้นสูง
align=จัดเรียงแนวเดียวกัน
alignment=การจัดเรียงแนวเดียวกัน
allChangesLost=การเปลี่ยนแปลงทั้งหมดจะสูญหาย
allPages=ทุกหน้า
allProjects=แผนงานทั้งหมด
allSpaces=พื้นที่ทั้งหมด
allTags=แถบป้ายทั้งหมด
anchor=ตัวยึด
android=แอนดรอยด์
angle=มุม
arc=Arc
areYouSure=คุณแน่ใจหรือไม่
ensureDataSaved=กรุณาตรวจสอบให้แน่ใจว่าได้ทำการบันทึกข้อมูลของท่านเรียนร้อยแล้วก่อนที่จะปิดหน้านี้
allChangesSaved=บันทึกการเปลี่ยนแปลงทั้งหมดเรียบร้อยแล้ว
allChangesSavedInDrive=บันทึกการเปลี่ยนแปลงทั้งหมดไว้ไนไดรฟ์เรียบร้อยแล้ว
allowPopups=อนุญาต ป็อบอัพ เพื่อหลีกเลี่ยงข้อความนี้
allowRelativeUrl=Allow relative URL
alreadyConnected=ปุ่มเชื่อมต่อเรียบร้อยแล้ว
apply=นำไปใช้งาน
archiMate21=ArchiMate 2.1
arrange=จัดเรียง
arrow=ลูกศร
arrows=ลูกศร
asNew=เหมือนใหม่
atlas=หนังสือแผนที่
author=ผู้เขียน
authorizationRequired=จำเป็นต้องใด้รับการอนุญาตก่อน
authorizeThisAppIn=อนุญาตแอพพลิเคชั่นนี้ใน {1}:
authorize=อนุญาต
authorizing=การอนุญาต
automatic=อัตโนมัติ
autosave=บันทึกโดยอัตโนมัติ
autosize=ขนาดอัติโนมัติ
attachments=สิ่งที่แนบมา
aws=AWS
aws3d=AWS สามมิติ
azure=สีฟ้า
back=ย้อนกลับ
background=พื้นหลัง
backgroundColor=สีพื้นหลัง
backgroundImage=รูปภาพพื้นหลัง
basic=พื้นฐาน
beta=beta
blankDrawing=หน้ากระดาษเปล่า
blankDiagram=แผนภาพเปล่า
block=ปิดกั้น
blockquote=ปิดกั้นการอ้างอิง
blog=บล็อก
bold=ตัวหนา
bootstrap=ชุดคำสั่งพัฒนาเว็บไซต์
border=ขอบ
borderColor=สีเส้นขอบ
borderWidth=ความกว้างเส้นขอบ
bottom=ด้านล่าง
bottomAlign=จัดเรียงแนวเดียวกันด้านล่าง
bottomLeft=จัดแนวที่มุมล่างด้านซ้าย
bottomRight=จัดแนวที่มุมล่างด้านขวา
bpmn=BPMN
bringForward=Bring Forward
browser=เบราส์เซอร์
bulletedList=รายการแบบมีจุดนำ
business=ธุรกิจ
busy=กำลังดำเนินการ
cabinets=สำนักงาน
cancel=ยกเลิก
center=ตรงกลาง
cannotLoad=โหลดไม่สำเร็จ กรุณาลองใหม่อีกครั้งภายหลัง
cannotLogin=การเข้าใช้งานไม่สำเร็จ กรุณาลองใหม่อีกครั้งภายหลัง
cannotOpenFile=ไม่สามารถเปิดไฟล์ได้
change=เปลี่ยนแปลง
changeOrientation=เปลี่ยนตำแหน่ง
changeUser=เปลี่ยนผู้ใช้
changeStorage=Change storage
changesNotSaved=ยังไม่ได้บันทึกการเปลี่ยนแปลง
classDiagram=Class Diagram
userJoined={1} ได้เข้าร่วม
userLeft={1} ได้ออกจากระบบ
chatWindowTitle=แชท
chooseAnOption=เลือกหนึ่งตัวเลือก
chromeApp=โครมแอพลิเคชั่น
collaborativeEditingNotice=Important Notice for Collaborative Editing
compare=Compare
compressed=บีบอัดแล้ว
commitMessage=ข้อความสัญญา
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
diagramXmlDesc=XML File
diagramHtmlDesc=HTML File
diagramPngDesc=Editable Bitmap Image
diagramSvgDesc=Editable Vector Image
didYouMeanToExportToPdf=Did you mean to export to PDF?
draftFound=พบฉบับร่างของ '{1}' แล้ว โหลดไปยังตัวแก้ไขหรือยกเลิกเพื่อดำเนินการต่อ
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=รูปภาพไม่รองรับการลากและวาง คุณต้องการนำเข้าแทนหรือไม่
dropboxCharsNotAllowed=ไม่อนุญาตให้ใช้อักขระต่อไปนี้: \ / : ? * " |
check=ตรวจสอบ
checksum=Checksum
circle=วงกลม
cisco=ซิสโก้
classic=คลาสสิค
clearDefaultStyle=ล้างรูปแบบหลัก
clearWaypoints=ล้างการวางตำแหน่ง
clipart=คลิปอาร์ท
close=ปิด
closingFile=Closing file
realtimeCollaboration=Real-Time Collaboration
collaborator=ผู้เข้าร่วม
collaborators=ผู้เข้าร่วมหลายคน
collapse=ย่อ
collapseExpand=ย่อ/ขยาย
collapse-expand=คลิกเพื่อย่อ/ขยาย\n กดชิฟแล้วคลิกเพื่อย้ายเพื่อนบ้าน\n กดอัลเทอเนท แล้วคลิกเพื่อป้องกันขนาดของกลุ่ม
collapsible=ที่สามารถย่อได้
comic=การ์ตูน
comment=ความคิดเห็น
commentsNotes=ความคิดเห็น/บันทึกข้อความ
compress=Compress
configuration=Configuration
connect=เชื่อมต่อ
connecting=กำลังเชื่อมต่อ
connectWithDrive=เชื่อมต่อกับ Google Drive
connection=การเชื่อมต่อ
connectionArrows=ลูกศรการเชื่อมต่อ
connectionPoints=จุดเชื่อมต่อ
constrainProportions=จำกัดสัดส่วน
containsValidationErrors=มีข้อผิดพลาดจากการตรวจสอบ
copiedToClipboard=คัดลอกไปยังคลิปบอร์ดแล้ว
copy=คัดลอก
copyConnect=คัดลอกเมื่อมีการเชื่อมต่อ
copyCreated=A copy of the file was created.
copyData=Copy Data
copyOf=ฉบับคัดลอกของ {1}
copyOfDrawing=ฉบับคัดลอกของการวาด
copySize=Copy Size
copyStyle=คัดลอกรูปแบบ
create=สร้าง
createNewDiagram=สร้างแผนภาพใหม่
createRevision=สร้างการปรับปรุงใหม่
createShape=สร้างรูปร่าง
crop=คร็อป
curved=รูปร่างโค้ง
custom=เลือกตามความต้องการ
current=ปัจจุบัน
currentPage=หน้าปัจจุบัน
cut=ตัด
dashed=เส้นประ
decideLater=ตัดสินใจทีหลัง
default=หลัก
delete=ลบ
deleteColumn=ลบคอลัม
deleteLibrary401=ไม่มีสิทธิ์ในการลบไลบรารี่นี้
deleteLibrary404=ไม่พบไลบรารี่ที่เลือก
deleteLibrary500=การลบไลบรารี่ผิดพลาด
deleteLibraryConfirm=คุณกำลังจะลบไลบรารี่นี่แบบถาวร คุณแน่ใจว่าต้องการทำหรือไม่
deleteRow=ลบแถว
description=คำอธิบาย
device=อุปกรณ์
diagram=แผนภาพ
diagramContent=เนื้อหาแผนภาพ
diagramLocked=แผนภาพถูกล็อคไว้เพื่อป้องกันการสูญเสียข้อมูล
diagramLockedBySince=The diagram is locked by {1} since {2} ago
diagramName=ชื่อแผนภาพ
diagramIsPublic=แผนภาพเป็นสาธารณะ
diagramIsNotPublic=แผนภาพไม่เป็นสาธารณะ
diamond=สี่เหลี่ยมขนมเปียกปูน
diamondThin=สี่เหลี่ยมขนมเปียกปูน (บาง)
didYouKnow=คุณรู้หรือไม่.....
direction=ทิศทาง
discard=ยกเลิก
discardChangesAndReconnect=ละทิ้งการเปลี่ยนแปลงและเชื่อมต่อใหม่
googleDriveMissingClickHere=Google Drive หายไปใช่มั้ย?
discardChanges=เปลี่ยนแปลงการยกเลิก
disconnected=ได้ขาดการเชื่อมต่อ
distribute=กระจาย
done=เสร็จสิ้น
doNotShowAgain=Do not show again
dotted=จุดไข่ปลา
doubleClickOrientation=ดับเบิ้ลคลิ๊กเพื่อเปลี่ยนทิศทาง
doubleClickTooltip=ดับเบิ้ลคลิ๊กกล่องข้อความช่วยเหลือ
doubleClickChangeProperty=ดับเบิ้ลคลิกเพื่อเปลี่ยนชื่อคุณสมบัติ
download=ดาวน์โหลด
downloadDesktop=Get Desktop
downloadAs=ดาวน์โหลดเป็น
clickHereToSave=คลิกที่นี่เพื่อบันทึก
dpi=DPI
draftDiscarded=ยกเลิกร่าง
draftSaved=บันทึกร่างแล้ว
dragElementsHere=ลากองค์ประกอบที่นี่
dragImagesHere=ลากรูปภาพหรือ URLs มาที่นี่
dragUrlsHere=ลาก URLs มาที่นี่
draw.io=draw.io
drawing=การวาด{1}
drawingEmpty=การวาดว่างเปล่า
drawingTooLarge=การวาดขนาดใหญ่เกินไป
drawioForWork=วาด .io สำหรับ GSuite
dropbox=ดร็อปบ็อกซ์
duplicate=ทำซ้ำ
duplicateIt=ทำซ้ำ{1}
divider=ตัวแบ่ง
dx=Dx
dy=Dy
east=ทิศตะวันออก
edit=แก้ไข
editData=แก้ไขข้อมูล
editDiagram=แก้ไขแผนภาพ
editGeometry=แก้ไขรูปทรงเรขาคณิต
editImage=แก้ไขรูปภาพ
editImageUrl=แก้ไข URL รูปภาพ
editLink=แก้ไข Link
editShape=แก้ไขรูปร่าง
editStyle=แก้ไขรูปแบบ
editText=แก้ไขข้อความ
editTooltip=แก้ไขข้อความแนะนำ
glass=กลาส
googleImages=รูปภาพจาก Google
imageSearch=ค้นหารูปภาพ
eip=EIP
embed=ฝังตัว
embedFonts=Embed Fonts
embedImages=ฝังรูปภาพ
mainEmbedNotice=วางสิ่งนี้ลงในหน้ากระดาษ
electrical=ไฟฟ้า
ellipse=Ellipse
embedNotice=วางส่วนนี้เมื่อถึงส่วนท้ายของหน้า
enterGroup=ระบุกลุ่ม
enterName=ระบุชื่อ
enterPropertyName=ระบุชื่อของคุณสมบัติ
enterValue=ระบุค่า
entityRelation=ความสัมพันธ์ทางเอกลักษณ์
entityRelationshipDiagram=Entity Relationship Diagram
error=ข้อผิดพลาด
errorDeletingFile=การลบไฟล์ผิดพลาด
errorLoadingFile=การโหลดไฟล์ผิดพลาด
errorRenamingFile=การเปลี่ยนชื่อไฟล์ผิดพลาด
errorRenamingFileNotFound=การเปลี่ยนชื่อไฟล์ผิดพลาด ไม่พบไฟล์
errorRenamingFileForbidden=การเปลี่ยนชื่อไฟล์ผิดพลาด สิทธิการเข้าถึงไม่เพียงพอ
errorSavingDraft=การบันทึกร่างผิดพลาด
errorSavingFile=เกิดข้อผิดพลาดในการบันทึกไฟล์
errorSavingFileUnknown=เกิดข้อผิดพลาดเกี่ยวกับการอนุญาตของเซิฟเวอร์ Google กรุณารีเฟรชหน้านี้ใหม่เพื่อลองอีกครั้ง
errorSavingFileForbidden=เกิดข้อผิดพลาดในการบันทึกไฟล์ สิทธิในการเข้าใช้ไม่เพียงพอ
errorSavingFileNameConflict=ไม่สามารถบันทึกแผนภาพได้ หน้าปัจจุบันมีไฟล์ชื่อ '{1}' แล้ว
errorSavingFileNotFound=เกิดข้อผิดพลาดในการบันทึกไฟล์ ไม่พบไฟล์
errorSavingFileReadOnlyMode=Could not save diagram while read-only mode is active.
errorSavingFileSessionTimeout=เซสชั่นของคุณได้สิ้นสุดลงแล้ว  กรุณา <a target='_blank' href='{1}'> {2} </a> และกลับไปที่แท็บนี้เพื่อลองบันทึกอีกครั้ง
errorSendingFeedback=การส่งฟีดแบ็กผิดพลาด
errorUpdatingPreview=เกิดข้อผิดพลาดในการอัปเดตตัวอย่าง
exit=ออก
exitGroup=ออกจากกลุ่ม
expand=ขยาย
export=ส่งออก
exporting=การส่่งออก
exportAs=ส่งออกเป็น
exportOptionsDisabled=ตัวเลือกการส่งออกถูกปิดใช้งาน
exportOptionsDisabledDetails=เจ้าของได้ปิดการใช้งานดาวน์โหลด พิมพ์หรือสำเนาสำหรับผู้แสดงความเห็นและผู้ชมไฟล์นี้
externalChanges=External Changes
extras=เอ็กซ์ตร้า
facebook=Facebook
failedToSaveTryReconnect=การบันทึกล้มเหลว กำลังพยายามเชื่อมต่อใหม่
featureRequest=ร้องขอคุณลักษณะ
feedback=ผลตอบรับ
feedbackSent=การส่งผลตอบรับเสร็จสมบูรณ์
floorplans=แปลนอาคาร
file=ไฟล์
fileChangedOverwriteDialog=มีการเปลี่ยนแปลงไฟล์แล้ว ต้องการเปลี่ยนแปลงทับหรือไม่
fileChangedSyncDialog=The file has been modified.
fileChangedSync=The file has been modified. Click here to synchronize.
overwrite=เขียนทับ
synchronize=Synchronize
filename=ชื่อไฟล์
fileExists=ไฟล์นี้มีอยู่แล้ว
fileMovedToTrash=File was moved to trash
fileNearlyFullSeeFaq=ไฟล์ใกล้เต็มแล้ว กรุณาดูที่ FAQ
fileNotFound=ไม่พบไฟล์
repositoryNotFound=ไม่พบพื้นที่เก็บข้อมูล
fileNotFoundOrDenied=ไม่พบไฟล์นี้ ไฟล์นี้อาจจะไม่มีในระบบ หรือคุณไม่มิสิทธ์ในการเข้าอ่าน
fileNotLoaded=ไฟล์ไม่ถูกโหลด
fileNotSaved=ไฟล์ไม่ถูกบันทึก
fileOpenLocation=คุณต้องการเปิดไฟล์เหล่านี้อย่างไร
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} จะถูกบันทึกลงในแฟ้มแอพพลิเคชั่น
fill=เติม
fillColor=เติมสี
filterCards=Filter Cards
find=ค้นหา
fit=พอดี
fitContainer=แก้ไขขนาดที่บรรจุ
fitIntoContainer=เติมให้เต็มที่บรรจุ
fitPage=พอดีหน้า
fitPageWidth=ความกว้างพอดีหน้า
fitTo=พอดีกับ
fitToSheetsAcross=หน้าตรงข้าม
fitToBy=โดย
fitToSheetsDown=หน้าลงไป
fitTwoPages=สองหน้า
fitWindow=พอดีหน้าต่าง
flip=พลิก
flipH=พลิกไปแนวนอน
flipV=พลิกไปแนวตั้ง
flowchart=ผังงาน
folder=โฟลเดอร์
font=ตัวอักษร
fontColor=สีตัวอักษร
fontFamily=รูปแบบอักษร
fontSize=ขนาดอักษร
forbidden=คุณไม่ได้รับอนุญาตให้เข้าใช้ไฟล์นี้
format=รูปแบบ
formatPanel=แผงรูปแบบ
formatted=ได้จัดรูปแบบแล้ว
formattedText=ได้จัดรูปแบบข้อความแล้ว
formatPng=PNG
formatGif=GIF
formatJpg=JPEG
formatPdf=PDF
formatSql=SQL
formatSvg=SVG
formatHtmlEmbedded=HTML
formatSvgEmbedded=SVG (กับ XML)
formatVsdx=VSDX
formatVssx=VSSX
formatXmlPlain=XML (ปกติ)
formatXml=XML
forum=พูดคุย/ฟอรั่มให้ความช่วยเหลือ
freehand=Freehand
fromTemplate=จากรูปแบบ
fromTemplateUrl=จากรูปแบบ URL
fromText=จากข้อความ
fromUrl=จาก URL
fromThisPage=จากหน้านี้
fullscreen=เต็มหน้าจอ
gap=Gap
gcp=GCP
general=ทั่วไป
getNotionChromeExtension=Get the Notion Chrome Extension
github=GitHub
gitlab=GitLab
gliffy=Gliffy
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=ความลาดชัน
gradientColor=สี
grid=แบบตาราง
gridColor=Grid Color
gridSize=ขนาดของแบบตาราง
group=กลุ่ม
guides=แนะนำ
hateApp=ฉันเกลียด draw.io
heading=หัวข้อ
height=ความสูง
help=ช่วยเหลือ
helpTranslate=ช่วยเราแปลแอพพลิเคชั่นนี้
hide=ซ่อน
hideIt=ซ่อน {1}
hidden=ถูกซ่อนไว้
home=หน้าแรก
horizontal=แนวนอน
horizontalFlow=แผนผังในแนวนอน
horizontalTree=แผนผังต้นไม้ในแนวนอน
howTranslate=How good is the translation in your language?
html=HTML
htmlText=ข้อความ HTML
id=ID
iframe=IFrame
ignore=ละเลย
image=รูปภาพ
imageUrl=Image URL
images=รูปภาพหลายรูป
imagePreviewError=รููปภาพนี้ไม่สามารถโหลดเพื่อแสดงตัวอย่างได้  กรุณาตรวจสอบ URL
imageTooBig=รูปภาพมีขนาดใหญ่เกินไป
imgur=Imgur
import=นำเข้า
importFrom=นำเข้าจาก
includeCopyOfMyDiagram=รวมแผนภาพฉบับคัดลอกของฉัน
increaseIndent=เพิ่มย่อหน้า
decreaseIndent=ลดย่อหน้า
insert=แทรก
insertColumnBefore=แทรกคอลัมทางซ้าย
insertColumnAfter=แทรกคอลัมทางขวา
insertEllipse=แทรกรุปทรงวงรี
insertImage=แทรกรูปภาพ
insertHorizontalRule=แทรกกฎเกณฑ์ในแนวนอน
insertLink=แทรก Link
insertPage=แทรกหน้า
insertRectangle=แทรกรูปทรงสี่เหลี่ยม
insertRhombus=Insert Rhombus
insertRowBefore=แทรกบรรทัดข้างบน
insertRowAfter=แทรกบรรทัดข้างล่าง
insertText=แทรกข้อความ
inserting=การแทรก
installApp=Install App
invalidFilename=ชื่อแผนภาพจะต้องไม่มีเครื่องหมายเหล่านี้  \ / | : ; { } < > & + ? = "
invalidLicenseSeeThisPage=ใบอนุญาตของคุณไม่ถูกต้อง  โปรดดู <a target="_blank" href="https://support.draw.io/display/DFCS/Licensing+your+draw.io+plugin">page</a>.
invalidInput=Invalid input
invalidName=ชื่อที่ใช้ไม่ได้
invalidOrMissingFile=ไฟล์ไม่ถูกต้องหรือไฟล์สูญหาย
invalidPublicUrl=URL สาธารณะไม่ถูกต้อง
isometric=ภาพสามมิติ
ios=iOS
italic=ตัวเอียง
kennedy=Kennedy
keyboardShortcuts=ทางลัดคีย์บอร์ด
labels=Labels
layers=ชั้นหลายชั้น
landscape=ภูมิทัศน์
language=ภาษา
leanMapping=Lean Mapping
lastChange=การเปลี่ยนแปลงครั้งสุดท้าย เมื่อ {1} ที่แล้ว
lessThanAMinute=น้อยกว่าหนึ่งนาที
licensingError=ข้อผิดพลาดในการให้สิทธิ์
licenseHasExpired=ใบอนุญาตของ {1} หมดอายุแล้วเมื่อ {2}  คลิกที่นี่
licenseRequired=This feature requires draw.io to be licensed.
licenseWillExpire=ใบอนุุญาตของ {1} จะหมดอายุเมื่อ {2}  คลิกที่นี่
lineJumps=Line jumps
linkAccountRequired=หากแผนภาพไม่ได้เป็นสาธารณะต้องใช้บัญชี Google เพื่อดูลิงก์
linkText=เชื่อมโยงข้อความ
list=รายการ
minute=นาที
minutes=นาที
hours=ชั่วโมง
days=วัน
months=เดือน
years=ปี
restartForChangeRequired=การเปลี่ยนแปลงจะมีผลหลังจากรีเฟรชหน้านี้
laneColor=สีเลน
lastModified=แก้ไขครั้งสุดท้าย
layout=รูปร่าง
left=ซ้าย
leftAlign=จัดเรียงไปทางด้านซ้าย
leftToRight=ซ้ายไปขวา
libraryTooltip=ลากและวางรูปร่างที่นี่ หรือคลิก + เพื่อแทรก  ดับเบิ้ลคลิกเพื่อแก้ไข
lightbox=ไลท์บ็อกซ์
line=เส้น
lineend=สิ้นสุดเส้น
lineheight=ความสูงของเส้น
linestart=เริ่มต้นเส้น
linewidth=ความกว้างของเส้น
link=เชื่อมโยง
links=เชื่อมโยง
loading=กำหลังโหลด
lockUnlock=ล็อก/เอาล็อกออก
loggedOut=ออกจากระบบ
logIn=เข้าสู่ระบบ
loveIt=ฉันชอบ {1}
lucidchart=Lucidchart
maps=Maps
mathematicalTypesetting=การตั้งค่าการพิมพ์ทางคณิตศาสตร์
makeCopy=สร้างฉบับคัดลอก
manual=คู่มือ
merge=Merge
mermaid=Mermaid
microsoftOffice=Microsoft Office
microsoftExcel=Microsoft Excel
microsoftPowerPoint=Microsoft PowerPoint
microsoftWord=Microsoft Word
middle=กลาง
minimal=Minimal
misc=เบ็ดเตล็ด
mockups=แบบจำลอง
modificationDate=วันที่แก้ไข
modifiedBy=แก้ไขโดย
more=เพิ่มเติม
moreResults=ผลลัพธ์เพิ่มเติม
moreShapes=รูปร่างเพิ่มเติม
move=ย้าย
moveToFolder=ย้ายไปยังแฟ้ม
moving=กำลังย้าย
moveSelectionTo=ย้ายส่วนที่เลือกไปยัง{1}
name=ชื่อ
navigation=ท่องเว็บ
network=Network
networking=การเชื่อมต่อ
new=ใหม่
newLibrary=ที่จัดเก็บเอกสารใหม่
nextPage=หน้าถัดไป
no=ไม่
noPickFolder=No, pick folder
noAttachments=ไม่พบสิ่งที่แนบมา
noColor=ไม่มีสี
noFiles=ไม่มีไฟล์
noFileSelected=ไม่มีไฟล์ที่เลือก
noLibraries=ไม่พบไลบรารี่
noMoreResults=ไม่มีผลลัพธ์อื่น
none=ไม่มี
noOtherViewers=ไม่มีผู้ดูอื่นๆ
noPlugins=ไม่มีตัวเสริม
noPreview=ไม่มีการแสดงตัวอย่าง
noResponse=ไม่มีการตอบรับจากเซิฟเวอร์
noResultsFor=ไม่มีผลลัพธ์สำหรับ '{1}'
noRevisions=ไม่มีการปรับปรุง
noSearchResults=ไม่พบผลลัพธ์การค้นหา
noPageContentOrNotSaved=ไม่พบตัวยึดบนหน้านี้ หรือยังไม่มีการบันทึก
normal=ปกติ
north=ทิศเหนือ
notADiagramFile=ไม่ใช่ไฟล์แผนภาพ
notALibraryFile=ไม่ใช่ไฟล์ที่จัดเก็บเอกสาร
notAvailable=ไม่ว่าง
notAUtf8File=ไม่ใช่ไฟล์ UTF-8
notConnected=ไม่มีการเชื่อมต่อ
note=บันทึกข้อความ
notion=Notion
notSatisfiedWithImport=Not satisfied with the import?
notUsingService=ไม่ได้ใช้อยู่ {1}?
numberedList=รายการที่ใส่เลขหมายแล้ว
offline=ออฟไลน์
ok=ตกลง
oneDrive=One Drive
online=ออนไลน์
opacity=ความทึบแสง
open=เปิด
openArrow=ลูกศรเปิด
openExistingDiagram=เปิดแผนภาพที่มีอยู่แล้ว
openFile=เปิดไฟล์
openFrom=เปิดจาก
openLibrary=เปิดไลบรารี่
openLibraryFrom=เปิดที่จัดเก็บเอกสารจาก
openLink=เปิด Link
openInNewWindow=เปิดในหน้าต่างใหม่
openInThisWindow=เปิดในหน้าต่างนี้
openIt=เปิด {1}
openRecent=เปิดรายการปัจจุบัน
openSupported=รูปแบบที่ใช้ได้คือไฟล์ที่ถูกบันทึกจากซอฟท์แวร์นี้ (.xml), .vsdx and .gliffy
options=ตัวเลือก
organic=ออแกนิค
orgChart=Org Chart
orthogonal=ตั้งฉากกัน
otherViewer=ผู้ดูอื่นๆ
otherViewers=ผู้ดูอื่นๆ
outline=แบบร่าง
oval=รูปไข่
page=หน้า
pageContent=หน้าเนื้อหา
pageNotFound=ไม่พบหน้า
pageWithNumber=หน้า-{1}
pages=หน้า
pageView=มุมมองหน้า
pageSetup=ตั้งค่าหน้า
pageScale=ขนาดหน้า
pan=ดูมุมกว้าง
panTooltip=สเปซ+ลากเพื่อดูมุมกว้าง
paperSize=ขนาดกระดาษ
pattern=รูปแบบ
parallels=Parallels
paste=วาง
pasteData=Paste Data
pasteHere=วางที่นี่
pasteSize=Paste Size
pasteStyle=วางรูปแบบ
perimeter=เส้นรอบวง
permissionAnyone=ทุกคนสามารถแก้ไขได้
permissionAuthor=ฉันสามารถแก้ไขได้เท่านั้น
pickFolder=เลือกโฟลเดอร์
pickLibraryDialogTitle=เลือกไลบรารี่
publicDiagramUrl=URL สาธารณะของแผนภาพ
placeholders=ยึดตำแหน่ง
plantUml=PlantUML
plugins=ตัวเสริม
pluginUrl=ตัวเสริม URL
pluginWarning=หน้านี้ต้องโหลดตัวเสริมนี้ :\n \n {1}\n \n คุณต้องการโหลดตัวเสริมนี้หรือไม่?\n \n โปรดสังเกตุ: ควรอนุญาตให้ตัวเสริมทำงานเมื่อคุณเข้าใจระบบความปลอดภัยของตัวเสริมเท่านั้น
plusTooltip=คลิกและลากเพื่อเชื่อมต่อ คลิกเพื่อโคลนและเชื่อมต่อ กดชิฟแล้วคลิกเพื่อโคลน
portrait=รูปคน
position=ตำแหน่ง
posterPrint=พิมพ์โปสเตอร์
preferences=การตั้งค่า
preview=ดูภาพก่อนพิมพ์
previousPage=หน้าก่อนหน้านี้
print=พิมพ์
printAllPages=พิมพ์ทุกหน้า
procEng=Proc. ภาษาอังกฤษ
project=แผนงาน
priority=ความสำคัญ
properties=คุณสมบัติ
publish=เผยแพร่
quickStart=เล่นวีดีโอแบบด่วน
rack=ดึง
radial=Radial
radialTree=กลุ่มเส้นรัศมี
readOnly=อ่านเท่านั้น
reconnecting=เชื่อมต่ออีกครั้ง
recentlyUpdated=อัพเดทล่าสุด
recentlyViewed=รับชมล่าสุด
rectangle=Rectangle
redirectToNewApp=ไฟล์นี้ถูกสร้างและปรับปรุงใน draw.io โปร คุณจะถูกนำไปที่นั่นเดี๋ยวนี้
realtimeTimeout=คุณได้ทำการเปลี่ยนแปลงบางอย่างในขณะที่ออฟไลน์ เราต้องขออภัยด้วย การเปลี่ยนแปลงเหล่านี้ไม่สามารถถูกบันทึกได้
redo=ทำอีกครั้ง
refresh=รีเฟรช
regularExpression=นิพจน์ปกติ
relative=Relative
relativeUrlNotAllowed=Relative URL not allowed
rememberMe=จำฉันไว้
rememberThisSetting=จำการตั้งค่านี้
removeFormat=ล้างรูปแบบ
removeFromGroup=ลบออกจากกลุ่ม
removeIt=ลบ{1}
removeWaypoint=ลบการกำหนดเส้นทาง
rename=เปลี่ยนชื่อใหม่
renamed=ได้เปลี่ยนชื่อแล้ว
renameIt=เปลี่ยนชื่อ{1}
renaming=กำลังเปลี่ยนชื่อ
replace=แทนที่
replaceIt={1} มีอยู่แล้ว คุณต้องการแทนที่หรือไม่?
replaceExistingDrawing=แทนที่ Drawing ที่มีอยู่แล้ว
required=จำเป็นต้องมี
reset=ตั้งค่าใหม่
resetView=รีเซ็ตมุมมอง
resize=ปรับขนาด
resizeLargeImages=Do you want to resize large images to make the application run faster?
retina=เรติน่า
responsive=โต้ตอบ
restore=ฟื้นฟู
restoring=กำลังฟื้นฟู
retryingIn=ลองใหม่อีกครั้งใน {1} วินาที
retryingLoad=โหลดไม่สำเร็จ กำลังลองใหม่
retryingLogin=เกินกำหนดเวลาการเข้าใช้งาน กำลังลองใหม่
reverse=ย้อนกลับ
revision=แก้ไขใหม่
revisionHistory=ประวัติการปรับปรุง
rhombus=Rhombus
right=ขวา
rightAlign=จัดเรียงด้านขวา
rightToLeft=ขวาไปซ้าย
rotate=หมุน
rotateTooltip=คลิกและลากเพื่อหมุน คลิกเพื่อหมุน 90 องศา
rotation=การหมุน
rounded=รูปร่างกลม
save=บันทึก
saveAndExit=บันทึก และ ออก
saveAs=บันทึกเป็น
saveAsXmlFile=บันทึกเป็นไฟล์ XML หรือไม่
saved=บันทึกเรียบร้อยแล้ว
saveDiagramFirst=Please save the diagram first
saveDiagramsTo=บันทึกแผนภาพไปยัง
saveLibrary403=สิทธิ์ไม่เพียงพอในการแก้ไขไลบรารีนี้
saveLibrary500=เกิดข้อผิดพลาดขณะบันทึกไลบรารี่
saveLibraryReadOnly=Could not save library while read-only mode is active
saving=กำลังบันทึก
scratchpad=Scratchpad
scrollbars=แถบเลื่อน
search=ค้นหา
searchShapes=ค้นหารูปร่าง
selectAll=เลือกทั้งหมด
selectionOnly=เลือกเท่านั้น
selectCard=Select Card
selectEdges=เลือกขอบ
selectFile=เลือกไฟล์
selectFolder=เลือกโฟลเดอร์
selectFont=เลือกตัวอักษร
selectNone=ไม่มีการเลือก
selectTemplate=Select Template
selectVertices=เลือกจุดสูงสุด
sendBackward=Send Backward
sendMessage=ส่ง
sendYourFeedback=ส่งคำตอบ
serviceUnavailableOrBlocked=ใช้บริการไม่ได้หรือถูกปิดไว้
sessionExpired=เซสชั่นของคุณหมดอายุ กรุณารีเฟรชหน้าต่างใหม่
sessionTimeoutOnSave=เซสชั่นของคุณหมดอายุและคุณขาดการเชื่อมต่อจาก Google Drive กดปุ่ม ตกลง เพื่อเข้าใช้และบันทึก
setAsDefaultStyle=ตั้งค่าเป็นแบบหลัก
shadow=เงา
shape=รูปร่าง
shapes=รูปร่าง
share=แบ่งปัน
shareCursor=Share Mouse Cursor
shareLink=เชื่อมต่อเพื่อการแก้ไขร่วมกัน
sharingAvailable=Sharing available for Google Drive and OneDrive files.
sharp=แหลม
show=แสดง
showRemoteCursors=Show Remote Mouse Cursors
showStartScreen=แสดงหน้าจอเริ่มต้น
sidebarTooltip=คลิกเพื่อขยาย ลากและวางรูปร่างในแผนภาพ กด Shift+คลิก  เพื่อเปลี่ยนแปลงการเลือก  กด Alt+คลิก  เพื่อแทรกและเชื่อมต่อ
signs=ลงชื่อ
signOut=ลงชื่อออก
simple=พื้นฐาน
simpleArrow=ลูกศรอย่างง่าย
simpleViewer=Simple Viewer
size=ขนาด
sketch=Sketch
snapToGrid=Snap to Grid
solid=แข็ง
sourceSpacing=เว้นวรรคแหล่งข้อมูล
south=ทิศใต้
software=ซอฟท์แวร์
space=พื้้นที่
spacing=การเว้นวรรค
specialLink=การเชื่อมโยงพิเศษ
standard=มาตรฐาน
startDrawing=Start drawing
stopDrawing=Stop drawing
starting=กำลังเริ่ม
straight=ตรง
strikethrough=Strikethrough
strokeColor=เส้นสี
style=รูปแบบ
subscript=ดรรชนีล่าง
summary=ภาพรวม
superscript=ดรรชนีบน
support=ช่วยเหลือ
swimlaneDiagram=Swimlane Diagram
sysml=SysML
tags=แท็ก
table=ตาราง
tables=Tables
takeOver=Take Over
targetSpacing=การเว้นวรรคเป้าหมาย
template=แบบร่าง
templates=แบบร่าง
text=ข้อความ
textAlignment=การจัดเรียงของข้อความ
textOpacity=ความทึบแสงของข้อความ
theme=รูปแบบ
timeout=หมดอายุ
title=ชื่อเรื่อง
to=ไปยัง
toBack=ไปยังด้านหลัง
toFront=ไปยังด้านหน้า
tooLargeUseDownload=Too large, use download instead.
toolbar=Toolbar
tooltips=กล่องข้อความช่วยเหลือ
top=บนสุด
topAlign=จัดเรียงแนวบนสุด
topLeft=จัดเรียงข้างซ้ายด้านบนสุด
topRight=จัดเรียงข้างขวาด้านบนสุด
transparent=ความโปร่งแสง
transparentBackground=พื้นหลังโปร่งใส
trello=Trello
tryAgain=ลองอีกครั้ง
tryOpeningViaThisPage=ลองอีกครั้้งผ่านหน้านี้
turn=หมุน 90 องศา
type=ประเภท
twitter=ทวิตเตอร์
uml=UML
underline=ขีดเส้นใต้
undo=ยกเลิกการทำ
ungroup=ยกเลิกการจัดกลุ่ม
unmerge=Unmerge
unsavedChanges=การเปลี่ยนแปลงที่ยังไม่ได้บันทึก
unsavedChangesClickHereToSave=เปลี่ยนแปลงที่ยังไม่ได้บันทึก  คลิกที่นี่เพื่อบันทึก
untitled=ไม่มีชื่อเรื่อง
untitledDiagram=แบบแผนที่ยังไม่ได้ตั้งชื่อ
untitledLayer=เลเยอร์ที่ไม่มีชื่อ
untitledLibrary=ที่จัดเก็บเอกสารที่ยังไม่ได้ตั้งชื่อ
unknownError=ความผิดพลาดที่ไม่ทราบสาเหตุ
updateFile=อัพเดท {1}
updatingDocument=กำลังอัพเดทข้อมูล กรุณารอสักครู่...
updatingPreview=กำลังอัพเดทการแสดงตัวอย่าง กรุณารอ...
updatingSelection=กำลังอัพเดทสิ่งที่เลือก กรุณารอสักครู่...
upload=อัพโหลด
url=URL
useOffline=Use Offline
useRootFolder=Use root folder?
userManual=คู่มือการใช้งาน
vertical=แนวตั้ง
verticalFlow=ผังในแนวตั้ง
verticalTree=แผนผังต้นไม้ในแนวตั้ง
view=มุมมอง
viewerSettings=Viewer Settings
viewUrl=เชื่อมโยงเพื่อดู: {1}
voiceAssistant=ผู้ช่วยแบบเสียง (beta)
warning=คำเตือน
waypoints=การวางตำแหน่ง
west=ทิศตะวันตก
width=ความกว้าง
wiki=Wiki
wordWrap=การจัดวาง
writingDirection=ทิศทางการเขียน
yes=ใช่
yourEmailAddress=ที่อยู่อีเมลของคุร
zoom=ขยาย
zoomIn=ขยายเข้า
zoomOut=ขยายออก
basic=พื้นฐาน
businessprocess=กระบวนการทางธุรกิจ
charts=แผนผัง
engineering=วิศวกรรม
flowcharts=ผังงาน
gmdl=การออกแบบวัสดุ
mindmaps=แผนผังความคิด
mockups=แบบจำลอง
networkdiagrams=แผนผังเครือข่าย
nothingIsSelected=ไม่ได้เลือกอ่ะไร
other=อื่นๆ
softwaredesign=การออกแบบซอฟท์แวร์
venndiagrams=แผนภาพ Venn
webEmailOrOther=เว็บ อีเมลหรือที่อยู่อินเตอร์เน็ตอื่นๆ
webLink=เว็บเชื่อมโยง
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
action=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