Resource.en-US.resx
46.0 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
<?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="名称" xml:space="preserve">
<value> 英文 </value>
</data>
<data name="AbsMove" xml:space="preserve">
<value> absolute motion </value>
</data>
<data name="Alarm" xml:space="preserve">
<value> alarm </value>
</data>
<data name="AutoEnd" xml:space="preserve">
<value> Auto storage and retrieval completed </value>
</data>
<data name="AutoIn" xml:space="preserve">
<value> Auto storage: </value>
</data>
<data name="AutoOut" xml:space="preserve">
<value> Auto retrieval: </value>
</data>
<data name="AutoReset" xml:space="preserve">
<value> The equipment resets automatically after receiving the reset signal </value>
</data>
<data name="AxisAlarm" xml:space="preserve">
<value> Motion axis {0} alarm </value>
</data>
<data name="AxisHomeMoveAlarm" xml:space="preserve">
<value> "Motion{0} axis{1}: origin completion signal received </value>
</data>
<data name="AxisMoveAlarm" xml:space="preserve">
<value> Motion{0} axis{1}: error between the destination location[{2}] and current location{3} exceeding limits ! </value>
</data>
<data name="Batch_Axis" xml:space="preserve">
<value> Axis 5 </value>
</data>
<data name="batchInError" xml:space="preserve">
<value> Batch storage failure: please confirm whether the MIMO door is locked! </value>
</data>
<data name="batchInError2" xml:space="preserve">
<value> Batch storage failure: please confirm whether there are materials in the clamping device! </value>
</data>
<data name="BatchStop" xml:space="preserve">
<value> Axis 5 stops moving </value>
</data>
<data name="Busy" xml:space="preserve">
<value> The equipment is running. </value>
</data>
<data name="CanotBack" xml:space="preserve">
<value> The equipment does not need to return to the standby position. Please press Emergency Stop first if you need to perform this operation! </value>
</data>
<data name="CanotReset" xml:space="preserve">
<value> The equipment does not need to return to be reset. Please press Emergency Stop first if you need to perform this operation! </value>
</data>
<data name="CloseError" xml:space="preserve">
<value> MIMO door locking failure: please confirm whether the MIMO door is locked! </value>
</data>
<data name="CnotOpen" xml:space="preserve">
<value> The equipment is running. </value>
</data>
<data name="Comp_Axis" xml:space="preserve">
<value> Axis 4 </value>
</data>
<data name="Debugging" xml:space="preserve">
<value> The equipment is in debug mode. </value>
</data>
<data name="doorClose" xml:space="preserve">
<value> MIMO door is closed </value>
</data>
<data name="doorOpen" xml:space="preserve">
<value> MIMO door is open </value>
</data>
<data name="Fail" xml:space="preserve">
<value> Operation failure </value>
</data>
<data name="FrmAxisDebug_btnAutoMove_Text" xml:space="preserve">
<value> Axis 5 Up </value>
</data>
<data name="FrmAxisDebug_btnAutoMovej_Text" xml:space="preserve">
<value> Axis 5 Down </value>
</data>
<data name="FrmAxisDebug_btnComMove_Text" xml:space="preserve">
<value> Axis 4 Down </value>
</data>
<data name="FrmAxisDebug_btnComMovej_Text" xml:space="preserve">
<value> Axis 4 Up </value>
</data>
<data name="FrmAxisDebug_btnInOutMove_Text" xml:space="preserve">
<value> Axis 3 Front </value>
</data>
<data name="FrmAxisDebug_btnInOutMovej_Text" xml:space="preserve">
<value> Axis 3 Back </value>
</data>
<data name="FrmAxisDebug_btnMiddleMove_Text" xml:space="preserve">
<value> Axis 1 Clockwise </value>
</data>
<data name="FrmAxisDebug_btnMiddleMovej_Text" xml:space="preserve">
<value> Axis 1 Counter Clockwise </value>
</data>
<data name="FrmAxisDebug_btnUpdate_Text" xml:space="preserve">
<value> Update Location </value>
</data>
<data name="FrmAxisDebug_btnUpDownMove_Text" xml:space="preserve">
<value> Axis 2 UP </value>
</data>
<data name="FrmAxisDebug_btnUpDownMovej_Text" xml:space="preserve">
<value> Axis 2 Down </value>
</data>
<data name="FrmAxisDebug_button1_Text" xml:space="preserve">
<value> Close </value>
</data>
<data name="FrmAxisDebug_label1_Text" xml:space="preserve">
<value> (Axis 1) Rotation Axis </value>
</data>
<data name="FrmAxisDebug_label2_Text" xml:space="preserve">
<value> (Axis 2) UpDown Axis </value>
</data>
<data name="FrmAxisDebug_label3_Text" xml:space="preserve">
<value> (Axis 3) InOut Axis </value>
</data>
<data name="FrmAxisDebug_label4_Text" xml:space="preserve">
<value> (Axis 4) Pressing Axis </value>
</data>
<data name="FrmAxisDebug_label5_Text" xml:space="preserve">
<value> Rotational Speed(r/min) </value>
</data>
<data name="FrmAxisDebug_label6_Text" xml:space="preserve">
<value> Real-time location </value>
</data>
<data name="FrmAxisDebug_label7_Text" xml:space="preserve">
<value> (Axis 5) Batch Axis </value>
</data>
<data name="FrmAxisDebug_Text" xml:space="preserve">
<value> Motion axis debug </value>
</data>
<data name="FrmIOStatus_btnCloseAxisBreak_Text" xml:space="preserve">
<value> Close Axis 2 Brake </value>
</data>
<data name="FrmIOStatus_btnCloseDeviceLed_Text" xml:space="preserve">
<value> Turn Off Equipment Lighting </value>
</data>
<data name="FrmIOStatus_btnCloseDoor_Text" xml:space="preserve">
<value> Close SISO Door </value>
</data>
<data name="FrmIOStatus_btnCloseLed_Text" xml:space="preserve">
<value> Turn Off Camera Lighting </value>
</data>
<data name="FrmIOStatus_btnDClose_Text" xml:space="preserve">
<value> Lock MIMO Door </value>
</data>
<data name="FrmIOStatus_btnDisDoorClose_Text" xml:space="preserve">
<value> Enable maintenance door alarm </value>
</data>
<data name="FrmIOStatus_btnDisDoorOpen_Text" xml:space="preserve">
<value> Disable maintenance door alarm </value>
</data>
<data name="FrmIOStatus_btnDOpen_Text" xml:space="preserve">
<value> Unlock MIMO Door </value>
</data>
<data name="FrmIOStatus_btnOpenAxisBreak_Text" xml:space="preserve">
<value> Open Axis 2 Brake </value>
</data>
<data name="FrmIOStatus_btnOpenDeviceLed_Text" xml:space="preserve">
<value> Turn On Equipment Lighting </value>
</data>
<data name="FrmIOStatus_btnOpenDoor_Text" xml:space="preserve">
<value> Open SISO Door </value>
</data>
<data name="FrmIOStatus_btnOpenLed_Text" xml:space="preserve">
<value> Turn On Camera Lighting </value>
</data>
<data name="FrmIOStatus_btnSuckingDiscDown_Text" xml:space="preserve">
<value> Sorting device descent </value>
</data>
<data name="FrmIOStatus_btnSuckingDiscUp_Text" xml:space="preserve">
<value> Sorting device ascent </value>
</data>
<data name="FrmIOStatus_btnSXi_Text" xml:space="preserve">
<value> Pressing device gripping </value>
</data>
<data name="FrmIOStatus_btnSXil_Text" xml:space="preserve">
<value> Pressing device relaxing </value>
</data>
<data name="FrmIOStatus_btnWriteSingleDO_Text" xml:space="preserve">
<value> Write </value>
</data>
<data name="FrmIOStatus_button1_Text" xml:space="preserve">
<value> Close </value>
</data>
<data name="FrmIOStatus_button4_Text" xml:space="preserve">
<value> Close Air Inlet </value>
</data>
<data name="FrmIOStatus_button5_Text" xml:space="preserve">
<value> Open Air Inlet </value>
</data>
<data name="FrmIOStatus_groupBox1_Text" xml:space="preserve">
<value> I/O Modifications </value>
</data>
<data name="FrmIOStatus_groupBox3_Text" xml:space="preserve">
<value> I/O List </value>
</data>
<data name="FrmIOStatus_groupBox4_Text" xml:space="preserve">
<value> I/O List </value>
</data>
<data name="FrmIOStatus_label14_Text" xml:space="preserve">
<value> Address: </value>
</data>
<data name="FrmIOStatus_label17_Text" xml:space="preserve">
<value> Equipment IP: </value>
</data>
<data name="FrmIOStatus_label3_Text" xml:space="preserve">
<value> Port: </value>
</data>
<data name="FrmIOStatus_label5_Text" xml:space="preserve">
<value> Hold time(ms): </value>
</data>
<data name="FrmIOStatus_radioButton1_Text" xml:space="preserve">
<value> On </value>
</data>
<data name="FrmIOStatus_radioButton2_Text" xml:space="preserve">
<value> Off </value>
</data>
<data name="FrmIOStatus_Text" xml:space="preserve">
<value> I/O Information </value>
</data>
<data name="FrmPositionTool_btnAbsMove_Text" xml:space="preserve">
<value> Start </value>
</data>
<data name="FrmPositionTool_btnClear_Text" xml:space="preserve">
<value> Clear Log </value>
</data>
<data name="FrmPositionTool_btnExit_Text" xml:space="preserve">
<value> Exit </value>
</data>
<data name="FrmPositionTool_btnGetActualPosition_Text" xml:space="preserve">
<value> Read Location </value>
</data>
<data name="FrmPositionTool_btnHomeMove_Text" xml:space="preserve">
<value> Return Origin </value>
</data>
<data name="FrmPositionTool_btnOpenFolder_Text" xml:space="preserve">
<value> Open Folder </value>
</data>
<data name="FrmPositionTool_btnSdStop_Text" xml:space="preserve">
<value> Stop </value>
</data>
<data name="FrmPositionTool_btnServoOff_Text" xml:space="preserve">
<value> Open </value>
</data>
<data name="FrmPositionTool_btnServoOn_Text" xml:space="preserve">
<value> Close </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_groupBox6_Text" xml:space="preserve">
<value> Servo Motion Debug </value>
</data>
<data name="FrmPositionTool_label1_Text" xml:space="preserve">
<value> I/O module IP: </value>
</data>
<data name="FrmPositionTool_label10_Text" xml:space="preserve">
<value> Point P4 offset: </value>
</data>
<data name="FrmPositionTool_label12_Text" xml:space="preserve">
<value> Port number: </value>
</data>
<data name="FrmPositionTool_label13_Text" xml:space="preserve">
<value> Location: </value>
</data>
<data name="FrmPositionTool_label18_Text" xml:space="preserve">
<value> Address: </value>
</data>
<data name="FrmPositionTool_label2_Text" xml:space="preserve">
<value> Sensor address: </value>
</data>
<data name="FrmPositionTool_label3_Text" xml:space="preserve">
<value> Location file name: </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_label6_Text" xml:space="preserve">
<value> Target location: </value>
</data>
<data name="FrmPositionTool_label7_Text" xml:space="preserve">
<value> Actual location: </value>
</data>
<data name="FrmPositionTool_label8_Text" xml:space="preserve">
<value> Rotational Speed(r/min) </value>
</data>
<data name="FrmPositionTool_label9_Text" xml:space="preserve">
<value> Point P3 offset: </value>
</data>
<data name="FrmPositionTool_Text" xml:space="preserve">
<value> Axis 2 Debug </value>
</data>
<data name="FrmPwd_btnBack_Text" xml:space="preserve">
<value> Return </value>
</data>
<data name="FrmPwd_btnNext_Text" xml:space="preserve">
<value> Ok </value>
</data>
<data name="FrmPwd_label1_Text" xml:space="preserve">
<value> Please input the password: </value>
</data>
<data name="FrmPwd_Text" xml:space="preserve">
<value> Input Password </value>
</data>
<data name="FrmStoreBox_btnAxisAMove_Text" xml:space="preserve">
<value> Absolute Motion </value>
</data>
<data name="FrmStoreBox_btnAxisReturnHome_Text" xml:space="preserve">
<value> Return Origin </value>
</data>
<data name="FrmStoreBox_btnAxisRMove_Text" xml:space="preserve">
<value> Relative Motion </value>
</data>
<data name="FrmStoreBox_btnAxisStop_Text" xml:space="preserve">
<value> Stop </value>
</data>
<data name="FrmStoreBox_btnAxisVMove_Text" xml:space="preserve">
<value> Constant Motion </value>
</data>
<data name="FrmStoreBox_btnBatchInStore_Text" xml:space="preserve">
<value> Start Batch Storage </value>
</data>
<data name="FrmStoreBox_btnBatchOutTest_Text" xml:space="preserve">
<value> Batch Retrieval Test </value>
</data>
<data name="FrmStoreBox_btnBatchReset_Text" xml:space="preserve">
<value> Batch loading and unloading module reset </value>
</data>
<data name="FrmStoreBox_btnClearBuzzer_Text" xml:space="preserve">
<value> Reset Buzzer </value>
</data>
<data name="FrmStoreBox_btnClearLog_Text" xml:space="preserve">
<value> Clear Log </value>
</data>
<data name="FrmStoreBox_btnCloseAxis_Text" xml:space="preserve">
<value> Disable Servo </value>
</data>
<data name="FrmStoreBox_btnCloseDoor_Text" xml:space="preserve">
<value> Lock MIMO Door </value>
</data>
<data name="FrmStoreBox_btnComAlarmClear_Text" xml:space="preserve">
<value> Reset Status </value>
</data>
<data name="FrmStoreBox_btnComP1_Text" xml:space="preserve">
<value> Pressing Axis Point P1: </value>
</data>
<data name="FrmStoreBox_btnComP2_Text" xml:space="preserve">
<value> Pressing Axis Point P2: </value>
</data>
<data name="FrmStoreBox_btnComP3_Text" xml:space="preserve">
<value> Pressing Axis Point P3: </value>
</data>
<data name="FrmStoreBox_btnCycleOut_Text" xml:space="preserve">
<value> Start Demo Mode </value>
</data>
<data name="FrmStoreBox_btnGetAlarm_Text" xml:space="preserve">
<value> Read Servo Status </value>
</data>
<data name="FrmStoreBox_btnGetOutTray_Text" xml:space="preserve">
<value> Unload Materials </value>
</data>
<data name="FrmStoreBox_btnHomeMove_Text" xml:space="preserve">
<value> Return Home </value>
</data>
<data name="FrmStoreBox_btnInOutP1_Text" xml:space="preserve">
<value> InOut Axis Point P1: </value>
</data>
<data name="FrmStoreBox_btnInOutP2_Text" xml:space="preserve">
<value> InOut Axis Point P2: </value>
</data>
<data name="FrmStoreBox_btnInOutP3_Text" xml:space="preserve">
<value> InOut Axis Point P3: </value>
</data>
<data name="FrmStoreBox_btnInOutP4_Text" xml:space="preserve">
<value> InOut Axis Point P4: </value>
</data>
<data name="FrmStoreBox_btnLineAbsMove_Text" xml:space="preserve">
<value> Absolute Motion </value>
</data>
<data name="FrmStoreBox_btnMiddleP1_Text" xml:space="preserve">
<value> Rotation Axis Point P1: </value>
</data>
<data name="FrmStoreBox_btnMiddleP2_Text" xml:space="preserve">
<value> Rotation Axis Point P2: </value>
</data>
<data name="FrmStoreBox_btnOpenAxis_Text" xml:space="preserve">
<value> Open Servo </value>
</data>
<data name="FrmStoreBox_btnOpenDoor_Text" xml:space="preserve">
<value> Unlock MIMO Door </value>
</data>
<data name="FrmStoreBox_btnOutStore_Text" xml:space="preserve">
<value> Single Material Retrieval Test </value>
</data>
<data name="FrmStoreBox_btnRelMove_Text" xml:space="preserve">
<value> Relative Motion </value>
</data>
<data name="FrmStoreBox_btnSave_Text" xml:space="preserve">
<value> Set as start storage location </value>
</data>
<data name="FrmStoreBox_btnSavePosition_Text" xml:space="preserve">
<value> Save Location </value>
</data>
<data name="FrmStoreBox_btnSaveSinglePosId_Text" xml:space="preserve">
<value> Set as reference storage location </value>
</data>
<data name="FrmStoreBox_btnSelTemp_Text" xml:space="preserve">
<value> Read </value>
</data>
<data name="FrmStoreBox_btnSingleTrayIn_Text" xml:space="preserve">
<value> Start Single Material Storage </value>
</data>
<data name="FrmStoreBox_btnStart_Text" xml:space="preserve">
<value> Start Auto Storage,Retrieval </value>
</data>
<data name="FrmStoreBox_btnTempClose_Text" xml:space="preserve">
<value> Disconnect </value>
</data>
<data name="FrmStoreBox_btnTempInit_Text" xml:space="preserve">
<value> Connect </value>
</data>
<data name="FrmStoreBox_btnUpDownDoor_Text" xml:space="preserve">
<value> UpDown axis point P7: </value>
</data>
<data name="FrmStoreBox_btnUpDownP1_Text" xml:space="preserve">
<value> UpDown axis point P1: </value>
</data>
<data name="FrmStoreBox_btnUpdownP2_Text" xml:space="preserve">
<value> UpDown axis point P2: </value>
</data>
<data name="FrmStoreBox_btnUpDownP3_Text" xml:space="preserve">
<value> UpDown axis point P3: </value>
</data>
<data name="FrmStoreBox_btnUpDownP4_Text" xml:space="preserve">
<value> UpDown axis point P4: </value>
</data>
<data name="FrmStoreBox_btnUpDownP5_Text" xml:space="preserve">
<value> UpDown axis point P5: </value>
</data>
<data name="FrmStoreBox_btnUpDownP6_Text" xml:space="preserve">
<value> UpDown axis point P6: </value>
</data>
<data name="FrmStoreBox_btnUpDownP7_Text" xml:space="preserve">
<value> UpDown axis point P7: </value>
</data>
<data name="FrmStoreBox_btnUpdownP8_Text" xml:space="preserve">
<value> UpDown axis point P8: </value>
</data>
<data name="FrmStoreBox_btnVolMove_Text" xml:space="preserve">
<value> Constant Motion </value>
</data>
<data name="FrmStoreBox_btnWaitTrgGo_Text" xml:space="preserve">
<value> Close SISO Door </value>
</data>
<data name="FrmStoreBox_chbAuto_Text" xml:space="preserve">
<value> Auto-start </value>
</data>
<data name="FrmStoreBox_chbAutoRead_Text" xml:space="preserve">
<value> Auto location update </value>
</data>
<data name="FrmStoreBox_checkBox1_Text" xml:space="preserve">
<value> Manual Mode </value>
</data>
<data name="FrmStoreBox_groupAuto_Text" xml:space="preserve">
<value> Storage,Retrieval Test </value>
</data>
<data name="FrmStoreBox_groupAxis_Text" xml:space="preserve">
<value> Servo Debug </value>
</data>
<data name="FrmStoreBox_groupBox3_Text" xml:space="preserve">
<value> Equipment Status </value>
</data>
<data name="FrmStoreBox_groupBox6_Text" xml:space="preserve">
<value> Batch storage and retrieval actions </value>
</data>
<data name="FrmStoreBox_groupBox7_Text" xml:space="preserve">
<value> Temperature and humidity controller debug </value>
</data>
<data name="FrmStoreBox_groupInout_Text" xml:space="preserve">
<value> Location actions </value>
</data>
<data name="FrmStoreBox_iO状态查看ToolStripMenuItem_Text" xml:space="preserve">
<value> I/O Debug </value>
</data>
<data name="FrmStoreBox_label10_Text" xml:space="preserve">
<value> BUSY status: </value>
</data>
<data name="FrmStoreBox_label11_Text" xml:space="preserve">
<value> HOME-CMP status: </value>
</data>
<data name="FrmStoreBox_label14_Text" xml:space="preserve">
<value>1=Alarm, 0=Normal</value>
</data>
<data name="FrmStoreBox_label15_Text" xml:space="preserve">
<value>1=Executing, 0=Not executing</value>
</data>
<data name="FrmStoreBox_label16_Text" xml:space="preserve">
<value>1=Complete, 0=Incomplete</value>
</data>
<data name="FrmStoreBox_label2_Text" xml:space="preserve">
<value> Alarm status: </value>
</data>
<data name="FrmStoreBox_label21_Text" xml:space="preserve">
<value> Storage locations: </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_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_label27_Text" xml:space="preserve">
<value> Port number: </value>
</data>
<data name="FrmStoreBox_label28_Text" xml:space="preserve">
<value> Temperature: </value>
</data>
<data name="FrmStoreBox_label29_Text" xml:space="preserve">
<value> Humidity: </value>
</data>
<data name="FrmStoreBox_label30_Text" xml:space="preserve">
<value> Storage location interval: </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_label47_Text" xml:space="preserve">
<value> Speed(r/min):</value>
</data>
<data name="FrmStoreBox_label48_Text" xml:space="preserve">
<value> Location: </value>
</data>
<data name="FrmStoreBox_label49_Text" xml:space="preserve">
<value> Servo: </value>
</data>
<data name="FrmStoreBox_label5_Text" xml:space="preserve">
<value>1=ON, 0=OFF</value>
</data>
<data name="FrmStoreBox_label6_Text" xml:space="preserve">
<value> Origin signal: </value>
</data>
<data name="FrmStoreBox_label7_Text" xml:space="preserve">
<value> Output pulse: </value>
</data>
<data name="FrmStoreBox_label8_Text" xml:space="preserve">
<value> Encoder count: </value>
</data>
<data name="FrmStoreBox_lblBatchStatus_Text" xml:space="preserve">
<value> Waiting to start </value>
</data>
<data name="FrmStoreBox_lblDoorStatus_Text" xml:space="preserve">
<value> MIMO door status: closed </value>
</data>
<data name="FrmStoreBox_lblMsg_Text" xml:space="preserve">
<value> Not Starte auto storage and retrieval </value>
</data>
<data name="FrmStoreBox_lblOutInfo_Text" xml:space="preserve">
<value> Material retrieval count </value>
</data>
<data name="FrmStoreBox_lblTemp_Text" xml:space="preserve">
<value> "Temperature-- </value>
</data>
<data name="FrmStoreBox_lblThisSta_Text" xml:space="preserve">
<value> Equipment is not started </value>
</data>
<data name="FrmStoreBox_lblWaitTragGo_Text" xml:space="preserve">
<value> "Please handle the material </value>
</data>
<data name="FrmStoreBox_tabPage1_Text" xml:space="preserve">
<value> Temperature and humidity debug </value>
</data>
<data name="FrmStoreBox_tabPage2_Text" xml:space="preserve">
<value> Equipment Debug </value>
</data>
<data name="FrmStoreBox_tabPage5_Text" xml:space="preserve">
<value> equipment information </value>
</data>
<data name="FrmStoreBox_tabPage4_Text" xml:space="preserve">
<value> Log </value>
</data>
<data name="FrmStoreBox_Text" xml:space="preserve">
<value> SMD BOX </value>
</data>
<data name="FrmStoreBox_toolStripMenuItem1_Text" xml:space="preserve">
<value> Exit </value>
</data>
<data name="FrmStoreBox_toolStripMenuItem2_Text" xml:space="preserve">
<value> Turn On Camera Lighting </value>
</data>
<data name="FrmStoreBox_toolStripMenuItem3_Text" xml:space="preserve">
<value> Turn Off Camera Lighting </value>
</data>
<data name="FrmStoreBox_toolStripMenuItem4_Text" xml:space="preserve">
<value> Disable Maintenance Door Alarm </value>
</data>
<data name="FrmStoreBox_toolStripMenuItem5_Text" xml:space="preserve">
<value> Enable Maintenance Door Alarm </value>
</data>
<data name="FrmStoreBox_toolStripMenuItem6_Text" xml:space="preserve">
<value> Japanese </value>
</data>
<data name="FrmStoreBox_查看IOToolStripMenuItem_Text" xml:space="preserve">
<value> I/O Information </value>
</data>
<data name="FrmStoreBox_出入库调试ToolStripMenuItem_Text" xml:space="preserve">
<value> Enable Debug Mode </value>
</data>
<data name="FrmStoreBox_打开舱门ToolStripMenuItem_Text" xml:space="preserve">
<value> Open SISO Door </value>
</data>
<data name="FrmStoreBox_复位ToolStripMenuItem_Text" xml:space="preserve">
<value> Reset </value>
</data>
<data name="FrmStoreBox_关闭仓门ToolStripMenuItem_Text" xml:space="preserve">
<value> Close SISO Door </value>
</data>
<data name="FrmStoreBox_回待机点ToolStripMenuItem_Text" xml:space="preserve">
<value> Return to Standby Position </value>
</data>
<data name="FrmStoreBox_料仓操作ToolStripMenuItem_Text" xml:space="preserve">
<value> Equipment </value>
</data>
<data name="FrmStoreBox_料仓运转OFFToolStripMenuItem_Text" xml:space="preserve">
<value> Open Servo </value>
</data>
<data name="FrmStoreBox_料仓运转ONToolStripMenuItem_Text" xml:space="preserve">
<value> Close Servo </value>
</data>
<data name="FrmStoreBox_批量上下轴OFFToolStripMenuItem_Text" xml:space="preserve">
<value> Enable Axis 5 </value>
</data>
<data name="FrmStoreBox_批量上下轴ONToolStripMenuItem_Text" xml:space="preserve">
<value> Disable Axis 5 </value>
</data>
<data name="FrmStoreBox_启动ToolStripMenuItem_Text" xml:space="preserve">
<value> Start </value>
</data>
<data name="FrmStoreBox_清理日志ToolStripMenuItem_Text" xml:space="preserve">
<value> Chinese </value>
</data>
<data name="FrmStoreBox_扫码测试ToolStripMenuItem_Text" xml:space="preserve">
<value> Code Scanning Test </value>
</data>
<data name="FrmStoreBox_上料模块复位ToolStripMenuItem_Text" xml:space="preserve">
<value> Axis 5 Reset </value>
</data>
<data name="FrmStoreBox_设备调试ToolStripMenuItem_Text" xml:space="preserve">
<value> Function Debug </value>
</data>
<data name="FrmStoreBox_摄像机调试ToolStripMenuItem_Text" xml:space="preserve">
<value> Code Learning </value>
</data>
<data name="FrmStoreBox_升降轴位置调试ToolStripMenuItem_Text" xml:space="preserve">
<value> Axis 2 Debug </value>
</data>
<data name="FrmStoreBox_停止ToolStripMenuItem_Text" xml:space="preserve">
<value> Stop </value>
</data>
<data name="FrmStoreBox_退出ToolStripMenuItem_Text" xml:space="preserve">
<value> Exit </value>
</data>
<data name="FrmStoreBox_显示ToolStripMenuItem_Text" xml:space="preserve">
<value> HOME Page </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> Motion Axis Debug </value>
</data>
<data name="FuLimit" xml:space="preserve">
<value> Negative limit </value>
</data>
<data name="GetError" xml:space="preserve">
<value> Unloading material failure: no material </value>
</data>
<data name="GetError2" xml:space="preserve">
<value> "Unloading material failure: the equipment is working </value>
</data>
<data name="HasWare" xml:space="preserve">
<value> "There is material detected on the clamping device </value>
</data>
<data name="HomeMove" xml:space="preserve">
<value> Return to Origin </value>
</data>
<data name="InOut_Axis" xml:space="preserve">
<value> (Axis 3) InOut Axis </value>
</data>
<data name="InoutAlarm" xml:space="preserve">
<value> "Axis 3 Alarm! Reset failed </value>
</data>
<data name="InoutNotOk" xml:space="preserve">
<value> Please return Axis 3 to standby location first! </value>
</data>
<data name="InoutWarn" xml:space="preserve">
<value> Alarm(Axis 2 and axis 1 can be moved only when axis 3 is in standby location) </value>
</data>
<data name="InStoreEnd" xml:space="preserve">
<value> The material has arrived at the storage location </value>
</data>
<data name="InStoreError" xml:space="preserve">
<value> "Storage location format error: barcode[{0}] </value>
</data>
<data name="InStoreExecute" xml:space="preserve">
<value> Material storage in execution </value>
</data>
<data name="InStoreFailed" xml:space="preserve">
<value> Material storage failed </value>
</data>
<data name="InStoreNoCode" xml:space="preserve">
<value> "The barcode is not detected by the camera </value>
</data>
<data name="InStoreNoPosition" xml:space="preserve">
<value> "Storage location not found: barcode[{0}] </value>
</data>
<data name="inSuddenStop" xml:space="preserve">
<value> Equipment emergency stop </value>
</data>
<data name="Middle_Axis" xml:space="preserve">
<value> (Axis 1) Rotation Axis </value>
</data>
<data name="MoveTimeOut" xml:space="preserve">
<value> [{0}] Timeout {1} [{2}] </value>
</data>
<data name="MsgTitle" xml:space="preserve">
<value> Information </value>
</data>
<data name="NO_Clamping_Check" xml:space="preserve">
<value> No material detection signal for cylinder of sorting device </value>
</data>
<data name="NoAIr" xml:space="preserve">
<value> No air pressure signal detected </value>
</data>
<data name="NoCodeMsg" xml:space="preserve">
<value> "The barcode is not detected by the camera </value>
</data>
<data name="OpenAxisFail" xml:space="preserve">
<value> Enable Axis{0} failed </value>
</data>
<data name="oustore" xml:space="preserve">
<value> Material retrieval: </value>
</data>
<data name="OutFull" xml:space="preserve">
<value> "The batch material string is full </value>
</data>
<data name="OutMoveExecute" xml:space="preserve">
<value> Material retrieval completed </value>
</data>
<data name="OutStoreBoxEnd" xml:space="preserve">
<value> The material has been moved out of the storage location </value>
</data>
<data name="OutStoreError" xml:space="preserve">
<value> Material retrieval failure: storage location No.{0} format error </value>
</data>
<data name="OutStoreExecute" xml:space="preserve">
<value> Material retrieval in execution </value>
</data>
<data name="OutStoreFailed" xml:space="preserve">
<value> Material retrieval failed </value>
</data>
<data name="OutStoreNoPosition" xml:space="preserve">
<value> Material retrieval failure: storage location {0} not found </value>
</data>
<data name="PCloseDoor" xml:space="preserve">
<value> Please close the MIMO door first! </value>
</data>
<data name="PleaseStartStore" xml:space="preserve">
<value> Please start the equipment first!! </value>
</data>
<data name="PWPwd" xml:space="preserve">
<value> Password error: please input the correct password. </value>
</data>
<data name="PWSpeed" xml:space="preserve">
<value> please input the correct speed value! </value>
</data>
<data name="Reset" xml:space="preserve">
<value> The equipment is resetting </value>
</data>
<data name="Run" xml:space="preserve">
<value> The equipment is in standby </value>
</data>
<data name="Runing" xml:space="preserve">
<value> The equipment is in standby </value>
</data>
<data name="SaveError" xml:space="preserve">
<value> Save failed </value>
</data>
<data name="SaveOk" xml:space="preserve">
<value> Save successful </value>
</data>
<data name="ScanOk" xml:space="preserve">
<value> Barcode scanning finished </value>
</data>
<data name="ServoOff" xml:space="preserve">
<value> Close Servo </value>
</data>
<data name="servoON" xml:space="preserve">
<value> Open Servo </value>
</data>
<data name="StartAuto" xml:space="preserve">
<value> Start Auto Storage,Retrieval </value>
</data>
<data name="StartCycle" xml:space="preserve">
<value> Start Retrieval Circulation </value>
</data>
<data name="startFail" xml:space="preserve">
<value> Start failure: emergency stop button not open </value>
</data>
<data name="startFailAir" xml:space="preserve">
<value> Start failure: no air pressure signal detected </value>
</data>
<data name="StopAuto" xml:space="preserve">
<value> Stop auto storage,retrieval </value>
</data>
<data name="StopCycle" xml:space="preserve">
<value> Stop Retrieval Circulation </value>
</data>
<data name="StoreOnline" xml:space="preserve">
<value> The equipment is initializing. </value>
</data>
<data name="SuddenStop" xml:space="preserve">
<value> Equipment emergency stop </value>
</data>
<data name="SureExit" xml:space="preserve">
<value> Are you sure to exit? </value>
</data>
<data name="TakeTrayGo" xml:space="preserve">
<value> Please take away the material! </value>
</data>
<data name="TakeTrayOut" xml:space="preserve">
<value> Close SISO Door </value>
</data>
<data name="TheDoorOpen" xml:space="preserve">
<value> Unable to retrieve materials because the MIMO door is not closed! </value>
</data>
<data name="TimeOut" xml:space="preserve">
<value> timeout </value>
</data>
<data name="UpDown_Axis" xml:space="preserve">
<value> (Axis 2) UpDown Axis </value>
</data>
<data name="Wait" xml:space="preserve">
<value> Equipment is not started </value>
</data>
<data name="WaitEnd" xml:space="preserve">
<value> Wait for NG materials to be delivered to the single door completed </value>
</data>
<data name="WaitInstoreTimeOut" xml:space="preserve">
<value> [{0}] timeout: [waiting for material storage] [{1} seconds] </value>
</data>
<data name="WaitIo" xml:space="preserve">
<value> I/O signal waiting </value>
</data>
<data name="WaitSingleTimeOut" xml:space="preserve">
<value> Waiting signal {0}={1} timeout </value>
</data>
<data name="WaitStart" xml:space="preserve">
<value> Equipment is not started </value>
</data>
<data name="WaitTime" xml:space="preserve">
<value> Waiting Time: </value>
</data>
<data name="WarnMsg" xml:space="preserve">
<value> Alarm </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 start </value>
</data>
<data name="X04" xml:space="preserve">
<value> Safety light curtain </value>
</data>
<data name="X05" xml:space="preserve">
<value> SISO door cylinder up in-position </value>
</data>
<data name="X06" xml:space="preserve">
<value> SISO door cylinder down in-position </value>
</data>
<data name="X07" xml:space="preserve">
<value> Cylinder of the sorting device up in-position </value>
</data>
<data name="X08" xml:space="preserve">
<value> Cylinder of the sorting device down in-position </value>
</data>
<data name="X09" xml:space="preserve">
<value> Material diameter detection 1 </value>
</data>
<data name="X10" xml:space="preserve">
<value> Material diameter detection 2 </value>
</data>
<data name="X11" xml:space="preserve">
<value> Material detection 1 (feeding device) </value>
</data>
<data name="X12" xml:space="preserve">
<value> Material detection on the feeding device </value>
</data>
<data name="X13" xml:space="preserve">
<value> MIMO door lock cylinder open in-position </value>
</data>
<data name="X14" xml:space="preserve">
<value> MIMO door lock cylinder closed in-position </value>
</data>
<data name="X15" xml:space="preserve">
<value> Material detection 2 (clamping device) </value>
</data>
<data name="X21" xml:space="preserve">
<value> MIMO door closed </value>
</data>
<data name="X22" xml:space="preserve">
<value> Air pressure detection </value>
</data>
<data name="X23" xml:space="preserve">
<value> Maintenance door 1 closed </value>
</data>
<data name="X24" xml:space="preserve">
<value> Maintenance door 2 closed </value>
</data>
<data name="X25" xml:space="preserve">
<value> MIMO door lock cylinder open in-position 2 </value>
</data>
<data name="X26" xml:space="preserve">
<value> MIMO door lock cylinder closed in-position 2 </value>
</data>
<data name="X27" xml:space="preserve">
<value> Axis 5 up limit </value>
</data>
<data name="X28" xml:space="preserve">
<value> SISO door material detection </value>
</data>
<data name="X29" xml:space="preserve">
<value> Pressing device cylinder gripping in-position </value>
</data>
<data name="X30" xml:space="preserve">
<value> Pressing device cylinder relaxing in-position </value>
</data>
<data name="X31" xml:space="preserve">
<value> Material detection for cylinder of sorting device </value>
</data>
<data name="Y01" xml:space="preserve">
<value> Auto indicator </value>
</data>
<data name="Y02" xml:space="preserve">
<value> Fault indicator </value>
</data>
<data name="Y03" xml:space="preserve">
<value> Standby indicator </value>
</data>
<data name="Y04" xml:space="preserve">
<value> Air Inlet opening </value>
</data>
<data name="Y05" xml:space="preserve">
<value> Servo power on </value>
</data>
<data name="Y06" xml:space="preserve">
<value> Axis 2 brake power on </value>
</data>
<data name="Y07" xml:space="preserve">
<value> Camera lighting on </value>
</data>
<data name="Y08" xml:space="preserve">
<value> Equipment lighting on </value>
</data>
<data name="Y09" xml:space="preserve">
<value> SISO door ascent </value>
</data>
<data name="Y10" xml:space="preserve">
<value> SISO door descent </value>
</data>
<data name="Y11" xml:space="preserve">
<value> Sorting device cylinder ascent </value>
</data>
<data name="Y12" xml:space="preserve">
<value> Sorting device cylinder descent </value>
</data>
<data name="Y13" xml:space="preserve">
<value> MIMO door lock cylinder open </value>
</data>
<data name="Y14" xml:space="preserve">
<value> MIMO door lock cylinder close </value>
</data>
<data name="Y15" xml:space="preserve">
<value> Maintenance door alarm close </value>
</data>
<data name="Y16" xml:space="preserve">
<value> Alarm buzzer </value>
</data>
<data name="Y21" xml:space="preserve">
<value> Sorting device cylinder gripping </value>
</data>
<data name="Y22" xml:space="preserve">
<value> Sorting device cylinder relaxing </value>
</data>
<data name="ZhLimit" xml:space="preserve">
<value> Positive limit </value>
</data>
<data name="打开串口失败" xml:space="preserve">
<value> Open serial port failed </value>
</data>
<data name="打开日志" xml:space="preserve">
<value> Open Log </value>
</data>
<data name="关闭日志" xml:space="preserve">
<value> Close Log </value>
</data>
<data name="检测信号" xml:space="preserve">
<value> Detection signal </value>
</data>
<data name="禁用调试" xml:space="preserve">
<value> Disable Debugging </value>
</data>
<data name="启动失败:设备未初始化完成" xml:space="preserve">
<value> Start failed: the equipment is initializing </value>
</data>
<data name="启用调试" xml:space="preserve">
<value> Enable Debugging </value>
</data>
<data name="请输入正确的速度" xml:space="preserve">
<value> Please input the correct speed value </value>
</data>
<data name="确定将[{0}]保存为单盘入库默认库位?" xml:space="preserve">
<value> Sure to set [{0}] as reference storage location? </value>
</data>
<data name="确定开始{0}循环出库" xml:space="preserve">
<value> Sure to use {0} to start retrieval circulation? </value>
</data>
<data name="确定开始自动出入库?" xml:space="preserve">
<value> Sure to start auto storage and retrieval? </value>
</data>
<data name="升降轴位置调试:" xml:space="preserve">
<value> Axis 2 location debug: </value>
</data>
<data name="伺服OFF" xml:space="preserve">
<value> Servo On </value>
</data>
<data name="伺服ON" xml:space="preserve">
<value> Servo Off </value>
</data>
<data name="温湿度报警" xml:space="preserve">
<value> Temperature and humidity alarm </value>
</data>
<data name="文件【{0}】已存在,是否确定覆盖?" xml:space="preserve">
<value> The file "{0}" already exists. Do you want to overwrite it? </value>
</data>
<data name="循环出库" xml:space="preserve">
<value> Retrieval Circulation </value>
</data>
<data name="右侧门未关" xml:space="preserve">
<value> Maintenance door 2 is not closed </value>
</data>
<data name="自动出库" xml:space="preserve">
<value> Auto retrieval </value>
</data>
<data name="自动出入库" xml:space="preserve">
<value> Auto storage and retrieval </value>
</data>
<data name="自动出入库操作" xml:space="preserve">
<value> auto storage,retrieval operation </value>
</data>
<data name="自动入库" xml:space="preserve">
<value> Auto storage </value>
</data>
<data name="左侧门未关" xml:space="preserve">
<value> Maintenance door 1 is not closed </value>
</data>
<data name="FrmStoreBox_打开日志ToolStripMenuItem_Text" xml:space="preserve">
<value> Open Log </value>
</data>
<data name="FrmStoreBox_chbDebug_Text" xml:space="preserve">
<value> debug mode </value>
</data>
<data name="InstoreInfo" xml:space="preserve">
<value> batch storage and retrieval info: sorage: </value>
</data>
</root>