천호석
2022-06-17 4de9ea98e13449174aa2cd09c8351fc0e978f44a
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
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
<?xml version="1.0" encoding="utf-8"?>
<root>
  <!-- 
    Microsoft ResX Schema 
    
    Version 2.0
    
    The primary goals of this format is to allow a simple XML format 
    that is mostly human readable. The generation and parsing of the 
    various data types are done through the TypeConverter classes 
    associated with the data types.
    
    Example:
    
    ... ado.net/XML headers & schema ...
    <resheader name="resmimetype">text/microsoft-resx</resheader>
    <resheader name="version">2.0</resheader>
    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
        <value>[base64 mime encoded serialized .NET Framework object]</value>
    </data>
    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
        <comment>This is a comment</comment>
    </data>
                
    There are any number of "resheader" rows that contain simple 
    name/value pairs.
    
    Each data row contains a name, and value. The row also contains a 
    type or mimetype. Type corresponds to a .NET class that support 
    text/value conversion through the TypeConverter architecture. 
    Classes that don't support this are serialized and stored with the 
    mimetype set.
    
    The mimetype is used for serialized objects, and tells the 
    ResXResourceReader how to depersist the object. This is currently not 
    extensible. For a given mimetype the value must be set accordingly:
    
    Note - application/x-microsoft.net.object.binary.base64 is the format 
    that the ResXResourceWriter will generate, however the reader can 
    read any of the formats listed below.
    
    mimetype: application/x-microsoft.net.object.binary.base64
    value   : The object must be serialized with 
            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
            : and then encoded with base64 encoding.
    
    mimetype: application/x-microsoft.net.object.soap.base64
    value   : The object must be serialized with 
            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
            : and then encoded with base64 encoding.
 
    mimetype: application/x-microsoft.net.object.bytearray.base64
    value   : The object must be serialized into a byte array 
            : using a System.ComponentModel.TypeConverter
            : and then encoded with base64 encoding.
    -->
  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
    <xsd:element name="root" msdata:IsDataSet="true">
      <xsd:complexType>
        <xsd:choice maxOccurs="unbounded">
          <xsd:element name="metadata">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" />
              </xsd:sequence>
              <xsd:attribute name="name" use="required" type="xsd:string" />
              <xsd:attribute name="type" type="xsd:string" />
              <xsd:attribute name="mimetype" type="xsd:string" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="assembly">
            <xsd:complexType>
              <xsd:attribute name="alias" type="xsd:string" />
              <xsd:attribute name="name" type="xsd:string" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="data">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="resheader">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" />
            </xsd:complexType>
          </xsd:element>
        </xsd:choice>
      </xsd:complexType>
    </xsd:element>
  </xsd:schema>
  <resheader name="resmimetype">
    <value>text/microsoft-resx</value>
  </resheader>
  <resheader name="version">
    <value>2.0</value>
  </resheader>
  <resheader name="reader">
    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <resheader name="writer">
    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <data name="A1" xml:space="preserve">
    <value>A1</value>
    <comment>A1</comment>
  </data>
  <data name="A2" xml:space="preserve">
    <value>A2</value>
    <comment>A2</comment>
  </data>
  <data name="Ablation" xml:space="preserve">
    <value>加工</value>
    <comment>Ablation</comment>
  </data>
  <data name="Ablation_1_MCR" xml:space="preserve">
    <value>加工1 MCR</value>
    <comment>Ablation 1 MCR</comment>
  </data>
  <data name="Ablation_1_Y" xml:space="preserve">
    <value>加工1 Y</value>
    <comment>Ablation 1 Y</comment>
  </data>
  <data name="Ablation_2_MCR" xml:space="preserve">
    <value>加工1 MCR</value>
    <comment>Ablation 2 MCR</comment>
  </data>
  <data name="Ablation_2_Y" xml:space="preserve">
    <value>加工2 Y</value>
    <comment>Ablation 2 Y</comment>
  </data>
  <data name="Ablation_Speed" xml:space="preserve">
    <value>加工速度</value>
    <comment>Ablation Speed</comment>
  </data>
  <data name="Ablation_Stage_1" xml:space="preserve">
    <value>加工ステージ 1</value>
    <comment>Ablation Stage #1</comment>
  </data>
  <data name="Ablation_Stage_11" xml:space="preserve">
    <value>加工ステージ1</value>
    <comment>Ablation Stage 1</comment>
  </data>
  <data name="Ablation_Stage_1_MCR" xml:space="preserve">
    <value>加工ステージ1 MCR</value>
    <comment>Ablation Stage 1 MCR</comment>
  </data>
  <data name="Ablation_Stage_1_Y_Ablation_Position" xml:space="preserve">
    <value>加工ステージ1 Y加工位置</value>
    <comment>Ablation Stage #1 Y Ablation Position</comment>
  </data>
  <data name="Ablation_Stage_1_Y_Load_Position" xml:space="preserve">
    <value>加工ステージ1 Y読取位置</value>
    <comment>Ablation Stage #1 Y Load Position</comment>
  </data>
  <data name="Ablation_Stage_1_Y_Plasma_Position" xml:space="preserve">
    <value>加工ステージ1 Yプラズマ位置</value>
    <comment>Ablation Stage #1 Y Plasma Position</comment>
  </data>
  <data name="Ablation_Stage_1_Y_Unload_Position" xml:space="preserve">
    <value>加工ステージ1 Yアンロード位置</value>
    <comment>Ablation Stage #1 Y Unload Position</comment>
  </data>
  <data name="Ablation_Stage_2" xml:space="preserve">
    <value>加工ステージ 2</value>
    <comment>Ablation Stage #2</comment>
  </data>
  <data name="Ablation_Stage_21" xml:space="preserve">
    <value>加工ステージ2</value>
    <comment>Ablation Stage 2</comment>
  </data>
  <data name="Ablation_Stage_2_Y_Ablation_Position" xml:space="preserve">
    <value>加工ステージ2 Y加工位置</value>
    <comment>Ablation Stage #2 Y Ablation Position</comment>
  </data>
  <data name="Ablation_Stage_2_Y_Load_Position" xml:space="preserve">
    <value>加工ステージ2 Y読取位置</value>
    <comment>Ablation Stage #2 Y Load Position</comment>
  </data>
  <data name="Ablation_Stage_2_Y_Plasma_Position" xml:space="preserve">
    <value>加工ステージ2 Yプラズマ位置</value>
    <comment>Ablation Stage #2 Y Plasma Position</comment>
  </data>
  <data name="Ablation_Stage_2_Y_Unload_Position" xml:space="preserve">
    <value>加工ステージ2 Yアンロード位置</value>
    <comment>Ablation Stage #2 Y Unload Position</comment>
  </data>
  <data name="Ablation_Stgae_2_MCR" xml:space="preserve">
    <value>加工ステージ2 MCR</value>
    <comment>Ablation Stgae 2 MCR</comment>
  </data>
  <data name="Ablation_Y_A1" xml:space="preserve">
    <value>加工 Y A1</value>
    <comment>Ablation Y A1</comment>
  </data>
  <data name="Ablation_Y_A2" xml:space="preserve">
    <value>加工 Y A2</value>
    <comment>Ablation Y A2</comment>
  </data>
  <data name="Ablation_Y_B1" xml:space="preserve">
    <value>加工 Y B1</value>
    <comment>Ablation Y B1</comment>
  </data>
  <data name="Ablation_Y_B2" xml:space="preserve">
    <value>加工 Y B2</value>
    <comment>Ablation Y B2</comment>
  </data>
  <data name="ABS" xml:space="preserve">
    <value>絶対位置</value>
    <comment>ABS</comment>
  </data>
  <data name="Absolute" xml:space="preserve">
    <value>絶対位置</value>
    <comment>Absolute</comment>
  </data>
  <data name="After" xml:space="preserve">
    <value>後</value>
    <comment>After</comment>
  </data>
  <data name="AGV" xml:space="preserve">
    <value>AGV</value>
    <comment>AGV</comment>
  </data>
  <data name="Alarm" xml:space="preserve">
    <value>アラーム</value>
    <comment>Alarm</comment>
  </data>
  <data name="Align_Cell_Loading" xml:space="preserve">
    <value>アライメントセル読込</value>
    <comment>Align Cell Loading</comment>
  </data>
  <data name="Align_Mark_1_X" xml:space="preserve">
    <value>アライメントマーク1 X</value>
    <comment>Align Mark 1 X</comment>
  </data>
  <data name="Align_Mark_1_Y" xml:space="preserve">
    <value>アライメントマーク1 Y</value>
    <comment>Align Mark 1 Y</comment>
  </data>
  <data name="Align_Mark_2_X" xml:space="preserve">
    <value>アライメントマーク2 X</value>
    <comment>Align Mark 2 X</comment>
  </data>
  <data name="Align_Mark_2_Y" xml:space="preserve">
    <value>アライメントマーク2 Y</value>
    <comment>Align Mark 2 Y</comment>
  </data>
  <data name="Align_PC" xml:space="preserve">
    <value>アラインPC</value>
    <comment>Align PC</comment>
  </data>
  <data name="Align_Stage_1_T_0_Deg" xml:space="preserve">
    <value>アラインステージ1 0度</value>
    <comment>Align Stage #1 T 0 Deg</comment>
  </data>
  <data name="Align_Stage_1_T_180_Deg" xml:space="preserve">
    <value>アラインステージ1 180度</value>
    <comment>Align Stage #1 T 180 Deg</comment>
  </data>
  <data name="Align_Stage_1_T_90_Deg" xml:space="preserve">
    <value>アラインステージ1 90度</value>
    <comment>Align Stage #1 T 90 Deg</comment>
  </data>
  <data name="Align_Stage_1_T_Cell_Loading_Position" xml:space="preserve">
    <value>アラインステージ 1 T セル読込位置</value>
    <comment>Align Stage #1 T Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_1_T_minus_90_Deg" xml:space="preserve">
    <value>アラインステージ1 -90度</value>
    <comment>Align Stage #1 T -90 Deg</comment>
  </data>
  <data name="Align_Stage_1_X_Cell_Loading_Position" xml:space="preserve">
    <value>アラインステージ 1 X セル読込位置</value>
    <comment>Align Stage #1 X Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_1_Y_Cell_Loading_Position" xml:space="preserve">
    <value>アラインステージ 1 Y セル読込位置</value>
    <comment>Align Stage #1 Y Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_2_T_0_Deg" xml:space="preserve">
    <value>アラインステージ2 0度</value>
    <comment>Align Stage #2 T 0 Deg</comment>
  </data>
  <data name="Align_Stage_2_T_180_Deg" xml:space="preserve">
    <value>アラインステージ2 180度</value>
    <comment>Align Stage #2 T 180 Deg</comment>
  </data>
  <data name="Align_Stage_2_T_90_Deg" xml:space="preserve">
    <value>アラインステージ2 90度</value>
    <comment>Align Stage #2 T 90 Deg</comment>
  </data>
  <data name="Align_Stage_2_T_Cell_Loading_Position" xml:space="preserve">
    <value>アラインステージ 2 T セル読込位置</value>
    <comment>Align Stage #2 T Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_2_T_minus_90_Deg" xml:space="preserve">
    <value>アラインステージ2 -90度</value>
    <comment>Align Stage #2 T -90 Deg</comment>
  </data>
  <data name="Align_Stage_2_X_Cell_Loading_Position" xml:space="preserve">
    <value>アラインステージ 2 X セル読込位置</value>
    <comment>Align Stage #2 X Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_2_Y_Cell_Loading_Position" xml:space="preserve">
    <value>アラインステージ 2 Y セル読込位置</value>
    <comment>Align Stage #2 Y Cell Loading Position</comment>
  </data>
  <data name="All_Amp_On" xml:space="preserve">
    <value>全アンプON</value>
    <comment>All Amp On</comment>
  </data>
  <data name="All_Error_Reset" xml:space="preserve">
    <value>全エラーリセット</value>
    <comment>All Error Reset</comment>
  </data>
  <data name="ALL_INITIALIZE_PROGRESS" xml:space="preserve">
    <value>全原点復帰</value>
    <comment>ALL INITIALIZE PROGRESS</comment>
  </data>
  <data name="ALL_MOTORS_INITIALIZE" xml:space="preserve">
    <value>全モーター原点</value>
    <comment>ALL MOTORS INITIALIZE</comment>
  </data>
  <data name="AMP_Off" xml:space="preserve">
    <value>アンプOFF</value>
    <comment>AMP Off</comment>
  </data>
  <data name="AMP_On" xml:space="preserve">
    <value>アンプON</value>
    <comment>AMP On</comment>
  </data>
  <data name="ANALOG" xml:space="preserve">
    <value>アナログ</value>
    <comment>ANLAOG</comment>
  </data>
  <data name="AOI_0" xml:space="preserve">
    <value>検査0</value>
    <comment>AOI 0</comment>
  </data>
  <data name="AOI_180" xml:space="preserve">
    <value>検査180</value>
    <comment>AOI 180</comment>
  </data>
  <data name="AOI_90" xml:space="preserve">
    <value>検査90</value>
    <comment>AOI 90</comment>
  </data>
  <data name="AOI_Left" xml:space="preserve">
    <value>検査左</value>
    <comment>AOI Left</comment>
  </data>
  <data name="AOI_Measurement" xml:space="preserve">
    <value>検査測定</value>
    <comment>AOI Measurement</comment>
  </data>
  <data name="AOI_minus_90_Deg" xml:space="preserve">
    <value>検査 -90度</value>
    <comment>AOI -90 Deg</comment>
  </data>
  <data name="AOI_PC" xml:space="preserve">
    <value>検査PC</value>
    <comment>AOI PC</comment>
  </data>
  <data name="AOI_Pick_Offset" xml:space="preserve">
    <value>検査選択オフセット</value>
    <comment>AOI Pick Offset</comment>
  </data>
  <data name="AOI_Right" xml:space="preserve">
    <value>検査右</value>
    <comment>AOI Right</comment>
  </data>
  <data name="AOI_Stage" xml:space="preserve">
    <value>検査ステージ</value>
    <comment>AOI Stage</comment>
  </data>
  <data name="AOI_Stage_1_T_0_Deg" xml:space="preserve">
    <value>検査ステージ1 0度</value>
    <comment>AOI Stage #1 T 0 Deg</comment>
  </data>
  <data name="AOI_Stage_1_T_180_Deg" xml:space="preserve">
    <value>検査ステージ1 180度</value>
    <comment>AOI Stage #1 T 180 Deg</comment>
  </data>
  <data name="AOI_Stage_1_T_90_Deg" xml:space="preserve">
    <value>検査ステージ1 90度</value>
    <comment>AOI Stage #1 T 90 Deg</comment>
  </data>
  <data name="AOI_Stage_1_T_minus_90_Deg" xml:space="preserve">
    <value>検査ステージ1 -90度</value>
    <comment>AOI Stage #1 T -90 Deg</comment>
  </data>
  <data name="AOI_Stage_2_T_0_Deg" xml:space="preserve">
    <value>検査ステージ2 0度</value>
    <comment>AOI Stage #2 T 0 Deg</comment>
  </data>
  <data name="AOI_Stage_2_T_180_Deg" xml:space="preserve">
    <value>検査ステージ2 180度</value>
    <comment>AOI Stage #2 T 180 Deg</comment>
  </data>
  <data name="AOI_Stage_2_T_90_Deg" xml:space="preserve">
    <value>検査ステージ2 90度</value>
    <comment>AOI Stage #2 T 90 Deg</comment>
  </data>
  <data name="AOI_Stage_2_T_minus_90_Deg" xml:space="preserve">
    <value>検査ステージ2 -90度</value>
    <comment>AOI Stage #2 T -90 Deg</comment>
  </data>
  <data name="Apply" xml:space="preserve">
    <value>適用</value>
    <comment>Apply</comment>
  </data>
  <data name="AXIS" xml:space="preserve">
    <value>軸</value>
    <comment>AXIS</comment>
  </data>
  <data name="Axis_Control" xml:space="preserve">
    <value>軸コントロール</value>
    <comment>Axis Control</comment>
  </data>
  <data name="B1" xml:space="preserve">
    <value>B1</value>
    <comment>B1</comment>
  </data>
  <data name="B2" xml:space="preserve">
    <value>B2</value>
    <comment>B2</comment>
  </data>
  <data name="BCR_Retry_Count" xml:space="preserve">
    <value>BCRリトライカウント</value>
    <comment>BCR Retry Count</comment>
  </data>
  <data name="BCR_X" xml:space="preserve">
    <value>BCR X</value>
    <comment>BCR X</comment>
  </data>
  <data name="BCR_Y" xml:space="preserve">
    <value>BCR Y</value>
    <comment>BCR Y</comment>
  </data>
  <data name="Before" xml:space="preserve">
    <value>前</value>
    <comment>Before</comment>
  </data>
  <data name="Blue" xml:space="preserve">
    <value>青</value>
    <comment>Blue</comment>
  </data>
  <data name="Board_ID" xml:space="preserve">
    <value>ボードID</value>
    <comment>Board ID</comment>
  </data>
  <data name="Board_init" xml:space="preserve">
    <value>ボード初期化</value>
    <comment>Board init</comment>
  </data>
  <data name="BOARD_STATUS" xml:space="preserve">
    <value>ボード状態</value>
    <comment>BOARD STATUS</comment>
  </data>
  <data name="Board_Status1" xml:space="preserve">
    <value>ボード状態</value>
    <comment>Board Status</comment>
  </data>
  <data name="BUTTON" xml:space="preserve">
    <value>ボタン</value>
    <comment>BUTTON</comment>
  </data>
  <data name="Cancel" xml:space="preserve">
    <value>キャンセル</value>
    <comment>Cancel</comment>
  </data>
  <data name="CDA_Plasma_X_A1_Position" xml:space="preserve">
    <value>CDA プラズマ X A1位置</value>
    <comment>CDA Plasma X A1 Position</comment>
  </data>
  <data name="CDA_Plasma_X_A2_Position" xml:space="preserve">
    <value>CDA プラズマ X A2位置</value>
    <comment>CDA Plasma X A2 Position</comment>
  </data>
  <data name="CDA_Plasma_X_B1_Position" xml:space="preserve">
    <value>CDA プラズマ X B1位置</value>
    <comment>CDA Plasma X B1 Position</comment>
  </data>
  <data name="CDA_Plasma_X_B2_Position" xml:space="preserve">
    <value>CDA プラズマ X B2位置</value>
    <comment>CDA Plasma X B2 Position</comment>
  </data>
  <data name="CELL_ID_BCR" xml:space="preserve">
    <value>CELL ID BCR</value>
    <comment>CELL ID BCR</comment>
  </data>
  <data name="Cell_Pitch_X" xml:space="preserve">
    <value>セル間隔X</value>
    <comment>Cell Pitch X</comment>
  </data>
  <data name="Cell_Pitch_Y" xml:space="preserve">
    <value>セル間隔Y</value>
    <comment>Cell Pitch Y</comment>
  </data>
  <data name="CIM_Off_Line" xml:space="preserve">
    <value>CIMオフライン</value>
    <comment>CIM Off Line</comment>
  </data>
  <data name="CIM_On_Line" xml:space="preserve">
    <value>CIMオンライン</value>
    <comment>CIM On Line</comment>
  </data>
  <data name="Clamp_Retry_Count" xml:space="preserve">
    <value>Clampリトライカウント</value>
    <comment>Clamp Retry Count</comment>
  </data>
  <data name="Column" xml:space="preserve">
    <value>桁</value>
    <comment>Column</comment>
  </data>
  <data name="Control" xml:space="preserve">
    <value>コントロール</value>
    <comment>Control</comment>
  </data>
  <data name="Copy" xml:space="preserve">
    <value>コピー</value>
    <comment>Copy</comment>
  </data>
  <data name="CREATE" xml:space="preserve">
    <value>作成</value>
    <comment>CREATE</comment>
  </data>
  <data name="Create_Time" xml:space="preserve">
    <value>作成時間</value>
    <comment>Create Time</comment>
  </data>
  <data name="Create_User_Info" xml:space="preserve">
    <value>ユーザー情報の作成</value>
    <comment>Create User Inof</comment>
  </data>
  <data name="CTB_File_Path" xml:space="preserve">
    <value>CTBファイルパス</value>
    <comment>CTB File Path</comment>
  </data>
  <data name="Current_Position" xml:space="preserve">
    <value>現在位置</value>
    <comment>Current Position</comment>
  </data>
  <data name="Current_Speed" xml:space="preserve">
    <value>現在速度</value>
    <comment>Current Speed</comment>
  </data>
  <data name="Cylinder_Timeout_sec" xml:space="preserve">
    <value>シリンダータイムアウト</value>
    <comment>Cylinder Timeout(s)</comment>
  </data>
  <data name="Delay_Parameter" xml:space="preserve">
    <value>遅延パラメーター</value>
    <comment>Delay Parameter</comment>
  </data>
  <data name="Delete" xml:space="preserve">
    <value>消去</value>
    <comment>Delete</comment>
  </data>
  <data name="DESCRIPTION" xml:space="preserve">
    <value>説明</value>
    <comment>DESCRIPTION</comment>
  </data>
  <data name="Device_ID" xml:space="preserve">
    <value>デバイスID</value>
    <comment>Device ID</comment>
  </data>
  <data name="Distance" xml:space="preserve">
    <value>間隔</value>
    <comment>Distance</comment>
  </data>
  <data name="Door_Open" xml:space="preserve">
    <value>ドアオープン</value>
    <comment>Door Open</comment>
  </data>
  <data name="Draw_1" xml:space="preserve">
    <value>描写1</value>
    <comment>Draw 1</comment>
  </data>
  <data name="Draw_2" xml:space="preserve">
    <value>描写2</value>
    <comment>Draw 2</comment>
  </data>
  <data name="Draw_3" xml:space="preserve">
    <value>描写3</value>
    <comment>Draw 3</comment>
  </data>
  <data name="Draw_4" xml:space="preserve">
    <value>描写4</value>
    <comment>Draw 4</comment>
  </data>
  <data name="Draw_Position_Data" xml:space="preserve">
    <value>描写位置データ</value>
    <comment>Draw Position Data</comment>
  </data>
  <data name="Dust_Collector" xml:space="preserve">
    <value>集塵機</value>
    <comment>Dust Collector</comment>
  </data>
  <data name="Dust_Collector_Parameter" xml:space="preserve">
    <value>集塵機パラメーター</value>
    <comment>Dust Collector Parameter</comment>
  </data>
  <data name="Empty_Port" xml:space="preserve">
    <value>空ポート</value>
    <comment>Empty Port</comment>
  </data>
  <data name="END" xml:space="preserve">
    <value>終了</value>
    <comment>END</comment>
  </data>
  <data name="END1" xml:space="preserve">
    <value>終了</value>
    <comment>END</comment>
  </data>
  <data name="End_X" xml:space="preserve">
    <value>エンドX</value>
    <comment>End X</comment>
  </data>
  <data name="End_Y" xml:space="preserve">
    <value>エンドY</value>
    <comment>End Y</comment>
  </data>
  <data name="Equipment_Info" xml:space="preserve">
    <value>機器情報</value>
    <comment>Equipment Info</comment>
  </data>
  <data name="Equip_Mode" xml:space="preserve">
    <value>設備モード</value>
    <comment>Equip Mode</comment>
  </data>
  <data name="Error_ID" xml:space="preserve">
    <value>エラーID</value>
    <comment>Error ID</comment>
  </data>
  <data name="Error_info_0" xml:space="preserve">
    <value>エラー情報0</value>
    <comment>Error info 0</comment>
  </data>
  <data name="Error_info_1" xml:space="preserve">
    <value>エラー情報1</value>
    <comment>Error info 1</comment>
  </data>
  <data name="Error_Reset" xml:space="preserve">
    <value>エラーリセット</value>
    <comment>Error Reset</comment>
  </data>
  <data name="Error_Stop" xml:space="preserve">
    <value>エラーストップ</value>
    <comment>Error Stop</comment>
  </data>
  <data name="Film" xml:space="preserve">
    <value>フィルム</value>
    <comment>Film</comment>
  </data>
  <data name="Film_Judge" xml:space="preserve">
    <value>1stLami検出</value>
    <comment>Film Judge</comment>
  </data>
  <data name="Film_Judge_Left" xml:space="preserve">
    <value>1stLami検出左</value>
    <comment>Film Judge Left</comment>
  </data>
  <data name="FILM_JUDGE_MODE" xml:space="preserve">
    <value>1st Lami検出モード</value>
    <comment>FILM JUDGE MODE</comment>
  </data>
  <data name="Film_Judge_Position" xml:space="preserve">
    <value>1stLami検出ポジション</value>
    <comment>Film Judge Position</comment>
  </data>
  <data name="Film_Judge_Right" xml:space="preserve">
    <value>2stLami検出右</value>
    <comment>Film Judge Right</comment>
  </data>
  <data name="Film_Judge_Speed" xml:space="preserve">
    <value>1st Lami検出速度</value>
    <comment>Film Judge Speed</comment>
  </data>
  <data name="FINE_ALIGN" xml:space="preserve">
    <value>ファインアライン</value>
    <comment>FINE ALIGN</comment>
  </data>
  <data name="Fine_Align_Speed" xml:space="preserve">
    <value>ファインアライン速度</value>
    <comment>Fine Align Speed</comment>
  </data>
  <data name="Fine_Align_Stage_1" xml:space="preserve">
    <value>FineAlignステージ1</value>
    <comment>Fine Align Stage 1</comment>
  </data>
  <data name="Fine_Align_Stage_2" xml:space="preserve">
    <value>FineAlignステージ2</value>
    <comment>Fine Align Stage 2</comment>
  </data>
  <data name="Fine_Align_X" xml:space="preserve">
    <value>FineAlign X</value>
    <comment>Fine Align X</comment>
  </data>
  <data name="Frequency" xml:space="preserve">
    <value>周波数</value>
    <comment>Frequency</comment>
  </data>
  <data name="Get_Position" xml:space="preserve">
    <value>取得位置</value>
    <comment>Get Position</comment>
  </data>
  <data name="Green" xml:space="preserve">
    <value>緑色</value>
    <comment>Green</comment>
  </data>
  <data name="Hatch_Data" xml:space="preserve">
    <value>スキャナー設定</value>
    <comment>Hatch Data</comment>
  </data>
  <data name="Home" xml:space="preserve">
    <value>原点</value>
    <comment>Home</comment>
  </data>
  <data name="ID" xml:space="preserve">
    <value>ID</value>
    <comment>ID</comment>
  </data>
  <data name="Info" xml:space="preserve">
    <value>情報</value>
    <comment>Info</comment>
  </data>
  <data name="INITIALIZE" xml:space="preserve">
    <value>原点</value>
    <comment>INITIALIZE</comment>
  </data>
  <data name="Inposition_Parameter" xml:space="preserve">
    <value>インポジションパラメータ</value>
    <comment>Inposition Parameter</comment>
  </data>
  <data name="Inposition_Range_mm" xml:space="preserve">
    <value>Inposition範囲</value>
    <comment>Inposition Range(mm)</comment>
  </data>
  <data name="INTERLOCK" xml:space="preserve">
    <value>インターロック</value>
    <comment>INTERLOCK</comment>
  </data>
  <data name="In_Port" xml:space="preserve">
    <value>インポート</value>
    <comment>In Port</comment>
  </data>
  <data name="In_Port_To_Empty" xml:space="preserve">
    <value>インポート -&gt; Empty</value>
    <comment>In Port -&gt; Empty</comment>
  </data>
  <data name="In_Position" xml:space="preserve">
    <value>位置場所</value>
    <comment>In Position</comment>
  </data>
  <data name="IO" xml:space="preserve">
    <value>IO</value>
    <comment>IO</comment>
  </data>
  <data name="Jump_Delay" xml:space="preserve">
    <value>ジャンプ遅延</value>
    <comment>Jump Delay</comment>
  </data>
  <data name="Jump_Speed" xml:space="preserve">
    <value>ジャンプスピード</value>
    <comment>Jump Speed</comment>
  </data>
  <data name="Key_Switch" xml:space="preserve">
    <value>キースウィッチ</value>
    <comment>Key Switch</comment>
  </data>
  <data name="LASER" xml:space="preserve">
    <value>レーザー</value>
    <comment>LASER</comment>
  </data>
  <data name="Laser_Off_Delay" xml:space="preserve">
    <value>レーザーオフ 遅延</value>
    <comment>Laser Off Delay</comment>
  </data>
  <data name="Laser_On_Delay" xml:space="preserve">
    <value>レーザーオン 遅延</value>
    <comment>Laser On Delay</comment>
  </data>
  <data name="LD_BCR" xml:space="preserve">
    <value>LD BCR</value>
    <comment>LD BCR</comment>
  </data>
  <data name="LD_Empty_Coount" xml:space="preserve">
    <value>LD空トレイカウント</value>
    <comment>LD Empty Coount</comment>
  </data>
  <data name="LD_Empty_Current_Count" xml:space="preserve">
    <value>LD空トレイ現在カウント</value>
    <comment>LD Empty Current Count</comment>
  </data>
  <data name="LD_Handler_1" xml:space="preserve">
    <value>LD_ハンド1</value>
    <comment>LD Handler 1</comment>
  </data>
  <data name="LD_Handler_1_X" xml:space="preserve">
    <value>LDハンド1 X</value>
    <comment>LD Handler 1 X</comment>
  </data>
  <data name="LD_Handler_1_X_Pre_Align_Stage_Position" xml:space="preserve">
    <value>LDハンド1 X PreAlignステージ位置</value>
    <comment>LD Handler 1 X Pre Align Stage Position</comment>
  </data>
  <data name="LD_Handler_1_X_Reverse_Stage_Position" xml:space="preserve">
    <value>LDハンド1 X 反転機ステージ位置</value>
    <comment>LD Handler 1 X Reverse Stage Position</comment>
  </data>
  <data name="LD_Handler_1_X_Stay_Position" xml:space="preserve">
    <value>LDハンド1 X 待機位置</value>
    <comment>LD Handler 1 X Stay Position</comment>
  </data>
  <data name="LD_Handler_1_Y" xml:space="preserve">
    <value>LDハンド1 Y</value>
    <comment>LD Handler 1 Y</comment>
  </data>
  <data name="LD_Handler_1_Y_Pre_Align_Stage_Position" xml:space="preserve">
    <value>LDハンド1 Y PreAlignステージ位置</value>
    <comment>LD Handler 1 Y Pre Align Stage Position</comment>
  </data>
  <data name="LD_Handler_1_Y_Reverse_Stage_Position" xml:space="preserve">
    <value>LDハンド1 Y 反転機ステージ位置</value>
    <comment>LD Handler 1 Y Reverse Stage Position</comment>
  </data>
  <data name="LD_Handler_1_Y_Stay_Position" xml:space="preserve">
    <value>LDハンド1 Y 待機位置</value>
    <comment>LD Handler 1 Y Stay Position</comment>
  </data>
  <data name="LD_In_Count" xml:space="preserve">
    <value>LDインカウント</value>
    <comment>LD In Count</comment>
  </data>
  <data name="LD_In_Current_Count" xml:space="preserve">
    <value>LDイン現在カウント</value>
    <comment>LD In Current Count</comment>
  </data>
  <data name="LD_Reverse" xml:space="preserve">
    <value>LD反転機</value>
    <comment>LD Reverse</comment>
  </data>
  <data name="LD_Reverse_Unit1_0_Deg_Position" xml:space="preserve">
    <value>LD反転機1 0度位置</value>
    <comment>LD Reverse Unit#1 0 Deg Position</comment>
  </data>
  <data name="LD_Reverse_Unit1_180_Deg_Position" xml:space="preserve">
    <value>LD反転機1 180度位置</value>
    <comment>LD Reverse Unit#1 180 Deg Position</comment>
  </data>
  <data name="LD_Reverse_Unit1_Down_Position" xml:space="preserve">
    <value>LD反転機1 ダウン位置</value>
    <comment>LD Reverse Unit#1 Down Position</comment>
  </data>
  <data name="LD_Reverse_Unit1_Up_Position" xml:space="preserve">
    <value>LD反転機1 アップ位置</value>
    <comment>LD Reverse Unit#1 Up Position</comment>
  </data>
  <data name="LD_Reverse_Unit2_0_Deg_Position" xml:space="preserve">
    <value>LD反転機2 0度位置</value>
    <comment>LD Reverse Unit#2 0 Deg Position</comment>
  </data>
  <data name="LD_Reverse_Unit2_180_Deg_Position" xml:space="preserve">
    <value>LD反転機2 180度位置</value>
    <comment>LD Reverse Unit#2 180 Deg Position</comment>
  </data>
  <data name="LD_Reverse_Unit2_Down_Position" xml:space="preserve">
    <value>LD反転機2 ダウン位置</value>
    <comment>LD Reverse Unit#2 Down Position</comment>
  </data>
  <data name="LD_Reverse_Unit2_Up_Position" xml:space="preserve">
    <value>LD反転機2 アップ位置</value>
    <comment>LD Reverse Unit#2 Up Position</comment>
  </data>
  <data name="LD_STACKER" xml:space="preserve">
    <value>LDステッカー</value>
    <comment>LD STACKER</comment>
  </data>
  <data name="LD_Tray_Empty" xml:space="preserve">
    <value>LD空トレイ</value>
    <comment>LD Tray Empty</comment>
  </data>
  <data name="LD_Tray_Empty_Z_Process_Position" xml:space="preserve">
    <value>LD空トレイZ工程位置</value>
    <comment>LD Tray Empty Z Process Position</comment>
  </data>
  <data name="LD_Tray_Empty_Z_Wait_Position" xml:space="preserve">
    <value>LD空トレイZ待機位置</value>
    <comment>LD Tray Empty Z Wait Position</comment>
  </data>
  <data name="LD_Tray_In" xml:space="preserve">
    <value>LDトレイイン</value>
    <comment>LD Tray In</comment>
  </data>
  <data name="LD_Tray_In_Z_Process_Position" xml:space="preserve">
    <value>LDトレイイン工程位置</value>
    <comment>LD Tray In Z Process Position</comment>
  </data>
  <data name="LD_Tray_In_Z_Wait_Position" xml:space="preserve">
    <value>LDトレイZ待機位置</value>
    <comment>LD Tray In Z Wait Position</comment>
  </data>
  <data name="LD_Tray_Process" xml:space="preserve">
    <value>LDトレイ工程</value>
    <comment>LD Tray Process</comment>
  </data>
  <data name="LD_Tray_TR_X_Empty_Position" xml:space="preserve">
    <value>LDトレイTR X空ポジション</value>
    <comment>LD Tray TR X Empty Position</comment>
  </data>
  <data name="LD_Tray_TR_X_In_Position" xml:space="preserve">
    <value>LDトレイTR Xインポジション</value>
    <comment>LD Tray TR X In Position</comment>
  </data>
  <data name="LD_Tray_Wait" xml:space="preserve">
    <value>LDトレイ待機</value>
    <comment>LD Tray Wait</comment>
  </data>
  <data name="LD_Tray_Wait1" xml:space="preserve">
    <value>LDトレイ待機</value>
    <comment>LD Tray Wait</comment>
  </data>
  <data name="LD_TR_2_X_Ablation_Stage_1_Position" xml:space="preserve">
    <value>LD TR 2 X 加工ステージ1 位置</value>
    <comment>LD TR 2 X Ablation Stage #1 Position</comment>
  </data>
  <data name="LD_TR_2_X_Ablation_Stage_2_Position" xml:space="preserve">
    <value>LD TR 2 X 加工ステージ2 位置</value>
    <comment>LD TR 2 X Ablation Stage #2 Position</comment>
  </data>
  <data name="LD_TR_2_X_Pre_Align_Stage_Position" xml:space="preserve">
    <value>LD TR 2 X プレアラインステージ位置</value>
    <comment>LD TR 2 X Pre Align Stage Position</comment>
  </data>
  <data name="LD_TR_2_X_Stay_Position" xml:space="preserve">
    <value>LD TR 2 X 待機位置</value>
    <comment>LD TR 2 X Stay Position</comment>
  </data>
  <data name="LD_TR_2_Y_Ablation_Stage_1_Position" xml:space="preserve">
    <value>LD TR 2 Y 加工ステージ1 位置</value>
    <comment>LD TR 2 Y Ablation Stage #1 Position</comment>
  </data>
  <data name="LD_TR_2_Y_Ablation_Stage_2_Position" xml:space="preserve">
    <value>LD TR 2 Y 加工ステージ2 位置</value>
    <comment>LD TR 2 Y Ablation Stage #2 Position</comment>
  </data>
  <data name="LD_TR_2_Y_Pre_Align_Stage_Position" xml:space="preserve">
    <value>LD TR 2 Y プレアラインステージ位置</value>
    <comment>LD TR 2 Y Pre Align Stage Position</comment>
  </data>
  <data name="LD_TR_2_Y_Stay_Position" xml:space="preserve">
    <value>LD TR 2 Y 待機位置</value>
    <comment>LD TR 2 Y Stay Position</comment>
  </data>
  <data name="Level" xml:space="preserve">
    <value>レベル</value>
    <comment>Level</comment>
  </data>
  <data name="Line" xml:space="preserve">
    <value>ライン</value>
    <comment>Line</comment>
  </data>
  <data name="Load" xml:space="preserve">
    <value>読取</value>
    <comment>Load</comment>
  </data>
  <data name="Loader" xml:space="preserve">
    <value>ローダー</value>
    <comment>Loader</comment>
  </data>
  <data name="LOADER_MOTORS" xml:space="preserve">
    <value>ローダーモーター</value>
    <comment>LOADER MOTORS</comment>
  </data>
  <data name="LOADER_MOTORS_INITIALIZE" xml:space="preserve">
    <value>ローダーモーター原点</value>
    <comment>LOADER MOTORS INITIALIZE</comment>
  </data>
  <data name="LOADER_MOTORS_INITIALIZE_PROGRESS" xml:space="preserve">
    <value>ローダーモーター原点復帰</value>
    <comment>LOADER MOTORS INITIALIZE PROGRESS</comment>
  </data>
  <data name="LOADER_REVERSE" xml:space="preserve">
    <value>ローダー反転機</value>
    <comment>LOADER REVERSE</comment>
  </data>
  <data name="Loader_To_Ablation_Stage" xml:space="preserve">
    <value>ローダー -&gt; 加工ステージ</value>
    <comment>Loader -&gt; Ablation Stage</comment>
  </data>
  <data name="LOAD_HANDLER_1" xml:space="preserve">
    <value>ロードハンドラー 1</value>
    <comment>LOAD HANDLER 1</comment>
  </data>
  <data name="LOAD_HANDLER_2" xml:space="preserve">
    <value>ロードハンドラー 2</value>
    <comment>LOAD HANDLER 2</comment>
  </data>
  <data name="LOAD_TRAY_LIFT_EMPTY" xml:space="preserve">
    <value>ロードトレイ リフト EMPTY</value>
    <comment>LOAD TRAY LIFT EMPTY</comment>
  </data>
  <data name="LOAD_TRAY_LIFT_IN" xml:space="preserve">
    <value>ロードトレイ リフト IN</value>
    <comment>LOAD TRAY LIFT IN</comment>
  </data>
  <data name="LOAD_TRAY_TR" xml:space="preserve">
    <value>ロードトレイ TR</value>
    <comment>LOAD TRAY TR</comment>
  </data>
  <data name="LOG" xml:space="preserve">
    <value>ログ</value>
    <comment>LOG</comment>
  </data>
  <data name="Login_Info" xml:space="preserve">
    <value>ログイン情報</value>
    <comment>Login Info</comment>
  </data>
  <data name="Log_Out" xml:space="preserve">
    <value>ログアウト</value>
    <comment>Log Out</comment>
  </data>
  <data name="Main" xml:space="preserve">
    <value>メイン</value>
    <comment>Main</comment>
  </data>
  <data name="Maintenance" xml:space="preserve">
    <value>メンテナンス</value>
    <comment>Maintenance</comment>
  </data>
  <data name="Main_Recipe" xml:space="preserve">
    <value>メインレシピ</value>
    <comment>Main Recipe</comment>
  </data>
  <data name="Mark_Delay" xml:space="preserve">
    <value>マーク遅延</value>
    <comment>Mark Delay</comment>
  </data>
  <data name="Mark_Speed" xml:space="preserve">
    <value>マークスピード</value>
    <comment>Mark Speed</comment>
  </data>
  <data name="Mass_Product_Code" xml:space="preserve">
    <value>量産コード</value>
    <comment>Mass Product Code</comment>
  </data>
  <data name="MCR_X" xml:space="preserve">
    <value>MCR_X</value>
    <comment>MCR X</comment>
  </data>
  <data name="MCR_Y" xml:space="preserve">
    <value>MCR_Y</value>
    <comment>MCR Y</comment>
  </data>
  <data name="MEASUREMENT" xml:space="preserve">
    <value>測定</value>
    <comment>MEASUREMENT</comment>
  </data>
  <data name="Measurement_Speed" xml:space="preserve">
    <value>測定速度</value>
    <comment>Measurement Speed</comment>
  </data>
  <data name="Module_Model_ID" xml:space="preserve">
    <value>機種モデル名</value>
    <comment>Module Model ID</comment>
  </data>
  <data name="Motor_Axis" xml:space="preserve">
    <value>モーター軸</value>
    <comment>Motor Axis</comment>
  </data>
  <data name="Motor_Board_Status" xml:space="preserve">
    <value>モーターボード状態</value>
    <comment>Motor Board Status</comment>
  </data>
  <data name="Motor_Control" xml:space="preserve">
    <value>モーターコントロール</value>
    <comment>Motor Control</comment>
  </data>
  <data name="Motor_Select" xml:space="preserve">
    <value>モーター選択</value>
    <comment>Motor Select</comment>
  </data>
  <data name="MOTOR_STATUS" xml:space="preserve">
    <value>モーター状態</value>
    <comment>MOTOR STATUS</comment>
  </data>
  <data name="MOTOR_STOP" xml:space="preserve">
    <value>モーター停止</value>
    <comment>MOTOR STOP</comment>
  </data>
  <data name="Move_Position" xml:space="preserve">
    <value>動作位置</value>
    <comment>Move Position</comment>
  </data>
  <data name="Move_Speed" xml:space="preserve">
    <value>動作速度</value>
    <comment>Move Speed</comment>
  </data>
  <data name="Move_Stop" xml:space="preserve">
    <value>動作停止</value>
    <comment>Move Stop</comment>
  </data>
  <data name="Name" xml:space="preserve">
    <value>名前</value>
    <comment>Name</comment>
  </data>
  <data name="Negative_Limit" xml:space="preserve">
    <value>マイナスリミット</value>
    <comment>Negative Limit</comment>
  </data>
  <data name="New" xml:space="preserve">
    <value>新規</value>
    <comment>New</comment>
  </data>
  <data name="No" xml:space="preserve">
    <value>ナンバー</value>
    <comment>No.</comment>
  </data>
  <data name="NOT_USE" xml:space="preserve">
    <value>未使用</value>
    <comment>NOT USE</comment>
  </data>
  <data name="NUM" xml:space="preserve">
    <value>エラー</value>
    <comment>NUM</comment>
  </data>
  <data name="OPEN_FOLDER" xml:space="preserve">
    <value>フォルダを開く</value>
    <comment>OPEN FOLDER</comment>
  </data>
  <data name="Panel_Data" xml:space="preserve">
    <value>パネルデーター</value>
    <comment>Panel Data</comment>
  </data>
  <data name="Panel_Info_Recipe" xml:space="preserve">
    <value>パネル情報レシピ</value>
    <comment>Panel Info Recipe</comment>
  </data>
  <data name="Parameter" xml:space="preserve">
    <value>パラメーター</value>
    <comment>Parameter</comment>
  </data>
  <data name="PASSWORD" xml:space="preserve">
    <value>暗証番号</value>
    <comment>PASSWORD</comment>
  </data>
  <data name="Pause" xml:space="preserve">
    <value>一時停止</value>
    <comment>Pause</comment>
  </data>
  <data name="Person_in_Charge_Code" xml:space="preserve">
    <value>担当者コード</value>
    <comment>Person in Charge Code</comment>
  </data>
  <data name="Pick" xml:space="preserve">
    <value>選択</value>
    <comment>Pick</comment>
  </data>
  <data name="Plasma" xml:space="preserve">
    <value>プラズマ</value>
    <comment>Plasma</comment>
  </data>
  <data name="Plasma_Position_Data" xml:space="preserve">
    <value>プラズマ位置データー</value>
    <comment>Plasma Position Data</comment>
  </data>
  <data name="Plasma_Speed" xml:space="preserve">
    <value>プラズマ速度</value>
    <comment>Plasma Speed</comment>
  </data>
  <data name="PLASMA_X" xml:space="preserve">
    <value>プラズマ X</value>
    <comment>PLASMA X</comment>
  </data>
  <data name="Plasma_X_A1" xml:space="preserve">
    <value>プラズマX A1</value>
    <comment>Plasma X A1</comment>
  </data>
  <data name="Plasma_X_A2" xml:space="preserve">
    <value>プラズマX A2</value>
    <comment>Plasma X A2</comment>
  </data>
  <data name="Plasma_X_B1" xml:space="preserve">
    <value>プラズマX B1</value>
    <comment>Plasma X B1</comment>
  </data>
  <data name="Plasma_X_B2" xml:space="preserve">
    <value>プラズマX B2</value>
    <comment>Plasma X B2</comment>
  </data>
  <data name="POSITION" xml:space="preserve">
    <value>位置</value>
    <comment>POSITION</comment>
  </data>
  <data name="POSITION_NAME" xml:space="preserve">
    <value>位置名称</value>
    <comment>POSITION NAME</comment>
  </data>
  <data name="POSITION_PARAMETER" xml:space="preserve">
    <value>位置パラメーター</value>
    <comment>POSITION PARAMETER</comment>
  </data>
  <data name="POSITION_SETTING" xml:space="preserve">
    <value>位置設定</value>
    <comment>POSITION SETTING</comment>
  </data>
  <data name="Positive_Limit" xml:space="preserve">
    <value>プラスリミット</value>
    <comment>Positive Limit</comment>
  </data>
  <data name="Pos_X" xml:space="preserve">
    <value>Pos X</value>
    <comment>Pos X</comment>
  </data>
  <data name="Pos_Y" xml:space="preserve">
    <value>Pos Y</value>
    <comment>Pos Y</comment>
  </data>
  <data name="Power" xml:space="preserve">
    <value>出力</value>
    <comment>Power</comment>
  </data>
  <data name="Power_Meter" xml:space="preserve">
    <value>パワーメーター</value>
    <comment>Power Meter</comment>
  </data>
  <data name="PRE_ALIGN" xml:space="preserve">
    <value>プレアライン</value>
    <comment>PRE ALIGN</comment>
  </data>
  <data name="Pre_Align_Left" xml:space="preserve">
    <value>PreAlign左</value>
    <comment>Pre Align Left</comment>
  </data>
  <data name="Pre_Align_Offset" xml:space="preserve">
    <value>PreAlignオフセット</value>
    <comment>Pre Align Offset</comment>
  </data>
  <data name="Pre_Align_Pick_Offset" xml:space="preserve">
    <value>PreAlign選択オフセット</value>
    <comment>Pre Align Pick Offset</comment>
  </data>
  <data name="Pre_Align_Position" xml:space="preserve">
    <value>PreAlign位置</value>
    <comment>Pre Align Position</comment>
  </data>
  <data name="Pre_Align_Right" xml:space="preserve">
    <value>PreAlign右</value>
    <comment>Pre Align Right</comment>
  </data>
  <data name="Pre_Align_Speed" xml:space="preserve">
    <value>プレアライン速度</value>
    <comment>Pre Align Speed</comment>
  </data>
  <data name="Pre_Align_Stage" xml:space="preserve">
    <value>PreAlignステージ</value>
    <comment>Pre Align Stage</comment>
  </data>
  <data name="Pre_Align_Stage_1" xml:space="preserve">
    <value>PreAlignステージ1</value>
    <comment>Pre Align Stage 1</comment>
  </data>
  <data name="Pre_Align_Stage_2" xml:space="preserve">
    <value>PreAlignステージ2</value>
    <comment>Pre Align Stage 2</comment>
  </data>
  <data name="Process" xml:space="preserve">
    <value>工程</value>
    <comment>Process</comment>
  </data>
  <data name="Process_Info_Recipe" xml:space="preserve">
    <value>工程情報レシピ</value>
    <comment>Process Info Recipe</comment>
  </data>
  <data name="PROCESS_MOTORS" xml:space="preserve">
    <value>工程モーター</value>
    <comment>PROCESS MOTORS</comment>
  </data>
  <data name="PROCESS_MOTORS_INITIALIZE" xml:space="preserve">
    <value>工程モーター原点</value>
    <comment>PROCESS MOTORS INITIALIZE</comment>
  </data>
  <data name="PROCESS_MOTORS_INITIALIZE_PROGRESS" xml:space="preserve">
    <value>工程モーター原点復帰</value>
    <comment>PROCESS MOTORS INITIALIZE PROGRESS</comment>
  </data>
  <data name="Process_Number" xml:space="preserve">
    <value>工程番号</value>
    <comment>Process Number</comment>
  </data>
  <data name="Program_Name" xml:space="preserve">
    <value>プログラム名</value>
    <comment>Program Name</comment>
  </data>
  <data name="Program_Version" xml:space="preserve">
    <value>プログラムバージョン</value>
    <comment>Program Version</comment>
  </data>
  <data name="Prototype_Name" xml:space="preserve">
    <value>プロトタイプ名</value>
    <comment>Prototype Name</comment>
  </data>
  <data name="Prupose_Code" xml:space="preserve">
    <value>目的コード</value>
    <comment>Prupose Code</comment>
  </data>
  <data name="Recipe" xml:space="preserve">
    <value>レシピ</value>
    <comment>Recipe</comment>
  </data>
  <data name="Recipe_Name" xml:space="preserve">
    <value>レシピネーム</value>
    <comment>Recipe Name</comment>
  </data>
  <data name="Red" xml:space="preserve">
    <value>赤</value>
    <comment>Red</comment>
  </data>
  <data name="Refresh" xml:space="preserve">
    <value>回復</value>
    <comment>Refresh</comment>
  </data>
  <data name="REL" xml:space="preserve">
    <value>相対移動</value>
    <comment>REL</comment>
  </data>
  <data name="Relative" xml:space="preserve">
    <value>相対的</value>
    <comment>Relative</comment>
  </data>
  <data name="Repeat" xml:space="preserve">
    <value>リピート</value>
    <comment>Repeat</comment>
  </data>
  <data name="RESET" xml:space="preserve">
    <value>リセット</value>
    <comment>RESET</comment>
  </data>
  <data name="Retry_Parameter" xml:space="preserve">
    <value>リトライパラメーター</value>
    <comment>Retry Parameter</comment>
  </data>
  <data name="Reverse" xml:space="preserve">
    <value>反転</value>
    <comment>Reverse</comment>
  </data>
  <data name="Reverse_Stage" xml:space="preserve">
    <value>反転機ステージ</value>
    <comment>Reverse Stage</comment>
  </data>
  <data name="Reverse_Stage_To_Pre_Align" xml:space="preserve">
    <value>反転機ステージ -&gt; プレアライン</value>
    <comment>Reverse Stage -&gt; Pre Align</comment>
  </data>
  <data name="Reverse_T_0" xml:space="preserve">
    <value>反転T軸 0度</value>
    <comment>Reverse T 0</comment>
  </data>
  <data name="Reverse_T_180" xml:space="preserve">
    <value>反転T軸 180度</value>
    <comment>Reverse T 180</comment>
  </data>
  <data name="Reverse_Z_Down" xml:space="preserve">
    <value>反転Zダウン</value>
    <comment>Reverse Z Down</comment>
  </data>
  <data name="Reverse_Z_Up" xml:space="preserve">
    <value>反転Zアップ</value>
    <comment>Reverse Z Up</comment>
  </data>
  <data name="Row" xml:space="preserve">
    <value>列</value>
    <comment>Row</comment>
  </data>
  <data name="Save" xml:space="preserve">
    <value>保存</value>
    <comment>Save</comment>
  </data>
  <data name="SAVE_TO_CSV" xml:space="preserve">
    <value>CSVに保存</value>
    <comment>SAVE TO .CSV</comment>
  </data>
  <data name="Scanner_Info" xml:space="preserve">
    <value>スキャナー情報</value>
    <comment>Scanner Info</comment>
  </data>
  <data name="Scanner_Offset_Data" xml:space="preserve">
    <value>スキャナーオフセットデータ</value>
    <comment>Scanner Offset Data</comment>
  </data>
  <data name="Scanner_Position_Data" xml:space="preserve">
    <value>スキャナーポジションデータ</value>
    <comment>Scanner Position Data</comment>
  </data>
  <data name="SCANNER_RUN" xml:space="preserve">
    <value>スキャナーラン</value>
    <comment>SCANNER RUN</comment>
  </data>
  <data name="SCANNER_TEST_RUN" xml:space="preserve">
    <value>スキャナーテストラン</value>
    <comment>SCANNER TEST RUN</comment>
  </data>
  <data name="Scanner_T_A1" xml:space="preserve">
    <value>スキャナー T A1</value>
    <comment>Scanner T A1</comment>
  </data>
  <data name="Scanner_T_A2" xml:space="preserve">
    <value>スキャナー T A2</value>
    <comment>Scanner T A2</comment>
  </data>
  <data name="Scanner_T_B1" xml:space="preserve">
    <value>スキャナー T B1</value>
    <comment>Scanner T B1</comment>
  </data>
  <data name="Scanner_T_B2" xml:space="preserve">
    <value>スキャナー T B2</value>
    <comment>Scanner T B2</comment>
  </data>
  <data name="SCANNER_VIEW" xml:space="preserve">
    <value>スキャナービュー</value>
    <comment>SCANNER VIEW</comment>
  </data>
  <data name="Scanner_X_A1" xml:space="preserve">
    <value>スキャナー X A1</value>
    <comment>Scanner X A1</comment>
  </data>
  <data name="Scanner_X_A1_Position" xml:space="preserve">
    <value>スキャナー X A1ポジション</value>
    <comment>Scanner X A1 Position</comment>
  </data>
  <data name="Scanner_X_A2" xml:space="preserve">
    <value>スキャナー X A2</value>
    <comment>Scanner X A2</comment>
  </data>
  <data name="Scanner_X_A2_Position" xml:space="preserve">
    <value>スキャナー X A2ポジション</value>
    <comment>Scanner X A2 Position</comment>
  </data>
  <data name="Scanner_X_B1" xml:space="preserve">
    <value>スキャナー X B1</value>
    <comment>Scanner X B1</comment>
  </data>
  <data name="Scanner_X_B1_Position" xml:space="preserve">
    <value>スキャナー X B1ポジション</value>
    <comment>Scanner X B1 Position</comment>
  </data>
  <data name="Scanner_X_B2" xml:space="preserve">
    <value>スキャナー X B2</value>
    <comment>Scanner X B2</comment>
  </data>
  <data name="Scanner_X_B2_Position" xml:space="preserve">
    <value>スキャナー X B2ポジション</value>
    <comment>Scanner X B2 Position</comment>
  </data>
  <data name="Scanner_X_Power_Meter_Position" xml:space="preserve">
    <value>スキャナー X パワーメーターポジション</value>
    <comment>Scanner X Power Meter Position</comment>
  </data>
  <data name="Scanner_Z_A1" xml:space="preserve">
    <value>スキャナーZ A1</value>
    <comment>Scanner Z A1</comment>
  </data>
  <data name="Scanner_Z_A1_Position" xml:space="preserve">
    <value>スキャナー Z A1ポジション</value>
    <comment>Scanner Z A1 Position</comment>
  </data>
  <data name="Scanner_Z_A2" xml:space="preserve">
    <value>スキャナーZ A2</value>
    <comment>Scanner Z A2</comment>
  </data>
  <data name="Scanner_Z_A2_Position" xml:space="preserve">
    <value>スキャナー Z A2ポジション</value>
    <comment>Scanner Z A2 Position</comment>
  </data>
  <data name="Scanner_Z_B1" xml:space="preserve">
    <value>スキャナーZ B1</value>
    <comment>Scanner Z B1</comment>
  </data>
  <data name="Scanner_Z_B1_Position" xml:space="preserve">
    <value>スキャナー Z B1ポジション</value>
    <comment>Scanner Z B1 Position</comment>
  </data>
  <data name="Scanner_Z_B2" xml:space="preserve">
    <value>スキャナーZ B2</value>
    <comment>Scanner Z B2</comment>
  </data>
  <data name="Scanner_Z_B2_Position" xml:space="preserve">
    <value>スキャナー Z B2ポジション</value>
    <comment>Scanner Z B2 Position</comment>
  </data>
  <data name="Scanner_Z_Power_Meter_Position" xml:space="preserve">
    <value>スキャナー Z パワーメーターポジション</value>
    <comment>Scanner Z Power Meter Position</comment>
  </data>
  <data name="SELECT" xml:space="preserve">
    <value>選択</value>
    <comment>SELECT</comment>
  </data>
  <data name="SELECT_DATE" xml:space="preserve">
    <value>日付選択</value>
    <comment>SELECT DATE</comment>
  </data>
  <data name="SELECT_MODE" xml:space="preserve">
    <value>選択モード</value>
    <comment>SELECT MODE</comment>
  </data>
  <data name="SELECT_TIME" xml:space="preserve">
    <value>選択時間</value>
    <comment>SELECT TIME</comment>
  </data>
  <data name="SEQUENCE_VIEW" xml:space="preserve">
    <value>シーケンスビュー</value>
    <comment>SEQUENCE VIEW</comment>
  </data>
  <data name="Servo_Off" xml:space="preserve">
    <value>サーボオフ</value>
    <comment>Servo Off</comment>
  </data>
  <data name="Servo_On" xml:space="preserve">
    <value>サーボオン</value>
    <comment>Servo On</comment>
  </data>
  <data name="Setting" xml:space="preserve">
    <value>設定</value>
    <comment>Setting</comment>
  </data>
  <data name="Setting_Position" xml:space="preserve">
    <value>位置設定</value>
    <comment>Setting Position</comment>
  </data>
  <data name="Setting_Speed" xml:space="preserve">
    <value>速度設定</value>
    <comment>Setting Speed</comment>
  </data>
  <data name="Set_Position" xml:space="preserve">
    <value>設定位置</value>
    <comment>Set Position</comment>
  </data>
  <data name="Set_Speed" xml:space="preserve">
    <value>設定速度</value>
    <comment>Set Speed</comment>
  </data>
  <data name="Space_Data" xml:space="preserve">
    <value>スペースデータ</value>
    <comment>Space Data</comment>
  </data>
  <data name="SPEED" xml:space="preserve">
    <value>速度</value>
    <comment>SPEED</comment>
  </data>
  <data name="SPEED1" xml:space="preserve">
    <value>速度</value>
    <comment>SPEED</comment>
  </data>
  <data name="Speed_Parameter" xml:space="preserve">
    <value>速度パラメーター</value>
    <comment>Speed Parameter</comment>
  </data>
  <data name="Start" xml:space="preserve">
    <value>スタート</value>
    <comment>Start</comment>
  </data>
  <data name="Start_X" xml:space="preserve">
    <value>スタートX</value>
    <comment>Start X</comment>
  </data>
  <data name="Start_Y" xml:space="preserve">
    <value>スタートY</value>
    <comment>Start Y</comment>
  </data>
  <data name="Status" xml:space="preserve">
    <value>状態</value>
    <comment>Status</comment>
  </data>
  <data name="Stay_Position" xml:space="preserve">
    <value>待機位置</value>
    <comment>Stay Position</comment>
  </data>
  <data name="Stop" xml:space="preserve">
    <value>停止</value>
    <comment>Stop</comment>
  </data>
  <data name="SYSTEM_PARAMETER" xml:space="preserve">
    <value>システムパラメーター</value>
    <comment>SYSTEM PARAMETER</comment>
  </data>
  <data name="T" xml:space="preserve">
    <value>T</value>
    <comment>T</comment>
  </data>
  <data name="Teaching_Move" xml:space="preserve">
    <value>ティーチングムーブ</value>
    <comment>Teaching Move</comment>
  </data>
  <data name="Team" xml:space="preserve">
    <value>チーム</value>
    <comment>Team</comment>
  </data>
  <data name="Time_Out_Parameter" xml:space="preserve">
    <value>タイムアウトパラメーター</value>
    <comment>Time Out Parameter</comment>
  </data>
  <data name="TRAY" xml:space="preserve">
    <value>トレイ</value>
    <comment>TRAY</comment>
  </data>
  <data name="Tray_Count" xml:space="preserve">
    <value>トレイカウント</value>
    <comment>Tray Count</comment>
  </data>
  <data name="Tray_Info_Recipe" xml:space="preserve">
    <value>トレイ情報レシピ</value>
    <comment>Tray Info Recipe</comment>
  </data>
  <data name="Tray_Pitch" xml:space="preserve">
    <value>トレイ間隔</value>
    <comment>Tray Pitch</comment>
  </data>
  <data name="Tray_To_Conveyor" xml:space="preserve">
    <value>トレイ -&gt; コンベアー</value>
    <comment>Tray -&gt; Conveyor</comment>
  </data>
  <data name="Tray_To_Loader" xml:space="preserve">
    <value>トレイ -&gt; ローダー</value>
    <comment>Tray -&gt; Loader</comment>
  </data>
  <data name="Tray_To_Pre_Align" xml:space="preserve">
    <value>トレイ -&gt; プレアライン</value>
    <comment>Tray -&gt; Pre Align</comment>
  </data>
  <data name="Tray_To_Reverse_Stage" xml:space="preserve">
    <value>トレイ -&gt; 反転機ステージ</value>
    <comment>Tray -&gt; Reverse Stage</comment>
  </data>
  <data name="Tray_Unloading" xml:space="preserve">
    <value>トレイ排出</value>
    <comment>Tray Unloading</comment>
  </data>
  <data name="ULD_BCR" xml:space="preserve">
    <value>ULD BCR</value>
    <comment>ULD BCR</comment>
  </data>
  <data name="ULD_Empty_Count" xml:space="preserve">
    <value>ULD空トレイカウント</value>
    <comment>ULD Empty Count</comment>
  </data>
  <data name="ULD_Empty_Current_Count" xml:space="preserve">
    <value>ULD空トレイ現在カウント</value>
    <comment>ULD Empty Current Count</comment>
  </data>
  <data name="ULD_Handler_1" xml:space="preserve">
    <value>ULDハンド1</value>
    <comment>ULD Handler 1</comment>
  </data>
  <data name="ULD_Handler_1_X" xml:space="preserve">
    <value>ULDハンド1 X</value>
    <comment>ULD Handler 1 X</comment>
  </data>
  <data name="ULD_Handler_1_X_AOI_Stage_Position" xml:space="preserve">
    <value>ULDハンドラー 1 X 検査ステージ位置</value>
    <comment>ULD Handler #1 X AOI Stage Position</comment>
  </data>
  <data name="ULD_Handler_1_X_Reverse_Stage_Position" xml:space="preserve">
    <value>ULDハンドラー 1 X 反転機ステージ位置</value>
    <comment>ULD Handler #1 X Reverse Stage Position</comment>
  </data>
  <data name="ULD_Handler_1_X_Stay_Position" xml:space="preserve">
    <value>ULDハンドラー 1 X 待機位置</value>
    <comment>ULD Handler #1 X Stay Position</comment>
  </data>
  <data name="ULD_Handler_1_Y" xml:space="preserve">
    <value>ULDハンド1 Y</value>
    <comment>ULD Handler 1 Y</comment>
  </data>
  <data name="ULD_Handler_1_Y_AOI_Stage_Position" xml:space="preserve">
    <value>ULDハンドラー 1 Y 検査ステージ位置</value>
    <comment>ULD Handler #1 Y AOI Stage Position</comment>
  </data>
  <data name="ULD_Handler_1_Y_Reverse_Stage_Position" xml:space="preserve">
    <value>ULDハンドラー 1 Y 反転機ステージ位置</value>
    <comment>ULD Handler #1 Y Reverse Stage Position</comment>
  </data>
  <data name="ULD_Handler_1_Y_Stay_Position" xml:space="preserve">
    <value>ULDハンドラー 1 Y 待機位置</value>
    <comment>ULD Handler #1 Y Stay Position</comment>
  </data>
  <data name="ULD_Handler_2" xml:space="preserve">
    <value>ULDハンド2</value>
    <comment>ULD Handler 2</comment>
  </data>
  <data name="ULD_Handler_2_X_Stay_Position" xml:space="preserve">
    <value>ULDハンドラー 2 X 待機位置</value>
    <comment>ULD Handler #2 X Stay Position</comment>
  </data>
  <data name="ULD_Handler_2_Y_Stay_Position" xml:space="preserve">
    <value>ULDハンドラー 2 Y 待機位置</value>
    <comment>ULD Handler #2 Y Stay Position</comment>
  </data>
  <data name="ULD_NG_Count" xml:space="preserve">
    <value>ULDNGカウント</value>
    <comment>ULD NG Count</comment>
  </data>
  <data name="ULD_NG_Current_Count" xml:space="preserve">
    <value>ULDNG現在カウント</value>
    <comment>ULD NG Current Count</comment>
  </data>
  <data name="ULD_NG_Tray_Bwd" xml:space="preserve">
    <value>ULD_NG_トレイ後退</value>
    <comment>ULD NG Tray Bwd</comment>
  </data>
  <data name="ULD_NG_Tray_Fwd" xml:space="preserve">
    <value>ULD_NG_トレイ前進</value>
    <comment>ULD NG Tray Fwd</comment>
  </data>
  <data name="ULD_OK_Count" xml:space="preserve">
    <value>ULDOKカウント</value>
    <comment>ULD OK Count</comment>
  </data>
  <data name="ULD_OK_Current_Count" xml:space="preserve">
    <value>ULDOK現在カウント</value>
    <comment>ULD OK Current Count</comment>
  </data>
  <data name="ULD_Reverse" xml:space="preserve">
    <value>ULD反転機</value>
    <comment>ULD Reverse</comment>
  </data>
  <data name="ULD_Reverse_Unit_1_0_Deg_Position" xml:space="preserve">
    <value>ULD反転機 1 0?位置</value>
    <comment>ULD Reverse Unit #1 0 Deg Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_1_180_Deg_Position" xml:space="preserve">
    <value>ULD反転機 1 180?位置</value>
    <comment>ULD Reverse Unit #1 180 Deg Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_1_Down_Position" xml:space="preserve">
    <value>ULD反転機 1 ダウン位置</value>
    <comment>ULD Reverse Unit #1 Down Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_1_Up_Position" xml:space="preserve">
    <value>ULD反転機 1 アップ位置</value>
    <comment>ULD Reverse Unit #1 Up Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_2_0_Deg_Position" xml:space="preserve">
    <value>ULD反転機 2 0?位置</value>
    <comment>ULD Reverse Unit #2 0 Deg Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_2_180_Deg_Position" xml:space="preserve">
    <value>ULD反転機 2 180?位置</value>
    <comment>ULD Reverse Unit #2 180 Deg Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_2_Down_Position" xml:space="preserve">
    <value>ULD反転機 2 ダウン位置</value>
    <comment>ULD Reverse Unit #2 Down Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_2_Up_Position" xml:space="preserve">
    <value>ULD反転機 2 アップ位置</value>
    <comment>ULD Reverse Unit #2 Up Position</comment>
  </data>
  <data name="ULD_STACKER" xml:space="preserve">
    <value>ULDステッカー</value>
    <comment>ULD STACKER</comment>
  </data>
  <data name="ULD_Tray_Empty" xml:space="preserve">
    <value>ULD空トレイ</value>
    <comment>ULD Tray Empty</comment>
  </data>
  <data name="ULD_Tray_NG" xml:space="preserve">
    <value>ULDトレイ NG</value>
    <comment>ULD Tray NG</comment>
  </data>
  <data name="ULD_Tray_OK" xml:space="preserve">
    <value>ULDトレイ OK</value>
    <comment>ULD Tray OK</comment>
  </data>
  <data name="ULD_Tray_Process" xml:space="preserve">
    <value>ULDトレイ 工程</value>
    <comment>ULD Tray Process</comment>
  </data>
  <data name="ULD_Tray_Wait" xml:space="preserve">
    <value>ULDトレイ 待機</value>
    <comment>ULD Tray Wait</comment>
  </data>
  <data name="Unload" xml:space="preserve">
    <value>アンロード</value>
    <comment>Unload</comment>
  </data>
  <data name="Unloader" xml:space="preserve">
    <value>アンローダー</value>
    <comment>Unloader</comment>
  </data>
  <data name="UNLOADER_MOTORS" xml:space="preserve">
    <value>アンローダーモーター</value>
    <comment>UNLOADER MOTORS</comment>
  </data>
  <data name="UNLOADER_MOTORS_INITIALIZE" xml:space="preserve">
    <value>アンローダーモーター原点</value>
    <comment>UNLOADER MOTORS INITIALIZE</comment>
  </data>
  <data name="UNLOADER_MOTORS_INITIALIZE_PROGRESS" xml:space="preserve">
    <value>アンローダーモーター原点復帰</value>
    <comment>UNLOADER MOTORS INITIALIZE PROGRESS</comment>
  </data>
  <data name="UNLOADER_REVERSE" xml:space="preserve">
    <value>アンローダー反転機</value>
    <comment>UNLOADER REVERSE</comment>
  </data>
  <data name="UNLOAD_HANDLER_1" xml:space="preserve">
    <value>アンローダーハンドラー1</value>
    <comment>UNLOAD HANDLER 1</comment>
  </data>
  <data name="UNLOAD_HANDLER_2" xml:space="preserve">
    <value>アンローダーハンドラー2</value>
    <comment>UNLOAD HANDLER 2</comment>
  </data>
  <data name="Unload_Handler_2_X_Ablation_Stage_1_Position" xml:space="preserve">
    <value>アンロードハンドラー 2 X 加工ステージ 1位置</value>
    <comment>Unload Handler #2 X Ablation Stage #1 Position</comment>
  </data>
  <data name="Unload_Handler_2_X_Ablation_Stage_2_Position" xml:space="preserve">
    <value>アンロードハンドラー 2 X 加工ステージ 2位置</value>
    <comment>Unload Handler #2 X Ablation Stage #2 Position</comment>
  </data>
  <data name="Unload_Handler_2_X_AOI_Stage_Position" xml:space="preserve">
    <value>アンロードハンドラー 2 X 検査ステージ位置</value>
    <comment>Unload Handler #2 X AOI Stage Position</comment>
  </data>
  <data name="Unload_Handler_2_Y_Ablation_Stage_1_Position" xml:space="preserve">
    <value>アンロードハンドラー 2 Y 加工ステージ 1位置</value>
    <comment>Unload Handler #2 Y Ablation Stage #1 Position</comment>
  </data>
  <data name="Unload_Handler_2_Y_Ablation_Stage_2_Position" xml:space="preserve">
    <value>アンロードハンドラー 2 Y 加工ステージ 2位置</value>
    <comment>Unload Handler #2 Y Ablation Stage #2 Position</comment>
  </data>
  <data name="Unload_Handler_2_Y_AOI_Stage_Position" xml:space="preserve">
    <value>アンロードハンドラー 2 Y 検査ステージ位置</value>
    <comment>Unload Handler #2 Y AOI Stage Position</comment>
  </data>
  <data name="Unload_To_Tray" xml:space="preserve">
    <value>アンロード -&gt; トレイ</value>
    <comment>Unload -&gt; Tray</comment>
  </data>
  <data name="Unload_Tray_Empty_Z_Tray_Process_Position" xml:space="preserve">
    <value>アンロードトレイ Empty Zトレイ工程位置</value>
    <comment>Unload Tray Empty Z Tray Process Position</comment>
  </data>
  <data name="Unload_Tray_Empty_Z_Tray_Wait_Position" xml:space="preserve">
    <value>アンロードトレイ Empty Zトレイ待機位置</value>
    <comment>Unload Tray Empty Z Tray Wait Position</comment>
  </data>
  <data name="UNLOAD_TRAY_LIFT_EMPTY" xml:space="preserve">
    <value>アンロードトレイ リフト EMPTY</value>
    <comment>UNLOAD TRAY LIFT EMPTY</comment>
  </data>
  <data name="UNLOAD_TRAY_LIFT_NG" xml:space="preserve">
    <value>アンロードトレイ リフト NG</value>
    <comment>UNLOAD TRAY LIFT NG</comment>
  </data>
  <data name="UNLOAD_TRAY_LIFT_OK" xml:space="preserve">
    <value>アンロードトレイ リフト OK</value>
    <comment>UNLOAD TRAY LIFT OK</comment>
  </data>
  <data name="Unload_Tray_NG_Z_Tray_Process_Position" xml:space="preserve">
    <value>アンロードトレイ NG Zトレイ工程位置</value>
    <comment>Unload Tray NG Z Tray Process Position</comment>
  </data>
  <data name="Unload_Tray_NG_Z_Tray_Wait_Position" xml:space="preserve">
    <value>アンロードトレイ NG Zトレイ待機位置</value>
    <comment>Unload Tray NG Z Tray Wait Position</comment>
  </data>
  <data name="Unload_Tray_OK_Z_Tray_Process_Position" xml:space="preserve">
    <value>アンロードトレイ OK Zトレイ工程位置</value>
    <comment>Unload Tray OK Z Tray Process Position</comment>
  </data>
  <data name="Unload_Tray_OK_Z_Tray_Wait_Position" xml:space="preserve">
    <value>アンロードトレイ OK Zトレイ待機位置</value>
    <comment>Unload Tray OK Z Tray Wait Position</comment>
  </data>
  <data name="UNLOAD_TRAY_TR" xml:space="preserve">
    <value>アンロードトレイ TR</value>
    <comment>UNLOAD TRAY TR</comment>
  </data>
  <data name="Unload_Tray_TR_X_Empty_Position" xml:space="preserve">
    <value>アンロードトレイ TR X Empty位置</value>
    <comment>Unload Tray TR X Empty Position</comment>
  </data>
  <data name="Unload_Tray_TR_X_NG_Position" xml:space="preserve">
    <value>アンロードトレイ TR X NG位置</value>
    <comment>Unload Tray TR X NG Position</comment>
  </data>
  <data name="Unload_Tray_TR_X_OK_Position" xml:space="preserve">
    <value>アンロードトレイ TR X OK位置</value>
    <comment>Unload Tray TR X OK Position</comment>
  </data>
  <data name="USE" xml:space="preserve">
    <value>使用</value>
    <comment>USE</comment>
  </data>
  <data name="User_ID" xml:space="preserve">
    <value>使用者ID</value>
    <comment>User ID</comment>
  </data>
  <data name="USER_INFO" xml:space="preserve">
    <value>使用者情報</value>
    <comment>USER INFO</comment>
  </data>
  <data name="User_Info1" xml:space="preserve">
    <value>ユーザー情報</value>
    <comment>User Info</comment>
  </data>
  <data name="User_Info2" xml:space="preserve">
    <value>ユーザー情報</value>
    <comment>User Info</comment>
  </data>
  <data name="Vaccum_Timeout_sec" xml:space="preserve">
    <value>バキュームタイムアウト</value>
    <comment>Vaccum Timeout(s)</comment>
  </data>
  <data name="Value" xml:space="preserve">
    <value>価値</value>
    <comment>Value</comment>
  </data>
  <data name="Velocity" xml:space="preserve">
    <value>速力度</value>
    <comment>Velocity</comment>
  </data>
  <data name="Vision_Hear_Beat_Timeout_sec" xml:space="preserve">
    <value>ビジョンハートビートタイムアウト</value>
    <comment>Vision Hear Beat Timeout(s)</comment>
  </data>
  <data name="Vision_Info_Recipe" xml:space="preserve">
    <value>ビジョン情報レシピ</value>
    <comment>Vision Info Recipe</comment>
  </data>
  <data name="Vision_Move_Delay_sec" xml:space="preserve">
    <value>ビジョン移動遅延</value>
    <comment>Vision Move Delay(s)</comment>
  </data>
  <data name="Vision_Retry_Count" xml:space="preserve">
    <value>ビジョンリトライカウント</value>
    <comment>Vision Retry Count</comment>
  </data>
  <data name="VISION_TEST" xml:space="preserve">
    <value>ビジョンテスト</value>
    <comment>VISION TEST</comment>
  </data>
  <data name="Vision_Timeout_sec" xml:space="preserve">
    <value>ビジョンタイムアウト</value>
    <comment>Vision Timeout(s)</comment>
  </data>
  <data name="Waveform" xml:space="preserve">
    <value>波型</value>
    <comment>Waveform</comment>
  </data>
  <data name="Work_Area_X" xml:space="preserve">
    <value>ワークエリア X</value>
    <comment>Work Area X</comment>
  </data>
  <data name="Work_Area_Y" xml:space="preserve">
    <value>ワークエリア Y</value>
    <comment>Work Area Y</comment>
  </data>
  <data name="X" xml:space="preserve">
    <value>X</value>
    <comment>X</comment>
  </data>
  <data name="Y" xml:space="preserve">
    <value>Y</value>
    <comment>Y</comment>
  </data>
  <data name="Yellow" xml:space="preserve">
    <value>黄色</value>
    <comment>Yellow</comment>
  </data>
  <data name="_0_Deg" xml:space="preserve">
    <value>0度</value>
    <comment>0 Deg</comment>
  </data>
  <data name="_180_Deg" xml:space="preserve">
    <value>180度</value>
    <comment>180 Deg</comment>
  </data>
  <data name="_90_Deg" xml:space="preserve">
    <value>90度</value>
    <comment>90 Deg</comment>
  </data>
  <data name="_minus_90_Deg" xml:space="preserve">
    <value>-90度</value>
    <comment>-90 Deg</comment>
  </data>
  <data name="Cleaning_Position" xml:space="preserve">
    <value>清掃位置</value>
    <comment>清掃位置</comment>
  </data>
</root>