-
Notifications
You must be signed in to change notification settings - Fork 18
/
zh_tw.nhloc
10417 lines (10417 loc) · 432 KB
/
zh_tw.nhloc
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
{
"$schema": "https://www.ptgui.com/schemas/nhloc_v2.schema.json",
"line_endings": "unix",
"contributors": [
"Allen Chen"
],
"languagenamelocalized": "繁體中文",
"startupmsg": "修訂日期2021-06-29。\n\n翻譯可能並不完美,但希望理解大致上的意思。\n如有必要,您可以到%0 |切換原始英文。\n\n如果您有興趣,請通過更正中文翻譯中的任何錯誤來幫助我們改進PTGui。\n有關更多資訊,請參閱:'@help@ - @txt.improvetranslation@'。",
"strings": [
{
"id": "txt.improvetranslation",
"txt": "優化繁中"
},
{
"id": "txt.translationby",
"txt": "中文翻譯:%0(謝謝!)"
},
{
"id": "txt.yesbutton",
"txt": "是(&Y)"
},
{
"id": "warn.overwriteptgui10.overwritebutton",
"txt": "覆蓋(&V)"
},
{
"id": "warn.overwriteptgui10.renamebutton",
"txt": "重新命名(&R)"
},
{
"id": "txt.applybutton",
"txt": "套用(&P)"
},
{
"id": "txt.apply",
"txt": "套用"
},
{
"id": "txt.convert",
"txt": "轉換"
},
{
"id": "txt.convertbutton",
"txt": "轉換(&O)"
},
{
"id": "txt.savebutton",
"txt": "儲存(&S)"
},
{
"id": "txt.dontsavebutton",
"txt": "不儲存(&D)"
},
{
"id": "txt.nobutton",
"txt": "否(&N)"
},
{
"id": "upto",
"txt": "至"
},
{
"id": "mm",
"txt": "mm"
},
{
"id": "colon",
"txt": ":"
},
{
"id": "zoomfit",
"txt": "適應"
},
{
"id": "mmpostfix",
"txt": " @mm@"
},
{
"id": "txt.bytes",
"txt": "位元組"
},
{
"id": "txt.kb",
"txt": "KB"
},
{
"id": "txt.mb",
"txt": "MB"
},
{
"id": "txt.gb",
"txt": "GB"
},
{
"id": "txt.finderorexplorer",
"format": "html",
"txt": "<optional platform='windows'>Windows檔案總管</optional><optional platform='mac'>發現者</optional><optional platform='linux'>檔案總管</optional>"
},
{
"id": "txt.tb",
"txt": "TB"
},
{
"id": "help",
"txt": "幫助"
},
{
"id": "ok",
"txt": "是"
},
{
"id": "cancel",
"txt": "取消"
},
{
"id": "delete",
"txt": "刪除"
},
{
"id": "reset",
"txt": "重置"
},
{
"id": "defaults",
"txt": "預設值"
},
{
"id": "presetbutton",
"txt": "快速設置"
},
{
"id": "saveas",
"txt": "另存為"
},
{
"id": "files",
"txt": "檔"
},
{
"id": "all",
"txt": "所有"
},
{
"id": "default",
"txt": "預設值"
},
{
"id": "yaw",
"txt": "偏航yaw"
},
{
"id": "pitch",
"txt": "俯仰pitch"
},
{
"id": "roll",
"txt": "滾動roll"
},
{
"id": "pan",
"txt": "平移"
},
{
"id": "tilt",
"txt": "傾斜"
},
{
"id": "viewpoint",
"txt": "觀點"
},
{
"id": "abort",
"txt": "退出"
},
{
"id": "illwait",
"txt": "繼續"
},
{
"id": "txt.error",
"txt": "錯誤"
},
{
"id": "mainwindow.tabs.projectassistant",
"txt": "工程助理"
},
{
"id": "mainwindow.tabs.sourceimages",
"txt": "影像"
},
{
"id": "mainwindow.tabs.lenssettings",
"txt": "鏡頭設定"
},
{
"id": "mainwindow.tabs.crop",
"txt": "修剪"
},
{
"id": "mainwindow.tabs.mask",
"txt": "遮罩"
},
{
"id": "mainwindow.tabs.imageparameters",
"txt": "影像參數"
},
{
"id": "mainwindow.tabs.controlpoints",
"txt": "控制點"
},
{
"id": "mainwindow.tabs.optimizer",
"txt": "優化"
},
{
"id": "mainwindow.tabs.exposurehdr",
"txt": "曝光/HDR"
},
{
"id": "mainwindow.tabs.exposurehdr_nonpro",
"txt": "曝光"
},
{
"id": "mainwindow.tabs.projectsettings",
"txt": "專案設定"
},
{
"id": "mainwindow.tabs.preview",
"txt": "預覽"
},
{
"id": "mainwindow.tabs.metadata",
"txt": "Metadata"
},
{
"id": "mainwindow.tabs.createpanorama",
"txt": "建立全景"
},
{
"id": "menubar.file",
"txt": "檔案"
},
{
"id": "menubar.file.newproject",
"txt": "開新專案"
},
{
"id": "menubar.file.openproject",
"txt": "載入專案"
},
{
"id": "txt.openpapywizardfile",
"txt": "載入Papywizard檔案"
},
{
"id": "txt.savepanorama",
"txt": "儲存全景"
},
{
"id": "txt.replaceimage",
"txt": "替換影像"
},
{
"id": "txt.savecameraresponsecurve",
"txt": "儲存相機應對曲線"
},
{
"id": "txt.loadcameraresponsecurve",
"txt": "載入相機應對曲線"
},
{
"id": "txt.savevignettingcurve",
"txt": "儲存漸暈曲線"
},
{
"id": "txt.loadvignettingcurve",
"txt": "載入漸暈曲線"
},
{
"id": "txt.savewebpagetemplate",
"txt": "儲存網頁模板"
},
{
"id": "txt.selectwebpagetemplate",
"txt": "選擇網頁模板"
},
{
"id": "txt.savetonemapsettings",
"txt": "儲存色調對映設定"
},
{
"id": "txt.loadtonemapsettings",
"txt": "載入色調對映設定"
},
{
"id": "txt.openpanorama",
"txt": "載入全景"
},
{
"id": "txt.supportedformats",
"txt": "支援的格式"
},
{
"id": "menubar.file.recentprojects",
"txt": "最近的專案"
},
{
"id": "menubar.file.applytemplate",
"txt": "套用模板"
},
{
"id": "menubar.file.applytemplate.other",
"txt": "其他"
},
{
"id": "menubar.file.import",
"txt": "置入"
},
{
"id": "menubar.file.saveproject",
"txt": "儲存專案"
},
{
"id": "menubar.file.saveprojectas",
"txt": "另存專案"
},
{
"id": "menubar.file.saveastemplate",
"txt": "另存模板"
},
{
"id": "menubar.file.export",
"txt": "輸出"
},
{
"id": "menubar.file.export.ptgui10project",
"txt": "PTGui 10專案"
},
{
"id": "ptgui10export.warning",
"txt": "請注意,並非PTGui 10及更早版本支援此版本PTGui的所有功能。雖然PTGui 10將能夠打開導出的專案,但全景圖可能看起來不同。"
},
{
"id": "menubar.file.makedefault",
"txt": "儲存專案預設值"
},
{
"id": "makedefault.confirmation",
"txt": "是否要將目前設定用作新專案的預設設定?"
},
{
"id": "menubar.file.resetdefault",
"txt": "重置專案預設值"
},
{
"id": "resetdefault.confirmation",
"txt": "這將刪除新專案的已儲存預設設定。啟動新專案時,PTGui將使用自己的預設參數。"
},
{
"id": "menubar.file.newinstance",
"txt": "另開專案視窗"
},
{
"id": "menubar.file.closewindow",
"txt": "關閉視窗"
},
{
"id": "menubar.file.exit",
"txt": "退出"
},
{
"id": "menubar.edit",
"txt": "編輯"
},
{
"id": "menubar.edit.undo",
"txt": "還原"
},
{
"id": "menubar.edit.redo",
"txt": "重做"
},
{
"id": "menubar.edit.cut",
"txt": "剪下"
},
{
"id": "menubar.edit.copy",
"txt": "複製"
},
{
"id": "menubar.edit.paste",
"txt": "貼上"
},
{
"id": "menubar.edit.selectall",
"txt": "全選"
},
{
"id": "batchstitcher.menubar.process",
"txt": "處理"
},
{
"id": "batchstitcher.menubar.process.run",
"txt": "開始"
},
{
"id": "batchstitcher.menubar.process.stop",
"txt": "停止"
},
{
"id": "menubar.view",
"txt": "檢視"
},
{
"id": "menubar.view.zoomin",
"txt": "放大"
},
{
"id": "menubar.view.zoomout",
"txt": "縮小"
},
{
"id": "menubar.view.zoomtofit",
"txt": "縮放至適合"
},
{
"id": "menubar.view.zoomtopercent",
"txt": "放大到"
},
{
"id": "menubar.view.previousimage",
"txt": "上一張影像"
},
{
"id": "menubar.view.nextimage",
"txt": "下一張影像"
},
{
"id": "menubar.view.previousblendplane",
"txt": "以前的拼接平面"
},
{
"id": "menubar.view.nextblendplane",
"txt": "下一個拼接平面"
},
{
"id": "menubar.view.enterfullscreen",
"txt": "進入全螢幕"
},
{
"id": "menubar.view.exitfullscreen",
"txt": "退出全螢幕"
},
{
"id": "menubar.images",
"txt": "影像"
},
{
"id": "menubar.mask",
"txt": "遮罩"
},
{
"id": "menubar.controlpoints",
"txt": "控制點"
},
{
"id": "menubar.tools",
"txt": "工具"
},
{
"id": "menubar.project",
"txt": "專案"
},
{
"id": "panoramaeditor",
"txt": "全景編輯"
},
{
"id": "menubar.help",
"txt": "@help@"
},
{
"id": "projection.equirectangular",
"txt": "等距離長方圓柱"
},
{
"id": "projection.stereographic",
"txt": "立體"
},
{
"id": "projection.rectilinear",
"txt": "直線"
},
{
"id": "projection.cylindrical",
"txt": "圓柱形"
},
{
"id": "projection.fisheye",
"txt": "魚眼鏡頭"
},
{
"id": "projection.circularfisheye",
"txt": "圓形魚眼"
},
{
"id": "projection.fullframefisheye",
"txt": "全幅魚眼"
},
{
"id": "projection.transverseequirectangular",
"txt": "橫向等長的"
},
{
"id": "projection.transversecylindrical",
"txt": "橫向圓柱形"
},
{
"id": "projection.mercator",
"txt": "麥卡托"
},
{
"id": "projection.transversemercator",
"txt": "橫向麥卡托"
},
{
"id": "projection.stereographicdown",
"txt": "向下立體圖"
},
{
"id": "projection.transversevedutismo",
"txt": "橫向vedutismo"
},
{
"id": "projection.vedutismo",
"txt": "vedutismo"
},
{
"id": "projectionpreset.spherical",
"txt": "球形:360°x 180°@+projection.equirectangular@"
},
{
"id": "projectionpreset.littleplanet",
"txt": "小星球:300°@+projection.stereographic@"
},
{
"id": "projectionpreset.cubeface",
"txt": "立方體面:90°@+projection.rectilinear@"
},
{
"id": "panoramaeditor.menubar.editindividualimages",
"txt": "編輯單個影像"
},
{
"id": "panoramaeditor.menubar.editpano",
"txt": "編輯整個全景圖"
},
{
"id": "panoramaeditor.imagexandy",
"txt": "影像%0和%1"
},
{
"id": "panoramaeditor.editmask",
"txt": "編輯遮罩"
},
{
"id": "panoramaeditor.editcontrolpoints",
"txt": "控制點"
},
{
"id": "panoramaeditor.excluded",
"txt": "(除外)"
},
{
"id": "panoramaeditor.someexcluded",
"txt": "(有些人除外)"
},
{
"id": "panoramaeditor.leftpane",
"txt": "(左窗格)"
},
{
"id": "panoramaeditor.rightpane",
"txt": "(右窗格)"
},
{
"id": "panoramaeditor.closemenu",
"txt": "關閉"
},
{
"id": "panoramaeditor.sidebar.tonemapsettings.enable",
"txt": "套用色調對映"
},
{
"id": "panoramaeditor.sidebar.tonemapsettings.brightness",
"txt": "亮度:"
},
{
"id": "panoramaeditor.sidebar.tonemapsettings.boostshadows",
"txt": "增強陰影:"
},
{
"id": "panoramaeditor.sidebar.tonemapsettings.reducelights",
"txt": "減少燈光:"
},
{
"id": "panoramaeditor.sidebar.tonemapsettings.autoboostreduce",
"txt": "自動增強/減少"
},
{
"id": "panoramaeditor.sidebar.tonemapsettings.compression",
"txt": "壓縮:"
},
{
"id": "panoramaeditor.sidebar.tonemapsettings.contrast",
"txt": "對比:"
},
{
"id": "panoramaeditor.sidebar.tonemapsettings.saturation",
"txt": "飽和:"
},
{
"id": "panoramaeditor.sidebar.tonemapsettings.loaddefaults",
"txt": "載入預設"
},
{
"id": "panoramaeditor.sidebar.exposurefusionsettings.sigma",
"txt": "西格瑪Sigma:"
},
{
"id": "panoramaeditor.sidebar.exposurefusionsettings.defaults",
"txt": "@defaults@"
},
{
"id": "panoramaeditor.sidebar.numericaltransform.heading",
"txt": "全景移動:"
},
{
"id": "panoramaeditor.sidebar.numericaltransform.yaw",
"txt": "@+yaw@:"
},
{
"id": "panoramaeditor.sidebar.numericaltransform.pitch",
"txt": "@+pitch@:"
},
{
"id": "panoramaeditor.sidebar.numericaltransform.roll",
"txt": "@+roll@:"
},
{
"id": "panoramaeditor.sidebar.numericaltransform.apply",
"txt": "@txt.apply@"
},
{
"id": "panoramaeditor.sidebar.numericaltransform.reset",
"txt": "@+reset@"
},
{
"id": "panoramaeditor.sidebar.projectionpanel.fov",
"txt": "視野:"
},
{
"id": "panoramaeditor.sidebar.projectionpanel.compression",
"txt": "壓縮:"
},
{
"id": "panoramaeditor.sidebar.projectionpanel.projection",
"txt": "投影:"
},
{
"id": "panoramaeditor.sidebar.projectionpanel.horizontal",
"txt": "水平:"
},
{
"id": "panoramaeditor.sidebar.projectionpanel.vertical",
"txt": "垂直:"
},
{
"id": "panoramaeditor.sidebar.display",
"txt": "設定"
},
{
"id": "panoramaeditor.sidebar.tonemapping",
"txt": "色調"
},
{
"id": "panoramaeditor.sidebar.exposurefusion",
"txt": "曝光融合"
},
{
"id": "panoramaeditor.sidebar.numtransform",
"txt": "數值"
},
{
"id": "panoramaeditor.sidebar.projection",
"txt": "投影"
},
{
"id": "panoramaeditor.sidebar.panoramapreviewsettingspanel.exposure",
"txt": "曝光:"
},
{
"id": "panoramaeditor.sidebar.panoramapreviewsettingspanel.blendplane",
"txt": "拼接模式:"
},
{
"id": "panoeditor.menubar.setcenter",
"txt": "重置中心點"
},
{
"id": "panoeditor.menubar.mouseover",
"txt": "在滑鼠指針下選擇影像"
},
{
"id": "panoeditor.menubar.blended",
"txt": "顯示拼接全景"
},
{
"id": "panoeditor.menubar.unblended",
"txt": "顯示未拼接全景"
},
{
"id": "panoeditor.menubar.showseams",
"txt": "顯示接縫"
},
{
"id": "panoeditor.menubar.showimagenumbers",
"txt": "顯示影像編號"
},
{
"id": "panoeditor.menubar.mode",
"txt": "模式"
},
{
"id": "panoeditor.menubar.edit.fitpano",
"txt": "適合全景"
},
{
"id": "panoeditor.menubar.edit.fitpanohorz",
"txt": "水平適合全景"
},
{
"id": "panoeditor.menubar.edit.fitpanovert",
"txt": "符合垂直全景"
},
{
"id": "panoeditor.menubar.edit.centerpanohorz",
"txt": "使水平全景居中"
},
{
"id": "panoeditor.menubar.edit.centerpanovert",
"txt": "垂直居中全景"
},
{
"id": "panoeditor.menubar.edit.straightenpano",
"txt": "拉直全景"
},
{
"id": "panoeditor.menubar.edit.level",
"txt": "使全景水平"
},
{
"id": "panoeditor.menubar.projection",
"txt": "投影"
},
{
"id": "panoeditor.menubar.tools.preview",
"txt": "在預覽器中顯示"
},
{
"id": "menubar.help.helpforthiswindow",
"txt": "此視窗協助"
},
{
"id": "menubar.help.videotutorial",
"txt": "影片教學"
},
{
"id": "menubar.help.whatsnew",
"txt": "新功能詳情"
},
{
"id": "menubar.help.ptgui.com",
"txt": "官方網站"
},
{
"id": "menubar.help.checkforupdates",
"txt": "檢查更新"
},
{
"id": "menubar.help.licenseinfo",
"txt": "許可證資訊"
},
{
"id": "menubar.help.systeminfo",
"txt": "系統資訊"
},
{
"id": "menubar.help.about",
"txt": "關於"
},
{
"id": "menubar.help.purchase",
"txt": "購買PTGui"
},
{
"id": "menubar.controlpoints.autojump",
"txt": "自動跳轉"
},
{
"id": "menubar.controlpoints.linkscrollbars",
"txt": "鏈接滾動條"
},
{
"id": "menubar.controlpoints.autoadd",
"txt": "自動新增"
},
{
"id": "menubar.controlpoints.autocontrast",
"txt": "增加對比度"
},
{
"id": "menubar.controlpoints.showmask",
"txt": "顯示遮罩"
},
{
"id": "menubar.controlpoints.generate",
"txt": "產生控制點"
},
{
"id": "menubar.controlpoints.generateforoverlapping",
"txt": "為所有重疊影像產生控制點"
},
{
"id": "menubar.controlpoints.deleteall",
"txt": "刪除所有控制點"
},
{
"id": "menubar.controlpoints.deleteworst",
"txt": "刪除最差控制點"
},
{
"id": "menubar.controlpoints.generateforselectedimages",
"txt": "為所選影像產生控制點"
},
{
"id": "menubar.controlpoints.generatefor",
"txt": "為%0產生控制點"
},
{
"id": "imagesxandy",
"txt": "影像%0和%1"
},
{
"id": "alignimages",
"txt": "對齊影像"
},
{
"id": "menubar.project.aligntogrid",
"txt": "對齊網格"
},
{
"id": "menubar.project.optimize",
"txt": "優化"
},
{
"id": "menubar.project.initializeandoptimize",
"txt": "初始化並優化"
},
{
"id": "menubar.project.preview",
"txt": "預覽"
},
{
"id": "createpanorama",
"txt": "建立全景"
},
{
"id": "menubar.project.saveandsendtobatchstitcher",
"txt": "儲存並發送至@batchstitcher@"
},
{
"id": "menubar.project.sendtemporarycopytobatchstitcher",
"txt": "將臨時副本發送至@batchstitcher@"
},
{
"id": "batchstitcher",
"txt": "批次縫合器"
},
{
"id": "batchlist",
"txt": "批次清單"
},
{
"id": "pressshiftforhelp",
"txt": "按Shift鍵獲取幫助......"
},
{
"id": "pressshiftformore",
"txt": "按Shift鍵更多..."
},
{
"id": "preferences",
"txt": "優先"
},
{
"id": "options",
"txt": "選項"
},
{
"id": "menubar.tools.publishtowebsite",
"txt": "發佈到網站"
},
{
"id": "menubar.tools.converttocubic",
"txt": "轉換為立方體面"
},
{
"id": "menubar.tools.philosphere",
"txt": "建立一個PhiloSphere"
},
{
"id": "menubar.tools.openfolder",
"txt": "打開資料夾"
},
{
"id": "menubar.tools.openfolder.sourceimages",
"txt": "源影像資料夾"
},
{
"id": "menubar.tools.openfolder.outputfolder",
"txt": "導出目錄"
},
{
"id": "menubar.tools.openfolder.projectfolder",
"txt": "專案資料夾"
},
{
"id": "menubar.tools.openfolder.templatefolder",
"txt": "模板資料夾"
},
{
"id": "menubar.tools.openfolder.batchlistfolder",
"txt": "批量列表資料夾"
},
{
"id": "optionspreferences",
"format": "html",
"txt": "<optional platform='windows'>@options@</optional><optional platform='mac'>@preferences@</optional>"
},
{
"id": "detailviewer",
"txt": "細節檢視器"
},
{
"id": "menubar.tools.mainwindow",
"txt": "主視窗"
},
{
"id": "controlpointstable",
"txt": "控制點表"
},
{
"id": "numericaltransform",
"txt": "數值變換"
},
{
"id": "controlpointassistant",
"txt": "控制點助手"
},
{
"id": "batchbuilder",
"txt": "批量產生器"
},
{
"id": "ptguiviewer",
"txt": "PTGui檢視器"
},
{
"id": "lensdatabase",
"txt": "鏡頭資料庫"
},
{
"id": "cameradatabase",
"txt": "相機資料庫"
},
{
"id": "fillyaw",
"txt": "填寫@+yaw@"
},
{
"id": "addimages",
"txt": "新增影像"
},
{
"id": "menubar.images.remove",
"txt": "移除"
},
{