zs
2025-06-04 5a149d626ae8bc3fa4bddbb53f8caf40f51f6da6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
{
  "BarcodeManagement": {
    "添加条码段": "Add barcode segment",
    "请选择工序": "Please select a process",
    "请选择产品": "Please select a product",
    "适用产品": "Applicable product",
    "适用工序": "Applicable process",
    "选择": "Select",
    "解析规则": "Parsing rule",
    "校验规则": "Verification rule",
    "3、产品型号:取校验条码的该段与该工序生产型号进行比对": "3. Product model: Compare the section of the verification barcode with the production model of the process.",
    "4、固定字符:取实际的条码段与当前解析的条码段内容进行比对": "4. Fixed characters: Compare the actual barcode segment with the content of the currently parsed barcode segment.",
    "固定字符校验": "Fixed character check",
    "条码段类型": "Barcode Segment Type",
    "条码字段": "Barcode Field",
    "排序": "Sort",
    "格式": "Format",
    "自增数字类型时,按型号/日期自增": "For auto-incrementing number type, increment by model/date",
    "业务对象": "Business Object",
    "关联字段详情": "Details of Associated Fields",
    "父级ID": "Parent ID",
    "关联条码下拉框对应的下拉框key值": "Key value of the drop-down box corresponding to the associated barcode drop-down box",
    "变量名": "Variable Name",
    "状态": "Status",
    "条码段组成": "Barcode Segment Composition",
    "更新时间": "Update Time",
    "操作": "Operation",
    "具体规则": "Specific Rules",
    "起止符号": "Start and End Symbols",
    "校验条码段": "Verification Barcode Segment",
    "校验类型中文": "Verification Type (Chinese)",
    "校验条码": "Verification Barcode",
    "原始条码": "Original Barcode",
    "解析条码段": "Parsed Barcode Segment",
    "条码解析规则": "Barcode parsing rules",
    "条码生成规则": "Barcode generation rules",
    "条码校验规则": "Barcode verification rules",
    "新增": "Add",
    "编辑": "Edit",
    "删除": "Delete",
    "查看": "View",
    "请输入解析规则名称": "Please enter the name of the parsing rule",
    "使用中": "In use",
    "未使用": "Not in use",
    "请选择一个规则进行查看!": "Please select a rule to view!",
    "仅支持编辑单个查看!": "Only single viewing for editing is supported!",
    "请选择一个规则进行编辑!": "Please select a rule to edit!",
    "仅支持编辑单个规则!": "Only a single rule can be edited!",
    "请选择条码进行删除!": "Please select barcodes to delete!",
    "条码删除后不可恢复,是否确认删除?": "Once barcodes are deleted, they cannot be recovered. Are you sure you want to delete them?",
    "删除成功": "Delete successful",
    "查看规则": "View rules",
    "编辑规则": "Edit rules",
    "新增规则": "Add rules",
    "规则名称": "Rule name",
    "条码示例": "Barcode example",
    "解析类型": "Parsing type",
    "输入数字和英文逗号,以,号分割": "Enter numbers and English commas, separated by commas",
    "例如:2,12,1": "For example: 2, 12, 1",
    "分隔符号": "Separator symbol",
    "起始符号": "Starting symbol",
    "终止符号": "Ending symbol",
    "解析": "Parse",
    "固定长度": "Fixed length",
    "序号": "Serial number",
    "条码段名称": "Barcode segment name",
    "条码段内容": "Barcode segment content",
    "位数": "Number of digits",
    "存在重复的条码段名字": "There are duplicate barcode segment names",
    "保存成功": "Save successful",
    "请输入生成规则名称": "Please enter the name of the generation rule",
    "请输入校验规则名称": "Please enter the name of the verification rule",
    "请输入": "Please enter",
    "校验类型": "check type",
    "长度校验": "Length verification",
    "条码段": "Barcode segment",
    "根据条码解析规则解析出来条码段,选择需要检验的条码段": "Parse out barcode segments according to the barcode parsing rules and select the barcode segments that need to be verified",
    "1、长度:取校验条码该段进行长度比对": "1. Length: Take this segment of the verification barcode for length comparison",
    "2、物料编号:取校验条码的该段与该工序生产所需的物料编号进行比对": "2. Material number: Take this segment of the verification barcode and compare it with the material number required for production in this process",
    "长度": "Length",
    "物料编号": "Material number",
    "产品型号": "Product model",
    "备注": "Remarks",
    "至少有一个条码段选择了校验类型": "At least one barcode segment has selected a verification type",
    "条码规则名称": "Barcode rule name",
    "自定义条码段": "Custom barcode segment",
    "添加": "Add",
    "条码段来源": "Barcode source",
    "生成条码效果": "Generated barcode effect",
    "时间格式校验不正确,请重新输入": "The time format verification is incorrect. Please re-enter.",
    "条码段名称重复": "Barcode segment names are duplicated",
    "请输入必填项": "Please enter the required items",
    "条码编辑成功": "Barcode editing is successful",
    "条码段示例": "Barcode segment example",
    "自增数字规则": "Auto-incrementing number rule",
    "移动失败": "Move failed",
    "请选择": "Please select",
    "自增数字进制": "Auto-incrementing number system",
    "字段类型": "Field type",
    "根据条码解析规则解析出来条码段,选择需要用于生成规则的条码段": "Parse out barcode segments according to the barcode parsing rules and select the barcode segments that need to be used for the generation rule",
    "系统时间": "System time",
    "时间格式": "Time format",
    "关联规则": "Associated rule",
    "关联字段": "Associated field",
    "关联变量": "Associated variable",
    "按工单自增": "Auto-increment by work order",
    "按型号自增": "Auto-increment by model",
    "按日期自增": "Auto-increment by date",
    "十进制": "Decimal system",
    "二进制": "Binary system",
    "八进制": "Octal system",
    "十六进制": "Hexadecimal system",
    "系统字段": "System field",
    "业务字段": "Business field",
    "固定字符": "Fixed character",
    "自增数字": "Auto-incrementing number",
    "不能为空": "Cannot be empty",
    "工单": "Work order",
    "字段名称": "Field name",
    "总位数校验": "Total digit verification",
    "条码段位数校验": "Barcode segment digit verification",
    "条码段内容校验": "Barcode segment content verification",
    "提示": "Prompt",
    "取消": "Cancel",
    "确认": "Confirm",
    "规则解析字段": "Rule parsing field",
    "按型号/日期自增": "Auto-increment by model/date",
    "按工单/日期自增": "Auto-increment by work order/date",
    "添加/编辑条码段": "Add/edit barcode segment",
    "条码长度": "Barcode length"
  },
  "InspectionManagement": {
    "工序名称": "Process Name",
    "是否开始点检任务": "Do you want to start the inspection task",
    "产线段": "Production Line Segment",
    "开始时间": "Start Time",
    "结束时间": "End Time",
    "请输入模版名称": "Please input template name",
    "产品名称": "Product name",
    "模版名称": "Template name",
    "右侧为实际结果": "The actual results are on the right side",
    "左侧为预期结果": "The expected results are on the left side",
    "点检明细": "Details of spot inspection",
    "未激活": "Not activated",
    "点检任务管理": "Spot inspection task management",
    "点检记录": "Spot inspection records",
    "点检追溯报表": "Spot inspection traceability reports",
    "报表配置": "Report configuration",
    "序号": "Serial number",
    "产品型号": "Product model",
    "操作时间": "Operation time",
    "操作人": "Operator",
    "操作": "Operation",
    "添加": "Add",
    "点检任务模板": "Inspection task template",
    "详情": "Details",
    "已激活": "Activated",
    "开始": "Start",
    "暂停": "Pause",
    "结束": "End",
    "激活": "Activate",
    "编辑": "Edit",
    "查看": "View",
    "删除": "Delete",
    "时间范围": "Time range",
    "请输入关键字": "Please enter keywords",
    "点检任务名称": "Inspection task name",
    "创建时间": "Creation time",
    "操作用户": "Operating user",
    "点检件名称": "Inspection part name",
    "点检件ID": "Check item ID",
    "点检类型": "Check type",
    "第": "The",
    "次": "th time",
    "完成条件": "Completion condition",
    "点检次数": "Number of inspection times",
    "状态": "Status",
    "结果": "Result",
    "点检路线": "Inspection route",
    "备注": "Remarks",
    "创建副本": "Create a copy",
    "点检件编号": "Inspection part number",
    "配方": "Formula",
    "新增点检模板": "Add inspection template",
    "点检结果查看": "Check result viewing",
    "添加任务": "Add task",
    "请输入点检件名称": "Please enter the inspection part name",
    "点检件名称不允许为空": "The inspection part name is not allowed to be empty",
    "请输入点检件编号": "Please enter the inspection part number",
    "请输入配方": "Please enter the formula",
    "配方不允许为空": "The formula is not allowed to be empty",
    "请输入备注": "Please enter the remarks",
    "确认删除选中模版": "Confirm to delete the selected template",
    "请选择任务模版": "Please select the task template",
    "复制成功": "Copy successful",
    "不通过": "Fail",
    "通过": "Pass",
    "请输入": "Please enter",
    "修改": "Modify",
    "修改结果": "Modify result",
    "点检结果": "Inspection result",
    "预期结果": "Expected result",
    "详情参数": "Detail parameters",
    "点检详情参数查看": "Inspection detail parameter viewing",
    "请选择点检任务": "Please select the inspection task",
    "确认删除选择任务": "Confirm to delete the selected task",
    "删除成功": "Delete successful",
    "导入成功": "Import successful",
    "导入文件格式不正确,请导入.xlsx/.xls与.csv格式的文件": "The import file format is incorrect. Please import files in.xlsx/.xls or.csv format.",
    "导入失败": "Import failed",
    "点检任务模版": "template",
    "请选择任务": "Please select the task",
    "激活成功": "Activation successful",
    "是否暂停点检任务": "Whether to pause the inspection task",
    "暂停成功": "Pause successful",
    "开始成功": "Start successful",
    "是否结束点检任务": "Whether to end the inspection task",
    "已结束": "Ended",
    "是否删除点检任务": "Whether to delete the inspection task",
    "已删除": "Deleted",
    "添加点检件": "Add inspection item",
    "缺片信息记录": "Missing piece information record",
    "保存成功": "Save successful",
    "点检任务": "Inspection task",
    "请输入点检任务": "Please enter the inspection task",
    "请选择点检类型": "Please select the inspection type",
    "点检模版": "Inspection template",
    "请选择点检模版": "Please select the inspection template",
    "请选择产品型号": "Please select the product model",
    "达成次数:当该任务所有点检次数都完成则完成任务": "Number of completions: The task is completed when all inspection times of the task are completed.",
    "满足预期:当该任务点检结果与预期匹配后完成任务": "Meet expectations: The task is completed when the inspection result of the task matches the expectation.",
    "请输入完成条件": "Please enter the completion condition",
    "请选择完成条件": "Please select the completion condition",
    "请输入点检次数": "Please enter the number of inspection times"
  },
  "SopManagement": {
    "导入成功": "Import success",
    "导入失败": "Import Fail",
    "导入文件格式不正确,请导入.xlsx/.xls与.csv格式的文件": "Import file format is incorrect, please import .xlsx/.xls and .csv format files",
    "导入": "Import",
    "工序选择": "Process Selection",
    "SOP管理": "SOP Management",
    "SOP日志": "SOP Log",
    "新增": "Add",
    "复制": "Copy",
    "编辑": "Edit",
    "删除": "Delete",
    "请输入关键字": "Please enter keywords",
    "详情": "Details",
    "编辑SOP": "Edit SOP",
    "结束时间范围:": "End time range:",
    "导出": "Export",
    "向上添加一行": "Add a row upward",
    "向下添加一行": "Add a row downward",
    "查看Sop": "View Sop",
    "附件": "Attachment",
    "新增SOP": "Add SOP",
    "请选择工序": "Please select the process",
    "工序名称": "Process name",
    "请选择配方": "Please select the formula",
    "配方名称": "Formula name",
    "请输入配方名称": "Please enter the formula name",
    "SOP文件列表": "SOP file list",
    "取消": "Cancel",
    "确认": "Confirm",
    "添加": "Add",
    "请输入文件名": "Please enter the file name",
    "请输入工序名称": "Please enter the process name",
    "预览": "Preview",
    "添加本地文件": "Add local file",
    "拖拽至这里上传": "Drag and drop here to upload",
    "暂无附件": "No attachment",
    "下发成功": "Issuance successful",
    "工位名称": "Workstation name",
    "点检状态": "Inspection status",
    "操作": "Add",
    "点检SOP": "Spot check SOP",
    "保存成功": "Save successful",
    "序号": "Serial number",
    "SOP名称": "SOP name",
    "使用工序": "Used process",
    "已关联配方": "Related formula",
    "备注": "Remarks",
    "请选择一个SOP进行编辑!": "Please select an SOP to edit!",
    "仅支持编辑单个SOP!": "Only a single SOP can be edited!",
    "请选择一个SOP进行复制!": "Please select an SOP to copy!",
    "每次仅支持复制单个SOP!": "Only a single SOP can be copied at a time!",
    "是否确认复制选中SOP?": "Are you sure to copy the selected SOP?",
    "复制成功": "Copy successful",
    "请选择SOP进行删除!": "Please select SOPs to delete!",
    "是否确认删除选中SOP?": "Are you sure to delete the selected SOP?",
    "删除成功": "Delete successful",
    "用户名称": "User name",
    "时间": "Time",
    "产品ID": "Product ID",
    "生产参数": "Production parameters",
    "物料参数": "Material parameters",
    "sop执行日志": "SOP execution log",
    "导出成功": "Export successful",
    "请输入SOP名称": "Please enter the SOP name",
    "SOP名称不允许为空!": "The SOP name is not allowed to be empty!",
    "工序": "Process",
    "配方": "Formula",
    "请输入备注": "Please enter the remarks",
    "工步管理": "Work step management",
    "工步名称不允许为空!": "The work step name is not allowed to be empty!",
    "工步描述不允许为空!": "The work step description is not allowed to be empty!",
    "新增成功": "Add successful",
    "编辑成功": "Edit successful",
    "请选择需要删除的文件": "Please select the files to be deleted",
    "是否确认删除选中文件?": "Are you sure to delete the selected files?",
    "未开始": "Not started",
    "点检中": "In inspection",
    "合格": "Qualified",
    "不合格": "Unqualified",
    "产线段名称": "Production line segment name",
    "配方编号": "Formula number",
    "产品型号": "Product model",
    "工步名称": "Work step name",
    "操作描述": "Operation description",
    "文件名": "File name"
  },
  "ConsoleManagement": {
    "请选择工序": "Please select a process",
    "工位": "Workstation",
    "控制台": "Console",
    "请选择流程": "Please select the process",
    "操作成功": "Operation successful",
    "警告": "Warning",
    "是否重置所有流程?": "Whether to reset all processes?",
    "是否重置WCS流程?": "Whether to reset the WCS processes?",
    "请选择工位": "Please select the workstation",
    "时间": "Time",
    "至": "To",
    "开始时间": "Start time",
    "结束时间": "End time",
    "查询": "Search",
    "请输入查询内容": "Please enter the search content",
    "控制记录": "Control record",
    "导入成功": "Import successful",
    "导出成功": "Export successful",
    "开始时间不能大于结束时间": "The start time cannot be greater than the end time",
    "时间范围限制七天": "The time range is limited to seven days",
    "关键字长度限制2-200": "The keyword length is limited to 2-200",
    "请输入关键词进行检索!": "Please enter keywords for retrieval!",
    "流程控制确认": "Process control confirmation",
    "是否确认执行": "Are you sure to execute",
    "操作": "Operation",
    "备注": "Remarks",
    "流程功能设置": "Process function settings",
    "功能名称": "Function name",
    "功能描述": "Function description",
    "未启动": "Not started",
    "运行中": "Running",
    "部分运行": "Partially running",
    "请先选择工位": "Please select the workstation first",
    "查看流程": "View process",
    "一键重启所有流程": "Restart all processes with one click",
    "调试日志": "Debug log",
    "下发操作": "Issue operation",
    "功能字段操作": "Function field operation",
    "变量值": "Variable value",
    "请输入变量值": "Please enter the variable value",
    "请输入备注": "Please enter the remarks",
    "日志等级": "Log level",
    "全部": "All",
    "关键词": "Keyword",
    "请输入关键字": "Please enter the keyword",
    "节点名称": "Node name",
    "搜索": "Search",
    "导出": "Export",
    "历史": "History",
    "实时": "Real-time",
    "关键日志": "Key logs",
    "定位": "Locate",
    "序号": "Serial number",
    "参数": "Parameters",
    "快捷操作": "Quick operations",
    "参数信号操作": "Parameter signal operations",
    "功能字段": "Function field",
    "描述": "Description",
    "变量名": "Variable name",
    "类型": "Type",
    "下发": "Issue",
    "暂无数据": "No data available",
    "用户名": "Username",
    "工序": "Process",
    "工位名称": "Workstation name",
    "流程名称": "Process name",
    "操作名称": "Operation name",
    "取消流程将终止所有实例,直到下次启动!": "Canceling the process will terminate all instances until the next startup!",
    "是否确认取消": "Are you sure to cancel",
    "控制页面": "Control page"
  },
  "ControlPanel": {
    "请选择工序": "Please select a process",
    "工位": "Workstation",
    "控制台": "Console",
    "请选择流程": "Please select the process",
    "操作成功": "Operation successful",
    "警告": "Warning",
    "是否重置所有流程?": "Whether to reset all processes?",
    "是否重置WCS流程?": "Whether to reset the WCS processes?",
    "请选择工位": "Please select the workstation",
    "时间": "Time",
    "至": "To",
    "开始时间": "Start time",
    "结束时间": "End time",
    "查询": "Search",
    "请输入查询内容": "Please enter the search content",
    "控制记录": "Control record",
    "导入成功": "Import successful",
    "导出成功": "Export successful",
    "开始时间不能大于结束时间": "The start time cannot be greater than the end time",
    "时间范围限制七天": "The time range is limited to seven days",
    "关键字长度限制2-200": "The keyword length is limited to 2-200",
    "请输入关键词进行检索!": "Please enter keywords for retrieval!",
    "流程控制确认": "Process control confirmation",
    "是否确认执行": "Are you sure to execute",
    "操作": "Operation",
    "备注": "Remarks",
    "流程功能设置": "Process function settings",
    "功能名称": "Function name",
    "功能描述": "Function description",
    "未启动": "Not started",
    "运行中": "Running",
    "部分运行": "Partially running",
    "请先选择工位": "Please select the workstation first",
    "查看流程": "View process",
    "一键重启所有流程": "Restart all processes with one click",
    "调试日志": "Debug log",
    "下发操作": "Issue operation",
    "功能字段操作": "Function field operation",
    "变量值": "Variable value",
    "请输入变量值": "Please enter the variable value",
    "请输入备注": "Please enter the remarks",
    "日志等级": "Log level",
    "全部": "All",
    "关键词": "Keyword",
    "请输入关键字": "Please enter the keyword",
    "节点名称": "Node name",
    "搜索": "Search",
    "导出": "Export",
    "历史": "History",
    "实时": "Real-time",
    "关键日志": "Key logs",
    "定位": "Locate",
    "序号": "Serial number",
    "参数": "Parameters",
    "快捷操作": "Quick operations",
    "参数信号操作": "Parameter signal operations",
    "功能字段": "Function field",
    "描述": "Description",
    "变量名": "Variable name",
    "类型": "Type",
    "下发": "Issue",
    "暂无数据": "No data available",
    "用户名": "Username",
    "工序": "Process",
    "工位名称": "Workstation name",
    "流程名称": "Process name",
    "操作名称": "Operation name",
    "取消流程将终止所有实例,直到下次启动!": "Canceling the process will terminate all instances until the next startup!",
    "是否确认取消": "Are you sure to cancel",
    "控制页面": "Control page",
    "启动": "Start",
    "停止": "Stop"
  },
  "BOMManagement": {
    "全部": "All",
    "工序": "Process",
    "用量": "Dosage",
    "请选择工序": "Please select a process",
    "请选择物料类型": "Please select a material type",
    "新建物料": "New Material",
    "编辑物料": "Edit Material",
    "删除成功": "Deleted successfully",
    "产品名称": "Product Name",
    "产品型号": "Product Model",
    "BOM名称": "BOM Name",
    "操作成功": "Operation Successful",
    "BOM管理.xlsx": "BOM Management.xlsx",
    "BOM名称重复": "BOM Name Duplicated",
    "BOM列表": "Bom list",
    "序号": "Serial number",
    "物料编号": "Material code",
    "物料名称": "Material name",
    "物料类型": "Material type",
    "单位": "Unit",
    "条码规则": "Barcode rule",
    "BOM管理": "Bill of Material (BOM) management",
    "导入": "Import",
    "导出": "Export",
    "产品名称:": "Product name:",
    "产品型号:": "Product model:",
    "添加": "Add",
    "编辑": "Edit",
    "删除": "Delete",
    "筛选": "Filter",
    "用量不允许为空!": "Dosage cannot be empty!",
    "正数,可整型、浮点型": "Positive number, can be integer or floating-point type",
    "工序不允许为空!": "Process cannot be empty!",
    "物料编号不允许为空!": "Material code cannot be empty!",
    "请输入选择工序": "Please enter and select the process",
    "请输入物料编号": "Please enter the material code",
    "请输入用量": "Please enter the dosage",
    "创建成功": "Creation successful",
    "修改成功": "Modification successful",
    "请选择产品进行添加": "Please select a product to add",
    "请选择一个物料进行编辑!": "Please select a material to edit!",
    "仅支持编辑单个物料!": "Only single material editing is supported!",
    "请选择物料进行删除!": "Please select materials to delete!",
    "物料删除后,相关生产数据无法恢复,是否确认删除?": "After the materials are deleted, the related production data cannot be recovered. Are you sure to delete?"
  },
  "BusinessFieldSetting": {
    "导入成功": "Import success",
    "导入失败": "Import Fail",
    "导入文件格式不正确,请导入.xlsx/.xls与.csv格式的文件": "Import file format is incorrect, please import .xlsx/.xls and .csv format files",
    "导入": "Import",
    "导出": "Export",
    "保存成功": "Save successful",
    "保存": "Save",
    "序号": "Serial number",
    "字段名称": "Field name",
    "变量": "Variable",
    "备注": "Remarks",
    "业务字段设置": "Business field settings"
  },
  "FlowManagement": {
    "流程编号": "Flow number",
    "系统内置": "System built-in",
    "是": "Yes",
    "否": "No",
    "删除成功": "Delete success",
    "确认删除选中数据?": "Are you sure to delete the selected data?",
    "启用": "Enable",
    "禁用": "Disable",
    "克隆": "Clone",
    "请输入流程描述": "Please input flow desc",
    "流程描述": "FLow Description",
    "流程管理": "Flow Management",
    "全部": "All",
    "流程": "Flow",
    "参数信号配置": "Parameter Signal Configuration",
    "功能配置": "Parameter config",
    "字段配置": "Field Configuration",
    "功能名称": "Function Name",
    "功能描述": "Function Description",
    "功能标识": "Function Identifier",
    "功能选项": "Function Options",
    "分组名称": "Group Name",
    "字段名称": "Field Name",
    "字段描述": "Field Description",
    "字段类型": "Field Type",
    "字段标识": "Field Identifier",
    "显示": "Display",
    "默认值": "Default Value",
    "只读": "Read Only",
    "必填": "Required",
    "名称": "Name",
    "描述": "Description",
    "选项值": "Option Value",
    "操作": "Operation",
    "流程参数配置弹窗": "Flow Parameter Configuration Pop-up Window",
    "流程弹窗": "Flow Pop-up Window",
    "请输入流程名称": "Please enter the flow name",
    "请选择交互类型": "Please select the interaction type",
    "更新成功": "Update successful",
    "添加成功": "Add successful",
    "克隆成功": "Clone successful",
    "导入成功": "Import successful",
    "导入失败": "Import failed",
    "导入文件格式不正确,请导入.xlsx/.xls与.csv格式的文件": "The import file format is incorrect. Please import files in.xlsx/.xls and.csv formats.",
    "确认删除": "Confirm deletion",
    "启用成功": "Enable successful",
    "禁用成功": "Disable successful",
    "请选择流程": "Please select the flow",
    "序号": "Serial Number",
    "流程名称": "Flow Name",
    "交互类型": "Interaction Type",
    "功能项": "Function Items",
    "关联工序": "Associated Processes",
    "备注": "Remarks",
    "状态": "Status",
    "已禁用": "Disabled",
    "已启用": "Enabled",
    "查看": "View",
    "编辑": "Edit",
    "设计": "Design",
    "删除": "Delete",
    "批量配置": "Batch Configuration",
    "添加": "Add",
    "筛选": "Filter",
    "导入": "Import",
    "导出": "Export",
    "功能选项不能为空": "Function options cannot be empty",
    "功能选项名称不能重复": "Function option names cannot be duplicated",
    "选项值不能重复": "Option values cannot be duplicated",
    "请选择": "Please select",
    "功能选项对话框": "Function Option Dialog",
    "批量配置对话框": "Batch Configuration Dialog",
    "G6流程": "G6 Flow",
    "表头内容": "Header Content",
    "搜索": "Search",
    "选择工序": "Select Work Section",
    "确认工序": "Confirm Work Section",
    "确认流程": "Confirm Flow",
    "编辑基础流程": "Edit Base Flow",
    "删除流程": "Delete Flow",
    "复制流程": "Copy Flow",
    "确认流程表单": "Confirm Flow Form",
    "点击添加": "Click Add",
    "上传成功": "Upload Success",
    "上传失败": "Upload Failure",
    "上传前": "Before Upload",
    "上下文菜单": "Context Menu",
    "获取详情数据": "Get Detail Data",
    "参数配置": "Param config",
    "添加流程": "Add Flow",
    "关闭": "Close",
    "确认": "Confirm"
  },
  "MesSuite": {
    "请选择解析规则": "Please select the parse rule",
    "请输入总表名称": "Please enter the total table name",
    "控制页面": "Control Page",
    "控制记录": "Control Record",
    "点检任务管理": "Inspection Task Management",
    "点检记录": "Inspection Record",
    "点检追溯报表": "Inspection Traceability Report",
    "物料管理": "Material Management",
    "物料记录": "Material Record",
    "工序列表": "Process List",
    "工位列表": "Workstation List",
    "SOP管理": "SOP Management",
    "SOP日志": "SOP Log",
    "使用中": "In use",
    "未使用": "Not in use",
    "请输入解析规则名称": "Please enter the parsing rule name",
    "用户没有该权限!": "User does not have this permission!",
    "产品信息下发配置": "Product Information Distribution Configuration",
    "请选择一个配置!": "Please select a configuration!",
    "解析规则": "Parsing rule",
    "校验规则": "Verification rule",
    "取消导入成功": "Cancel import successful",
    "是否取消导入": "Are you sure to cancel import?",
    "导入文件格式不正确,请导入.xlsx/.xls与.csv格式的文件": "The import file format is incorrect. Please import files in.xlsx/.xls and.csv formats.",
    "导入进度": "Import Progress",
    "已用时间": "Used Time",
    "剩余时间": "Remaining Time",
    "计算中...": "Calculating...",
    "取消导入": "Cancel Import",
    "请选择一条解析规则": "Please select one parsing rule",
    "条码解析规则": "Barcode parsing rules",
    "请勿选择多个配置操作!": "Please don't select multiple configuration operations!",
    "配方过程值": "Formula Process Value",
    "请选择一个参数!": "Please select a parameter!",
    "采集参数": "Collection Parameters",
    "参数名": "Parameter Name",
    "参数描述": "Parameter description",
    "配方参数": "Formula Parameters",
    "物料参数": "Material parameter",
    "新增产品下发参数值配置": "Add Product Information Distribution Parameter Value Configuration",
    "产品下发信息": "Product Information Distribution",
    "数据源": "Data Source",
    "类型": "Type",
    "新增": "Add",
    "编辑": "Edit",
    "下发类型": "Issue Type",
    "下发数据": "Issue Data",
    "托盘管理": "Pallet Management",
    "托盘绑定记录": "Pallet Binding Record",
    "文件错误,下载失败": "File error, download failed",
    "是否取消上料": "Whether to cancel the material",
    "请选择数据": "Please select the data",
    "物料编号": "Material Code",
    "物料名称": "Material Name",
    "上料物料码": "Material Code",
    "实际物料码": "Actual Material Code",
    "请选择内容": "Please Select Content",
    "使用详情": "Use Detail",
    "物料码": "Material Code",
    "取消上料": "Cancel Material",
    "模板名称": "Template Name",
    "预览": "Preview",
    "名称": "Name",
    "关键字": "Keyword",
    "请输入关键字": "Please Enter Keywords",
    "仅支持对一条数据进行操作!": "Only supports operations on one piece of data!",
    "描述": "Description",
    "工位选择": "Station Selection",
    "工位名称": "Station name",
    "变量": "Variable",
    "字段": "Field",
    "条码生成规则": "Barcode generation rules",
    "流程上下文": "Flow Context",
    "标识": "FLag",
    "数据类型": "Data Type",
    "生成规则": "generation rules",
    "下发变量": "Issue Variable",
    "规则类型": "Rule type",
    "条码段组成": "Barcode Segment Composition",
    "条码示例": "Barcode example",
    "更新时间": "Update Time",
    "标签管理": "Label Management",
    "标签记录": "Label Record",
    "进站、出站的交互类型只能选择一个,请检查!": "Only one interaction type of entry and exit can be selected. Please check!",
    "关联条码生成规则": "Associated barcode generation rule",
    "条码名称": "Barcode name",
    "产品管理": "Product Management",
    "产品识别码": "Product identification code",
    "版本名称": "Version name",
    "备注": "Remarks",
    "产品名称": "Product Name",
    "产品型号": "Product Model",
    "产品": "Product",
    "选择产品型号": "Select Product Model",
    "打印机选择": "Printer selection",
    "请输入打印机名称": "Please enter the printer name",
    "打印机": "Printer",
    "产线段配置": "Product segment config",
    "配方选择": "Formula select",
    "工单管理": "Work Order Management",
    "工单记录": "Work Order Records",
    "请输入搜索": "Please input search",
    "该点检任务没有可使用的产线段": "There are no available production lines for this inspection task",
    "选择": "Select",
    "配方管理": "Formula management",
    "配方应用": "Formula application",
    "配方日志": "Formula log",
    "开始时间必须比结束时间小": "Start time must be to low end time",
    "请选择开始时间": "Please select start time",
    "请选择结束时间": "Please select end time",
    "时间范围": "Time Range",
    "产量统计": "Production Statistics",
    "工序节拍分析": "Process Beat Analysis",
    "不合格统计分析": "Unqualified Statistics Analysis",
    "待办不良品": "Pending Defective Products",
    "产品判定记录": "Product Judgment Record",
    "一码回溯": "One-Code Traceability",
    "产线段": "Production Line Segment",
    "该工单没有可使用的产线段": "There are no available production line segments for this work order.",
    "请选择产线段": "Please select production line segments",
    "向上添加一行": "Add a row above",
    "向下添加一行": "Add a row below",
    "删除": "Delete",
    "不能为空": "Cannot be empty",
    "确定": "Confirm",
    "查询": "search",
    "取消": "Cancel",
    "追溯报表": "Traceability report",
    "报表配置": "Report configuration",
    "共": "Total",
    "页": "Pages",
    "当前第": "Current",
    "每页": "Per Page",
    "条记录": "Records",
    "第": "th",
    "工序选择": "Process selection",
    "工艺路线": "Process route",
    "工序段": "Process section",
    "请选择工序段": "Please select a process segment",
    "全部": "All",
    "工序": "working procedure",
    "请输入工序名称": "Please enter the process name",
    "工序段名称": "Process segment name",
    "工序编号": "Process number",
    "工序名称": "Process name",
    "查看": "View",
    "序号": "Seq",
    "导入失败": "Import Fail",
    "保存成功": "Save success",
    "查看属性": "View Props",
    "复制": "Copy",
    "集合": "Set",
    "条件集": "Condition Set",
    "请输入标签内容": "Please enter label content",
    "NodeDrawer": "节点抽屉",
    "更新": "Update",
    "关闭": "Close",
    "确认": "Confirm",
    "复合条件": "Composite Condition",
    "条件": "Condition",
    "格式错误": "Format error",
    "暂无数据": "No data available",
    "请选择": "Please select",
    "请输入": "Please enter",
    "请输入步骤名称": "Please enter the step name",
    "节点名称重复,请检查后重试": "The node name is duplicated. Please check and try again.",
    "撤销": "Undo",
    "恢复": "Redo",
    "放大": "Enlarge",
    "缩小": "Reduce",
    "美化": "Beautify",
    "下载": "Download",
    "导入": "Import",
    "导出": "Export",
    "导出成功": "Export successful",
    "导入成功": "Import successful",
    "活动节点": "Active Node"
  },
  "FormulaManagement": {
    "配方值": "Formula value",
    "参数类型": "Parameter type",
    "SOP名称": "SOP name",
    "请选择状态": "Please select Status",
    "使用中": "In use",
    "未使用": "Not in use",
    "-配方版本管理": "-Formula verison Management",
    "当前版本": "Current version",
    "状态": "Status",
    "配方列表": "Formula list",
    "是否确认下发": "Are you sure to issue?",
    "下发成功": "Issuance successful",
    "请选择SOP": "Please select SOP",
    "新建配方": "New Formula",
    "编辑配方": "Edit Formula",
    "请选择一个配方进行编辑!": "Please select a formula to edit!",
    "仅支持编辑单个配方!": "Only single formula editing is supported!",
    "当前配方正在生产中,不允许编辑": "The current formula is in production and editing is not allowed.",
    "请选择配方进行删除!": "Please select formulas to delete!",
    "生产中的配方不支持删除!": "Formulas in production are not supported to be deleted!",
    "配方删除后,相关生产数据无法恢复,是否确认删除?": "After the formula is deleted, the related production data cannot be recovered. Are you sure to delete it?",
    "删除成功": "Delete successful",
    "请选择一个配方进行创建副本!": "Please select a formula to create a copy!",
    "只能选择一个配方创建副本!": "Only one formula can be selected to create a copy!",
    "请选择一个配方进行版本管理!": "Please select a formula for version management!",
    "仅支持单个配方进行版本管理!": "Only single formula version management is supported!",
    "配方版本管理": "Formula Version Management",
    "配方名称不允许为空!": "The formula name cannot be empty!",
    "配方编号不允许为空!": "The formula code cannot be empty!",
    "工艺路线不允许为空!": "The process route cannot be empty!",
    "请输入配方编号": "Please enter the formula code",
    "请输入工艺路线": "Please enter the process route",
    "创建副本成功": "Copy creation successful",
    "创建成功": "Creation successful",
    "修改成功": "Modification successful",
    "配方编号": "Formula number",
    "配方版本": "Formula version",
    "工位名称": "Workstation name",
    "记录时间": "Recording time",
    "参数名称": "Parameter name",
    "更新内容": "Updated content",
    "请选择配方名称": "Please select formula name",
    "请选择工序名称": "Please select process name",
    "配方日志.xlsx": "Formula log.xlsx",
    "操作成功": "Operation successful",
    "参数描述": "Parameter description",
    "存在未保存数据,是否需要保存": "There is unsaved data. Do you need to save it?",
    "参数名": "Parameter name",
    "标准值": "Standard value",
    "下限": "Lower limit",
    "上限": "Upper limit",
    "设定值": "Set value",
    "实时值": "Real-time value",
    "请选择版本": "Please select version",
    "工序类型": "Process type",
    "SOP": "SOP",
    "请选择工序类型": "Please select process type",
    "产品识别码": "Product identification code",
    "版本名称": "Version name",
    "备注": "Remarks",
    "版本名称不能为空!": "Version name cannot be empty!",
    "版本名称不能重复!": "Version names cannot be duplicated!",
    "是否删除选中的版本": "Whether to delete the selected version",
    "当前仅有一个配方版本,删除失败!": "There is only one formula version currently, and the deletion failed!",
    "版本正在应用,不可删除": "The version is currently in use and cannot be deleted",
    "请选择一个版本": "Please select a version",
    "请勿选择多个版本操作!": "Please do not select multiple versions for operation!",
    "当前版本不可创建副本": "The current version cannot create a copy",
    "是否确认将": "Whether to confirm to set",
    "版本设为该配方当前版本?": "as the current version of this formula?",
    "配方名称": "Formula name",
    "产品型号": "Product model",
    "产品名称": "Product name",
    "工序编号": "Process number",
    "工序段名称": "Process segment name",
    "序号": "Serial number",
    "编辑": "Edit",
    "导入": "Import",
    "工艺参数": "Process parameters",
    "请输入参数名": "Please enter parameter name",
    "版本": "Version",
    "实时更新": "Real-time update",
    "取消": "Cancel",
    "更新": "Update",
    "新建版本": "Create a new version",
    "请选择更新当前版本或新建版本?": "Please choose to update the current version or create a new version?",
    "工艺配方": "Process formula",
    "配方": "Formula",
    "请输入配方名称": "Please enter formula name",
    "请输入产品型号": "Please enter product model",
    "配方当前版本": "Current version of the formula",
    "工艺路线": "Process route",
    "工序名称": "Process name",
    "工序": "Process",
    "工序段": "Process segment",
    "请选择工序段": "Please select process segment",
    "全部": "All",
    "请输入工序名称": "Please enter process name",
    "配方下发": "Formula distribution",
    "SOP选择": "SOP selection",
    "配方弹窗": "Formula pop-up window",
    "工艺路线设置": "Process route setting",
    "参数选择": "Parameter selection",
    "采集参数": "Acquisition parameters",
    "配方参数": "Formula parameters",
    "请输入参数名或参数描述": "Please enter parameter name or parameter description",
    "选择产品型号": "Select product model",
    "产品": "Product",
    "版本管理": "Version management",
    "当前版本:": "Current version:",
    "添加": "Add",
    "删除": "Delete",
    "创建副本": "Create a copy",
    "设为当前": "Set as current",
    "请输入版本名称": "Please enter version name",
    "物料管理": "Material management",
    "添加条件": "Add conditions",
    "筛选": "Filter",
    "导出": "Export",
    "配方管理": "Formula management",
    "配方应用": "Formula application",
    "配方日志": "Formula log",
    "配方选择": "Formula select"
  },
  "MaterialManagement": {
    "是否取消上料": "Whether to cancel the material",
    "请选择物料编号进行删除!": "Please select the material code to delete!",
    "批次料使用总览": "Overall Usage Overview of Batch Materials",
    "工序段": "Process Section",
    "请选择工序段": "Please select the process section",
    "请输入工位": "Please enter the workstation",
    "搜索": "Search",
    "下发": "Issue",
    "工位列表": "Workstation List",
    "批次料列表": "Batch Material List",
    "工序名称": "Process Name",
    "工位名称": "Workstation Name",
    "上料物料码": "Loading Material Code",
    "实际物料码": "Actual Material Code",
    "请选择内容": "Please select the content",
    "请选择数据": "Please select the data",
    "是否重新下发物料码": "Whether to reissue the material code",
    "下发成功": "Issued successfully",
    "工位": "Workstation",
    "请选择工位": "Please Select Station",
    "请选择": "Please Select",
    "请输入": "Please Enter",
    "状态": "Status",
    "选择": "Select",
    "批次料上料": "Batch material feeding",
    "上料详情": "Loading details",
    "上料成功": "Loading successful",
    "不允许同时对多个物料编号上料!": "",
    "请输入物料编号": "Please enter the material code",
    "请输入单位": "Please input unit",
    "请输入搜索": "Please input search",
    "新建物料": "New Material",
    "编辑物料": "Edit Material",
    "操作成功": "Operation successful",
    "请选择一个物料进行编辑!": "Please select a material to edit!",
    "仅支持编辑单个物料!": "Only single material editing is supported!",
    "物料删除后,相关生产数据无法恢复,是否确认删除?": "After the material is deleted, the related production data cannot be recovered. Are you sure to delete it?",
    "新建物料编号": "New Material Code",
    "编辑物料编号": "Edit Material Code",
    "物料编号删除后,相关生产数据无法恢复,是否确认删除?": "After the material code is deleted, the related production data cannot be recovered. Are you sure to delete it?",
    "删除成功": "Delete successful",
    "请选择一个物料编号进行编辑!": "Please select a material code to edit!",
    "仅支持编辑单个物料编号!": "Only single material code editing is supported!",
    "请选择一个物料编号": "Please select a material code",
    "入库成功": "Warehousing successful",
    "校准成功": "Calibration successful",
    "物料编号不允许为空!": "The material code cannot be empty!",
    "请选择条码规则": "Please select the barcode rule",
    "请输入物料名称": "Please enter the material name",
    "请输入选择物料类型": "Please enter and select the material type",
    "物料名称不允许为空!": "The material name cannot be empty!",
    "物料类型不允许为空!": "The material type cannot be empty!",
    "单位不允许为空!": "The unit cannot be empty!",
    "请输入备注说明": "Please enter the remarks",
    "创建成功": "Creation successful",
    "修改成功": "Modification successful",
    "创建库位": "Create Location",
    "导入成功": "Import successful",
    "导入失败": "Import failed",
    "导入文件格式不正确,请导入.xlsx/.xls与.csv格式的文件": "The import file format is incorrect. Please import files in.xlsx/.xls and.csv formats.",
    "产品名称": "Product Name",
    "产品型号": "Product Model",
    "物料列表": "Material List",
    "导入": "Import",
    "导出": "Export",
    "备注": "Remarks",
    "物料编号列表": "Material Code List",
    "添加": "Add",
    "编辑": "Edit",
    "入库": "Warehousing",
    "校准": "Calibration",
    "删除": "Delete",
    "库存": "Inventory",
    "产品码": "Product Code",
    "使用时间": "Usage Time",
    "物料码": "Material Code",
    "物料使用量": "Material Usage Quantity",
    "时间范围": "Time Range",
    "开始时间": "Start Time",
    "结束时间": "End Time",
    "请输入关键字": "Please enter keywords",
    "选择产品型号": "Select Product Model",
    "序号": "Serial Number",
    "物料编号": "Material Code",
    "物料名称": "Material Name",
    "物料类型": "Material Type",
    "单位": "Unit",
    "条码规则": "Barcode Rule",
    "备注说明": "Remarks",
    "物料管理": "Material Management",
    "物料记录": "Material Record"
  },
  "OrderManagement": {
    "工单模版": "Order Template",
    "开始成功": "Start successfully",
    "停止成功": "Stop successfully",
    "生产状态": "Product Status",
    "未生产": "no Production",
    "开始": "Start",
    "停止": "Stop",
    "已更新": "Has been updated",
    "全部": "All",
    "导出": "Export",
    "工单暂停后,已上线产品会继续生产,是否确认暂停工单?": "After the work order is suspended, the products that have already been launched will continue to be produced. Are you sure you want to suspend the work order?",
    "删除成功": "Delete success",
    "撤销成功": "Revocation successful",
    "是否确认完成工单?": "Are you sure to complete the work order?",
    "编辑工单": "Edit Order",
    "请至少选择一个工单进行操作": "Please select at least one work order for operation",
    "工单删除后不可恢复,是否确认删除": "The work order cannot be restored after deletion. Are you sure to delete it",
    "工单撤销后,状态变为初始待激活状态;是否确认撤销工单?": "After the work order is cancelled, the status changes to the initial pending activation state; Are you sure to cancel the work order?",
    "不限": "No limit",
    "创建工单": "Create Order",
    "请输入": "Please Enter",
    "请选择一个工单进行操作": "Please select order only a data of action",
    "未激活": "Not activated",
    "已暂停": "Paused",
    "待生产": "To be produced",
    "已完成": "Completed",
    "已结束": "Ended",
    "排序": "Sort",
    "工单生产进度": "Work Order Production Progress",
    "工序序号": "Process Sequence Number",
    "工艺路线版本": "Process Route Version",
    "工艺路线": "Process Route",
    "工序标准文本码": "Process Standard Text Code",
    "工序名称": "Process Name",
    "前一工序文本码": "Previous Process Text Code",
    "后一工序文本码": "Next Process Text Code",
    "对应主工艺路线": "Corresponding Main Process Route",
    "BOM编号": "BOM Number",
    "物料描述": "Material Description",
    "数量": "Quantity",
    "重要追溯件": "Important Traceability Parts",
    "所属工序": "Belonging Process",
    "LOT号": "LOT Number",
    "LOT描述": "LOT Description",
    "LOT状态": "LOT Status",
    "LOT类型": "LOT Type",
    "序列号": "Serial Number",
    "导出模板": "Export Template",
    "导入": "Import",
    "下发": "Deliver",
    "激活": "Activate",
    "编辑": "Edit",
    "暂停": "Pause",
    "撤销": "Revoke",
    "完成": "Complete",
    "结束": "Finish",
    "删除": "Delete",
    "生产中": "In Production",
    "已经是第一位,无法再向上调整排序": "It's already in the first position and cannot be adjusted upward any more.",
    "已经是最后一位,无法再向下调整排序": "It's already in the last position and cannot be adjusted downward any more.",
    "获取工单": "Get Work Order",
    "输入订单号或产品LOT ID": "Enter the order number or product LOT ID",
    "结束工单": "Finish Work Order",
    "请填写结束原因": "Please fill in the reason for finishing.",
    "请填写工单结束原因": "Please fill in the reason for the work order to be finished.",
    "工单正在生产,是否强制结束?": "The work order is in production. Do you want to force it to finish?",
    "提示": "Tip",
    "确认": "Confirm",
    "操作成功": "Operation successful",
    "请选择": "Please Select",
    "重要": "Important",
    "非重要": "Unimportant",
    "搜索": "Search",
    "查询": "Query",
    "批次物料清单": "Batch Bill of Materials",
    "条码信息:": "Barcode Information:",
    "上料进度:": "Feeding Progress:",
    "计划开始:": "Planned Start:",
    "计划结束:": "Planned Finish:",
    "物料编号": "Material Code",
    "物料名称": "Material Name",
    "用料工序": "Material Usage Process",
    "用量": "Usage Quantity",
    "上料状态": "Feeding Status",
    "未上料": "Not Fed",
    "已上料": "Fed",
    "取消": "Cancel",
    "确定": "OK",
    "工单备料": "Work Order Material Preparation",
    "激活成功": "Activation Successful",
    "基础信息": "Basic Information",
    "工单号:": "Work Order Number:",
    "产品型号:": "Product Model:",
    "工艺配方:": "Process Formula:",
    "计划数量:": "Planned Quantity:",
    "计划开始时间:": "Planned Start Time:",
    "计划结束时间:": "Planned Finish Time:",
    "字段不能为空": "Field cannot be empty",
    "计划数量请输入正整数": "Please enter a positive integer for the planned quantity.",
    "更新": "Update",
    "新增": "Add",
    "成功": "Successful",
    "是否保存工单设置?": "Do you want to save the work order settings?",
    "新建工单": "Create Work Order",
    "添加条件": "Add Conditions",
    "筛选": "Filter",
    "时间范围:": "Time Range:",
    "产线段": "Production Line Segment",
    "开始时间": "Start Time",
    "结束时间": "End Time",
    "工单号": "Work Order Number",
    "工单来源": "Work Order Source",
    "计划开始时间": "Planned Start Time",
    "计划结束时间": "Planned Finish Time",
    "产品型号": "Product Model",
    "工艺配方": "Process Formula",
    "计划数量": "Planned Quantity",
    "投产数量": "Production Quantity",
    "合格数": "Qualified Quantity",
    "班次": "Shift",
    "实际开始时间": "Actual Start Time",
    "实际结束时间": "Actual End Time",
    "工单状态": "Work Order Status",
    "订��结束原因": "Order End Reason",
    "工单管理": "Work Order Management",
    "工单记录": "Work Order Records"
  },
  "ProcessConfiguration": {
    "产品信息下发配置": "Product Information Distribution Configuration",
    "产品信息下发": "Product Information Distribution",
    "产品下发信息": "Product Information Distribution",
    "产品信息下发设置": "Product Information Distribution Settings",
    "类型": "Type",
    "下发类型": "Issue Type",
    "下发数据": "Issue Data",
    "数据源": "Data Source",
    "工序段": "Process Section",
    "漏工序配置弹窗": "Missing Process Configuration Pop-up Window",
    "显示隐藏": "Visible or Hidden",
    "基础数据": "Base Data",
    "搜索值": "Search Value",
    "选择的值": "Selected Values",
    "关闭": "Close",
    "确认": "Confirm",
    "选择": "Select",
    "选择工序": "Select Process",
    "更新配置": "Update Configuration",
    "请选择部品": "Please Select Component",
    "请选择产线段": "Please Select Production Line Segment",
    "主产品": "Main Product",
    "请选择一个配置!": "Please select a configuration!",
    "请勿选择多个配置操作!": "Please don't select multiple configuration operations!",
    "请选择工序!": "Please select a process!",
    "请选择产线段!": "",
    "检测配置": "Check Config",
    "更新工序": "Update Process",
    "检测工序": "Check Process",
    "导入成功": "Import successful",
    "漏工序检测配置": "Missing Process Detection Configuration",
    "检测": "Detection",
    "产品码更新配置": "Product Code Update Configuration",
    "更新": "Update",
    "产品状态检测配置": "Product Status Detection Configuration",
    "匹配": "Matching ",
    "部品": "Parts",
    "匹配部品": "Matching Parts",
    "检测部品": "Detection Parts",
    "更新产线段": "Updated Production Line Segment",
    "检测产线段": "Detection Production Line Segment",
    "更新工序名称": "Updated Process Name",
    "检测工序名称": "Detection Process Name",
    "是否删除选中的配置": "Whether to delete the selected configuration",
    "保存成功!": "Saved successfully!",
    "配方名称": "Formula Name",
    "产品状态检测": "Product Status Detection",
    "成功": "Success",
    "序号": "Serial Number",
    "产品型号": "Product Model",
    "请选择所属产品型号": "Please select the affiliated product model",
    "产线段": "Production Line Segment",
    "请选择所属产线段": "Please select the affiliated production line segment",
    "工序编号": "Process Code",
    "工序名称": "Process Name",
    "漏工序检测": "Missing Process Detection",
    "产品码更新": "Product Code Update",
    "添加": "Add",
    "筛选": "Filter",
    "请输入关键字": "Please enter keywords",
    "选择工序配置": "Choose Process Configuration",
    "新增": "Add",
    "编辑": "Edit",
    "请选择一个设置!": "Please select one setting!",
    "请勿选择多个设置操作!": "Please don't select multiple setting operations!",
    "工艺路线首工序不支持配置!": "The first process of the process route does not support configuration!",
    "关联物料": "Related Materials",
    "漏工序检测设置": "Missing Process Detection Settings",
    "产品码更新设置": "Product Code Update Settings",
    "产品状态检测设置": "Product Status Detection Settings",
    "基本": "Basic",
    "信息": "Information",
    "产品型号:": "Product Model:",
    "当前工序:": "Current Process:",
    "配置": "Configuration",
    "删除": "Delete",
    "过程配置": "Process Configuration",
    "过程设置": "Process Settings"
  },
  "ProcessManagement": {
    "物料参数名": "Material Parameter Name",
    "参数传递": "Params Transfer",
    "参数名称": "Parameter Name",
    "触发信号": "Trigger Signal",
    "初始变量": "Initial Variable",
    "目标变量": "Target Variable",
    "传递结果": "Transfer Result",
    "物料检测": "Material inspection",
    "工位编号": "WorkStation code",
    "请输入工位编号": "Please Enter WorkStation code",
    "根据当前的产品配方关联的BOM表预设的用量进行扣减": "Deduct based on the preset usage of the BOM table associated with the current product formula",
    "进站、出站的交互类型只能选择一个,请检查!": "Only one interaction type of entry and exit can be selected. Please check!",
    "暂无数据": "No data",
    "请选择": "Please select",
    "工序列表": "WorkSection Report",
    "工位列表": "Workstations Report",
    "详情": "details",
    "筛选": "Filter",
    "添加条件": "Add Condition",
    "添加工序": "Add WorkSection",
    "工序设置": "WorkSection Settings",
    "分组条件": "Group Condition",
    "所属产线段": "Belonging production line segment",
    "请选择所属产线段": "Please select Belonging production line segment",
    "关联流程": "Associated Flow",
    "请选择关联流程": "Please select Associated Flow",
    "分组": "Group",
    "导入": "Import",
    "导出": "Export",
    "请输入": "Please enter",
    "请输入关键字": "Please enter keywords",
    "序号": "Number",
    "工序名称": "WorkSection Name",
    "工序编号": "WorkSection Number",
    "工位名称": "Workstation Name",
    "所属工序": "Belonging WorkSection",
    "请选择所属工序": "Please select Belonging WorkSection",
    "看板IP": "Dashboard IP",
    "SOP信号": "SOP Signal",
    "更新码变量": "Update code variable",
    "备注": "Remark",
    "批量配置": "Batch configuration",
    "参数配置": "Parameter configuration",
    "支持配置产线产品条码与唯一料的装配绑定关系": "Support configuration production line product barcode and unique material assembly binding relationship",
    "物料产品关联工序": "Material product assembly work section",
    "进站结果值配置": "Entry station result value configuration",
    "工序结果值配置": "WorkSection result value configuration",
    "补充说明映射": "Supplementary description mapping relationship",
    "关联条码生成规则": "Associated barcode generation rule",
    "条码名称": "Barcode name",
    "流程名称": "Flow name",
    "选择": "Select",
    "关联物料": "Associated material",
    "关键字": "Keyword",
    "参数信号配置": "Parameter signal configuration",
    "导入成功": "Import success",
    "导出成功": "Export success",
    "功能配置": "Function configuration",
    "采集参数": "Collection parameter",
    "配方参数": "Formula parameter",
    "不良原因": "Defect reason",
    "物料参数": "Material parameter",
    "展开工序详情": "Expand work section details",
    "向上添加工序": "Add work section upwards",
    "向下添加工序": "Add work section downwards",
    "创建工序副本": "Create work section copy",
    "创建副本成功": "Create copy success",
    "删除工序": "Delete work section",
    "是否删除": "Are you sure to delete",
    "删除成功": "Delete success",
    "工序": "WorkSection",
    "导入失败": "Import fail",
    "导入文件格式不正确,请导入.xlsx/.xls与.csv格式的文件": "Import file format is incorrect, please import .xlsx/.xls and .csv format files",
    "请输入工序名称": "Please enter workSection name",
    "请选择产线段": "Please select production line segment",
    "物料名称": "Material name",
    "物料类型": "Material type",
    "参数名": "Parameter name",
    "参数描述": "Parameter description",
    "当前工序数据未保存,是否确认关闭?": "Current work section data has not been saved, do you want to close?",
    "保存成功,注意重启流程服务!": "Save success, please restart the flow service!",
    "产线段": "Production line segment",
    "绑定唯一料": "Binding unique material",
    "进站结果": "Entry station result",
    "出站结果": "Exit station result",
    "下发值": "Issued value",
    "原始值": "Original value",
    "映射值": "Mapping value",
    "保存成功": "Save success",
    "展开工位详情": "Expand workstation details",
    "向上添加工位": "Add workstation upwards",
    "向下添加工位": "Add workstation downwards",
    "添加工位": "Add Workstation",
    "创建工位副本": "Create workstation copy",
    "创建工位副本成功": "Create workstation copy success",
    "删除工位": "Delete workstation",
    "工位": "Workstation",
    "当前工位数据未保存,是否确认关闭?": "Current workstation data has not been saved, do you want to close?",
    "请输入工位名称": "Please enter workstation name",
    "请输入工序编号": "Please enter workSection Number",
    "不能为空或空白字符!": "Cannot be empty or blank characters!",
    "看板IP地址": "Dashboard IP address",
    "请输入看板IP地址": "Please enter dashboard IP address",
    "请选择更新码": "Please select update code",
    "更新码": "Update code",
    "请选择SOP信号": "Please select SOP signal",
    "物料检验信号": "Material inspection signal",
    "物料条码变量": "Material barcode variable",
    "物料校验结果": "Material check result",
    "绑定物料": "Binding material",
    "物料条码信息缓存变量": "Material barcode information cache variable",
    "不良品原因名称": "Defect reason name",
    "判断值": "Judgment value",
    "不良品原因变量": "Defect reason variable",
    "功能名称": "Function name",
    "所属流程": "Belonging flow",
    "功能描述": "Function description",
    "功能选项": "Function option",
    "采集变量": "Collection variable",
    "下发关联变量": "Issued related variable",
    "监听关联变量": "Listen related variable",
    "功能字段": "Function field",
    "描述": "Description",
    "变量规则": "Variable rule",
    "物料编号": "Material number",
    "关联工序": "Related workSection",
    "单位": "Unit",
    "规则类型": "Rule type",
    "条码段组成": "Barcode segment composition",
    "条码示例": "Barcode example",
    "更新时间": "Update time",
    "校验类型": "Check type",
    "校验条码": "Check barcode",
    "交互类型": "Interaction type",
    "功能项": "Function item",
    "工序列表-列表": "WorkSection Report-List",
    "工位-列表": "Workstations Report-List",
    "工序列表-添加": "WorkSection Report-Add",
    "工序列表-设置": "WorkSection Report-Settings",
    "工序列表-过滤": "WorkSection Report-Filter",
    "工序列表-分组": "WorkSection Report-Group",
    "工序列表-导入": "WorkSection Report-Import",
    "工序列表-输出": "WorkSection Report-Export",
    "工位列表-添加": "Workstations Report-Add",
    "工位列表-批量配置": "Workstations Report-Batch Settings",
    "工位列表-过滤": "Workstations Report-Filter",
    "工位列表-分组": "Workstations Report-Group",
    "工位列表-导入": "Workstations Report-Import",
    "工位列表-输出": "Workstations Report-Export",
    "确定": "Confirm",
    "查询": "search",
    "确认": "Confirm",
    "取消": "Cancel",
    "追溯报表": "Traceability report",
    "报表配置": "Report configuration",
    "共": "Total",
    "页": "Pages",
    "当前第": "Current",
    "每页": "Per Page",
    "条记录": "Records",
    "第": "th",
    "操作": "Operation",
    "异常原因": "Abnormal reason",
    "结果说明": "Result Explanation",
    "物料扣减信号": "Material Deduction Signal",
    "物料条码": "Material Barcode",
    "物料用量提供方式": "Material Usage Provision Method",
    "设备提供": "Provided by Equipment",
    "BOM提供": "Provided by BOM",
    "物料使用量": "Material Usage Quantity",
    "扣减结果": "Deduction Result",
    "物料扣减": "Material Deduction",
    "工序类型": "Process Type",
    "请选择工序类型": "Please select the process type",
    "运行状态": "Running State",
    "请选择运行状态": "Please select the running state",
    "空闲状态,工位没有进行中的工单、任务": "Idle state, there are no ongoing work orders or tasks at the station",
    "生产状态,存在正常生产的工单": "Production state, there are normal production work orders",
    "点检状态,存在点检的任务": "Inspection state, there are inspection tasks"
  },
  "ProductionTracking": {
    "生产追踪数据": "Production Tracking Data",
    "全部": "All",
    "生产跟踪": "Production Tracking",
    "追溯": "Traceability",
    "产品型号": "Product Model",
    "请选择": "Please Select",
    "工序": "Process"
  },
  "ProductManagement": {
    "暂无数据": "No data",
    "产品管理": "Product management",
    "添加": "Add",
    "编辑": "Edit",
    "导入": "Import",
    "导出": "Export",
    "SOP管理": "SOP management",
    "SOP配置": "SOP configuration",
    "删除": "Delete",
    "请输入产品名称、产品型号、和产品简码": "Enter product name,model,code",
    "序号": "Serial number",
    "产品名称": "Product name",
    "产品型号": "Product model",
    "产品简号": "Product code",
    "配方名称": "Recipe name",
    "工艺路线": "Process route",
    "备注": "Remark",
    "预览": "Preview",
    "添加本地文件": "Add local file",
    "拖拽至这里上传": "Drag and drop here to upload",
    "工序段": "Process segment",
    "请选择工序段": "Please select a process segment",
    "全部": "All",
    "工序": "Process",
    "请输入工序名称": "Enter process name",
    "工步管理": "Workstep management",
    "新增": "Add",
    "附件": "Attachment",
    "工步和工步描述为必填": "Workstep and description are required",
    "工步名称不可以重复": "Workstep name cannot be repeated",
    "工步": "Workstep",
    "操作描述": "Operation description",
    "请选择工序": "Please select a process",
    "请选择需要删除的工步": "Please select the workstep to be deleted",
    "工序编号": "Process number",
    "工序名称": "Process name",
    "工序段名称": "Process segment name",
    "操作成功": "Operation successful",
    "产品名称不允许为空!": "Product name cannot be empty!",
    "请输入产品名称": "Please enter product name",
    "产品型号不允许为空!": "Product model cannot be empty!",
    "请输入产品型号": "Please enter product model",
    "请输入产品简号": "Please enter product code",
    "创建成功": "Creation successful",
    "修改成功": "Modification successful",
    "删除成功": "Deletion successful",
    "请选择产品进行删除!": "Please select a product to delete!",
    "产品删除后,相关生产数据无法恢复,是否确认删除?": "Product deletion cannot be recovered, are you sure to delete?",
    "新建产品": "New product",
    "请选择一个产品进行编辑": "Please select a product to edit",
    "请选择一个产品进行操作!": "Please select a product to operate!",
    "仅支持编辑单个产品": "Only support editing a single product",
    "该产品型号正在生产中,不可操作!": "The product model is in production, cannot be operated!",
    "仅支持对一个产品型号进行操作!": "Only support operating on a single product model!",
    "产品正在生产中,不允许编辑!": "Product is in production, cannot be edited!",
    "编辑产品": "Edit product",
    "确定": "Confirm",
    "查询": "search",
    "确认": "Confirm",
    "取消": "Cancel",
    "追溯报表": "Traceability report",
    "报表配置": "Report configuration",
    "共": "Total",
    "页": "Pages",
    "当前第": "Current",
    "每页": "Per Page",
    "条记录": "Records",
    "第": "th",
    "产品识别码": "Product identification code",
    "请输入产品识别码": "Please enter product identification code"
  },
  "SystemManagement": {
    "年": "Year",
    "月": "Month",
    "周": "Week",
    "日": "Day",
    "追溯报表": "Traceability report",
    "生产数据查询时长": "Production data query duration",
    "导出设置": "Export settings",
    "百分比": "Percentage",
    "计划数量等于投产数量结束": "Planned quantity equals the end of the production quantity",
    "工单开启逻辑": "Work order start logic",
    "按列表顺序排产": "Arrange production according to the list order",
    "工单结束逻辑": "Work order end logic",
    "结束按钮": "End button",
    "开始按钮": "Start button",
    "自动控制": "Automatic control",
    "手动控制": "Manual control",
    "工单控制方式": "Work order control mode",
    "请输入必填项": "Please enter the required items",
    "连接成功": "Connection successful",
    "打印设置": "Print settings",
    "下载": "Download",
    "测试链接": "Test link",
    "复制": "Copy",
    "删除": "Delete",
    "序号": "Serial number",
    "请输入模板路径": "Please enter the template path",
    "模板路径": "Template path",
    "请输入 ip": "Please enter the IP",
    "请输入打印机名称": "Please enter the printer name",
    "打印机名称": "Printer name",
    "请输入": "Please Enter",
    "请输入自定义名称": "Please Enter Custom Name",
    "自定义名称": "Custom name",
    "文本名称": "Text name",
    "系统文本资源,用户可自定义其展示文本": "System text resources, users can customize their display text",
    "文本资源": "Text Resource",
    "工单设置": "Order Settings",
    "文本设置": "Text Settings",
    "更新配置": "Update configuration",
    "产线设置": "Line Settings",
    "产线代码": "Line Code",
    "自定义输入,长度为20字符": "Custom input, length is 20 characters",
    "请输入产线代码": "Please enter the line code",
    "设置产线代码,作为产线的唯一标识代码": "Set the line code as the unique identifier for the line",
    "产线结构": "Line Structure",
    "产线-工序-工位": "Line-Process-Station",
    "产线-产线段(工段)-工序-工位": "Line-Line Segment (Process Segment)-Process-Station",
    "设置产线的层次结构,用于工序的产线建模": "Set the hierarchy of the line for process line modeling",
    "调试模式": "Debug Mode",
    "启用调试模式": "Enable Debug Mode",
    "开": "On",
    "关": "Off",
    "启用后支持工单下发后修改工序配置、工艺配方要求": "Support modifying process configuration and process recipe requirements after the work order is issued",
    "产品管理": "Product Management",
    "SOP配置": "SOP Configuration",
    "禁用": "Disable",
    "启用": "Enable",
    "工艺配方": "Process Recipe",
    "下发方式": "Distribution Method",
    "下发工单联动配方下发": "Distribute recipe along with work order",
    "配方应用页面手动下发": "Manual distribution on recipe application page",
    "工序识别产品时下发配方": "Distribute recipe when the process gets the product",
    "配置工艺配方的下发方式": "Configure the distribution method of the process recipe",
    "功能模块": "Functional Module",
    "工单管理模块": "Order Management Module",
    "产线段定义": "Line Segment Definition",
    "系统设置启用后,支持对产线段定义": "Support line segment definition after system settings are enabled",
    "产线段删除后,引用关系一并删除": "When the line segment is deleted, the reference relationships are deleted together",
    "过程设置": "Process Settings",
    "检测时间范围": "Detection Time Range",
    "配置产品状态检测、漏工序、重码及产品码更新相关业务在追溯报表的数据查询范围": "Configure the data query range for product status detection, missing process, duplicate code, and product code update related business in traceability reports",
    "过程参数": "Process Parameters",
    "返修数据展示": "Rework Data Display",
    "展示所有数据": "Show All Data",
    "展示最新数据": "Show Latest Data",
    "选择返修产品的过程参数展示方式": "Choose the display method of process parameters for reworked products",
    "不良品管理": "Defective Product Management",
    "判定结果选择项": "Judgment Result Options",
    "设备返修": "Equipment Repair",
    "人工返修": "Manual Repair",
    "产品报废": "Product Scrap",
    "NG品流出": "NG Product Outflow",
    "选择不合格品处理的判定结果选项": "Choose judgment result options for defective product handling",
    "产线段不可重复,请检查": "",
    "保存成功": "Save Success",
    "近": "In the past ",
    "天": "days",
    "产线段名称": "Name of production line segment",
    "请输入产线段名称": "Please enter the name of the production line segment",
    "加工产品名称": "Processing product name",
    "请输入加工产品名称": "Please enter the name of the processed product",
    "操作": "operation",
    "通用设置": "General settings",
    "功能设置": "Function settings",
    "基本设置": "Basic settings",
    "不良品设置": "Defective product settings",
    "配方控制": "Formula control",
    "系统设置": "System settings",
    "开启后,产品管理模块,提供SOP管理按钮,可上传维护SOP文件": "After activation, the Product Management module provides an SOP management button for uploading and maintaining SOP files",
    "关闭后,工单模块不可用,所有生产流程不再涉及工单功能": "After deactivation, the Work Order module is unavailable and all production processes no longer involve the work order function",
    "高级设置": "Advanced settings"
  },
  "TraceManagement": {
    "上线时间为总表配置中末工序的记录时间": "The online time is the recording time of the final process in the summary table configuration",
    "部品": "Parts",
    "部品名称": "Parts Name",
    "部品来源工序": "Parts Source Process",
    "请选择解析规则": "Please select the parse rule",
    "导出中,请稍后...": "Exporting, please wait...",
    "时间范围不能超过": "The time range cannot exceed",
    "请输入总表名称": "Please enter the total table name",
    "年": "Year",
    "月": "Month",
    "周": "Week",
    "天": "Day",
    "保存成功": "Save successful",
    "解析规则": "Parse Rule",
    "条码段": "Barcode Segment",
    "追溯": "Trace",
    "追溯报表.xlsx": "Traceability Report.xlsx",
    "工序/总表": "Process/General List",
    "最新加工时间为产品最近加工时间": "The latest processing time is the latest processing time of the product",
    "上线时间为工艺路线首工序的记录时间": "The online time is the recorded time of the first process of the process route",
    "返修判定": "Repair Flag",
    "点检ID": "Inspect ID",
    "点检任务名称": "Inspection task name",
    "物料参数": "Material parameter",
    "选择参数类型": "Select params type",
    "追溯报表": "Traceability Report",
    "报表配置": "Report Configuration",
    "请输入自然数!": "Please enter a natural number!",
    "输入数量大于参数数量,请重新输入": "The input quantity is greater than the parameter quantity. Please enter again.",
    "冻结列数不能包含多级表头,请重新输入": "The frozen column count cannot include multi-level headers. Please enter again.",
    "业务字段配置": "Business Field Configuration",
    "展示配置": "Display Configuration",
    "总表配置": "Overall Table Configuration",
    "保存成功!": "Saved successfully!",
    "保存失败!": "Failed to save!",
    "提示": "Tip",
    "是否删除": "Do you want to delete?",
    "是": "Yes",
    "否": "No",
    "序号": "Serial Number",
    "产品名称": "Product Name",
    "产品型号": "Product Model",
    "备注": "Remarks",
    "暂无数据": "No data available",
    "请勾选复选框!": "Please check the checkbox!",
    "请选择工序!": "Please select a process!",
    "请选择参数!": "Please select parameters!",
    "上限": "Upper Limit",
    "操作": "Operation",
    "修改": "Modify",
    "总表名称": "Overall Table Name",
    "组合工序": "Combined Process",
    "操作时间": "Operation Time",
    "操作人": "Operator",
    "查看": "View",
    "新建": "New",
    "工序段": "Process Segment",
    "工序名称": "Process Name",
    "选择": "Select",
    "删除": "Delete",
    "新建总表": "New Overall Table",
    "修改总表": "Modify Overall Table",
    "共": "Total",
    "页": "Pages",
    "当前第": "Current",
    "每页": "Per Page",
    "条记录": "Records",
    "导出时间范围": "Export Time Range",
    "工序": "Process",
    "参数": "Parameter",
    "上限值": "Upper Limit Value",
    "下限值": "Lower Limit Value",
    "还原": "Restore",
    "工序参数类型": "Process Parameter Type",
    "工序参数": "Process Parameter",
    "产线段名称": "Production Line Segment Name",
    "工序编号": "Process Number",
    "参数类型": "Parameter Type",
    "参数名称": "Parameter Name",
    "采集参数": "Collected Parameters",
    "下发参数": "Issued Parameters",
    "是否合格": "Qualified or Not",
    "时间范围": "Time Range",
    "物料识别码": "Material Identification Code",
    "工单号": "Work Order Number",
    "过程参数曲线": "Process Curve Parameters",
    "导出": "Export",
    "加工数": "Processing Quantity",
    "合格数": "Qualified Quantity",
    "合格率": "Pass Rate",
    "不合格数": "Unqualified Quantity",
    "不合格率": "Failure Rate",
    "冻结列数": "Frozen Column Count",
    "字段名称": "Field Name",
    "数据源": "Datasource",
    "适用型号": "Auto mode",
    "记录时间": "Recording time",
    "添加": "Add",
    "查询": "Search",
    "产品ID": "Product ID",
    "更新码": "Update Code",
    "模糊查询": "Fuzzy Query",
    "精确查询": "Accurate query",
    "全部": "All",
    "导出确认": "Export Confirmation",
    "不限": "No limit",
    "下限": "Lower limit",
    "请输入": "Please enter the content",
    "请选择": "Please Select",
    "请输入搜索": "Please input search",
    "创建成功!": "Create successfully",
    "请勾选两个或两个以上的工序!": "Please check two or more processes!",
    "结束时间不能小于开始时间": "The end time cannot be less than the start time",
    "实时": "Real time",
    "历史": "History",
    "工序来源切换": "Process source switching",
    "工序选择": "Process selection",
    "同步工艺路线": "Synchronous process route",
    "自定义选择": "Custom Selection",
    "过程参数": "Process Parameters",
    "配方参数": "Formula Parameters",
    "物料码": "Material Code",
    "请输入一码": "Please enter the code",
    "上传成功": "Upload successful",
    "请输入查询内容!": "Please enter the query content!",
    "向上插入一行": "Insert a row upward",
    "向下插入一行": "Insert a row downward",
    "导出成功": "Export successful",
    "操作成功": "Operation successful",
    "导入失败,请检查文件数据": "Import failed. Please check the file data",
    "一码": "One code",
    "曲线": "Curve",
    "位移(mm)": "Displacement (mm)",
    "压力(N)": "Pressure (N)",
    "下限:": "Lower limit:",
    "上限:": "Upper limit:",
    "实时:": "Real-time:",
    "结果:": "Result:",
    "实际值:": "Actual value:",
    "设定值:": "Set value:",
    "物料条码:": "Material barcode:",
    "批量导出": "Batch Export",
    "批量导出确认": "Batch Export Confirmation",
    "进行批量导出": "Perform Batch Export",
    "说明:": "Instructions:",
    "1、下述输入条码:需是正确的总成码、执行器码、阀体码、电机码,PCBA码等(产品码或物料码);": "1. The following input barcodes: They need to be correct assembly codes, actuator codes, valve body codes, motor codes, PCBA codes, etc. (product codes or material codes);",
    "2、导入文件格式要求为.xlsx/.xls;": "2. The format of the imported file is required to be.xlsx/.xls;",
    "3、系统会根据输入条码查询相关的加工信息进行导出。": "3. The system will query the relevant processing information according to the input barcodes for export.",
    "输入条码数据:": "Input barcode data:",
    "导入": "Import",
    "一码回溯": "One-Code Traceability",
    "上传MES": "Upload MES",
    "NG工序:": "NG Process:",
    "输入ID:": "Input ID:",
    "产品型号:": "Product Model:",
    "是否合格:": "Whether Qualified:",
    "OK": "Qualified",
    "NG": "Not Qualified",
    "产品ID:": "Product ID:",
    "更新码:": "Update Code:",
    "记录时间:": "Record Time:"
  },
  "QualityManagement": {
    "解绑": "Unbind",
    "不解绑": "Bind",
    "物料处理": "MATERIAL HANDLING",
    "批量操作": "bulk operation",
    "物料解绑": "Unbinding of materials",
    "请输入物料名称": "Please enter the material name",
    "根据所选的返修工序展示": "Display based on the selected repair process",
    "物料名称": "Material Name",
    "物料编号": "Material Code",
    "物料条码": "Material Barcode",
    "物料类型": "Material Type",
    "单位": "Unit",
    "用量": "Dosage",
    "操作": "Operation",
    "请选择需要操作的数据": "Please Need Data",
    "参数下限": "Parameter Down",
    "参数上限": "Parameter Up",
    "参数值": "Parameter Value",
    "参数名称": "Parameter Name",
    "全部": "All",
    "原因未知": "Reason unknown",
    "提示": "Prompt",
    "确定": "Confirm",
    "取消": "Cancel",
    "产品判定": "Product Judgment",
    "基础信息": "Basic Information",
    "暂无数据": "No Data",
    "生产数据": "Production Data",
    "展示该产品在加工过的工序,不良工序以红色标记": "Display the processes that the product has been processed through, and mark the defective processes in red",
    "工序": "Process",
    "记录时间": "Record Time",
    "以判定时间提交": "Submit with the judgment time",
    "不良品处理": "Defective Product Handling",
    "OK": "Qualified",
    "NG": "Not Qualified",
    "数据补充": "Data Supplement:",
    "关闭失败,请先删除已添加工序": "Closing failed. Please delete the added processes first.",
    "判定成功": "Judgment Successful",
    "不良原因配置": "Defective Reason Configuration",
    "请输入关键字": "Please Enter Keywords",
    "删除": "Delete",
    "不良原因不能为空": "Defective reason cannot be empty",
    "保存成功!": "Saved successfully!",
    "保存失败!": "Save failed!",
    "筛选": "Filter",
    "导出": "Export",
    "判定结果": "Judgment Result",
    "是否合格": "Whether Qualified",
    "返修工序": "Repair Process",
    "判定人员": "Judgment Personnel",
    "判定时间": "Judgment Time",
    "判定详情": "Judgment Details",
    "处理说明": "Processing Instructions",
    "时间范围最大跨度为60天": "The maximum time range span is 60 days",
    "产品判定记录.xlsx": "Product Judgment Record.xlsx",
    "添加": "Add",
    "产品型号": "Product Model",
    "判定": "Judge",
    "配置": "Configure",
    "时间范围:": "Time Range:",
    "产品码": "Product Code",
    "工单号": "Work Order Number",
    "请输入": "Please Enter",
    "序号": "Serial Number",
    "不良工序": "Defective Process",
    "不良原因": "Defective Reason",
    "最后记录时间": "Last Record Time",
    "开始时间不能大于结束时间": "The start time cannot be greater than the end time",
    "时间范围最大跨度为90天": "The maximum time range span is 90 days",
    "待办不良品": "Pending Defective Products",
    "产品判定记录": "Product Judgment Record"
  },
  "SopWidgetBox": {
    "请配置业务字段变量": "Please Configture bussiness field variable",
    "成功": "Success",
    "错误": "Error",
    "请输入物料码": "Please Enter Material Code",
    "物料名称": "Material Name",
    "物料编号": "Material Code",
    "物料类型": "Material Type",
    "物料码": "Material Code",
    "参数名称": "Parameter Name",
    "上限": "Upper Limit",
    "下限": "Lower Limit",
    "数值": "Value",
    "请输入数值": "Please Enter Value",
    "已更新": "Has been updated",
    "工序选择": "Process Selection",
    "请选择工序": "Please Select Process",
    "工位选择": "Station Selection",
    "请选择工位": "Please Select Station",
    "请输入": "Please Enter",
    "生产输入": "Production Input",
    "生产控制": "Production Control",
    "对不起,您的浏览器不支持该视频格式": "Sorry, your browser does not support this video format",
    "暂无文件": "No files available",
    "暂无图片": "No pictures available",
    "序号": "Serial Number",
    "工步": "Work Step",
    "操作描述": "Operation Description",
    "状态": "Status"
  },
  "StationBeatAnalysis": {
    "饼图": "Pie chart",
    "工序平均值": "Process average value",
    "分析工序": "Analyze the process",
    "工序加工周期(s)": "Process processing cycle (s)",
    "产品码": "Product Code",
    "班次合计": "Total number of shifts",
    "工序分组": "Process group",
    "工位理论加工周期": "Station theoretical processing cycle",
    "工位详情分析": "Station detail analysis",
    "分析工位": "Analysis station",
    "所有": "All",
    "工位在制品等待情况对比": "Station production waiting comparison",
    "星期一": "Monday",
    "星期二": "Tuesday",
    "星期三": "Wednesday",
    "星期四": "Thursday",
    "星期五": "Friday",
    "星期六": "Saturday",
    "星期日": "Sunday",
    "工位名称": "Station name",
    "工位产量分布及变化幅度": "Station output distribution and change amplitude",
    "工位加工能力对比": "Station processing capability comparison",
    "单位时间产量": "Unit time output",
    "工位平均值": "Station average value",
    "加工结果分组": "Processing result grouping",
    "产品加工详情": "Product processing details",
    "工位运行日志": "Station operation log",
    "单位产品等待时长": "Unit product waiting time",
    "待加工数量": "Number of waiting processing",
    "单位产品加工周期": "Unit product processing cycle",
    "移动极差MR": "Range control chart",
    "发生工位": "Occurrence station",
    "生产班次": "Production shift",
    "进站时间": "Arrival time",
    "出站时间": "Departure time",
    "加工结果": "Processing result",
    "工位加工周期(s)": "Station processing cycle (s)",
    "运行状态": "Running status",
    "开始时间": "Start time",
    "结束时间": "End time",
    "持续时长(s)": "Duration (s)",
    "确认": "Confirm",
    "取消": "Cancel",
    "暂无数据": "No data",
    "共": "Total",
    "页": "Pages",
    "当前第": "Current",
    "每页": "Per Page",
    "条记录": "Records",
    "第": "th",
    "操作": "Operation",
    "产量": "Production Volume",
    "时间分组": "Time Grouping",
    "产量统计": "Production Statistics",
    "工序名称": "Process Name",
    "保存成功": "Saved successfully",
    "星期": "Week",
    "工序产量分布及变化幅度": "Distribution and Magnitude of Changes in Process Output",
    "同比升降幅": "Year-on-year Increase/Decrease",
    "环比升降幅": "Sequential Increase/Decrease",
    "合格数量": "Qualified Quantity",
    "不良数量": "Unqualified Quantity",
    "产量:pcs": "Production: pcs",
    "幅度:": "Amplitude:",
    "班次分组": "Shift Grouping",
    "工序加工能力对比": "Comparison of Workstation Processing Capabilities",
    "单位时间产量:pcs/h": "Production per Unit Time: pcs/h",
    "理论加工周期": "Theoretical Processing Cycle",
    "实际加工周期": "Actual Processing Cycle",
    "单位产品加工周期:s": "Unit Product Processing Cycle: s",
    "工序在制品等待情况对比": "Comparison of Work-in-Progress Waiting Status in Processes",
    "单位产品等待时长:s": "Unit Product Waiting Time: s",
    "待加工数量:pcs": "Quantity to be Processed: pcs",
    "移动极差控制图": "Moving Range Control Chart",
    "UCL": "Upper Control Limit",
    "CL": "Center Line",
    "LCL": "Lower Control Limit",
    "频数": "Frequency",
    "节拍分析": "Beat Analysis",
    "产线设置": "Production Line Settings",
    "生产日期": "Production Date",
    "目标产量": "Target Production",
    "请输入": "Please Enter",
    "保存": "Save",
    "工序理论加工周期": "Theoretical Processing Cycle of Processes",
    "工序详情分析": "Process Detail Analysis",
    "产线整体概况": "Overall Production Line Overview",
    "当日产量(pcs)": "Daily Production (pcs)",
    "上周同比": "Year-on-year Comparison with Last Week",
    "昨日环比": "Sequential Comparison with Yesterday",
    "单位时间产量(pcs/h)": "Production per Unit Time (pcs/h)",
    "平均生产节拍(s)": "Average Production Rhythm (s)",
    "当日完成率": "Daily Completion Rate",
    "产品加工周期分析": "Product Processing Cycle Analysis",
    "样本数": "Sample Size",
    "平均值": "Average Value",
    "最大值": "Maximum Value",
    "最小值": "Minimum Value",
    "极差值": "Range Value",
    "频数分布直方图": "Frequency Distribution Histogram",
    "查询时间间隔不能超过30天": "The query time interval cannot exceed 30 days",
    "生成中": "Generating",
    "不合格品统计": "Unqualified Products Statistics",
    "帕累托图": "Pareto Chart",
    "产线段": "Production Line Segment",
    "产品型号": "Product Model",
    "查询日期": "Query Date",
    "实时模式(定时每分钟刷新当日数据)": "Real-time mode (refresh )",
    "导出分析报告": "Export Report",
    "产品不合格数": "Number of Unqualified Products",
    "产品不合格率": "Unqualified Rate of Products",
    "产品主要不合格原因": "Main Unqualified Reasons for Products",
    "工序": "Process",
    "工位": "Workstation",
    "班次": "Shift",
    "图表": "Chart",
    "柱形图": "Bar Chart",
    "折线图": "Line Chart",
    "柱形折线图": "Bar-Line Chart",
    "返回": "Back",
    "不合格原因分布": "Distribution of Unqualified Reasons",
    "全部": "All"
  },
  "LabelManagement": {
    "产品名称": "Product Name",
    "产品ID": "Product ID",
    "产品型号": "Product Model",
    "工序": "Process",
    "工位": "Workstation",
    "序号": "Serial Number",
    "标签名称": "Label Name",
    "适应产品名称": "Product Name",
    "操作用户": "Operating user",
    "备注": "Remark",
    "添加": "Add",
    "编辑": "Edit",
    "创建副本": "Create a copy",
    "删除": "Delete",
    "请输入关键字": "Please Enter Keywords",
    "使用产品": "Use Product",
    "重新打印": "Reload Print",
    "时间范围": "Time Range",
    "开始时间": "Start Time",
    "结束时间": "End Time",
    "打印时间": "Print Time",
    "打印模板": "Print Template",
    "打印结果": "Print Result",
    "添加标签": "Add Label",
    "数据映射": "Data Mapping",
    "动态字段": "Dynamic Field",
    "数据类型": "Data Type",
    "数据源": "Data Source",
    "工位名称": "Workstation Name",
    "标签模板": "Label Template",
    "打印次数": "Print Count",
    "选择": "Select",
    "适用产品": "Product Name",
    "适用工位": "Work Station",
    "请选择": "Please Select",
    "请选择适用产品": "Please Product",
    "请输入标签名称": "Please Enter Label Name",
    "工位选择": "Station Selection",
    "请选择标签模板": "Please Select Label Template",
    "变量": "Variable",
    "字段": "Field",
    "条码生成规则": "Barcode generation rules",
    "流程上下文": "Flow Context",
    "标识": "FLag",
    "生成规则": "generation rules",
    "下发变量": "Issue Variable",
    "规则类型": "Rule type",
    "条码段组成": "Barcode Segment Composition",
    "条码示例": "Barcode example",
    "更新时间": "Update Time",
    "适用产品名称": "Product Name",
    "请输入备注": "Please enter the remarks",
    "请选择打印机": "Please Select Print",
    "打印模版": "Print Template",
    "请选择打印记录": "Please Select Print Record",
    "适用工位不能为空": "The applicable workstation cannot be empty",
    "适用工位允许为空": "The applicable workstation cannot be empty",
    "数据映射不能为空": "Data mapping cannot be empty",
    "请选择适用工位": "Please select the applicable workstation",
    "复制": "Copy",
    "删除数据": "Delete Data",
    "请选择标签": "Please Select Label",
    "编辑标签": "Edit Label",
    "适用产品不允许为空": "The applicable product cannot be empty",
    "标签名称不允许为空": "The label name cannot be empty",
    "适用工位不允许为空": "The applicable workstation cannot be empty",
    "打印机": "Printer",
    "创建副本成功": "Copy creation successful",
    "确认删除选中标签?": "Confirm deletion of selected label?",
    "打印成功": "Print successful",
    "请输入打印次数": "Please enter the number of prints",
    "仅支持操作单条数据": "Only single data operations are supported",
    "保存成功": "Save successful",
    "删除成功": "Delete successful"
  },
  "WMS-WMSMissionManagement": {
    "任务管理": "Mission Management",
    "创建时间": "CreateTime",
    "筛选": "Filter",
    "导出": "Export",
    "请输入关键字": "Please Enter Keywords",
    "入库": "Inbound",
    "出库": "Outbound",
    "移位": "Transposing",
    "普通入库": "Ordinary storage",
    "普通出库": "Ordinary outbound",
    "空托入库": "Empty pallet storage",
    "空托出库": "Empty palletized outbound",
    "重分配": "redistribution",
    "普通移位": "Ordinary shift"
  },
  "PalletManagement": {
    "导入成功": "Import successful",
    "解绑成功": "Unbinding successful",
    "绑定成功": "Binding successful",
    "保存成功": "Save successful",
    "托盘": "Pallet",
    "导出托盘": "Export Pallet",
    "导出": "Export",
    "导入失败": "Import Fail",
    "导入文件格式不正确,请导入.xlsx/.xls与.csv格式的文件": "Import file format is incorrect, please import .xlsx/.xls and .csv format files",
    "请选择托盘": "Please Select Pallet",
    "确认删除选中托盘?": "Confirm deletion of selected pallet?",
    "删除成功": "Delete successful",
    "删除失败": "Delete failed",
    "删除中": "Deleting",
    "删除托盘": "Delete Pallet",
    "托盘管理": "Pallet Management",
    "托盘编号": "Pallet Number",
    "托盘类型": "Pallet Type",
    "操作": "Operation",
    "状态": "Status",
    "创建时间": "Creation Time",
    "更新时间": "Update Time",
    "仅支持操作单条数据": "Only single data operations are supported",
    "编辑托盘": "Edit Pallet",
    "托盘已使用,请重新选择": "Pallet has been used, please select again",
    "托盘绑定": "Pallet Binding",
    "托盘未使用,请重新选择": "Pallet has not been used, please select again",
    "是否确认解除绑定?": "Confirm pallet binding?",
    "解除绑定成功": "Pallet binding released successfully",
    "使用中": "In Use",
    "未使用": "Not Used",
    "添加": "Add",
    "绑定": "Bind",
    "解绑": "Unbind",
    "自动绑定": "Auto Bind",
    "自动解绑": "Auto Unbind",
    "手动绑定": "Manual Bind",
    "手动解绑": "Manual Unbind",
    "删除": "Delete",
    "托盘绑定记录": "Pallet Binding Record",
    "请输入关键字": "Please Enter Keywords",
    "序号": "Serial Number",
    "托盘码": "Pallet Code",
    "当前绑定产品码": "Current Binding Product Code",
    "备注": "Remark",
    "添加条件": "Add Condition",
    "时间范围": "Time Range",
    "开始时间": "Start Time",
    "结束时间": "End Time",
    "筛选": "Filter",
    "时间范围最大跨度为60天": "The maximum time range span is 60 days",
    "托盘绑定记录.xlsx": "Pallet Binding Record.xlsx",
    "产品码": "Product Code",
    "动作": "Action",
    "工序": "Process",
    "时间": "Time",
    "请选择动作": "Please Select Action",
    "请输入工序": "Please Enter Process",
    "请输入": "Please Enter",
    "请选择": "Please Select",
    "导入": "Import",
    "编辑": "Edit",
    "添加托盘": "Add Pallet",
    "请输入托盘码": "Please Enter Pallet Code",
    "请输入备注信息": "Please Enter Remark Information",
    "请输入产品码": "Please Enter Product Code",
    "产品码不允许为空": "Product code cannot be empty",
    "托盘码不允许为空": "Tray code cannot be empty",
    "请选择状态": "Please select Status"
  }
}