Resource.en-US.resx
51.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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
<?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="FrmMenu_Text" xml:space="preserve">
<value>SMART WORK STATION</value>
</data>
<data name="OpenComFail" xml:space="preserve">
<value>Failed to open serial port</value>
</data>
<data name="MsgTitle" xml:space="preserve">
<value>Remind</value>
</data>
<data name="SaveOk" xml:space="preserve">
<value>Save success</value>
</data>
<data name="PleaseStartStore" xml:space="preserve">
<value>Please start the system!</value>
</data>
<data name="CannotMove" xml:space="preserve">
<value>The position cylinder is not at the descent position, not move the in-out axis</value>
</data>
<data name="WarnMsg" xml:space="preserve">
<value>Warning</value>
</data>
<data name="SaveError" xml:space="preserve">
<value>Save error</value>
</data>
<data name="CanotReset" xml:space="preserve">
<value>Can return to stanby ,without alarm, providing, storing or reset </value>
</data>
<data name="SureExit" xml:space="preserve">
<value>Confirm exit</value>
</data>
<data name="PWSpeed" xml:space="preserve">
<value>Type the correct speed</value>
</data>
<data name="AutoOut" xml:space="preserve">
<value>Auto providing</value>
</data>
<data name="AutoIn" xml:space="preserve">
<value>Auto storing</value>
</data>
<data name="AutoEnd" xml:space="preserve">
<value>Auto storing end</value>
</data>
<data name="DoorHasOpen" xml:space="preserve">
<value>Front door open</value>
</data>
<data name="HasWare" xml:space="preserve">
<value>Fork tray full, please check</value>
</data>
<data name="StartAuto" xml:space="preserve">
<value>Start auto storing</value>
</data>
<data name="StopAuto" xml:space="preserve">
<value>Stop auto storing</value>
</data>
<data name="WaitStart" xml:space="preserve">
<value>Wait to start</value>
</data>
<data name="Run" xml:space="preserve">
<value>Runing</value>
</data>
<data name="Busy" xml:space="preserve">
<value>Busy</value>
</data>
<data name="HomeMove" xml:space="preserve">
<value>Back to home</value>
</data>
<data name="Reset" xml:space="preserve">
<value>Reset</value>
</data>
<data name="Runing" xml:space="preserve">
<value>Runing</value>
</data>
<data name="Wait" xml:space="preserve">
<value>Wait to start</value>
</data>
<data name="Debugging" xml:space="preserve">
<value>Under adjusting</value>
</data>
<data name="InStoreEnd" xml:space="preserve">
<value>Saving executed</value>
</data>
<data name="InStoreExecute" xml:space="preserve">
<value>Saving Executing</value>
</data>
<data name="InTrouble" xml:space="preserve">
<value>In trouble</value>
</data>
<data name="OutStoreBoxEnd" xml:space="preserve">
<value>Providing executed</value>
</data>
<data name="OutStoreExecute" xml:space="preserve">
<value>Providing Executing</value>
</data>
<data name="StoreOnline" xml:space="preserve">
<value>System online</value>
</data>
<data name="SuddenStop" xml:space="preserve">
<value>Emerengy stop</value>
</data>
<data name="OutMoveExecute" xml:space="preserve">
<value>Providing Executed </value>
</data>
<data name="InStoreFailed" xml:space="preserve">
<value>Saving failed</value>
</data>
<data name="OutStoreFailed" xml:space="preserve">
<value>Providing failed</value>
</data>
<data name="WaitSingle" xml:space="preserve">
<value>Wait signal</value>
</data>
<data name="TimeOut" xml:space="preserve">
<value>Time out</value>
</data>
<data name="inSuddenStop" xml:space="preserve">
<value>Receive emergency stop signal, alarm to stop</value>
</data>
<data name="InoutAlarm" xml:space="preserve">
<value>in-out axis alarm! Reset failed, please check</value>
</data>
<data name="Open" xml:space="preserve">
<value>Open</value>
</data>
<data name="Fail" xml:space="preserve">
<value>Fail</value>
</data>
<data name="AutoReset" xml:space="preserve">
<value>Receive reset signal, automatical reset</value>
</data>
<data name="MoveAxis" xml:space="preserve">
<value>Move axis</value>
</data>
<data name="Alarm" xml:space="preserve">
<value>Alarm</value>
</data>
<data name="InStoreError" xml:space="preserve">
<value>Saving format error:code [{0}] posId [{1}]</value>
</data>
<data name="InStoreNoPosition" xml:space="preserve">
<value>Saving location not found:code [{0}] posId [{1}]</value>
</data>
<data name="OutStoreError" xml:space="preserve">
<value>Providing format error{0}</value>
</data>
<data name="OutStoreNoPosition" xml:space="preserve">
<value>Providing location not found{0}</value>
</data>
<data name="AbsMove" xml:space="preserve">
<value>Absolute move</value>
</data>
<data name="WaitIo" xml:space="preserve">
<value>IO wait</value>
</data>
<data name="WaitTime" xml:space="preserve">
<value>Time waiting</value>
</data>
<data name="TargetPosition" xml:space="preserve">
<value>Electric actuator position</value>
</data>
<data name="Middle_Axis" xml:space="preserve">
<value>(Axis 1) rotation axis</value>
</data>
<data name="UpDown_Axis" xml:space="preserve">
<value>(Axis 2) lifting axis</value>
</data>
<data name="InOut_Axis" xml:space="preserve">
<value>(Axis 3) in-out axis</value>
</data>
<data name="Comp_Axis" xml:space="preserve">
<value>(Axis 4) compress axis</value>
</data>
<data name="Batch_Axis" xml:space="preserve">
<value>(Axis 5) Batch loading axis</value>
</data>
<data name="FrmStoreBox_Text" xml:space="preserve">
<value>AC_SA_SMD BOX</value>
</data>
<data name="FrmStoreBox_chbAuto_Text" xml:space="preserve">
<value>Auto start</value>
</data>
<data name="FrmStoreBox_groupBox1_Text" xml:space="preserve">
<value>Servo state</value>
</data>
<data name="FrmStoreBox_label1_Text" xml:space="preserve">
<value>rotation axis</value>
</data>
<data name="FrmStoreBox_label38_Text" xml:space="preserve">
<value>ALM:</value>
</data>
<data name="FrmStoreBox_label12_Text" xml:space="preserve">
<value>Providing target value:</value>
</data>
<data name="FrmStoreBox_label4_Text" xml:space="preserve">
<value>in-out axis</value>
</data>
<data name="FrmStoreBox_label3_Text" xml:space="preserve">
<value>lifting axis</value>
</data>
<data name="FrmStoreBox_label43_Text" xml:space="preserve">
<value>Output impulse valve:</value>
</data>
<data name="FrmStoreBox_label42_Text" xml:space="preserve">
<value>Encoder count:</value>
</data>
<data name="FrmStoreBox_groupBox3_Text" xml:space="preserve">
<value>Machine state</value>
</data>
<data name="FrmStoreBox_lblThisSta_Text" xml:space="preserve">
<value>Wait to start</value>
</data>
<data name="FrmStoreBox_groupBox5_Text" xml:space="preserve">
<value>Servo move</value>
</data>
<data name="FrmStoreBox_label6_Text" xml:space="preserve">
<value>Home signal:</value>
</data>
<data name="FrmStoreBox_label5_Text" xml:space="preserve">
<value>1=ON,0=OFF</value>
</data>
<data name="FrmStoreBox_btnReadHomeSingle_Text" xml:space="preserve">
<value>Read home signal</value>
</data>
<data name="FrmStoreBox_chbAutoRead_Text" xml:space="preserve">
<value>Auto read position</value>
</data>
<data name="FrmStoreBox_label16_Text" xml:space="preserve">
<value>1=finished, 0= unfinished</value>
</data>
<data name="FrmStoreBox_label15_Text" xml:space="preserve">
<value>1=execution, 0=non execution</value>
</data>
<data name="FrmStoreBox_label14_Text" xml:space="preserve">
<value>1=alarm, 0=normal</value>
</data>
<data name="FrmStoreBox_label11_Text" xml:space="preserve">
<value>HOME-CMP state:</value>
</data>
<data name="FrmStoreBox_button2_Text" xml:space="preserve">
<value>Read home state</value>
</data>
<data name="FrmStoreBox_label10_Text" xml:space="preserve">
<value>BUSY state:</value>
</data>
<data name="FrmStoreBox_button1_Text" xml:space="preserve">
<value>Read BUSY state</value>
</data>
<data name="FrmStoreBox_label2_Text" xml:space="preserve">
<value>Alarm state:</value>
</data>
<data name="FrmStoreBox_btnGetAlarm_Text" xml:space="preserve">
<value>Read alarm state</value>
</data>
<data name="FrmStoreBox_btnReadPosition_Text" xml:space="preserve">
<value>Read position</value>
</data>
<data name="FrmStoreBox_label7_Text" xml:space="preserve">
<value>Output impulse valve:</value>
</data>
<data name="FrmStoreBox_label8_Text" xml:space="preserve">
<value>Encoder count:</value>
</data>
<data name="FrmStoreBox_btnOpenAxis_Text" xml:space="preserve">
<value>Open servo</value>
</data>
<data name="FrmStoreBox_btnCloseAxis_Text" xml:space="preserve">
<value>Close servo</value>
</data>
<data name="FrmStoreBox_label47_Text" xml:space="preserve">
<value>Speed:</value>
</data>
<data name="FrmStoreBox_btnAxisVMove_Text" xml:space="preserve">
<value>uniform move</value>
</data>
<data name="FrmStoreBox_btnAxisRMove_Text" xml:space="preserve">
<value>Relative move</value>
</data>
<data name="FrmStoreBox_btnAxisReturnHome_Text" xml:space="preserve">
<value>Back to home</value>
</data>
<data name="FrmStoreBox_btnAxisAMove_Text" xml:space="preserve">
<value>Abosolute move</value>
</data>
<data name="FrmStoreBox_Bt_ClearCounter_Text" xml:space="preserve">
<value>Reset position</value>
</data>
<data name="FrmStoreBox_btnComAlarmClear_Text" xml:space="preserve">
<value>Clear alarm</value>
</data>
<data name="FrmStoreBox_label48_Text" xml:space="preserve">
<value>Position:</value>
</data>
<data name="FrmStoreBox_btnAxisStop_Text" xml:space="preserve">
<value>Stop move</value>
</data>
<data name="FrmStoreBox_label45_Text" xml:space="preserve">
<value>Port number:</value>
</data>
<data name="FrmStoreBox_label46_Text" xml:space="preserve">
<value>Servo address:</value>
</data>
<data name="FrmStoreBox_label49_Text" xml:space="preserve">
<value>AC server:</value>
</data>
<data name="FrmStoreBox_groupBox2_Text" xml:space="preserve">
<value>SMD BOX operation</value>
</data>
<data name="FrmStoreBox_lblTemp_Text" xml:space="preserve">
<value>Current temperature--, current humidity--</value>
</data>
<data name="FrmStoreBox_btnClearLog_Text" xml:space="preserve">
<value>Clean log</value>
</data>
<data name="FrmStoreBox_lblMsg_Text" xml:space="preserve">
<value>Auto providing not start</value>
</data>
<data name="FrmStoreBox_btnSavePosition_Text" xml:space="preserve">
<value>Save position</value>
</data>
<data name="FrmStoreBox_btnStartAuTo_Text" xml:space="preserve">
<value>Start auto mode</value>
</data>
<data name="FrmStoreBox_label9_Text" xml:space="preserve">
<value>Interval storing position:</value>
</data>
<data name="FrmStoreBox_label21_Text" xml:space="preserve">
<value>Select storage position:</value>
</data>
<data name="FrmStoreBox_btnInStore_Text" xml:space="preserve">
<value>Saving testing</value>
</data>
<data name="FrmStoreBox_btnOutStore_Text" xml:space="preserve">
<value>Single providing </value>
</data>
<data name="FrmStoreBox_btnComP1_Text" xml:space="preserve">
<value>p-axis stanby P1:</value>
</data>
<data name="FrmStoreBox_btnInOutP2_Text" xml:space="preserve">
<value>In-out axis sucking disc P2:</value>
<comment>In-out axis sucking disc providing P2:</comment>
</data>
<data name="FrmStoreBox_btnInOutP1_Text" xml:space="preserve">
<value>In-out axis stanby P1:</value>
</data>
<data name="FrmStoreBox_btnMiddleP1_Text" xml:space="preserve">
<value>Rotation axis stanby P1:</value>
</data>
<data name="FrmStoreBox_btnUpDownP7_Text" xml:space="preserve">
<value>l-axis taking out buffer P7:</value>
</data>
<data name="FrmStoreBox_btnUpDownP1_Text" xml:space="preserve">
<value>l-axis picking P1:</value>
</data>
<data name="FrmStoreBox_btnComP3_Text" xml:space="preserve">
<value>p-axis former pressing P3:</value>
</data>
<data name="FrmStoreBox_btnComP2_Text" xml:space="preserve">
<value>p-axis pressing P2:</value>
</data>
<data name="FrmStoreBox_btnInOutP3_Text" xml:space="preserve">
<value>In-out axis taking out P3:</value>
</data>
<data name="FrmStoreBox_btnMiddleP2_Text" xml:space="preserve">
<value>Rotation axis storage P2:</value>
</data>
<data name="FrmStoreBox_btnUpDownP5_Text" xml:space="preserve">
<value>l-axis former providing P5:</value>
</data>
<data name="FrmStoreBox_btnUpDownP6_Text" xml:space="preserve">
<value>l-axis providing buffer P6:</value>
</data>
<data name="FrmStoreBox_btnUpDownP3_Text" xml:space="preserve">
<value>l-axis former storing P3:</value>
</data>
<data name="FrmStoreBox_btnUpDownP4_Text" xml:space="preserve">
<value>l-axis storing buffer P4:</value>
</data>
<data name="FrmIOStatus_Text" xml:space="preserve">
<value>IO check</value>
</data>
<data name="FrmIOStatus_groupBox1_Text" xml:space="preserve">
<value>DO write</value>
</data>
<data name="FrmIOStatus_btnDisDoorClose_Text" xml:space="preserve">
<value>Access controller open</value>
</data>
<data name="FrmIOStatus_btnDisDoorOpen_Text" xml:space="preserve">
<value>Access controller block</value>
</data>
<data name="FrmIOStatus_btnCloseLed_Text" xml:space="preserve">
<value>Close light</value>
</data>
<data name="FrmIOStatus_btnOpenLed_Text" xml:space="preserve">
<value>Open light</value>
</data>
<data name="FrmIOStatus_button1_Text" xml:space="preserve">
<value>Close</value>
</data>
<data name="FrmIOStatus_btnCloseAxisBreak_Text" xml:space="preserve">
<value>Close brake</value>
</data>
<data name="FrmIOStatus_btnOpenAxisBreak_Text" xml:space="preserve">
<value>Open brake</value>
</data>
<data name="FrmIOStatus_btnLocationDown_Text" xml:space="preserve">
<value>Position cylinder descent</value>
</data>
<data name="FrmIOStatus_btnLocationUp_Text" xml:space="preserve">
<value>Position cylinder ascent</value>
</data>
<data name="FrmIOStatus_btnCloseDoor_Text" xml:space="preserve">
<value>Close door</value>
</data>
<data name="FrmIOStatus_btnOpenDoor_Text" xml:space="preserve">
<value>Open door</value>
</data>
<data name="FrmIOStatus_label3_Text" xml:space="preserve">
<value>Select DO:</value>
</data>
<data name="FrmIOStatus_label2_Text" xml:space="preserve">
<value>SlaveId</value>
</data>
<data name="FrmIOStatus_btnReadAllDo_Text" xml:space="preserve">
<value>Read all DO</value>
</data>
<data name="FrmIOStatus_chbAutoRead_Text" xml:space="preserve">
<value>Auto read</value>
</data>
<data name="FrmIOStatus_btnReadAllDi_Text" xml:space="preserve">
<value>Read all DI</value>
</data>
<data name="FrmIOStatus_btnReadIO_Text" xml:space="preserve">
<value>Read IO state</value>
</data>
<data name="FrmIOStatus_label17_Text" xml:space="preserve">
<value>IP:</value>
</data>
<data name="FrmIOStatus_label14_Text" xml:space="preserve">
<value>Address:</value>
</data>
<data name="FrmIOStatus_label5_Text" xml:space="preserve">
<value>Time(ms):</value>
</data>
<data name="FrmIOStatus_label6_Text" xml:space="preserve">
<value>Write value:</value>
</data>
<data name="FrmIOStatus_btnWriteSingleDO_Text" xml:space="preserve">
<value>Write DO</value>
</data>
<data name="FrmIOStatus_groupBox4_Text" xml:space="preserve">
<value>DO list</value>
</data>
<data name="FrmIOStatus_label1_Text" xml:space="preserve">
<value>Y01_Automatic indicating light</value>
</data>
<data name="FrmIOStatus_groupBox3_Text" xml:space="preserve">
<value>DI list</value>
</data>
<data name="FrmAxisDebug_Text" xml:space="preserve">
<value>SMD BOX_1 _axis inching adjusting</value>
</data>
<data name="FrmAxisDebug_label6_Text" xml:space="preserve">
<value>Real time coordinate</value>
</data>
<data name="FrmAxisDebug_label5_Text" xml:space="preserve">
<value>Inching speed</value>
</data>
<data name="FrmAxisDebug_button1_Text" xml:space="preserve">
<value>Close</value>
</data>
<data name="FrmAxisDebug_btnInOutMovej_Text" xml:space="preserve">
<value>In-out axis-backward</value>
</data>
<data name="FrmAxisDebug_btnUpDownMovej_Text" xml:space="preserve">
<value>l-axis-descent</value>
</data>
<data name="FrmAxisDebug_btnMiddleMovej_Text" xml:space="preserve">
<value>Rotation axis- anti-clockwise</value>
</data>
<data name="FrmAxisDebug_btnInOutMove_Text" xml:space="preserve">
<value>In-out axis+forward</value>
</data>
<data name="FrmAxisDebug_btnUpDownMove_Text" xml:space="preserve">
<value>l-axis+ascent</value>
</data>
<data name="FrmAxisDebug_btnMiddleMove_Text" xml:space="preserve">
<value>Rotation axis+clockwise</value>
</data>
<data name="FrmAxisDebug_label3_Text" xml:space="preserve">
<value>(Axis 3) in-out axis</value>
</data>
<data name="FrmAxisDebug_label2_Text" xml:space="preserve">
<value>(Axis 2) lifting axis</value>
</data>
<data name="FrmAxisDebug_label1_Text" xml:space="preserve">
<value>(Axis 1) rotation axis</value>
</data>
<data name="FrmLanguage_Text" xml:space="preserve">
<value>Language</value>
</data>
<data name="FrmLanguage_rdDe_Text" xml:space="preserve">
<value>German</value>
</data>
<data name="FrmLanguage_btnCancel_Text" xml:space="preserve">
<value>Cancel</value>
</data>
<data name="FrmLanguage_btnOk_Text" xml:space="preserve">
<value>OK</value>
</data>
<data name="FrmLanguage_rbtnEnglish_Text" xml:space="preserve">
<value>English</value>
</data>
<data name="FrmLanguage_rbtnChina_Text" xml:space="preserve">
<value>Chinese</value>
</data>
<data name="FrmStoreBox_iO状态查看ToolStripMenuItem_Text" xml:space="preserve">
<value>IO state Debugging</value>
</data>
<data name="FrmStoreBox_toolStripMenuItem1_Text" xml:space="preserve">
<value>Exit</value>
</data>
<data name="FrmStoreBox_toolStripMenuItem2_Text" xml:space="preserve">
<value>Open light</value>
</data>
<data name="FrmStoreBox_toolStripMenuItem3_Text" xml:space="preserve">
<value>Close light</value>
</data>
<data name="FrmStoreBox_停止ToolStripMenuItem_Text" xml:space="preserve">
<value>Stop</value>
</data>
<data name="FrmStoreBox_关闭仓门ToolStripMenuItem_Text" xml:space="preserve">
<value>Close door</value>
</data>
<data name="FrmStoreBox_启动ToolStripMenuItem_Text" xml:space="preserve">
<value>Start</value>
</data>
<data name="FrmStoreBox_回待机点ToolStripMenuItem_Text" xml:space="preserve">
<value>back to standby</value>
</data>
<data name="FrmStoreBox_复位ToolStripMenuItem_Text" xml:space="preserve">
<value>Reset</value>
</data>
<data name="FrmStoreBox_学习二维码ToolStripMenuItem_Text" xml:space="preserve">
<value>learn QR code</value>
</data>
<data name="FrmStoreBox_德文ToolStripMenuItem_Text" xml:space="preserve">
<value>German</value>
</data>
<data name="FrmStoreBox_打开舱门ToolStripMenuItem_Text" xml:space="preserve">
<value>Open door</value>
</data>
<data name="FrmStoreBox_扫码测试ToolStripMenuItem_Text" xml:space="preserve">
<value>scanning test</value>
</data>
<data name="FrmStoreBox_料仓操作ToolStripMenuItem_Text" xml:space="preserve">
<value>Operation</value>
</data>
<data name="FrmStoreBox_料仓运转OFFToolStripMenuItem_Text" xml:space="preserve">
<value>SMD BOX operating OFF</value>
</data>
<data name="FrmStoreBox_料仓运转ONToolStripMenuItem_Text" xml:space="preserve">
<value>SMD BOX operating ON</value>
</data>
<data name="FrmStoreBox_显示ToolStripMenuItem_Text" xml:space="preserve">
<value>Show</value>
</data>
<data name="FrmStoreBox_查看IOToolStripMenuItem_Text" xml:space="preserve">
<value>IO check</value>
</data>
<data name="FrmStoreBox_清理日志ToolStripMenuItem_Text" xml:space="preserve">
<value>Chinese</value>
</data>
<data name="FrmStoreBox_英文ToolStripMenuItem_Text" xml:space="preserve">
<value>English</value>
</data>
<data name="FrmStoreBox_语言_Text" xml:space="preserve">
<value>Language</value>
</data>
<data name="FrmStoreBox_轴卡点动ToolStripMenuItem_Text" xml:space="preserve">
<value>axis inching adjusting</value>
</data>
<data name="FrmStoreBox_退出ToolStripMenuItem_Text" xml:space="preserve">
<value>Exit</value>
</data>
<data name="CanotSingleInStore" xml:space="preserve">
<value>Single storing not support</value>
</data>
<data name="InoutNotOk" xml:space="preserve">
<value>Gripper not stanby, return the gripper to standby</value>
</data>
<data name="InoutWarn" xml:space="preserve">
<value>Warn(move the lifting and rotating axis only when the gripper is stanby)</value>
</data>
<data name="CanotBack" xml:space="preserve">
<value>No alarm, back to stanby when no storing and reset</value>
</data>
<data name="PCloseDoor" xml:space="preserve">
<value>Close batch loading door</value>
</data>
<data name="PWPwd" xml:space="preserve">
<value>Enter the right PSW</value>
</data>
<data name="CnotOpen" xml:space="preserve">
<value>BUSY,open doorlock failure</value>
</data>
<data name="batchInError" xml:space="preserve">
<value>Batch storing Error: Close feeding device</value>
</data>
<data name="batchInError2" xml:space="preserve">
<value>Batch storing Error: gripper full, check before restoring</value>
</data>
<data name="GetError" xml:space="preserve">
<value>Providing Error: No reel</value>
</data>
<data name="GetError2" xml:space="preserve">
<value>Providing Error: BUSY, open doorlock failure</value>
</data>
<data name="CloseError" xml:space="preserve">
<value>Door lock Error: Close feeding device</value>
</data>
<data name="TakeTrayOut" xml:space="preserve">
<value>Close the doors</value>
</data>
<data name="NoAIr" xml:space="preserve">
<value>Pressure signal undetected</value>
</data>
<data name="trayHeight" xml:space="preserve">
<value>Reel height</value>
</data>
<data name="FuLimit" xml:space="preserve">
<value>Negative limit</value>
</data>
<data name="ZhLimit" xml:space="preserve">
<value>Positive limit</value>
</data>
<data name="BatchStop" xml:space="preserve">
<value>Feeding axis stop</value>
</data>
<data name="ScanOk" xml:space="preserve">
<value>Scanning complete</value>
</data>
<data name="TakeTrayGo" xml:space="preserve">
<value>Take reel</value>
</data>
<data name="WaitEnd" xml:space="preserve">
<value>Wait for providing complete</value>
</data>
<data name="XiLiaoError" xml:space="preserve">
<value>Grip material error</value>
</data>
<data name="ServoOff" xml:space="preserve">
<value>Servo OFF</value>
</data>
<data name="servoON" xml:space="preserve">
<value>Servo ON</value>
</data>
<data name="NoDoorStatus" xml:space="preserve">
<value>Door state unknown</value>
</data>
<data name="InstoreInfo" xml:space="preserve">
<value>Batch store-provide info: storing:</value>
</data>
<data name="oustore" xml:space="preserve">
<value>Providing:</value>
</data>
<data name="doorClose" xml:space="preserve">
<value>Door lock close</value>
</data>
<data name="doorOpen" xml:space="preserve">
<value>Doorlock open</value>
</data>
<data name="X01" xml:space="preserve">
<value>Emergency stop</value>
</data>
<data name="X02" xml:space="preserve">
<value>Reset</value>
</data>
<data name="X03" xml:space="preserve">
<value>Auto</value>
</data>
<data name="X04" xml:space="preserve">
<value>Security grating</value>
</data>
<data name="X05" xml:space="preserve">
<value>Portal ascent position</value>
</data>
<data name="X06" xml:space="preserve">
<value>Portal descent position</value>
</data>
<data name="X07" xml:space="preserve">
<value>Clamping jaw ascent position</value>
</data>
<data name="X08" xml:space="preserve">
<value>Clamping jaw descent position</value>
</data>
<data name="X09" xml:space="preserve">
<value>Reel width detection1</value>
</data>
<data name="X10" xml:space="preserve">
<value>Reel width detection2</value>
</data>
<data name="X11" xml:space="preserve">
<value>Feeding detection</value>
</data>
<data name="X12" xml:space="preserve">
<value>Providing detection</value>
</data>
<data name="X13" xml:space="preserve">
<value>Doorlock cylinder open</value>
</data>
<data name="X14" xml:space="preserve">
<value>Doorlock cylinder close</value>
</data>
<data name="X15" xml:space="preserve">
<value>Fork tray detection</value>
</data>
<data name="X16" xml:space="preserve">
<value>Pressure measurement detection</value>
</data>
<data name="Y01" xml:space="preserve">
<value>Auto indicator light</value>
</data>
<data name="Y02" xml:space="preserve">
<value>Error indicator light</value>
</data>
<data name="Y03" xml:space="preserve">
<value>indicator light</value>
</data>
<data name="Y04" xml:space="preserve">
<value>Blowing SOL ON</value>
</data>
<data name="Y05" xml:space="preserve">
<value>SMD BOX operating ON</value>
</data>
<data name="Y06" xml:space="preserve">
<value>Brake power of axis2 ON</value>
</data>
<data name="Y07" xml:space="preserve">
<value>Camera light ON</value>
</data>
<data name="Y08" xml:space="preserve">
<value>Equipment lighting on</value>
</data>
<data name="Y09" xml:space="preserve">
<value>Portal ascent SOL</value>
</data>
<data name="Y10" xml:space="preserve">
<value>Portal descent SOL</value>
</data>
<data name="Y11" xml:space="preserve">
<value>Clamping jaw ascent SOL</value>
</data>
<data name="Y12" xml:space="preserve">
<value>Clamping jaw descent SOL</value>
</data>
<data name="Y13" xml:space="preserve">
<value>Doorlock cylinder open SOL</value>
</data>
<data name="Y14" xml:space="preserve">
<value>Doorlock cylinder close SOL</value>
</data>
<data name="Y15" xml:space="preserve">
<value>Access controller block</value>
</data>
<data name="Y16" xml:space="preserve">
<value>alarm buzzer</value>
</data>
<data name="X21" xml:space="preserve">
<value>Feeding door close</value>
</data>
<data name="X22" xml:space="preserve">
<value>Pressure detection</value>
</data>
<data name="X23" xml:space="preserve">
<value>left door limit</value>
</data>
<data name="X24" xml:space="preserve">
<value>right door limit</value>
</data>
<data name="FrmStoreBox_groupBox6_Text" xml:space="preserve">
<value>Batch storing operation </value>
</data>
<data name="FrmStoreBox_btnOpenDoor_Text" xml:space="preserve">
<value>Open doorlock</value>
</data>
<data name="FrmStoreBox_lblWaitTragGo_Text" xml:space="preserve">
<value>Take/Put In reel,click left to close the doors</value>
</data>
<data name="FrmStoreBox_btnWaitTrgGo_Text" xml:space="preserve">
<value>Portal reel taken/put in</value>
</data>
<data name="FrmStoreBox_lblBatchStatus_Text" xml:space="preserve">
<value>Wait to start</value>
</data>
<data name="FrmStoreBox_btnCloseDoor_Text" xml:space="preserve">
<value>Close doorlock</value>
</data>
<data name="FrmStoreBox_btnGetOutTray_Text" xml:space="preserve">
<value>Take the reel</value>
</data>
<data name="FrmStoreBox_lblDoorStatus_Text" xml:space="preserve">
<value>Door state:close</value>
</data>
<data name="FrmStoreBox_btnBatchInStore_Text" xml:space="preserve">
<value>Start butch storing</value>
</data>
<data name="FrmStoreBox_lblOutInfo_Text" xml:space="preserve">
<value>Butch providing info</value>
</data>
<data name="FrmStoreBox_tabPage2_Text" xml:space="preserve">
<value>Servo debug</value>
</data>
<data name="FrmStoreBox_btnUpdateSpeed_Text" xml:space="preserve">
<value>Change speed</value>
</data>
<data name="FrmStoreBox_btnUpdateStatus_Text" xml:space="preserve">
<value>Read all state</value>
</data>
<data name="FrmStoreBox_label24_Text" xml:space="preserve">
<value>Negative limit signal</value>
</data>
<data name="FrmStoreBox_label26_Text" xml:space="preserve">
<value>1=ON,0=OFF</value>
</data>
<data name="FrmStoreBox_btnReadLimit2_Text" xml:space="preserve">
<value>Read negative limit signal</value>
</data>
<data name="FrmStoreBox_label22_Text" xml:space="preserve">
<value>Positive limit signal</value>
</data>
<data name="FrmStoreBox_label23_Text" xml:space="preserve">
<value>1=ON,0=OFF</value>
</data>
<data name="FrmStoreBox_btnReadLimit1_Text" xml:space="preserve">
<value>Read positive limit signal</value>
</data>
<data name="FrmStoreBox_btnReadBusy_Text" xml:space="preserve">
<value>Read BUSY state</value>
</data>
<data name="FrmStoreBox_tabPage3_Text" xml:space="preserve">
<value>Pressure axis debug</value>
</data>
<data name="FrmStoreBox_groupBox4_Text" xml:space="preserve">
<value>Pressure axis</value>
</data>
<data name="FrmStoreBox_lblComMsg_Text" xml:space="preserve">
<value>Step motor info</value>
</data>
<data name="FrmStoreBox_btnRelMove_Text" xml:space="preserve">
<value>Relative move</value>
</data>
<data name="FrmStoreBox_label18_Text" xml:space="preserve">
<value>Address</value>
</data>
<data name="FrmStoreBox_btnGetPosition_Text" xml:space="preserve">
<value>Point position</value>
</data>
<data name="FrmStoreBox_label13_Text" xml:space="preserve">
<value>Origin direction:</value>
</data>
<data name="FrmStoreBox_label17_Text" xml:space="preserve">
<value>Speed:</value>
</data>
<data name="FrmStoreBox_btnVolMove_Text" xml:space="preserve">
<value>uniform move</value>
</data>
<data name="FrmStoreBox_btnClose_Text" xml:space="preserve">
<value>Close serial port</value>
</data>
<data name="FrmStoreBox_btnOpen_Text" xml:space="preserve">
<value>Open serial port</value>
</data>
<data name="FrmStoreBox_btnStatusSearch_Text" xml:space="preserve">
<value>Check motion state</value>
</data>
<data name="FrmStoreBox_label19_Text" xml:space="preserve">
<value>Position:</value>
</data>
<data name="FrmStoreBox_btnHomeMove_Text" xml:space="preserve">
<value>Back to home</value>
</data>
<data name="FrmStoreBox_btnClearPosition_Text" xml:space="preserve">
<value>Reset position</value>
</data>
<data name="FrmStoreBox_btnStop_Text" xml:space="preserve">
<value>Stop move</value>
</data>
<data name="FrmStoreBox_btnLineAbsMove_Text" xml:space="preserve">
<value>Abosolute move</value>
</data>
<data name="FrmStoreBox_label25_Text" xml:space="preserve">
<value>Port number:</value>
</data>
<data name="FrmStoreBox_lblAxisStatus_Text" xml:space="preserve">
<value>Click to read real state of axis</value>
</data>
<data name="FrmStoreBox_button3_Text" xml:space="preserve">
<value>Read position</value>
</data>
<data name="FrmStoreBox_label20_Text" xml:space="preserve">
<value>Batch loading axis</value>
</data>
<data name="FrmStoreBox_tabPage1_Text" xml:space="preserve">
<value>Humidity / temp debug</value>
</data>
<data name="FrmStoreBox_groupBox7_Text" xml:space="preserve">
<value>Temp controller debug</value>
</data>
<data name="FrmStoreBox_btnSelTemp_Text" xml:space="preserve">
<value>Search</value>
</data>
<data name="FrmStoreBox_label29_Text" xml:space="preserve">
<value>Humidity:</value>
</data>
<data name="FrmStoreBox_label28_Text" xml:space="preserve">
<value>Temperature:</value>
</data>
<data name="FrmStoreBox_label27_Text" xml:space="preserve">
<value>Port number:</value>
</data>
<data name="FrmStoreBox_btnTempClose_Text" xml:space="preserve">
<value>Disconnect</value>
</data>
<data name="FrmStoreBox_btnTempInit_Text" xml:space="preserve">
<value>Initialize</value>
</data>
<data name="FrmStoreBox_btnBatchReset_Text" xml:space="preserve">
<value>Reset batch loading module </value>
</data>
<data name="FrmStoreBox_tabPage4_Text" xml:space="preserve">
<value>Log</value>
</data>
<data name="FrmStoreBox_btnSave_Text" xml:space="preserve">
<value>Save as simulative storing position</value>
</data>
<data name="FrmStoreBox_btnInOutP4_Text" xml:space="preserve">
<value>In-out axis providing P4:</value>
</data>
<data name="FrmStoreBox_btnBatchOutTest_Text" xml:space="preserve">
<value>Batch providing </value>
</data>
<data name="FrmStoreBox_btnUpdownP8_Text" xml:space="preserve">
<value>l-axis low providing P8:</value>
</data>
<data name="FrmStoreBox_btnUpdownP2_Text" xml:space="preserve">
<value>l-axis high providing P2:</value>
</data>
<data name="FrmStoreBox_btnUpDownDoor_Text" xml:space="preserve">
<value>l-axis Storehouse door P7:</value>
</data>
<data name="FrmStoreBox_上料模块复位ToolStripMenuItem_Text" xml:space="preserve">
<value>Reset feeding module</value>
</data>
<data name="FrmStoreBox_toolStripMenuItem4_Text" xml:space="preserve">
<value>Access controller block</value>
</data>
<data name="FrmStoreBox_toolStripMenuItem5_Text" xml:space="preserve">
<value>Access controller open</value>
</data>
<data name="FrmStoreBox_批量上下轴ONToolStripMenuItem_Text" xml:space="preserve">
<value>Batch loading axis ON</value>
</data>
<data name="FrmStoreBox_批量上下轴OFFToolStripMenuItem_Text" xml:space="preserve">
<value>Batch loading axis OFF</value>
</data>
<data name="FrmStoreBox_设备调试ToolStripMenuItem_Text" xml:space="preserve">
<value>Device Debugging</value>
</data>
<data name="FrmStoreBox_摄像机调试ToolStripMenuItem_Text" xml:space="preserve">
<value>learn QR code</value>
</data>
<data name="FrmPwd_Text" xml:space="preserve">
<value>Enter PSW:</value>
</data>
<data name="FrmPwd_btnNext_Text" xml:space="preserve">
<value>Confirm</value>
</data>
<data name="FrmPwd_btnBack_Text" xml:space="preserve">
<value>Back</value>
</data>
<data name="FrmPwd_label1_Text" xml:space="preserve">
<value>Enter PSW:</value>
</data>
<data name="FrmAxisDebug_btnAutoMovej_Text" xml:space="preserve">
<value>Loading axis-(down)</value>
</data>
<data name="FrmAxisDebug_btnAutoMove_Text" xml:space="preserve">
<value>Loading axis+(up)</value>
</data>
<data name="FrmAxisDebug_label7_Text" xml:space="preserve">
<value>Batch loading axis</value>
</data>
<data name="FrmAxisDebug_btnComMovej_Text" xml:space="preserve">
<value>Pressure axis-(up)</value>
</data>
<data name="FrmAxisDebug_btnComMove_Text" xml:space="preserve">
<value>Pressure axis+(down)</value>
</data>
<data name="FrmAxisDebug_label4_Text" xml:space="preserve">
<value>(Axis 4)pressure axis</value>
</data>
<data name="FrmIOStatus_button4_Text" xml:space="preserve">
<value>Stop blow</value>
</data>
<data name="FrmIOStatus_button5_Text" xml:space="preserve">
<value>Start blow</value>
</data>
<data name="FrmIOStatus_button2_Text" xml:space="preserve">
<value>Stop operation ON</value>
</data>
<data name="FrmIOStatus_button3_Text" xml:space="preserve">
<value>Start operation ON</value>
</data>
<data name="FrmIOStatus_btnSXil_Text" xml:space="preserve">
<value>The Clamping jaw relax</value>
</data>
<data name="FrmIOStatus_btnSXi_Text" xml:space="preserve">
<value>The Clamping jaw clamping</value>
</data>
<data name="FrmIOStatus_btnDClose_Text" xml:space="preserve">
<value>Door lock close</value>
</data>
<data name="FrmIOStatus_btnDOpen_Text" xml:space="preserve">
<value>Door lock open</value>
</data>
<data name="FrmIOStatus_btnSuckingDiscDown_Text" xml:space="preserve">
<value>Clamping jaw descent</value>
</data>
<data name="FrmIOStatus_btnSuckingDiscUp_Text" xml:space="preserve">
<value>Clamping jaw ascent</value>
</data>
<data name="PreConnectFail" xml:space="preserve">
<value>Startup failure: compression shaft connection failed</value>
</data>
<data name="startFail" xml:space="preserve">
<value>Startup failure: emergency stop not opened</value>
</data>
<data name="startFailAir" xml:space="preserve">
<value>Startup failure: no air pressure signal</value>
</data>
<data name="FrmStoreBox_groupAuto_Text" xml:space="preserve">
<value>auto storing</value>
</data>
<data name="FrmStoreBox_checkBox1_Text" xml:space="preserve">
<value>manual manipulation </value>
</data>
<data name="FrmStoreBox_label30_Text" xml:space="preserve">
<value>auto storing interval:</value>
</data>
<data name="FrmStoreBox_btnStart_Text" xml:space="preserve">
<value>Start auto storing</value>
</data>
<data name="FrmStoreBox_btnSingleTrayIn_Text" xml:space="preserve">
<value>Single storing</value>
</data>
<data name="FrmStoreBox_btnClearBuzzer_Text" xml:space="preserve">
<value>Clear the buzzer</value>
</data>
<data name="FrmStoreBox_groupAxis_Text" xml:space="preserve">
<value>Servo motor</value>
</data>
<data name="FrmStoreBox_groupComAxis_Text" xml:space="preserve">
<value>Pressure shaft</value>
</data>
<data name="FrmStoreBox_groupInout_Text" xml:space="preserve">
<value>Providing operation</value>
</data>
<data name="FrmStoreBox_出入库调试ToolStripMenuItem_Text" xml:space="preserve">
<value>Enable debugging</value>
</data>
<data name="启用调试" xml:space="preserve">
<value>Enable debugging</value>
</data>
<data name="禁用调试" xml:space="preserve">
<value>Disable debugging</value>
</data>
<data name="X25" xml:space="preserve">
<value>Doorlock cylinder open 2</value>
</data>
<data name="X26" xml:space="preserve">
<value>Doorlock cylinder open 2</value>
</data>
<data name="X27" xml:space="preserve">
<value>Batch shaft limit signal</value>
</data>
<data name="X28" xml:space="preserve">
<value>Door tray detection</value>
</data>
<data name="FrmIOStatus_radioButton2_Text" xml:space="preserve">
<value>Close</value>
</data>
<data name="FrmIOStatus_radioButton1_Text" xml:space="preserve">
<value>Open</value>
</data>
<data name="FrmAxisDebug_btnUpdate_Text" xml:space="preserve">
<value>Update location</value>
</data>
<data name="温湿度报警" xml:space="preserve">
<value>Temperature and humidity alarm</value>
</data>
<data name="压紧轴通信异常" xml:space="preserve">
<value>Abnormal compression shaft communication</value>
</data>
<data name="自动出入库操作" xml:space="preserve">
<value>Auto providing operation</value>
</data>
<data name="AxisAlarm" xml:space="preserve">
<value>Motion axis {0} alarm</value>
</data>
<data name="OpenAxisFail" xml:space="preserve">
<value>Failed to open axis {0}</value>
</data>
<data name="AxisHomeMoveAlarm" xml:space="preserve">
<value>The movement {0} axis {1} receives the origin completion signal, the current position [{2}], the error is too large, it needs to alarm</value>
</data>
<data name="AxisMoveAlarm" xml:space="preserve">
<value>Movement {0} axis {1} target position [{2}] current position {3} error is too large, need to alarm</value>
</data>
<data name="MoveTimeOut" xml:space="preserve">
<value>[{0}]Timeout{1}[{2}]</value>
</data>
<data name="WaitSingleTimeOut" xml:space="preserve">
<value>Wait signal {0}={1} timeout</value>
</data>
<data name="WaitInstoreTimeOut" xml:space="preserve">
<value>[{0}] timeout [wait to store][{1} seconds]</value>
</data>
<data name="InStoreNoCode" xml:space="preserve">
<value>The qr code is not scanned, the material plate needs to be sent out</value>
</data>
<data name="NoCodeMsg" xml:space="preserve">
<value>If the qr code is not scanned, please put it back into the material tray</value>
</data>
<data name="X29" xml:space="preserve">
<value>Clamping end of cylinder clamping jaw</value>
</data>
<data name="X30" xml:space="preserve">
<value>Loosen end of gripper cylinder</value>
</data>
<data name="Y21" xml:space="preserve">
<value>Clamping jaw cylinder clamping SOL</value>
</data>
<data name="Y22" xml:space="preserve">
<value>Loosen the clamping cylinder SOL</value>
</data>
<data name="FrmPositionTool_btnAbsMove_Text" xml:space="preserve">
<value>Start </value>
</data>
<data name="FrmPositionTool_btnClear_Text" xml:space="preserve">
<value>Clear</value>
</data>
<data name="FrmPositionTool_btnExit_Text" xml:space="preserve">
<value>Exit</value>
</data>
<data name="FrmPositionTool_btnGetActualPosition_Text" xml:space="preserve">
<value>Update location</value>
</data>
<data name="FrmPositionTool_btnHomeMove_Text" xml:space="preserve">
<value>Back to home</value>
</data>
<data name="FrmPositionTool_btnOpenFolder_Text" xml:space="preserve">
<value>Open the folder </value>
</data>
<data name="FrmPositionTool_btnSdStop_Text" xml:space="preserve">
<value>Stop</value>
</data>
<data name="FrmPositionTool_btnServoOff_Text" xml:space="preserve">
<value>Close servo</value>
</data>
<data name="FrmPositionTool_btnServoOn_Text" xml:space="preserve">
<value>Open servo</value>
</data>
<data name="FrmPositionTool_groupBox6_Text" xml:space="preserve">
<value>Servo motion test</value>
</data>
<data name="FrmPositionTool_label12_Text" xml:space="preserve">
<value>Port number:</value>
</data>
<data name="FrmPositionTool_label13_Text" xml:space="preserve">
<value>position :</value>
</data>
<data name="FrmPositionTool_label18_Text" xml:space="preserve">
<value>Servo address:</value>
</data>
<data name="FrmPositionTool_label1_Text" xml:space="preserve">
<value>IP :</value>
</data>
<data name="FrmPositionTool_label2_Text" xml:space="preserve">
<value>signal address:</value>
</data>
<data name="FrmPositionTool_label3_Text" xml:space="preserve">
<value> file name:</value>
</data>
<data name="FrmPositionTool_label6_Text" xml:space="preserve">
<value>target location:</value>
</data>
<data name="FrmPositionTool_label7_Text" xml:space="preserve">
<value>actual position:</value>
</data>
<data name="FrmPositionTool_label8_Text" xml:space="preserve">
<value>Speed:</value>
</data>
<data name="FrmPositionTool_Text" xml:space="preserve">
<value>Updown-Axis Debug Location</value>
</data>
<data name="FrmStoreBox_升降轴位置调试ToolStripMenuItem_Text" xml:space="preserve">
<value>Updown-Axis Debug Location</value>
</data>
<data name="FrmStoreBox_btnSaveSinglePosId_Text" xml:space="preserve">
<value>Save as single storing position</value>
</data>
<data name="确定将[{0}]保存为单盘入库默认库位?" xml:space="preserve">
<value>Are you sure to save [{0}] as the default position of single storing ?</value>
</data>
<data name="启动失败:设备未初始化完成" xml:space="preserve">
<value>Startup failure: device initialization is not complete</value>
</data>
<data name="FrmPositionTool_groupBox1_Text" xml:space="preserve">
<value>equipment information</value>
</data>
<data name="FrmPositionTool_groupBox2_Text" xml:space="preserve">
<value>location information</value>
</data>
<data name="FrmPositionTool_label10_Text" xml:space="preserve">
<value>Point P4 offset:</value>
</data>
<data name="FrmPositionTool_label4_Text" xml:space="preserve">
<value>Point P5 offset:</value>
</data>
<data name="FrmPositionTool_label5_Text" xml:space="preserve">
<value>Point P6 offset:</value>
</data>
<data name="FrmPositionTool_label9_Text" xml:space="preserve">
<value>Point P3 offset:</value>
</data>
<data name="升降轴位置调试:" xml:space="preserve">
<value>Updown-Axis Debug Location:</value>
</data>
<data name="打开串口失败" xml:space="preserve">
<value>Failed to open serial port</value>
</data>
<data name="文件【{0}】已存在,是否确定覆盖?" xml:space="preserve">
<value>File [{0}] already exists, is it ok to overwrite?</value>
</data>
<data name="检测信号" xml:space="preserve">
<value>detection signal </value>
</data>
<data name="请输入正确的速度" xml:space="preserve">
<value>Please enter the correct speed</value>
</data>
<data name="StartCycle" xml:space="preserve">
<value>Start looping out</value>
</data>
<data name="StopCycle" xml:space="preserve">
<value>Stop the loop</value>
</data>
<data name="FrmStoreBox_btnCycleOut_Text" xml:space="preserve">
<value>Start looping out</value>
</data>
<data name="OutFull" xml:space="preserve">
<value>Batch shaft is full, please take out the material tray</value>
</data>
<data name="TheDoorOpen" xml:space="preserve">
<value>The door lock is not closed</value>
</data>
<data name="伺服OFF" xml:space="preserve">
<value>Servo OFF</value>
</data>
<data name="伺服ON" xml:space="preserve">
<value>Servo ON</value>
</data>
<data name="右侧门未关" xml:space="preserve">
<value>Right door open</value>
</data>
<data name="左侧门未关" xml:space="preserve">
<value>Left door open</value>
</data>
<data name="循环出库" xml:space="preserve">
<value>Cycle of outbound</value>
</data>
<data name="确定开始{0}循环出库" xml:space="preserve">
<value>Make sure to start the {0} loop out of the library</value>
</data>
<data name="确定开始自动出入库?" xml:space="preserve">
<value>Make sure to start automatic storage ?</value>
</data>
<data name="自动入库" xml:space="preserve">
<value>automatic warehousing </value>
</data>
<data name="自动出入库" xml:space="preserve">
<value>Automatic entry and exit</value>
</data>
<data name="自动出库" xml:space="preserve">
<value>Automated outbound</value>
</data>
<data name="FrmIOStatus_btnCloseDeviceLed_Text" xml:space="preserve">
<value>Turn off equipment lighting</value>
</data>
<data name="FrmIOStatus_btnOpenDeviceLed_Text" xml:space="preserve">
<value>Turn on equipment lighting</value>
</data>
<data name="NO_Clamping_Check" xml:space="preserve">
<value>There is no signal detected on the feed plate of the gripper cylinder</value>
</data>
<data name="X31" xml:space="preserve">
<value>Clamping jaw cylinder material plate inspection</value>
</data>
<data name="FrmStoreBox_toolStripMenuItem6_Text" xml:space="preserve">
<value>Japanese</value>
</data>
</root>