-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdia_zh-tw.txt
More file actions
1379 lines (1379 loc) · 48.9 KB
/
dia_zh-tw.txt
File metadata and controls
1379 lines (1379 loc) · 48.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
about=關於
aboutDrawio=關於 draw.io
accessDenied=存取遭拒
accounts=帳號
action=動作
actualSize=實際尺寸
adaptiveColors=自適應顏色
add=新增
addAccount=新增帳號
addedFile=已新增 {1}
addImages=新增圖片
addImageUrl=新增圖片網址
addLayer=新增圖層
addProperty=新增屬性
address=地址
addToExistingDrawing=新增到現有圖紙
addToScratchpad=新增到便箋本
addWaypoint=新增路徑點
adjustTo=調至
advanced=進階
copyDiagramToClipboard=將圖表複製到剪貼簿
copySelectionToClipboard=將選取內容複製到剪貼簿
smartTemplate=智慧範本
align=對齊
alignment=對齊
allChangesLost=所有修改都將丟失!
allPages=所有頁面
allProjects=所有專案
allSelectedObjectsInThisLayer=所有選定的物件都在此圖層中
allSpaces=所有空間
allTags=所有標籤
anchor=錨點
android=安卓
angle=角度
animations=動畫
arc=弧線
areYouSure=是否確定?
ensureDataSaved=關閉前請確認您的資料已儲存。
allChangesSaved=所有的修改已儲存
allChangesSavedInDrive=所有修改已儲存至雲端硬碟
allowPopups=允許彈出式視窗以避免此對話框。
allowRelativeUrl=允許相對網址
alreadyConnected=節點已連接
appearance=外觀
apply=套用
archiMate21=ArchiMate 2.1
arrange=調整
arrow=箭頭
arrows=箭頭
askMeAnything=問我任何問題
asNew=作為新圖紙
atlas=Atlas
author=作者
authorizationRequired=需要授權
authorizeThisAppIn=在 {1} 中授權此應用程式:
authorize=授權
authorizing=授權中
automatic=自動
autosave=自動儲存
autosizeText=自動字型大小
autosize=自動調整
attachments=附件
aws=AWS
aws3d=AWS 3D
azure=Azure
back=返回
background=背景
backgroundColor=背景顏色
backgroundImage=背景圖片
basic=基本
beta=測試版
blankDrawing=空白圖紙
blankDiagram=空白圖表
block=區塊
blockquote=區塊引言
blog=部落格
bold=粗體
bootstrap=Bootstrap
border=邊框
borderColor=邊框顏色
borderWidth=邊框寬度
bottom=下
bottomAlign=向下對齊
bottomLeft=左下
bottomRight=右下
bpmn=BPMN
bringForward=上移一層
browser=瀏覽器
bulletedList=項目符號列表
business=商務
busy=處理中
cabinets=機殼
cancel=取消
center=置中
cannotLoad=載入失敗。請稍後重試。
cannotLogin=登入失敗。請稍後重試。
cannotOpenFile=無法開啟檔案
change=變更
changeOrientation=變更方向
changeUser=變更使用者
changeStorage=變更儲存格式
changesNotSaved=變更尚未儲存
classDiagram=類別圖
closePath=關閉路徑
updateDiagramFromClipboard=從剪貼簿更新圖表
userJoined={1}已加入
userLeft={1}已離開
chatWindowTitle=交談
chooseAnOption=請選擇一項
clickToAdd=按一下畫布以新增點
collaborativeEditingNotice=協同編輯的重要通知
compare=比較
compressed=已壓縮
commitMessage=提交訊息
configLinkWarn=此連結將設定 draw.io。僅在您信任提供連結給你的人時才點擊確定。
configLinkConfirm=點擊確定進行設定並重新啟動 draw.io。
container=容器
csv=CSV
currentLayer=目前層
dark=暗色
diagramLanguage=圖表語言
diagramType=圖表類型
diagramXmlDesc=XML 檔案
diagramHtmlDesc=HTML 檔案
diagramPngDesc=可編輯點陣圖檔
diagramSvgDesc=可編輯向量圖檔
didYouMeanToExportToPdf=是否匯出為 PDF?
disabled=已停用
draftFound=發現「{1}」的草稿。將它載入編輯器或丟棄以繼續。
draftRevisionMismatch=本頁面的共享草稿中的此圖表有不同的版本。請從草稿編輯該圖表以確保您使用的是最新版本。
selectDraft=選擇一個草稿以繼續編輯:
dragAndDropNotSupported=不支援圖片拖放。是否使用匯入功能?
dropboxCharsNotAllowed=不得使用以下字元:\ / : ? * " |
check=檢查
checksum=校驗碼
circle=圓形
cisco=Cisco
classic=經典
clearDefaultStyle=清除預設樣式
clearWaypoints=清除路徑點
clipart=剪貼畫
close=關閉
closingFile=關閉檔案中
realtimeCollaboration=即時協作
collaborate=協作
collaborator=協作者
collaborators=協作者
collapse=收起
collapseExpand=收起/展開
collapse-expand=點選以收起/展開\nShift+點選以移動周邊 \nAlt+點選以保護組大小
collapsible=可收展
comic=手繪
comment=評論
commentsNotes=評論/備註
compress=壓縮
configuration=組態
connect=連線
connecting=連線中
connectWithDrive=連結至 Google 雲端硬碟
connection=連接線
connectionArrows=連接箭頭
connectionPoints=連接點
connector=連接器
constrainProportions=限制寬高比
containsValidationErrors=含有驗證錯誤
copiedToClipboard=已複製到剪貼簿
copy=複製
copyConnect=連接時複製
copyCreated=已建立檔案副本。
copyData=複製資料
copyOf={1} 的副本
copyOfDrawing=圖紙副本
copySize=複製大小
copyStyle=複製樣式
copyTextStyle=複製文本樣式
create=新增
createDiagram=建立圖表
createBlankDiagram=建立空白圖表
createNewDiagram=新增圖表
createRevision=新增修訂版本
createShape=新增圖形
crop=裁剪
curved=曲線
custom=自訂
current=目前
currentPage=目前頁面
cut=剪下
dashed=虛線
decideLater=稍後再決定
default=預設
delete=刪除
deleteAll=全部刪除
deleteColumn=刪除欄
deleteLibrary401=沒有足夠許可權刪除此圖庫
deleteLibrary404=未找到所選圖庫
deleteLibrary500=刪除圖庫時出錯
deleteLibraryConfirm=即將永久刪除此圖庫。您確定要這樣做嗎?
deleteRow=刪除列
description=描述
describeYourDiagram=描述您的圖表
device=裝置
diagram=圖表
diagramContent=圖表內容
diagramLocked=圖表已鎖住,以避免進一步的資料損失。
diagramLockedBySince=此圖表已被 {1} 鎖定 {2} 前
diagramName=圖表名稱
diagramIsPublic=圖表是公開的
diagramIsNotPublic=圖表未公開
diamond=菱形
diamondThin=菱形(細)
didYouKnow=您可知道...
direction=方向
discard=放棄
discardChangesAndReconnect=放棄所作變更並重新連線
googleDriveMissingClickHere=找不到 Google 雲端硬碟?請按此!
discardChanges=放棄變更
disconnected=連線中斷
distribute=等距分佈
done=完成
doNotShowAgain=不再顯示
dotted=點線
doubleClickOrientation=雙擊改變方向
doubleClickTooltip=雙撃插入文字
doubleClickChangeProperty=雙撃更改屬性名
download=下載
downloadDesktop=取得桌面應用程式
downloadAs=下載為
clickHereToSave=點擊此處存檔。
dpi=DPI
draftDiscarded=草稿已丟棄
draftSaved=草稿已儲存
dragElementsHere=把元件拖到這裏
dragImagesHere=把圖片或連結拖到這裏
dragUrlsHere=把連結拖到這裏
draw.io=draw.io
drawing=圖紙{1}
drawingEmpty=圖紙空白
drawingTooLarge=圖紙過大
drawioForWork=Draw.io for GSuite
dropbox=Dropbox
duplicate=建立副本
duplicateIt=建立{1}的副本
divider=分隔線
dx=Dx
dy=Dy
east=東
edit=編輯
editData=編輯資料
editDiagram=編輯圖表
editGeometry=編輯幾何圖形
editImage=編輯圖片
editImageUrl=編輯圖片超連結
editLink=編輯連結
editPolygon=編輯多邊形
editShape=編輯圖形
editStyle=編輯樣式
editText=編輯文字
editTooltip=編輯提示
glass=玻璃
googleImages=Google 圖片
imageSearch=圖片搜尋
eip=EIP
effects=效果
embed=嵌入
embedFonts=嵌入字型
embedImages=嵌入圖片
mainEmbedNotice=將此貼入頁面
electrical=電路
ellipse=橢圓形
embedNotice=貼上至本頁頁尾處
enterGroup=進入群組
enterName=輸入名稱
enterPropertyName=輸入屬性名
enterValue=輸入值
entityRelation=實體關係
entityRelationshipDiagram=E-R 圖
error=錯誤
errorDeletingFile=刪除檔案時發生錯誤
errorLoadingFile=載入檔案時發生錯誤
errorRenamingFile=檔案更名時發生錯誤
errorRenamingFileNotFound=檔案更名時發生錯誤。找不到該檔案。
errorRenamingFileForbidden=檔案更名錯誤。沒有足夠的存取權。
errorSavingDraft=儲存草稿時發生錯誤
errorSavingFile=儲存檔案時發生錯誤
errorSavingFileUnknown=Google服務授權失敗。請重新載入頁面然後再試。
errorSavingFileForbidden=儲存檔案時發生錯誤。沒有足夠的存取權。
errorSavingFileNameConflict=無法儲存此圖表。目前頁面已存在名為「{1}」的檔案。
errorSavingFileNotFound=儲存檔案時發生錯誤。找不到檔案。
errorSavingFileReadOnlyMode=唯讀模式啟動時無法儲存圖表。
errorSavingFileSessionTimeout=你的會話已經結束。請 <a target='_blank' href='{1}'>{2}</a>,然後返回此選項卡並再次儲存。
errorSendingFeedback=傳送回饋意見時發生錯誤。
errorUpdatingPreview=更新預覽畫面出錯。
exit=退出
exitGroup=退出編輯組
expand=展開
explore=探索
export=匯出
exporting=匯出中
exportAs=匯出為
exportOptionsDisabled=已停用匯出
exportOptionsDisabledDetails=擁有者已禁止留言者和瀏覽者下載,列印或複製此檔案。
externalChanges=外部變更
extras=其他
failedToSaveTryReconnect=存檔失敗,正嘗試重新連線
featureRequest=新功能建議
feedback=意見回饋
feedbackSent=回饋傳送成功。
floorplans=平面圖
file=檔案
fileChangedOverwriteDialog=檔案已更改。是否存檔並覆寫改動內容?
fileChangedSyncDialog=檔案已修改。
fileChangedSync=檔案已修改。按一下此處以進行同步。
overwrite=覆蓋
synchronize=同步
filename=檔案名稱
fileExists=檔案已存在
fileMovedToTrash=檔案已移到資源回收桶
fileNearlyFullSeeFaq=檔案容量即將達到上限,請參閱常見問題集
fileNotFound=找不到檔案
repositoryNotFound=未找到儲存庫
fileNotFoundOrDenied=找不到該檔案。該檔案不存在或您沒有存取權限。
fileNotLoaded=檔案無法載入
fileNotSaved=檔案無法儲存
fileOpenLocation=您想如何開啟這些檔案 ?
filetypeHtml=.html 會將檔案儲存為 HTML 並重新導向至雲端 URL
filetypePng=.png 會將檔案儲存為含有嵌入資料的 PNG
filetypeSvg=.svg 會將檔案儲存為含有嵌入資料的 SVG
fileWillBeSavedInAppFolder={1}將會儲存在應用資料夾。
fill=填滿
fillColor=填滿顏色
filterCards=篩選卡片
find=搜尋
findInDiagram=在圖表中尋找
fit=適應大小
fitContainer=調整容器大小
fitIntoContainer=適應容器大小
fitPage=整頁顯示
fitPageWidth=與頁面等寬
fitTo=適應
fitToSheetsAcross=橫向頁面
fitToBy=及
fitToSheetsDown=縱向頁面
fitTwoPages=雙頁
fitWindow=適應視窗大小
flip=翻轉
flipH=水平鏡像
flipV=垂直鏡像
flowAnimation=流程動畫
flowchart=流程圖
folder=資料夾
font=字型
fontColor=文字顏色
fontFamily=字型
fontSize=文字大小
forbidden=您沒有該檔案的存取權限
format=格式
formatAnimatedGif=動畫 GIF
formatPanel=格式面板
formatted=格式化
formattedText=格式化文字
formatPng=PNG
formatGif=GIF
formatJpg=JPEG
formatPdf=PDF
formatSql=SQL
formatSvg=SVG
formatHtmlEmbedded=HTML
formatVsdx=VSDX
formatWebp=WebP
formatXml=XML
forum=討論/幫助論壇
freehand=手繪
fromTemplate=從樣板開啟
fromTemplateUrl=從樣板URL開啟
fromText=從文字
fromUrl=從URL
fromThisPage=從此頁
fullscreen=全螢幕
gap=間距
gcp=GCP
general=一般
getNotionChromeExtension=取得 Notion 的 Chrome 擴充功能
github=GitHub
gitlab=GitLab
gliffy=Gliffy
global=全域
googleDocs=Google 文件
googleDrive=Google 雲端硬碟
googleGadget=Google Gadget
googleSharingNotAvailable=分享功能只在使用 Google Drive 時可用。請按下方的「開啟」從功能表中分享。
googleSlides=Google 簡報
googleSites=Google 協作平台
googleSheets=Google 試算表
gradient=漸層
gradientColor=顏色
grid=網格
gridColor=網格線顏色
gridSize=網格大小
group=群組
guides=參考線
heading=標題
height=高
help=說明
helpTranslate=協助我們翻譯此應用程式
hide=隱藏
hideIt=隱藏 {1}
hidden=已隱藏
shiftClickShowOnly=Shift+點擊:僅顯示 {1}
highContrast=高對比
home=首頁
horizontal=水平
horizontalFlow=水平流線
horizontalTree=水平樹狀
howTranslate=您所選語言的翻譯品質如何?
html=HTML
htmlText=HTML文字
id=ID
iframe=IFrame
ignore=忽略
image=圖片
imageUrl=圖片URL
images=圖片
imagePreviewError=無法載入此圖片進行預覽。請核對URL。
imageTooBig=圖片太大
imgur=Imgur
import=匯入
importFrom=從...匯入
includeCopyOfMyDiagram=包含我的圖表的副本
increaseIndent=增加內縮
decreaseIndent=減少內縮
insert=插入
insertColumnBefore=插入左方欄
insertColumnAfter=插入右方欄
insertDiagramFromClipboard=從剪貼簿插入圖表
insertEllipse=插入橢圓
insertImage=插入圖片
insertHorizontalRule=插入水平線
insertLink=插入連結
insertPage=插入頁面
insertRectangle=插入矩形
insertRhombus=插入菱形
insertRowBefore=插入上方列
insertRowAfter=插入下方列
insertText=插入文字
inserting=正在插入
installApp=安裝 App
invalidFilename=圖表名稱不得包含以下字元:\ / | : ; { } < > & + ? = "
invalidLicenseSeeThisPage=您的授權無效,請參閱此<a target="_blank" href="https://www.drawio.com/doc/faq/license-drawio-confluence-jira-cloud">頁面</a>。
invalidInput=無效輸入
invalidName=無效名稱
invalidOrMissingFile=無效或遺失的檔案
invalidPublicUrl=無效的公開URL
invertSelection=反轉選擇
isometric=等角視圖
ios=iOS
italic=斜體
kennedy=Kennedy
keyboardShortcuts=快速鍵
labels=標籤
layers=圖層
landscape=橫向
language=語言
leanMapping=精實流圖
lastChange=最後一次修改:{1}之前
lessThanAMinute=一分鐘內
licensingError=授權出錯
licenseHasExpired={1}的授權已在{2}過期。請點擊這裡。
licenseRequired=此功能需要 draw.io 授權。
licenseWillExpire={1}的授權將在{2}過期。請點擊這裡。
light=淺色
lineJumps=線條跳接
linkAccountRequired=如果圖表非公開,則需要Google帳戶才能查看該連結。
linkText=連結文字
list=列表
minute=分鐘
minutes=分鐘
hours=小時
days=天
months=月
years=年
restartForChangeRequired=變更將在應用程式重新啟動後生效。
laneColor=泳道底色
languageCode=語言代碼
lastModified=最近修改
layout=版面配置
left=左
leftAlign=向左對齊
leftToRight=從左到右
libraryTooltip=將圖形拖放至此或按一下加號以插入。按兩下來編輯。
lightbox=光箱特效
line=邊線
lineend=邊線終點
lineheight=行高
linestart=邊線起點
linewidth=邊線寬度
link=連結
links=連結
loading=載入中
lock=鎖定
locked=已鎖定
lockUnlock=鎖定/解鎖
loggedOut=已登出
logIn=登入
lucidchart=Lucidchart
maps=地圖
mathematicalTypesetting=數學排版
makeCopy=建立副本
manual=手動
maximize=最大化
merge=合併
mermaid=Mermaid
microsoftOffice=Microsoft Office
microsoftExcel=Microsoft Excel
microsoftPowerPoint=Microsoft PowerPoint
microsoftWord=Microsoft Word
middle=垂直置中
minimal=極簡
minimize=最小化
misc=其他
mockups=模型
modern=現代
modificationDate=修改日期
modifiedBy=修改者
more=更多
moreResults=更多結果
moreShapes=更多圖形
move=移動
moveToFolder=移至目錄
moving=移動中
moveSelectionTo=將所選移至圖層 {1}
myDrive=我的雲端硬碟
myFiles=我的檔案
name=名稱
navigation=導航
network=網路
networking=網路
new=新增
newLibrary=新增圖庫
nextPage=下一頁
no=否
noPickFolder=不,選擇資料夾
noAttachments=未找到附件
noColor=無顏色
noFiles=無檔案
noFileSelected=未選擇檔案
noAnimationsInDiagram=圖表中未找到動畫
noLibraries=未找到圖庫
noMoreResults=無更多結果
none=無
noOtherViewers=無其他檢視使用者
noPlugins=無外掛
noPreview=無預覽畫面
noResponse=伺服器無回應
noResultsFor=未找到「{1}」的相關結果
noRevisions=無修訂
noSearchResults=無任何搜尋結果
noPageContentOrNotSaved=此頁面上找不到任何錨點,或錨點尚未儲存
normal=正常
north=向上漸層
notADiagramFile=非圖表檔案
notALibraryFile=非圖庫檔案
notAvailable=無法使用
notAUtf8File=非 UTF-8 檔案
notConnected=未連線
note=備註
notion=Notion
notSatisfiedWithImport=對匯入結果不滿意?
notUsingService=未使用 {1} ?
numberedList=編號列表
offline=離線
ok=確定
oneDrive=OneDrive
online=線上
opacity=不透明度
open=開啟
openArrow=開放的箭頭
openExistingDiagram=開啟現有圖表
openFile=開啟檔案
openFrom=從...開啟
openLibrary=開啟圖庫
openLibraryFrom=從...開啟圖庫
openLink=開啟連結
openInNewWindow=在新視窗開啟
openInThisWindow=在本視窗開啟
openIt=開啟{1}
openRecent=開啟最近使用檔案
openSupported=本軟體支援的檔案格式為本軟體產生之(.xml),.vsdx和.gliffy
options=選項
organic=力導向配置圖
orgChart=組織圖
orthogonal=正交
orthogonalStrict=正交 (嚴格)
otherViewer=其他檢視之使用者
otherViewers=其他檢視之使用者
outline=大綱
oval=橢圓
page=頁面
pageContent=頁面內容
pageNotFound=未找到頁面
pageWithNumber=第{1}頁
pages=頁面
pageTabs=頁面標籤
pageView=頁面檢視
pageSetup=頁面設定
pageScale=頁面縮放
pan=移動畫布
panTooltip=按住空格鍵並拖曳以移動畫布
paperSize=紙張大小
pattern=圖案樣式
parallels=平行線
paste=貼上
pasteData=貼上資料
pasteHere=貼在此處
pasteSize=貼上大小
pasteStyle=貼上樣式
pasteTextStyle=貼上文本樣式
perimeter=周長
permissionAnyone=任何人都可編輯
permissionAuthor=擁有者和管理員可編輯
pickFolder=選擇目錄
pickLibraryDialogTitle=選擇圖庫
publicDiagramUrl=圖表的公共URL
placeholders=佔位字元
plantUml=PlantUML
plugins=外掛
pluginUrl=外掛URL
pluginWarning=該頁面已請求載入下列外掛:\n\n{1}\n\n你想要即刻載入這些外掛嗎?\n\n注:請在充分瞭解這樣做的安全性及影響後,方才允許外掛的運行。\n
plusTooltip=單擊以連接和複製(ctrl +單擊複製,shift +單擊連接)。拖動以連接(ctrl + 拖動以複製)。
polygon=多邊形
portrait=直向
position=位置
posterPrint=海報列印
preferences=偏好
preview=預覽
previousPage=上一頁
presentationMode=簡報模式
print=列印
procEng=工藝過程
project=專案
priority=優先級
processForHiringNewEmployee=新員工招聘流程
promptOnly=僅提示
promptWithDiagram=帶圖表提示
promptWithSelection=帶選取提示
properties=屬性
publish=發佈
quickStart=快速入門教程
rack=機架
radial=放射狀
radialTree=徑向圖
readOnly=唯讀
reconnecting=正在重新連線
recentlyUpdated=最近更新
recentlyViewed=最近閱覽
rectangle=矩形
redirectToNewApp=此檔案是由該應用的新版本創建或修改的,將重新定向。
realtimeTimeout=似乎您在離線時作了一些更改。很遺憾,這些更改無法儲存。
redo=重作
refresh=更新
regularExpression=正規表示式
relative=相對
relativeUrlNotAllowed=不允許使用相對 URL
rememberMe=記住我
rememberThisSetting=記住設定
removeFormat=清除格式
removeFromGroup=移出群組
removeIt=刪除{1}
removeWaypoint=刪除路徑點
rename=重新命名
renamed=已重新命名
renameIt=重新命名 {1}
renaming=正在重新命名
replace=取代
replaceIt={1}已經存在。是否要取代它?
replaceExistingDrawing=取代現有圖紙
required=必填
requirementDiagram=需求圖
reset=重設
resetView=重設檢視
resize=調整大小
resizeLargeImages=您是否要縮小大圖尺寸以使程式執行地更快?
retina=Retina
responsive=響應式
restore=復原
restoring=復原中
retryingIn={1}秒後重試
retryingLoad=載入失敗。重試中...
retryingLogin=登入逾時。重試中...
reverse=逆轉
revision=修訂
revisionHistory=修訂歷史
rhombus=菱形
right=右
rightAlign=向右對齊
rightToLeft=由右至左
rotate=旋轉
rotateTooltip=點選並拖曳旋轉,或單擊旋轉90度
rotation=旋轉
rounded=圓角
save=儲存
saveAndExit=儲存並退出
saveAs=另存新檔
saveAsXmlFile=儲存為 XML 檔?
saved=已儲存
saveDiagramFirst=請先儲存圖表
saveDiagramsTo=將圖表儲存到
saveLibrary403=沒有足夠的權限編輯此圖庫
saveLibrary500=儲存圖庫時發生錯誤
saveLibraryReadOnly=唯讀模式啟用時無法儲存圖庫
saving=儲存中
scratchpad=便箋本
scrollbars=捲軸
search=搜尋
searchShapes=搜尋圖形
searchShapesInOpenLibraries=在已開啟的圖庫中搜尋圖形
selectAll=全選
selectionOnly=僅所選範圍
selectCard=選擇卡片
selectEdges=選擇邊
selectedPage=已選取的頁面
selectFile=選擇檔案
selectFolder=選擇目錄
selectFont=選擇字型
selection=選取範圍
selectNone=全不選
selectObjectsInLayer=在圖層中選擇對象
selectTemplate=選擇樣板
selectVertices=選擇頂點
sendBackward=下移一層
sendMessage=傳送
sendYourFeedback=傳送您的回饋意見
sequenceDiagram=循序圖
serviceUnavailableOrBlocked=服務無法使用或已被阻擋
sessionExpired=工作階段已過期。請重新載入瀏覽器畫面。
sessionTimeoutOnSave=您的工作階段已逾時,且與 Google Drive 斷線。按下確定以登入並儲存。
setAsDefaultStyle=設為預設樣式
settings=設定
shadow=陰影
shadows=陰影
shape=圖形
shapes=圖形
share=共用
shareCursor=共用滑鼠游標
shareLink=分享編輯連結
sharingAvailable=Google Drive 及 OneDrive 檔案可以共用。
saveItToGoogleDriveToCollaborate=您需要先將「{1}」儲存到 Google Drive,才能進行協作。
saveToGoogleDrive=儲存到 Google Drive
sharp=銳角
show=顯示
showRemoteCursors=顯示遠端滑鼠游標
showStartScreen=顯示開始畫面
sidebarTooltip=點擊或拖放圖形。Shift+點擊以更改選擇。Alt+點擊以插入並連接。
signs=標誌
signOut=登出
simple=簡單
simpleArrow=簡單箭頭
simpleViewer=簡單檢視器
size=大小
sketch=草圖
smoothing=平滑化
snapToGrid=貼齊格線
solid=實線
sourceSpacing=來源間距
south=南
software=軟體
space=空間
spacing=間距
specialLink=特殊連結
stateDiagram=狀態圖
standard=標準
startDrawing=開始繪圖
stopDrawing=停止繪圖
starting=啟動中
straight=直線
strikethrough=刪除線
strokeColor=線條顏色
style=樣式
subscript=下標
summary=總結
superscript=上標
support=支援
swap=交換
swimlaneDiagram=泳道圖
sysml=SysML
tags=標籤
table=表格
tables=表格
takeOver=接管
targetSpacing=目標間距
template=樣板
templates=樣板
text=文字
textAlignment=文字對齊
textOpacity=文字不透明度
theme=佈景主題
timeout=逾時
title=標題
to=至
toBack=移動到最下層
toFront=移動到最上層
tooLargeUseDownload=檔案過大,請改用下載。
toolbar=工具列
tooltips=工具提示
top=上
topAlign=向上對齊
topLeft=左上
topRight=右上
transparent=透明
transparentBackground=透明背景
trello=Trello
tryAgain=再試一次
tryOpeningViaThisPage=嘗試透過此頁面開啟
turn=僅旋轉形狀 90°
type=類型
typeSlashToSearch=輸入 / 以搜尋
uml=UML
unassigned=未指派
underline=底線
undo=還原
ungroup=取消群組
unlock=解鎖
unmerge=取消合併
unsavedChanges=未儲存的修改
unsavedChangesClickHereToSave=修改未儲存。點此以儲存。
untitled=未命名
untitledDiagram=未命名圖表
untitledLayer=未命名圖層
untitledLibrary=未命名圖庫
unknownError=未知錯誤
unknownUser=未知使用者
updateExistingDrawing=更新現有繪圖
updateFile=更新{1}
updatingDocument=文件更新中。請稍候...
updatingPreview=預覽更新中。請稍候...
updatingSelection=選擇更新中。請稍候...
upload=上傳
url=URL
useBlackAndWhite=使用黑白
useCurrentSettings=使用目前設定
useOffline=離線使用
userDefined=使用者自訂
useRootFolder=使用根資料夾?
userManual=使用手冊
vertical=垂直
verticalFlow=垂直流線
verticalTree=垂直樹狀
view=檢視
viewerSettings=檢視器設定
viewUrl=用於檢視的連結:{1}
warning=警告
waypoints=路徑點
west=西
where=位置
width=寬
wiki=Wiki
wordWrap=自動換行
writingDirection=書寫方向
yes=是
yourEmailAddress=您的電子信箱
zoom=縮放
zoomIn=放大
zoomOut=縮小
basic=基本圖形
businessprocess=業務流程圖
charts=圖表
engineering=工程圖
flowcharts=流程圖
gmdl=材料設計
mindmaps=心智圖
mockups=模擬圖
networkdiagrams=網路結構圖
nothingIsSelected=未選擇任何項目
other=其他
softwaredesign=軟體設計
venndiagrams=文氏圖
webEmailOrOther=網址、電子信箱或任何其他網路地址
webLink=網頁連結
wireframes=線框圖
property=屬性
value=值
showMore=顯示更多
showLess=顯示更少
myDiagrams=我的圖表
allDiagrams=全部圖表
recentlyUsed=最近使用
listView=列表檢視
gridView=網格檢視
resultsFor=「{1}」的結果
oneDriveCharsNotAllowed=不允許這些字元:~ " # % * : < > ? / \ { | }
oneDriveInvalidDeviceName=裝置名稱無效
officeNotLoggedOD=您尚未登入 OneDrive。請開啟 draw.io 工作列並登入。
officeSelectSingleDiag=請僅選擇單一 draw.io 圖表,不要包含其他內容。
officeSelectDiag=請選擇 draw.io 圖表
officeCannotFindDiagram=在選取範圍中找不到 draw.io 圖表
noDiagrams=未找到圖表
authFailed=認證失敗
officeFailedAuthMsg=無法成功驗證使用者或授權應用程式。
convertingDiagramFailed=轉換圖表失敗
officeCopyImgErrMsg=由於主應用程式的某些限制,無法插入圖片。 請手動複製圖片,然後貼上到文件中。
insertingImageFailed=插入圖片失敗
officeCopyImgInst=操作說明:右鍵點擊下方圖片,從快顯功能表中選擇「複製圖片」。然後在文件中右鍵點擊,從快顯功能表中選擇「貼上」。
folderEmpty=資料夾為空
recent=最近使用
sharedWithMe=與我共用
sharepointSites=SharePoint 網站
errorFetchingFolder=取得資料夾項目時發生錯誤
errorAuthOD=OneDrive 認證失敗
officeMainHeader=將 draw.io 圖表加入您的文件
officeStepsHeader=此增益集執行以下步驟:
officeStep1=連線到 Microsoft OneDrive、Google Drive 或您的裝置
officeStep2=選擇 draw.io 圖表
officeStep3=插入圖表至文件
officeAuthPopupInfo=請於彈出視窗中完成認證
officeSelDiag=選擇 draw.io 圖表:
files=檔案
shared=已分享
sharepoint=Sharepoint
officeManualUpdateInst=說明:從文件中複製 draw.io 圖表。然後,在下方方塊中按一下滑鼠右鍵,並從快顯功能表中選擇「貼上」。
officeClickToEdit=按一下圖示以開始編輯:
pasteDiagram=在此處貼上 draw.io 圖表
connectOD=連線到 OneDrive
selectChildren=選取子項
selectSiblings=選取同層項目
selectParent=選取父項
selectDescendants=選取所有子代
lastSaved=上次儲存於 {1} 前
resolve=解決
reopen=重新開啟
showResolved=顯示已解決
reply=回覆
objectNotFound=找不到物件
reOpened=已重新開啟
markedAsResolved=標示為已解決
noCommentsFound=找不到留言
comments=留言
timeAgo={1} 前
confluenceCloud=Confluence 雲端
libraries=圖庫
confAnchor=Confluence 頁面錨點
confTimeout=連線逾時
confSrvTakeTooLong={1} 伺服器太久無回應
confCannotInsertNew=無法在新的 Confluence 頁面中插入 draw.io 圖表
confSaveTry=請儲存頁面並重試
confCannotGetID=無法確認頁面 ID
confContactAdmin=請聯絡您的 Confluence 管理員。
readErr=讀取錯誤
editingErr=編輯錯誤
confExtEditNotPossible=圖表無法在外部編輯。請嘗試在編輯頁面時編輯它。
confEditedExt=圖表/頁面已在外部編輯
diagNotFound=找不到圖表
confEditedExtRefresh=圖表/頁面已在外部編輯。請重新整理頁面。
confCannotEditDraftDelOrExt=無法編輯草稿頁面中的圖表、圖表已從頁面中刪除,或圖表已在外部編輯。請檢查頁面。
retBack=返回
confDiagNotPublished=該圖表不屬於已發布的頁面
createdByDraw=使用 draw.io 製作
filenameShort=檔名太短
invalidChars=無效字元
alreadyExst={1} 已存在
draftReadErr=草稿讀取錯誤
diagCantLoad=無法載入圖表
draftWriteErr=草稿寫入錯誤
draftCantCreate=無法建立草稿
confDuplName=偵測到重複的圖表名稱。請取其它名稱。
confSessionExpired=工作階段似乎過期了。重新登入以繼續工作。
login=登入
drawPrev=draw.io 預覽
drawDiag=draw.io 圖表
invalidCallFnNotFound=無效呼叫:{1} 不存在
invalidCallErrOccured=無效呼叫:發生錯誤, {1}
anonymous=匿名
confGotoPage=前往所在頁面
showComments=顯示留言
confError=錯誤:{1}
gliffyImport=匯入 Gliffy
gliffyImportInst1=按一下「開始匯入」按鈕,將所有 Gliffy 圖表匯入 draw.io。
gliffyImportInst2=請注意,匯入程序需要一些時間,在匯入完成之前,瀏覽器視窗必須保持開啟。
startImport=開始匯入
drawConfig=draw.io 組態
customLib=自訂圖庫
customTemp=自訂樣板
pageIdsExp=匯出頁面 ID
drawReindex=draw.io 重新索引中
working=處理中
drawConfigNotFoundInst=draw.io 組態空間 (DRAWIOCONFIG) 不存在。儲存 draw.io 組態檔和自訂圖庫/樣板時需要該空間。
createConfSp=建立組態空間
unexpErrRefresh=發生意外錯誤,請重新整理頁面,然後重試。
configJSONInst=在下方編輯器中編寫 draw.io JSON 組態,然後按一下儲存。如需協助,請參閱
thisPage=此頁面
curCustLib=當前自訂圖庫
libName=圖庫名稱
action=動作
drawConfID=draw.io 組態 ID
addLibInst=點擊「新增圖庫」按鈕並上傳一份新圖庫。
addLib=新增圖庫
customTempInst1=自訂樣板是儲存在以下頁面的子頁面中的 draw.io 圖表
customTempInst2=更多詳細資訊,請參考
tempsPage=樣板頁面
pageIdsExpInst1=選擇匯出目標,然後點擊「開始匯出」按鈕並匯出所有頁面 ID。
pageIdsExpInst2=請注意,匯出過程將需要一些時間,且在匯出完成前必須保持瀏覽器視窗開啟。
startExp=開始匯出