-
Notifications
You must be signed in to change notification settings - Fork 18
/
ja_ja.nhloc
9527 lines (9527 loc) · 542 KB
/
ja_ja.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/ptghelp_v1.schema.json",
"line_endings": "unix",
"startupmsg": null,
"languagenamelocalized": "日本語",
"contributors": [
"Panoramania Inc."
],
"strings": [
{
"id": "txt.improvetranslation",
"txt": "日本語翻訳を改善する"
},
{
"id": "txt.translationby",
"txt": "日本語翻訳:%0(ありがとう!)"
},
{
"id": "txt.yesbutton",
"txt": "はい(&Y)"
},
{
"id": "warn.overwriteptgui10.overwritebutton",
"txt": "上書き(&O)"
},
{
"id": "warn.overwriteptgui10.renamebutton",
"txt": "名前の変更(&R)"
},
{
"id": "txt.applybutton",
"txt": "適用(&A)"
},
{
"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": "OK"
},
{
"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": "ヨー"
},
{
"id": "pitch",
"txt": "ピッチ"
},
{
"id": "roll",
"txt": "ロール"
},
{
"id": "pan",
"txt": "パン"
},
{
"id": "tilt",
"txt": "チルト"
},
{
"id": "viewpoint",
"txt": "視点"
},
{
"id": "abort",
"txt": "中止"
},
{
"id": "illwait",
"txt": "待ちます"
},
{
"id": "txt.error",
"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": "メタデータ"
},
{
"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": "Webページテンプレートを保存する"
},
{
"id": "txt.selectwebpagetemplate",
"txt": "Webページテンプレートを選択する"
},
{
"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": "PTGui10プロジェクト"
},
{
"id": "ptgui10export.warning",
"txt": "このバージョンのPTGuiのすべての機能がPTGui 10以前でサポートされているわけではありません。 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": "球面:360x180°@+projection.equirectangular@"
},
{
"id": "projectionpreset.littleplanet",
"txt": "リトルプラネット:300°@+projection.stereographic@"
},
{
"id": "projectionpreset.cubeface",
"txt": "立方体分割(Cube face):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": "シグマ:"
},
{
"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.centerpano",
"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": "PTGuiウェブサイト"
},
{
"id": "menubar.help.checkforupdates",
"txt": "アップデートを確認"
},
{
"id": "menubar.help.licenseinfo",
"txt": "ライセンス情報"
},
{
"id": "menubar.help.systeminfo",
"txt": "システム情報"
},
{
"id": "menubar.help.about",
"txt": "PTGuiについて"
},
{
"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": "削除"
},
{