自动化立体仓库 - WMS系统
lty
3 天以前 8e943b7104561c3b14cf223016698709c5ade4b5
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
{
    "_comment_common":  "Common Table Columns",
    "_comment_home":  "Home Tab Bar",
    "access_address":  "Access Address",
    "account":  "Account",
    "action":  "Action",
    "actual_quantity":  "Actual Qty",
    "add":  "Add",
    "add_detail":  "Add Detail",
    "add_detail_title":  "Add Detail",
    "add_inventory":  "Add Inventory",
    "add_order":  "Add Order",
    "add_project":  "Add Project",
    "add_time":  "Add Time",
    "add_user":  "Add User",
    "address":  "Address",
    "adjust_inventory":  "Adjust Inventory",
    "age_days":  "Inventory Age(Days)",
    "agv":  "AGV",
    "area":  "Area",
    "area_code":  "ID",
    "area_id":  "Zone ID",
    "area_memo":  "Zone Remark",
    "area_name":  "Zone Name",
    "assign_success":  "Assignment successful",
    "assign_zone":  "Assign Zone",
    "assign_zone_and_color":  "Assign Zone and Color",
    "autoing":  "Auto",
    "barcode":  "Barcode",
    "barcode_label":  "Barcode:",
    "basic_info":  "Basic Information",
    "batch":  "Batch",
    "batch_edit":  "Batch (Edit)",
    "batch_managed":  "Batch Managed",
    "batch_modify":  "Batch Modify",
    "batch_no":  "Batch No.",
    "batch_optional":  "Batch (Optional)",
    "batch_outbound":  "Batch Outbound",
    "batch_print":  "Batch Print",
    "batch_print_count":  "Batch Print [Count: {{count}}]",
    "bay":  "Bay",
    "big_location":  "Big Location",
    "box_size":  "Box Size",
    "brand":  "Brand",
    "can_in":  "Can In",
    "can_out":  "Can Out",
    "cancel":  "Cancel",
    "cancel_selection":  "Cancel Selection",
    "cannot_exceed_original_quantity":  "Cannot exceed original quantity",
    "category":  "Category",
    "category_cannot_be_empty":  "Category cannot be empty",
    "change_qty":  "Change Qty",
    "check_outbound":  "Check Outbound",
    "check_station":  "Check Station:",
    "classification":  "Type",
    "classification_name":  "Category Name",
    "client_ip":  "Client IP",
    "close":  "Close",
    "code":  {
                 "copy":  "Copy Code",
                 "copied":  "Copied",
                 "copyError":  "Copy Failed",
                 "maximize":  "Maximize",
                 "restore":  "Restore",
                 "preview":  "Preview"
             },
    "color":  "Color",
    "color_updated":  "Color updated",
    "colorpicker":  {
                        "clear":  "Clear",
                        "confirm":  "OK"
                    },
    "complete":  "Complete",
    "configuration":  "Configuration",
    "confirm":  "OK",
    "confirm_adjust_location_detail":  "Are you sure to adjust details for location?",
    "confirm_cancel_erp_order":  "Current task linked to ERP sales order. Cancellation will regenerate outbound task. Continue?",
    "confirm_cancel_work_order":  "Confirm cancel this work order?",
    "confirm_complete_work_order":  "Confirm complete this work order?",
    "confirm_decrease_priority":  "Confirm decrease priority?",
    "confirm_delete":  "Are you sure to delete?",
    "confirm_delete_data":  "Confirm Delete Record",
    "confirm_delete_doc_type":  "Are you sure you want to delete this document type?",
    "confirm_delete_prefix":  "Are you sure to delete ",
    "confirm_delete_selected":  "Confirm delete selected data?",
    "confirm_delete_selected_data":  "Are you sure you want to delete the selected data?",
    "confirm_delete_suffix":  " record(s)?",
    "confirm_empty_op_exception":  "Empty operation exception! Continue?",
    "confirm_export":  "Confirm export to Excel?",
    "confirm_export_excel":  "Confirm Export to Excel",
    "confirm_extract":  "Extract",
    "confirm_generate_task":  "Confirm Task Generation",
    "confirm_increase_priority":  "Confirm increase priority?",
    "confirm_init_dev":  "Are you sure you want to initialize [{{devNo}}]?",
    "confirm_manual_cancel":  "Are you sure to cancel manually?",
    "confirm_manual_complete":  "Are you sure to complete manually?",
    "confirm_outbound":  "Confirm Outbound",
    "confirm_pick_work_order":  "Pick inbound this work order?",
    "confirm_pre_existing_exception":  "Pre-existing exception occurred. To re-inbound, ensure cargo is at crane outbound station!",
    "confirm_save_change":  "Save changes?",
    "confirm_sync_file":  "Confirm sync file [{{filename}}]?",
    "count":  "Count",
    "crane":  "Crane",
    "crane_amount":  "Crane Amount",
    "crane_end_time":  "Crane End Time",
    "crane_no":  "Crane No",
    "crane_start_time":  "Crane Start Time",
    "create_detail":  "Creation Detail",
    "create_time":  "Create Time",
    "creator":  "Creator",
    "creator_detail":  "Creator Details",
    "current_item_no":  "Current Item No.",
    "current_retrieve_location":  "Current location",
    "current_workflow_detail":  "Material details for current workflow",
    "data_status":  "Data Status",
    "data_sync":  "Sync Data",
    "date":  "Date",
    "decrease_priority":  "Decrease Priority",
    "delete":  "Delete",
    "delete_keep":  "Delete|Keep",
    "delete_location":  "Delete Location",
    "detail":  "Detail",
    "detail_modify_qty_invalid":  "Invalid detail quantity",
    "dev_desc":  "Device Desc",
    "device_code":  "Device Code",
    "device_type":  "Device Type",
    "disable_selection":  "Disable Selection",
    "disabled_loc_qty":  "Disabled Locations",
    "display_mode":  "Display Mode",
    "doc_id":  "Type ID",
    "doc_name":  "Type Name",
    "doc_type":  "Document Type",
    "doc_type_management":  "Document Type Management",
    "dropdown":  {
                     "noData":  "No Data"
                 },
    "edit":  "Edit",
    "email":  "Email",
    "empty_container_qty":  "Empty Containers",
    "empty_loc_qty":  "Empty Locations",
    "empty_op":  "Empty Op",
    "empty_pallet":  "Empty Pallet",
    "empty_pallet_inbound_station":  "EmptyPallet InStation",
    "empty_pallet_outbound_station":  "EmptyPallet OutStation:",
    "enable_selection":  "Enable Selection",
    "enter_address":  "Enter Address",
    "enter_device_code":  "Enter Device Code",
    "enter_type_name":  "Enter Type Name",
    "err_content":  "Error Content",
    "error_record_time":  "Error Record Time",
    "exception_mark":  "Exception Mark",
    "exit":  "Exit",
    "export":  "Export",
    "export_all":  "Export All",
    "export_excel":  "Export Excel",
    "exporting":  "Exporting...",
    "extract":  "Extract",
    "extract_delivery_content":  "Extract Delivery Content",
    "extract_inventory":  "Extract Inventory",
    "extract_inventory_item":  "Extract Inventory Item",
    "extract_item":  "Extract Item",
    "factory":  "Factory",
    "fetch_zone_list_failed":  "Failed to fetch zone list",
    "finish_qty":  "Finish Qty",
    "flat_whs":  "Flat Whs",
    "flow":  {
                 "loadMore":  "Load More",
                 "noMore":  "No More"
             },
    "form":  {
                 "select":  {
                                "noData":  "No Data",
                                "noMatch":  "No Match",
                                "placeholder":  "Select"
                            },
                 "validateMessages":  {
                                          "required":  "Required",
                                          "phone":  "Invalid Phone",
                                          "email":  "Invalid Email",
                                          "url":  "Invalid URL",
                                          "number":  "Numbers Only",
                                          "date":  "Invalid Date",
                                          "identity":  "Invalid ID"
                                      },
                 "verifyErrorPromptTitle":  "Prompt"
             },
    "form_required":  "This field is required",
    "four_way_vehicle":  "Four-way Vehicle",
    "full_pallet":  "Full Pallet",
    "full_pallet_out":  "Full Pallet Out",
    "generating_outbound_task":  "Generating outbound task...",
    "gross_weight_box":  "Gross Weight/Box",
    "group":  "Group",
    "handling_mode":  "Handling Mode",
    "handling_mode_manual_cancel":  "Manual Cancel",
    "handling_mode_manual_complete":  "Manual Complete",
    "hazardous":  "Hazardous",
    "heavy_location":  "Heavy Location",
    "high_location":  "High Location",
    "high_low":  "High/Low",
    "high_low_type":  "High/Low Type",
    "home":  "Home",
    "id":  "ID",
    "id_colon":  "ID:",
    "image":  "Image",
    "immediate_outbound":  "Immediate Outbound",
    "import_excel":  "Import Excel",
    "in_enable":  "In Enable",
    "in_temp_store":  "In Temp Store",
    "inbound":  "Inbound",
    "inbound_notice_no":  "Inbound Notice No",
    "inbound_started_success_target_loc":  "Inbound started successfully, target location: ",
    "inbound_station":  "Inbound Station:",
    "increase_priority":  "Increase Priority",
    "info":  "Info",
    "init":  "Init",
    "init_location":  "Initialize Location",
    "init_station":  "Initialize Station",
    "init_station_prompt":  "Initialize stations, please proceed with caution!",
    "input_order_no":  "Input Order No",
    "input_placeholder":  "Please input...",
    "input_qty_cannot_less_than_working":  "Input quantity cannot be less than working quantity",
    "inspection_reqd":  "Inspection Reqd",
    "inventory_quantity":  "Inventory Qty",
    "io_status":  "Transaction Status",
    "io_type_1":  "1.Inbound",
    "io_type_10":  "10.Empty Pallet Inbound",
    "io_type_101":  "101.Outbound",
    "io_type_103":  "103.Picking Outbound",
    "io_type_104":  "104.Merge Outbound",
    "io_type_107":  "107.Cycle Count Outbound",
    "io_type_11":  "11.Bin Transfer",
    "io_type_110":  "110.Empty Pallet Outbound",
    "io_type_3":  "3.Station to Station",
    "io_type_53":  "53.Picking Re-inbound",
    "io_type_54":  "54.Merge Re-inbound",
    "io_type_57":  "57.Cycle Count Re-inbound",
    "io_type_6":  "6.Exit on Device",
    "io_type_code":  "Transaction Type Code",
    "io_type_desc":  "Transaction Type Description",
    "item":  "Item",
    "item_code":  "Item Code",
    "item_count":  "Item Count",
    "item_name":  "Item Name",
    "item_no":  "Item No",
    "item_spec":  "Item Spec",
    "items_per_page":  " items/page",
    "jump_to":  "Go to ",
    "language":  "Language",
    "laydate":  {
                    "months":  [
                                   "Jan",
                                   "Feb",
                                   "Mar",
                                   "Apr",
                                   "May",
                                   "Jun",
                                   "Jul",
                                   "Aug",
                                   "Sep",
                                   "Oct",
                                   "Nov",
                                   "Dec"
                               ],
                    "weeks":  [
                                  "Sun",
                                  "Mon",
                                  "Tue",
                                  "Wed",
                                  "Thu",
                                  "Fri",
                                  "Sat"
                              ],
                    "time":  [
                                 "Hr",
                                 "Min",
                                 "Sec"
                             ],
                    "literal":  {
                                    "year":  "Year"
                                },
                    "selectDate":  "Select Date",
                    "selectTime":  "Select Time",
                    "startTime":  "Start Time",
                    "endTime":  "End Time",
                    "tools":  {
                                  "confirm":  "OK",
                                  "clear":  "Clear",
                                  "now":  "Now",
                                  "reset":  "Reset"
                              },
                    "rangeOrderPrompt":  "End time cannot be earlier than start time",
                    "invalidDatePrompt":  "Invalid date or time",
                    "formatErrorPrompt":  "Date format error, must follow: {format}",
                    "autoResetPrompt":  "Auto reset",
                    "preview":  "Preview"
                },
    "layer":  {
                  "btn":  [
                              "OK",
                              "Cancel"
                          ],
                  "title":  "Information",
                  "confirm":  "OK",
                  "cancel":  "Cancel",
                  "defaultTitle":  "Info",
                  "prompt":  {
                                 "InputLengthPrompt":  "Max {length} chars"
                             },
                  "photos":  {
                                 "noData":  "No photos",
                                 "tools":  {
                                               "rotate":  "Rotate",
                                               "scaleX":  "Flip H",
                                               "zoomIn":  "Zoom In",
                                               "zoomOut":  "Zoom Out",
                                               "reset":  "Reset",
                                               "close":  "Close"
                                           },
                                 "viewPicture":  "View Original",
                                 "urlError":  {
                                                  "prompt":  "Image error, continue?",
                                                  "confirm":  "Next",
                                                  "cancel":  "Exit"
                                              }
                             }
              },
    "laypage":  {
                    "prev":  "Prev",
                    "next":  "Next",
                    "first":  "First",
                    "last":  "Last",
                    "total":  "Total {total}",
                    "pagesize":  "/page",
                    "goto":  "Go to",
                    "page":  "Page",
                    "confirm":  "OK"
                },
    "leader":  "Leader",
    "leader_label":  "Leader",
    "level":  "Level",
    "license_validity_prefix":  "Temporary license valid for: ",
    "license_validity_suffix":  " days",
    "light_location":  "Light Location",
    "line_item":  "Line Item",
    "load_failed":  "Load failed",
    "loading":  "Loaded",
    "loc_status_code":  "Location Status Code",
    "loc_status_D":  "D.Empty Bin/Pallet",
    "loc_status_desc":  "Location Status Description",
    "loc_status_F":  "F.In Stock",
    "loc_status_G":  "G.Aisle",
    "loc_status_O":  "O.Empty Location",
    "loc_status_P":  "P.Picking/Counting/Merging Outbound",
    "loc_status_Q":  "Q.Picking/Counting/Merging Re-inbound",
    "loc_status_R":  "R.Outbound Reserved",
    "loc_status_S":  "S.Inbound Reserved",
    "loc_status_X":  "X.Disabled",
    "loc_status_Y":  "Y.Merged",
    "location":  "Location",
    "location_detail":  "Location Detail",
    "location_no":  "Location No",
    "location_status":  "Location Status",
    "location_status_no_material":  "No materials exist in this location status",
    "location_transfer":  "Location Transfer",
    "location_type":  "Location Type",
    "locked":  "Locked",
    "login_account":  "Login Account",
    "logout":  "Log Out",
    "low_location":  "Low Location",
    "make_buy":  "Make/Buy",
    "manual_cancel":  "Manual Cancel",
    "manual_complete":  "Manual Complete",
    "manufacturer":  "Manufacturer",
    "mat_code":  "Item Code",
    "mat_code_label":  "Item No.:",
    "mat_multi_select":  "Material - Multi Select",
    "mat_name":  "Item Name",
    "mat_name_label":  "Item Name:",
    "material":  "Material",
    "material_desc":  "Material Desc",
    "material_detail_for_current_location":  "Material Details for Current Location",
    "material_label_id":  "Material Label ID",
    "max_open_tabs_alert":  "Maximum {{num}} tabs allowed",
    "memo":  "Memo",
    "mfg_date":  "Mfg Date",
    "middle_location":  "Middle Location",
    "mobile":  "Mobile",
    "mobile_label":  "Mobile:",
    "modifier":  "Modifier",
    "modifier_detail":  "Modifier Details",
    "modify":  "Modify",
    "modify_detail":  "Modification Detail",
    "modify_order":  "Modify Order",
    "modify_project":  "Modify Project",
    "modify_time":  "Modify Time",
    "modify_user":  "Modify User",
    "modify_zone_color":  "Modify Zone Color",
    "name":  "Name",
    "narrow_location":  "Narrow Location",
    "net_weight_box":  "Net Weight/Box",
    "new_password":  "New Password",
    "no_data":  "No Data",
    "no_data_found":  "No Data Found",
    "no_intersection_outbound_station":  "No intersection of outbound stations, cannot batch modify",
    "no_task":  "No Task",
    "normal":  "Normal",
    "not_worked":  "Not Worked",
    "one_click_outbound":  "One-click Outbound",
    "operation":  "Operation",
    "operation_failed":  "Operation failed",
    "operation_time":  "Operation Time",
    "operator":  "Operator",
    "order_detail":  "Order Details",
    "order_intro":  "Inbound Notice: ERP provides order number, type, time and material details to generate inbound work orders. For high availability, users can manually add inbound notice data to complete independent inbound operations.",
    "order_intro_warning":  "When adding manually, please check if the order number already exists in the ERP system to avoid data errors.",
    "order_no":  "Order No.",
    "order_status":  "Order Status",
    "origin":  "Origin",
    "original_item_no":  "Original Item No.",
    "original_qty":  "Original Qty",
    "original_quantity":  "Original Quantity",
    "other":  "Other",
    "out_enable":  "Out Enable",
    "outbound":  "Outbound",
    "outbound_pending_qty":  "Pending Qty",
    "outbound_preview":  "Outbound Preview",
    "outbound_qty_cannot_exceed_inventory_qty":  "Outbound qty cannot exceed inventory qty",
    "outbound_quantity":  "Outbound Quantity",
    "outbound_station":  "Outbound Station:",
    "page":  " page",
    "pakin":  "Inbound",
    "pakout":  "Outbound",
    "pallet_barcode":  "Pallet Code",
    "parent_menu":  "Parent Menu",
    "password":  "Password",
    "password_error":  "Password Error",
    "pda_code":  "Code",
    "pda_location":  "Location",
    "pda_material":  "Material",
    "pda_name":  "Name",
    "pda_outbound":  "Outbound",
    "pda_outbound_station":  "Outbound Station",
    "pda_please_select":  "Please Select",
    "pda_quantity":  "Quantity",
    "pda_reset":  "Reset",
    "pda_stock_detail":  "Stock Detail",
    "pending":  "Pending",
    "pending_inbound":  "Pending Inbound",
    "permission":  "Permission",
    "permission_assignment":  "Permission Assignment",
    "pick":  "Pick",
    "picking":  "Picking",
    "picking_out":  "Picking Out",
    "picking_time":  "Picking Time",
    "please_add_check_inventory_first":  "Please add check inventory first",
    "please_add_detail_first":  "Please add detail first",
    "please_add_location_material":  "Please add location material first",
    "please_enter_and_select":  "Please enter and select",
    "please_enter_classification_name":  "Please enter Category Name",
    "please_enter_doc_id":  "Please enter Type ID",
    "please_enter_doc_name":  "Please enter Type Name",
    "please_enter_email":  "Enter Email",
    "please_enter_login_account":  "Enter Login Account",
    "please_enter_memo":  "Please enter memo",
    "please_enter_mobile":  "Enter Mobile",
    "please_enter_new_password":  "Enter New Password",
    "please_enter_number":  "Please enter a number",
    "please_enter_order_or_item":  "please enter",
    "please_enter_order_status":  "Please enter order status",
    "please_enter_password":  "Enter Password",
    "please_enter_password_init_station":  "Please enter password to initialize station",
    "please_enter_password_reset_location":  "Please enter password to reset location",
    "please_enter_responsible_person":  "Please enter Owner",
    "please_enter_sort":  "Please enter sort",
    "please_enter_source_location":  "Please enter source location",
    "please_enter_status_desc":  "Please enter status description",
    "please_enter_username":  "Enter Username",
    "please_enter_valid_location_no":  "Please enter valid location no",
    "please_extract_inventory_item_first":  "Please extract inventory item first",
    "please_extract_item_first":  "Please extract item first",
    "please_input":  "Please input",
    "please_input_configuration":  "Please input configuration",
    "please_input_gross_weight_box":  "Please input gross weight/box",
    "please_input_item_name":  "Enter Item Name",
    "please_input_item_no":  "Enter Item No.",
    "please_input_item_spec":  "Enter Item Spec",
    "please_input_net_weight_box":  "Please input net weight/box",
    "please_input_remark":  "Please input remark",
    "please_input_search_condition":  "Please input search condition",
    "please_retrieve_location_first":  "Please retrieve location first",
    "please_select":  "Please Select",
    "please_select_data":  "please select data",
    "please_select_data_to_delete":  "Please select data to delete",
    "please_select_delete_data":  "Please select data to delete",
    "please_select_inbound_station":  "Please select inbound station",
    "please_select_material":  "Please select material",
    "please_select_outbound_station":  "Please select outbound station",
    "please_select_print_data":  "Please select data to print",
    "please_select_role":  "Select Role",
    "please_select_row_to_delete":  "Please select a row to delete",
    "please_select_row_to_edit":  "Please select a row to edit",
    "please_select_station":  "Please select station",
    "please_select_target_location":  "Please select target location",
    "please_select_type":  "Please Select Type",
    "please_select_zone":  "Please select a zone",
    "please_stop_before_init":  "Please stop before initialization",
    "please_wait":  "Please wait",
    "pre_existing":  "Pre-Existing",
    "print":  "Print",
    "print_preview":  "Print Preview",
    "priority":  "Priority",
    "process_later":  "Process Later",
    "product_code":  "Item No.",
    "product_name":  "Item Name",
    "project":  "Project",
    "project_name":  "Project Name",
    "prompt":  "Prompt",
    "qty_cannot_less_than_worked":  "Quantity cannot be less than worked quantity",
    "qty_exist_cannot_delete":  "Work quantity exists, cannot delete",
    "qty_label":  "Qty:",
    "quantity":  "Quantity",
    "quantity_cannot_be_less_than_zero":  "Quantity cannot be less than zero",
    "quantity_must_be_greater_than_zero":  "Quantity must be greater than zero",
    "quantity_required":  "Quantity (Required)",
    "rack_no":  "Rack No.",
    "register_time":  "Register Time",
    "remark":  "Remark",
    "remove":  "Remove",
    "req_1":  "Req 1",
    "req_2":  "Req 2",
    "request_content":  "Request",
    "request_data":  "Request Data",
    "requesting":  "Requesting...",
    "reset":  "Reset",
    "reset_pwd":  "Reset Pwd",
    "reset_pwd_success":  "Reset password successful",
    "response.account_disabled":  "Account Disabled",
    "response.account_not_exist":  "Account Not Exist",
    "response.activation_code_expired":  "Activation Code Expired",
    "response.activation_code_incorrect":  "Activation Code Incorrect",
    "response.activation_failed":  "Activation Failed",
    "response.activation_success":  "Activation Success",
    "response.add_failed_contact_admin":  "Add Failed Contact Admin",
    "response.add_order_outbound":  "Add Order Outbound",
    "response.add_stock_detail_failed":  "Failed to add stock detail, {0}",
    "response.add_stocktake_detail_failed":  "Add Stocktake Detail Failed",
    "response.all":  "All",
    "response.auth_fail_sub_to_role":  "Authorization failed! Sub-resource {1} of resource {0} is assigned to role {2}, please unassign first!",
    "response.auth_fail_to_role":  "Authorization failed! Resource {0} is assigned to role {1}, please unassign first!",
    "response.auth_failed_check_appkey":  "Authentication failed, please check appkey!",
    "response.authorization":  "Authorization",
    "response.auto_empty_in_failed":  "Auto Empty Pallet Inbound Failed",
    "response.auto_empty_in_memo":  "Auto Empty Pallet Inbound",
    "response.auto_empty_in_success":  "Auto Empty Pallet Inbound Success",
    "response.auto_empty_out_failed":  "Auto Empty Pallet Outbound Failed",
    "response.auto_empty_out_success":  "Auto Empty Pallet Outbound Success",
    "response.available_site_query":  "Available Site Query",
    "response.barcode_inbound_work_forbid_delete":  "Barcode Inbound Work Forbid Delete",
    "response.barcode_length_invalid":  "Barcode Length Invalid",
    "response.barcode_not_empty":  "Barcode Not Empty",
    "response.barcode_offline":  "Barcode Offline",
    "response.barcode_redundant":  "Barcode Redundant",
    "response.bas_wrk_iotype_add":  "Bas Wrk Iotype Add",
    "response.bas_wrk_iotype_delete":  "Bas Wrk Iotype Delete",
    "response.bas_wrk_iotype_export":  "Bas Wrk Iotype Export",
    "response.bas_wrk_iotype_update":  "Bas Wrk Iotype Update",
    "response.body":  "Body",
    "response.both_sides_blocked":  "Selected section {0}~{1} both sides are blocked by empty pallets/faults, cannot outbound (both directions blocked)",
    "response.cancel_transfer_failed_source_not_exist":  "Failed to cancel transfer, source location not exist, {0}",
    "response.cancel_transfer_failed_target_not_exist":  "Failed to cancel transfer, target location not exist, {0}",
    "response.cancel_work_master_failed":  "Failed to cancel work master",
    "response.cancel_work_master_failed_loc_not_exist":  "Failed to cancel work master, location not exist, {0}",
    "response.change_loc_status_failed":  "Change Loc Status Failed",
    "response.change_location_status_failed":  "Change Location Status Failed",
    "response.china_grid":  "China Grid",
    "response.clear_order_detail_failed":  "Failed to clear order detail",
    "response.code_exists":  "Code Exists",
    "response.code_or_name_exists":  "Code or name already exists",
    "response.comb_success":  "Comb Success",
    "response.scan_success":  "Scan Success",
    "response.replace_success":  "Replace Success",
    "response.confirm_complete":  "Confirm Complete",
    "response.confirm_picking_outbound_failed":  "Confirm Picking Outbound Failed",
    "response.crane_add":  "Crane Add",
    "response.crane_delete":  "Crane Delete",
    "response.crane_error_add":  "Crane Error Add",
    "response.crane_error_delete":  "Crane Error Delete",
    "response.crane_error_export":  "Crane Error Export",
    "response.crane_error_update":  "Crane Error Update",
    "response.crane_export":  "Crane Export",
    "response.crane_status_add":  "Crane Status Add",
    "response.crane_status_delete":  "Crane Status Delete",
    "response.crane_status_export":  "Crane Status Export",
    "response.crane_status_update":  "Crane Status Update",
    "response.crane_update":  "Crane Update",
    "response.crn_parse_error":  "Crane number parse error",
    "response.current_row_not_in_priority_group":  "Current Row Not In Priority Group",
    "response.data_empty":  "Data Empty",
    "response.data_error":  "Data Error",
    "response.data_exists":  "Data Exists",
    "response.data_not_found":  "Data Not Found",
    "response.data_processing_inbound":  "Data Processing Inbound",
    "response.db_update_error":  "Database update error!",
    "response.delete_failed_contact_admin":  "Delete Failed Contact Admin",
    "response.delete_stock_detail_failed":  "Delete Stock Detail Failed",
    "response.delete_stocktake_detail_failed":  "Delete Stocktake Detail Failed",
    "response.delete_success":  "Delete success",
    "response.empty_pallet_inbound":  "Empty Pallet Inbound",
    "response.empty_pallet_outbound":  "Empty Pallet Outbound",
    "response.empty_plate_inbound_task_exists":  "Empty Plate Inbound Task Exists",
    "response.empty_plate_outbound_forbidden_inbound":  "Empty Plate Outbound Forbidden Inbound",
    "response.enter_activation_code":  "Enter Activation Code",
    "response.existing_working_data_cannot_complete":  "Existing working data, cannot complete",
    "response.export_daily_inbound_detail":  "Export Daily Inbound Details",
    "response.export_daily_outbound_detail":  "Export Daily Outbound Details",
    "response.export_loc_usage":  "Export Location Usage Stats",
    "response.export_station_io_count":  "Export Station Daily I/O Count",
    "response.export_stock_stay":  "Export Stock Stay Stats",
    "response.extract_one_product_or_refresh":  "Extract One Product Or Refresh",
    "response.fetch_outbound_station_failed":  "Failed to fetch outbound station",
    "response.fifo_handling":  "FIFO Handling",
    "response.friday":  "Friday",
    "response.front_loc_has_goods_forbid_out":  "Front Loc Has Goods Forbid Out",
    "response.front_loc_has_in_task_forbid_out":  "Front Loc Has In Task Forbid Out",
    "response.full_pallet_inbound":  "Full Pallet Inbound",
    "response.full_pallet_out":  "Full Pallet Outbound",
    "response.full_pallet_outbound":  "Full Pallet Outbound",
    "response.full_plate_outbound_forbidden_empty_plate_inbound":  "Full Plate Outbound Forbidden Empty Plate Inbound",
    "response.generate_order_failed":  "Generate Order Failed",
    "response.generate_task":  "Generate Task",
    "response.get_group_empty_stock":  "Get Empty Stock of Same Group Shelf",
    "response.group_exception":  "Group exception",
    "response.high_low_detection_signal_not_empty":  "High Low Detection Signal Not Empty",
    "response.high_low_warehouse_type_not_empty":  "High Low Warehouse Type Not Empty",
    "response.in_qty":  "Inbound Qty",
    "response.in_route_not_exist":  "Inbound route not exist",
    "response.inbound":  "Inbound",
    "response.inbound_material_empty":  "Inbound material cannot be empty",
    "response.inbound_qty":  "Inbound Qty",
    "response.inbound_qty_invalid":  "Inbound Qty Invalid",
    "response.inbound_quantity":  "Inbound Quantity",
    "response.inbound_site_number_error":  "Inbound Site Number Error",
    "response.inbound_start_fail":  "Inbound start failed",
    "response.inbound_start_success":  "Inbound Task Started Successfully",
    "response.inbound_success":  "Inbound success",
    "response.init_failed":  "Init Failed",
    "response.init_success":  "Initialization success",
    "response.input_password":  "Please enter password",
    "response.inventory_check_outbound":  "Inventory Check Outbound",
    "response.inventory_detail_statistical_report":  "Inventory Detail Statistical Report",
    "response.io_type_cannot_operate":  "Current IO type cannot operate",
    "response.item_handover":  "Item Handover",
    "response.item_handover_success":  "Item Handover Successful",
    "response.json_parse_failed":  "JSON Parse Failed",
    "response.lgort_required":  "Lgort Required",
    "response.license_expired":  "License expired",
    "response.license_update_failed":  "License Update Failed",
    "response.loc_detl_add":  "Add Stock Detail",
    "response.loc_detl_delete":  "Delete Stock Detail",
    "response.loc_detl_export":  "Export Stock Detail",
    "response.loc_detl_update":  "Update Stock Detail",
    "response.loc_disabled":  "Disabled Location",
    "response.loc_empty":  "Empty Location",
    "response.loc_in_store":  "In Stock Location",
    "response.loc_mast_add":  "Location Master Add",
    "response.loc_mast_delete":  "Location Master Delete",
    "response.loc_mast_export":  "Location Master Export",
    "response.loc_mast_init":  "Initialize Location Master",
    "response.loc_mast_update":  "Location Master Update",
    "response.loc_material_not_exist":  "Loc Material Not Exist",
    "response.loc_not_adjustable":  "Loc Not Adjustable",
    "response.loc_not_exist":  "Loc Not Exist",
    "response.loc_not_exist_simple":  "Loc Not Exist Simple",
    "response.loc_not_found":  "Loc Not Found",
    "response.loc_not_in_stock_status":  "Loc Not In Stock Status",
    "response.loc_not_in_store":  "Loc Not In Store",
    "response.loc_not_in_store_status":  "Location {0} is not in store status",
    "response.loc_status_add":  "Loc Status Add",
    "response.loc_status_changed":  "Loc Status Changed",
    "response.loc_status_delete":  "Loc Status Delete",
    "response.loc_status_error_not_empty":  "Location status error, not empty pallet status: {0}",
    "response.loc_status_export":  "Loc Status Export",
    "response.loc_status_update":  "Loc Status Update",
    "response.loc_used":  "Used Location",
    "response.location_not_exist":  "Location Not Exist",
    "response.location_transfer":  "Location Transfer",
    "response.login":  "Login",
    "response.manu_cancel":  "Manual Cancel",
    "response.manu_complete":  "Manu Complete",
    "response.manual_add_order":  "Manual Add Order",
    "response.manual_delete_order":  "Manual Delete Order",
    "response.manual_modify_order":  "Manual Modify Order",
    "response.manual_process_work":  "Manual Process Work",
    "response.manual_work_handling":  "Manual Work Handling",
    "response.mat_add":  "Mat Add",
    "response.mat_code_print":  "Material Code Print",
    "response.mat_delete":  "Mat Delete",
    "response.mat_detail":  "Mat Detail",
    "response.mat_excel_import":  "Material Archive Import",
    "response.mat_excel_import_template":  "Material Archive Excel Import Template",
    "response.mat_excel_template_name":  "Material Archive Excel Import Template",
    "response.mat_export":  "Mat Export",
    "response.mat_find":  "Mat Find",
    "response.mat_list":  "Material List",
    "response.mat_no_stock_no_need_update":  "Material no stock, no need to update! Item: {0}",
    "response.mat_pda_list":  "Mat Pda List",
    "response.mat_pda_search":  "Mat Pda Search",
    "response.mat_sync_interface":  "Material Info Sync Interface",
    "response.mat_update":  "Mat Update",
    "response.material_data_error":  "Material data error, please contact administrator",
    "response.material_not_exist":  "Material Not Exist",
    "response.material_not_found":  "Material: {{matnr}} does not exist in node",
    "response.material_not_in_stock":  "Material Not In Stock",
    "response.material_qty_error":  "Material Qty Error",
    "response.memo_auto_empty_pallet_out":  "Memo Auto Empty Pallet Out",
    "response.menu_add":  "Add Menu",
    "response.menu_delete":  "Delete Menu",
    "response.menu_edit":  "Edit Menu",
    "response.menu_export":  "Export Menu",
    "response.menu_list":  "Menu List",
    "response.menu_update":  "Update Menu",
    "response.merge_pallet_outbound":  "Merge Pallet Outbound",
    "response.mix_material_not_allowed":  "Mix Material Not Allowed",
    "response.mobile_mat_on_sale":  "Mobile Material On Sale",
    "response.mobile_order_search":  "Mobile Order Search",
    "response.mobile_pack_get":  "Mobile Pack Get",
    "response.mobile_pakout_confirm_barcode":  "Mobile Outbound Confirm (Barcode)",
    "response.mobile_pakout_confirm_pick":  "Mobile Outbound Confirm (Pick)",
    "response.mobile_pakout_query":  "Mobile Pakout Query",
    "response.modify_location_status_failed":  "Modify Location Status Failed",
    "response.modify_order_failed":  "Failed to modify order",
    "response.modify_order_type_failed":  "Failed to modify order type",
    "response.modify_work_master_failed":  "Modify Work Master Failed",
    "response.monday":  "Monday",
    "response.move_start_success":  "Stock Transfer Started Successfully",
    "response.no_empty_loc_found":  "Operation failed, no empty location found in warehouse",
    "response.no_empty_location_found":  "No Empty Location Found",
    "response.no_empty_pallet":  "No Empty Pallet",
    "response.no_such_product":  "No Such Product",
    "response.no_valid_empty_pallet_loc":  "No Valid Empty Pallet Loc",
    "response.no_valid_out_loc":  "No Valid Out Loc",
    "response.node_add":  "Node Add",
    "response.node_delete":  "Node Delete",
    "response.node_detail":  "Node Detail",
    "response.node_excel_import":  "Node Excel Import",
    "response.node_excel_template_name":  "Node Archive Excel Import Template",
    "response.node_export":  "Node Export",
    "response.node_list":  "Node List",
    "response.node_not_exist":  "Node does not exist",
    "response.node_not_found":  "Node not found, please contact administrator: {{nodeId}}",
    "response.node_tree":  "Node Tree",
    "response.node_tree_list":  "Node Tree List",
    "response.node_update":  "Node Update",
    "response.off_sale_success":  "Off Sale Success",
    "response.offline_pallet_comb":  "Offline Pallet Comb",
    "response.on_sale_success":  "On Sale Success",
    "response.operation_blocked_contact_admin":  "Operation blocked, please contact administrator",
    "response.operation_failed":  "Operation failed",
    "response.operation_success":  "Operation Success",
    "response.order_add_success":  "Order Added Successfully",
    "response.order_data_rollback_failed":  "Order data rollback failed",
    "response.order_delete_success":  "Order Deleted Successfully",
    "response.order_detail_ids_query":  "Order Detail Ids Query",
    "response.order_details_required":  "Order Details Required",
    "response.order_expired":  "Order Expired",
    "response.order_modify_success":  "Order Modified Successfully",
    "response.order_no_exists":  "Order No Exists",
    "response.order_no_required":  "Order No Required",
    "response.order_not_exist":  "Order Not Exist",
    "response.order_out_error_contact_admin":  "Order outbound error, please contact administrator",
    "response.order_outbound":  "Order Outbound",
    "response.order_preview":  "Order Preview",
    "response.order_processed":  "Order Processed",
    "response.order_rollback_failed":  "Order Rollback Failed",
    "response.order_type_required":  "Order Type Required",
    "response.order_update_success":  "Order Updated Successfully",
    "response.out_detail_not_found":  "Out Detail Not Found",
    "response.out_qty":  "Outbound Qty",
    "response.outbound":  "Outbound",
    "response.outbound_operation":  "Outbound Operation",
    "response.outbound_path_not_exist":  "Outbound Path Not Exist",
    "response.outbound_path_not_found":  "Outbound path not found",
    "response.outbound_qty":  "Outbound Qty",
    "response.outbound_quantity":  "Outbound Quantity",
    "response.outbound_start_success":  "Outbound Started Successfully",
    "response.outbound_success":  "Outbound success",
    "response.pack_online":  "Pack Online",
    "response.package_inbound_order_type":  "Package Inbound Order Type",
    "response.pallet_comb":  "Pallet Comb",
    "response.carton_scan":  "Add Carton",
    "response.pallet_data_exists":  "Pallet Data Exists",
    "response.param_error":  "Parameter error",
    "response.parameter_error":  "Parameter Error",
    "response.params_empty":  "Parameters cannot be empty",
    "response.parent_warehouse_not_exist":  "Parent warehouse does not exist",
    "response.parent_zone_not_exist":  "Parent zone does not exist",
    "response.password_error":  "Password Error",
    "response.path_exists":  "Path already exists",
    "response.pick_order_create_success":  "Pick Order Create Success",
    "response.picking_inbound_update_detail_failed":  "Picking Inbound Update Detail Failed",
    "response.picking_out":  "Picking Outbound",
    "response.picking_outbound":  "Picking Outbound",
    "response.picking_task":  "Picking Task",
    "response.please_combine_pallet_first":  "Please Combine Pallet First",
    "response.power_get":  "Power Get",
    "response.putaway_failed":  "Putaway Failed",
    "response.quantity_insufficient":  "Material: {{matnr}} insufficient quantity in node",
    "response.quantity_must_be_greater_than_zero":  "Quantity Must Be Greater Than Zero",
    "response.query_loc_failed":  "Query Loc Failed",
    "response.query_source_station_failed":  "Query Source Station Failed",
    "response.query_source_station_failed_loc":  "Query Source Station Failed Loc",
    "response.raw_material":  "Raw Material",
    "response.refresh_config_failed":  "Refresh Config Failed",
    "response.report_mes_failed":  "Report Mes Failed",
    "response.reserve_loc_status_failed":  "Reserve Loc Status Failed",
    "response.reserve_loc_status_failed_loc":  "Failed to reserve location status, location: {0}",
    "response.resource_auth_failed":  "Resource Auth Failed",
    "response.resource_sub_auth_failed":  "Resource Sub Auth Failed",
    "response.role_add":  "Add Role",
    "response.role_delete":  "Role Delete",
    "response.role_edit":  "Edit Role",
    "response.role_export":  "Role Export",
    "response.role_update":  "Role Update",
    "response.row_not_in_group_config":  "Row is not in outbound group config: row={0}",
    "response.saturday":  "Saturday",
    "response.save_data_failed":  "Failed to save data",
    "response.save_order_detail_failed":  "Failed to save order detail",
    "response.save_order_master_failed":  "Failed to save order master",
    "response.save_serial_number_failed":  "Failed to save serial number",
    "response.save_success":  "Save success",
    "response.save_wait_pakin_failed":  "Save Wait Pakin Failed",
    "response.save_work_detail_failed":  "Failed to save work detail",
    "response.save_work_detail_history_failed":  "Save Work Detail History Failed",
    "response.save_work_log_failed":  "Failed to save work log, {0}",
    "response.save_work_master_failed":  "Save Work Master Failed",
    "response.save_work_master_failed_loc":  "Failed to save work master, location: {0}",
    "response.save_work_master_failed_out_loc":  "Failed to save work master, outbound location: {0}",
    "response.save_work_master_failed_simple":  "Save Work Master Failed Simple",
    "response.save_work_master_history_failed":  "Save Work Master History Failed",
    "response.save_work_master_log_failed":  "Failed to save work master log",
    "response.save_zone_data_failed":  "Save Zone Data Failed",
    "response.select_at_least_one_delete_data":  "Select At Least One Delete Data",
    "response.select_at_least_one_merge_data":  "Select At Least One Merge Data",
    "response.selected_loc_abnormal":  "Selected Loc Abnormal",
    "response.selected_loc_duplicate_or_invalid_row":  "Selected locations contain duplicate or invalid rows",
    "response.selected_loc_invalid_or_missing":  "Some selected locations do not exist or data is abnormal",
    "response.selected_loc_not_empty_status":  "Selected location is not empty pallet status: {0}",
    "response.selected_loc_not_exist_or_error":  "Selected Loc Not Exist Or Error",
    "response.selected_loc_status_error":  "Selected Loc Status Error",
    "response.selected_rows_must_be_continuous":  "Selected rows must be continuous without gaps. From {0} to {1}",
    "response.server_exception":  "Server Exception",
    "response.server_internal_error_contact_admin":  "Server Internal Error, Please Contact Admin",
    "response.single_data_modify_caution":  "Please modify single data item, operate with caution!",
    "response.site_not_exist":  "Site Not Exist",
    "response.source_loc_out_failed_status":  "Source Loc Out Failed Status",
    "response.specified_function":  "Specified Function",
    "response.station_add":  "Add Station",
    "response.station_delete":  "Delete Station",
    "response.station_export":  "Export Station",
    "response.station_init":  "Station Init",
    "response.station_path_add":  "Add Station Path",
    "response.station_path_delete":  "Delete Station Path",
    "response.station_path_export":  "Export Station Path",
    "response.station_path_init":  "Initialize Station Path",
    "response.station_path_init_exception":  "Station path initialization exception",
    "response.station_path_update":  "Update Station Path",
    "response.station_update":  "Update Station",
    "response.stk_plcm_add":  "Stk Plcm Add",
    "response.stk_plcm_delete":  "Stk Plcm Delete",
    "response.stk_plcm_export":  "Stk Plcm Export",
    "response.stock_adjust":  "Stock Adjustment",
    "response.stock_adjust_success":  "Stock Adjustment Successful",
    "response.stock_adjustment":  "Stock Adjustment",
    "response.stock_count":  "Stock Count",
    "response.stock_insufficient":  "Stock Insufficient",
    "response.stock_not_exist":  "Stock Not Exist",
    "response.stock_shortage":  "Stock Shortage",
    "response.stock_take_outbound":  "Stock Take Outbound",
    "response.stocktake_invalid_re_inbound":  "Stocktake Invalid Re Inbound",
    "response.stocktake_station_invalid":  "Stocktake Station Invalid",
    "response.stocktake_station_updated":  "Stocktake Station Updated",
    "response.stocktake_update_qty_failed":  "Stocktake Update Qty Failed",
    "response.stocktaking_outbound":  "Stocktaking Outbound",
    "response.sunday":  "Sunday",
    "response.sync_success_count":  "Sync success count",
    "response.system_error_barcode_not_exist":  "System Error Barcode Not Exist",
    "response.tag_add":  "Add Tag",
    "response.tag_detail":  "Tag Detail",
    "response.tag_list":  "Tag List",
    "response.tag_pda_list":  "Tag PDA List",
    "response.tag_tree":  "Tag Tree",
    "response.tag_update":  "Update Tag",
    "response.target_loc_mat_error":  "Target location material error!",
    "response.target_loc_not_found_in_group":  "Target Loc Not Found In Group",
    "response.target_loc_occupied":  "Target location occupied, {0}",
    "response.target_location_occupied":  "Target Location Occupied",
    "response.target_node_not_found":  "Target node for move not found",
    "response.task_created":  "Task No: {{workNo}}; Target Loc: {{locNo}}",
    "response.task_ended":  "Task has ended",
    "response.task_id_not_empty":  "Task ID cannot be empty",
    "response.task_invalid":  "Task invalid",
    "response.task_is_outbound":  "Task is outbound",
    "response.task_not_completed":  "Task Not Completed",
    "response.task_not_found":  "Task not found",
    "response.task_re_inbound":  "Task re-inbound, target location: {{locNo}}",
    "response.thursday":  "Thursday",
    "response.transfer_failed":  "Transfer Failed",
    "response.transfer_failed_target_loc_status":  "Transfer Failed Target Loc Status",
    "response.transfer_loc_diff_crn":  "Transfer Loc Diff Crn",
    "response.tray_code_print":  "Tray Code Print",
    "response.tuesday":  "Tuesday",
    "response.update_doc_qty_failed":  "Update Doc Qty Failed",
    "response.update_loc_status_failed":  "Failed to update location status",
    "response.update_loc_status_failed_loc":  "Failed to update location status, location: {0}",
    "response.update_loc_status_failed_simple":  "Update Loc Status Failed Simple",
    "response.update_order_detail_failed":  "Update Order Detail Failed",
    "response.update_order_detail_qty_failed":  "Failed to update order detail quantity",
    "response.update_order_status_failed":  "Failed to update order status",
    "response.update_pack_data_exception":  "Update Pack Data Exception",
    "response.update_source_loc_status_failed":  "Update Source Loc Status Failed",
    "response.update_source_station_failed":  "Update Source Station Failed",
    "response.update_stock_qty_failed":  "Update Stock Qty Failed",
    "response.update_stocktake_master_failed":  "Update Stocktake Master Failed",
    "response.update_success":  "Update success",
    "response.update_target_loc_status_failed":  "Update Target Loc Status Failed",
    "response.update_target_location_status_failed":  "Update Target Location Status Failed",
    "response.update_wait_pakin_failed":  "Update Wait Pakin Failed",
    "response.update_work_master_failed":  "Update Work Master Failed",
    "response.update_work_master_status_failed":  "Failed to update work master status",
    "response.user_add":  "User Add",
    "response.user_add_success":  "User added successfully",
    "response.user_delete":  "User Delete",
    "response.user_delete_success":  "User deleted successfully",
    "response.user_detail":  "User Detail",
    "response.user_edit":  "User Edit",
    "response.user_export":  "User Export",
    "response.user_status_update_success":  "User status updated successfully",
    "response.user_update":  "User Update",
    "response.user_update_success":  "User updated successfully",
    "response.wait_pakin_empty":  "Inbound notice cannot be empty",
    "response.warehouse_add":  "Warehouse Add",
    "response.warehouse_delete":  "Warehouse Delete",
    "response.warehouse_export":  "Warehouse Export",
    "response.warehouse_number_mismatch":  "Warehouse number mismatch",
    "response.warehouse_number_not_empty":  "Warehouse number cannot be empty",
    "response.warehouse_update":  "Warehouse Update",
    "response.wednesday":  "Wednesday",
    "response.week_fri":  "Friday",
    "response.week_mon":  "Monday",
    "response.week_sat":  "Saturday",
    "response.week_sun":  "Sunday",
    "response.week_thu":  "Thursday",
    "response.week_tue":  "Tuesday",
    "response.week_wed":  "Wednesday",
    "response.whs_type_not_exist":  "Warehouse type does not exist",
    "response.wms_cancel_task_wcs_failed":  "WMS cancel task WCS failed",
    "response.wms_sync_wcs_location_failed":  "Wms Sync Wcs Location Failed",
    "response.wms_task_not_exist":  "WMS task does not exist",
    "response.work_cancelled":  "Work Order Cancelled",
    "response.work_completed":  "Work Order Completed",
    "response.work_history_add":  "Work History Add",
    "response.work_history_delete":  "Work History Delete",
    "response.work_history_export":  "Work History Export",
    "response.work_history_update":  "Work History Update",
    "response.work_master_completed":  "Work Master Completed",
    "response.work_master_not_exist":  "Work master {0} not exist",
    "response.work_picked":  "Work Order Picked",
    "response.work_status_add":  "Add Work Status",
    "response.work_status_cannot_cancel":  "Current work status cannot be canceled",
    "response.work_status_cannot_operate":  "Current work status cannot operate",
    "response.work_status_delete":  "Delete Work Status",
    "response.work_status_export":  "Export Work Status",
    "response.work_status_update":  "Update Work Status",
    "response.wrk_detl_add":  "Wrk Detl Add",
    "response.wrk_detl_delete":  "Wrk Detl Delete",
    "response.wrk_detl_export":  "Wrk Detl Export",
    "response.wrk_detl_log_add":  "Add Work Detail Log",
    "response.wrk_detl_log_delete":  "Delete Work Detail Log",
    "response.wrk_detl_log_export":  "Export Work Detail Log",
    "response.wrk_detl_log_update":  "Update Work Detail Log",
    "response.wrk_lastno_add":  "Wrk Lastno Add",
    "response.wrk_lastno_delete":  "Wrk Lastno Delete",
    "response.wrk_lastno_export":  "Wrk Lastno Export",
    "response.wrk_lastno_update":  "Wrk Lastno Update",
    "response.wrk_mast_add":  "Work Master Add",
    "response.wrk_mast_add_pri":  "Work Master Increase Priority",
    "response.wrk_mast_delete":  "Work Master Delete",
    "response.wrk_mast_execute_add":  "Wrk Mast Execute Add",
    "response.wrk_mast_execute_check":  "Wrk Mast Execute Check",
    "response.wrk_mast_execute_delete":  "Wrk Mast Execute Delete",
    "response.wrk_mast_execute_detail":  "Wrk Mast Execute Detail",
    "response.wrk_mast_execute_export":  "Wrk Mast Execute Export",
    "response.wrk_mast_execute_list":  "Wrk Mast Execute List",
    "response.wrk_mast_execute_query":  "Wrk Mast Execute Query",
    "response.wrk_mast_execute_update":  "Wrk Mast Execute Update",
    "response.wrk_mast_export":  "Work Master Export",
    "response.wrk_mast_red_pri":  "Work Master Decrease Priority",
    "response.wrk_mast_update":  "Work Master Update",
    "response.zone_data_error":  "Zone Data Error",
    "response_data":  "Response Data",
    "responsible_person":  "Owner",
    "role":  "Role",
    "role_code":  "Code",
    "role_label":  "Role:",
    "role_level":  "Role Level",
    "role_name":  "Name",
    "row":  "Row",
    "running":  "Running",
    "safety_stock":  "Safety Stock",
    "save":  "Save",
    "search":  "Search",
    "search_bar":  "Search Bar",
    "select_all":  "Select All",
    "select_at_least_one_merge_data":  "Please select at least one data to merge",
    "select_at_least_one_outbound_detail":  "Please select at least one outbound detail",
    "select_color":  "Select Color",
    "select_data_to_change_priority":  "Please select data to change priority",
    "select_item":  "Select Item",
    "select_one_data":  "Select One Record",
    "select_outbound_station":  "Select Outbound Station",
    "select_outbound_station_opt":  "Select Outbound Station",
    "select_project":  "Select Project",
    "select_status":  "Select Status",
    "select_template":  "Select Template",
    "select_type":  "Select Type",
    "selection_mode_tip":  "Selection mode enabled, please drag to select on the location map",
    "serial_code":  "Serial Code",
    "serial_number":  "No.",
    "settle_1":  "Pending",
    "settle_2":  "Processing",
    "settle_3":  "Status 3",
    "settle_4":  "Completed",
    "settle_5":  "Status 5",
    "settle_6":  "Reported",
    "shelf_life":  "Shelf Life",
    "shuttle_board":  "Shuttle Board",
    "sku":  "Buyer Po",
    "small_location":  "Small Location",
    "sort":  "Sort",
    "source_location":  "Source Location",
    "source_location_no":  "source location",
    "source_station":  "Source Station",
    "spec":  "Spec",
    "spec_label":  "Spec:",
    "standard_crane_whs":  "Standard Crane Whs",
    "start_crane":  "Start Crane",
    "start_end_bay":  "Start/End Bay",
    "start_end_level":  "Start/End Level",
    "start_end_row":  "Start/End Row",
    "start_end_station":  "Start/End Station",
    "start_end_time":  "Start Time - End Time",
    "start_inbound":  "Start Inbound",
    "start_outbound":  "Start Outbound",
    "station_outbound":  "Outbound Station",
    "status":  "Status",
    "status_desc":  "Status Desc",
    "status_disabled":  "Disabled",
    "stock_age_upper_limit_days":  "Max Stock Age (Days)",
    "stock_lower_limit":  "Stock Min",
    "stock_qty":  "In-Stock Qty",
    "stock_rate":  "Stock Rate(%)",
    "stock_shortage":  "Stock Shortage",
    "stock_upper_limit":  "Stock Max",
    "supplier":  "Supplier",
    "supplier_code":  "Supplier Code",
    "table":  {
                  "empty":  "No Data",
                  "error":  "Data Interface Error",
                  "expand":  "Expand",
                  "collapse":  "Collapse",
                  "export":  {
                                 "title":  "Export",
                                 "hint":  "Export to...",
                                 "all":  "Export All",
                                 "current":  "Export Current Page"
                             },
                  "sort":  {
                               "asc":  "Ascending",
                               "desc":  "Descending"
                           },
                  "noData":  "No Data",
                  "tools":  {
                                "filter":  {
                                               "title":  "Filter Columns"
                                           },
                                "export":  {
                                               "title":  "Export",
                                               "noDataPrompt":  "No data",
                                               "compatPrompt":  "IE not supported",
                                               "csvText":  "Export CSV"
                                           },
                                "print":  {
                                              "title":  "Print",
                                              "noDataPrompt":  "No data"
                                          }
                            },
                  "dataFormatError":  "Data format error",
                  "xhrError":  "Request error: {msg}"
              },
    "target_empty_location":  "Target Empty Location",
    "target_location":  "Target Location",
    "target_station":  "Target Station",
    "template_1":  "Template 1",
    "template_2":  "Template 2",
    "template_3":  "Template 3",
    "template_download":  "Template Download",
    "TF_IC":  "Stock Transfer",
    "TF_IJ":  "Stock Adjustment",
    "TF_ML":  "Production Picking",
    "TF_MM0":  "Production Turn-in",
    "TF_PSS":  "Purchase/Sales",
    "TF_TC":  "Subcontract Return",
    "this":  "This",
    "time_range":  "Start Time - End Time",
    "total_count":  "Total Count",
    "total_loc_qty":  "Total Locations",
    "total_prefix":  "Total ",
    "total_suffix":  " items",
    "trace_chart_title":  "Total/Worked/Finished",
    "transaction_type":  "Transaction Type",
    "transfer":  {
                     "title":  [
                                   "Source",
                                   "Target"
                               ],
                     "searchNone":  "No Match",
                     "noData":  "No Data",
                     "noMatch":  "No Match",
                     "searchPlaceholder":  "Search"
                 },
    "transfer_req_no":  "Transfer Req No",
    "tree":  {
                 "defaultNodeName":  "Unnamed",
                 "noData":  "No Data",
                 "deleteNodePrompt":  "Delete node \"{name}\"?"
             },
    "type":  "Type",
    "unit":  "Unit",
    "unit_piece":  " items",
    "unit_qty":  "Unit Qty",
    "unknown":  "Unknown",
    "update_by":  "Updated By",
    "update_failed":  "Update failed",
    "update_time":  "Updated Time",
    "upload":  {
                   "urlError":  "Upload Interface URL not configured",
                   "limitError":  "File size limit exceeded",
                   "extError":  "File type not allowed",
                   "timeoutError":  "Upload Timeout",
                   "fileType":  {
                                    "file":  "File",
                                    "image":  "Image",
                                    "video":  "Video",
                                    "audio":  "Audio"
                                },
                   "validateMessages":  {
                                            "fileExtensionError":  "{fileType} format not supported",
                                            "filesOverLengthLimit":  "Max {length} files",
                                            "currentFilesLength":  "Selected {length} files",
                                            "fileOverSizeLimit":  "Max size {size}"
                                        },
                   "chooseText":  "{length} files"
               },
    "usage_rate":  "Usage Rate(%)",
    "user":  "User",
    "user_id":  "User ID",
    "username":  "Username",
    "username_label":  "Username:",
    "util":  {
                 "timeAgo":  {
                                 "seconds":  "Just now",
                                 "minutes":  " minutes ago",
                                 "hours":  " hours ago",
                                 "days":  " days ago",
                                 "months":  " months ago",
                                 "years":  " years ago",
                                 "future":  "Future",
                                 "justNow":  "Just now"
                             },
                 "countdown":  {
                                   "days":  " days ",
                                   "hours":  " hours ",
                                   "minutes":  " mins ",
                                   "seconds":  " secs"
                               },
                 "toDateString":  {
                                      "meridiem":  "AM/PM"
                                  }
             },
    "view_by_layer":  "View by Layer",
    "view_by_row":  "View by Row",
    "view_detail":  "View Detail",
    "view_order_detail":  "View Details",
    "volume_box":  "Volume/Box",
    "warehouse_no":  "Warehouse No",
    "warm_prompt_clear_inventory":  "Warm Prompt: Clearing inventory when modifying to empty location",
    "warm_prompt_prefix":  "Warm Prompt: Please fill in the information carefully, ",
    "warm_prompt_suffix":  "is mandatory.",
    "warning_days":  "Warning Days",
    "weight":  "Weight",
    "weight_type":  "Weight Type",
    "wide_location":  "Wide Location",
    "width_type":  "Width Type",
    "work_no":  "Work No",
    "work_no_label":  "Work No:",
    "work_order_detail":  "Work Order Detail",
    "work_order_detail_history":  "Work Order Detail History",
    "work_qty":  "Work Qty",
    "work_qty_exists_cannot_delete":  "Work quantity exists, cannot delete",
    "work_status":  "Work Status",
    "work_time":  "Work Time",
    "worked":  "Worked",
    "wrk_status_0":  "0.Pending Receive",
    "wrk_status_1":  "1.Received",
    "wrk_status_11":  "11.Outbound ID Generated",
    "wrk_status_12":  "12.Crane Outbound In Progress",
    "wrk_status_13":  "13.Crane Empty Outbound Error",
    "wrk_status_14":  "14.Outbound Unconfirmed",
    "wrk_status_15":  "15.Outbound Update Completed",
    "wrk_status_2":  "2.Task Started",
    "wrk_status_3":  "3.Pickup Completed",
    "wrk_status_4":  "4.Inbound Completed",
    "wrk_status_5":  "5.Inventory Updated",
    "wrk_status_6":  "6.Task Interrupted",
    "wrk_status_7":  "7.Drop-off Completed",
    "wrk_trace":  "Task Trace",
    "zone_color":  "Zone Color",
    "zone_legend":  "Zone Legend",
    "zone_name":  "Zone Name",
    "安全库存量":  "Safety Stock",
    "保质期":  "Shelf Life",
    "备注":  "Remark",
    "菜单编辑":  "Edit Menu",
    "菜单导出":  "Export Menu",
    "菜单列表":  "Menu List",
    "菜单删除":  "Delete Menu",
    "菜单添加":  "Add Menu",
    "菜单修改":  "Modify Menu",
    "仓储管理系统":  "WMS",
    "操作日志":  "Operation Log",
    "侧边伸缩":  "Toggle Side",
    "产地":  "Origin",
    "厂家":  "Container Number",
    "出库":  "Outbound",
    "出库日期":  "Outbound Date",
    "出库数量":  "Outbound Quantity",
    "出库作业":  "Outbound Operation",
    "初始化库位":  "Initialize Location",
    "初始化站点":  "Initialize Station",
    "初始化站点路径":  "Initialize Station Path",
    "代码":  "Size",
    "单价":  "Price",
    "单据编号":  "Order No.",
    "单据管理":  "Order Management",
    "单据类型":  "Order Types",
    "单位":  "Unit",
    "单位量":  "Order Qty",
    "单箱净重":  "Net Weight/Box",
    "单箱毛重":  "Gross Weight/Box",
    "单箱体积":  "Ratio",
    "导出":  "Export",
    "登录":  "Login",
    "订单出库":  "Order Outbound",
    "订单系统":  "Order System",
    "订单状态":  "Order Status",
    "堆垛机导出":  "Export Stacker",
    "堆垛机删除":  "Delete Stacker",
    "堆垛机添加":  "Add Stacker",
    "堆垛机修改":  "Modify Stacker",
    "堆垛机异常码导出":  "Stacker Crane Error Code Export",
    "堆垛机异常码删除":  "Delete Stacker Error Code",
    "堆垛机异常码添加":  "Add Stacker Error Code",
    "堆垛机异常码修改":  "Modify Stacker Error Code",
    "堆垛机异常日志导出":  "Export Stacker Error Log",
    "堆垛机异常日志删除":  "Delete Stacker Error Log",
    "堆垛机异常日志添加":  "Add Stacker Error Log",
    "堆垛机状态导出":  "Export Stacker Status",
    "堆垛机状态删除":  "Delete Stacker Status",
    "堆垛机状态添加":  "Add Stacker Status",
    "堆垛机状态修改":  "Modify Stacker Status",
    "分析页":  "Analytics",
    "个人设置":  "Personal Settings",
    "工作档查询维护":  "Work Order Query",
    "工作档导出":  "Export Work File",
    "工作档管理":  "Work Orders",
    "工作档降低优先级":  "Lower Work Priority",
    "工作档明细查询":  "Work Order Details",
    "工作档明细导出":  "Export Work File Detail",
    "工作档明细删除":  "Delete Work File Detail",
    "工作档明细添加":  "Add Work File Detail",
    "工作档删除":  "Delete Work File",
    "工作档添加":  "Add Work Master",
    "工作档维护日志":  "Work Maintenance Log",
    "工作档修改":  "Update Work Master",
    "工作档增加优先级":  "Increase Work Priority",
    "工作历史档查询":  "Work Order History",
    "工作历史档导出":  "Export Work History",
    "工作历史档删除":  "Delete Work History",
    "工作历史档添加":  "Add Work History",
    "工作历史档修改":  "Update Work History",
    "工作明细历史档查询":  "Wrk Ord Detail History",
    "工作序号查询":  "Task Number Query",
    "工作序号导出":  "Export Work Sequence",
    "工作序号删除":  "Delete Work Sequence",
    "工作序号添加":  "Add Work Sequence",
    "工作序号修改":  "Update Work Sequence",
    "工作状态":  "Task Status",
    "工作状态导出":  "Export Work Status",
    "工作状态删除":  "Delete Work Status",
    "工作状态添加":  "Add Work Status",
    "工作状态修改":  "Modify Work Status",
    "供应商":  "SO/OC",
    "供应商编码":  "PO Internal",
    "关闭当前":  "Close Current",
    "关闭当前标签页":  "Close Current Tab",
    "关闭其他":  "Close Others",
    "关闭其他标签页":  "Close Other Tabs",
    "关闭所有":  "Close All",
    "关闭所有标签页":  "Close All Tabs",
    "归类管理":  "Category Management",
    "规格":  "style",
    "货位档案数据导入":  "Import Location Data",
    "获取同组货架的空库位":  "Get Empty Location in Group",
    "基本资料":  "Basic Information",
    "基础数据":  "Basic Data",
    "角色编辑":  "Edit Role",
    "角色导出":  "Export Role",
    "角色管理":  "Role Management",
    "角色删除":  "Delete Role",
    "角色添加":  "Add Role",
    "角色修改":  "Modify Role",
    "接口文档":  "API Documentation",
    "禁用库位":  "Disabled Location",
    "开发专用":  "Developer Tools",
    "可视化":  "Visualization",
    "空板出库":  "Empty Pallet Outbound",
    "空板入库":  "Empty Pallet Inbound",
    "空库位":  "Empty Location",
    "控制台":  "Dashboard",
    "库存不足":  "Stock Shortage",
    "库存调整":  "Inventory Adjustment",
    "库存调整成功":  "Stock Adjustment Successful",
    "库存调整记录":  "Inventory Adjustments",
    "库存管理":  "Inventory Management",
    "库存明细":  "Inventory Details",
    "库存明细管理":  "Inventory Detail",
    "库存明细统计":  "Inventory Summary",
    "库存在库时间统计":  "Inventory Age",
    "库存滞留时间统计表":  "Stock Retention Time Statistics",
    "库存滞留统计导出":  "Export Stock Retention Stats",
    "库龄_天":  "Age(Days)",
    "库区管理":  "Zone Management",
    "库位查询":  "Location Inquiry",
    "库位导出":  "Export Location",
    "库位管理":  "Location Management",
    "库位号":  "Location No.",
    "库位类型导出":  "Export Location Type",
    "库位类型管理":  "LocType Management",
    "库位类型删除":  "Delete Location Type",
    "库位类型添加":  "Add Location Type",
    "库位类型修改":  "Modify Location Type",
    "库位明细导出":  "Export Location Detail",
    "库位明细删除":  "Delete Location Detail",
    "库位明细添加":  "Add Location Detail",
    "库位明细修改":  "Modify Location Detail",
    "库位排号分配":  "Location Slot Query",
    "库位热点图":  "Location Heatmap",
    "库位删除":  "Delete Location",
    "库位使用比例":  "Location Usage Ratio",
    "库位使用率统计":  "Location Utilization",
    "库位使用统计导出":  "Export Location Usage Stats",
    "库位添加":  "Add Location",
    "库位修改":  "Modify Location",
    "库位移转":  "Location Transfer",
    "库位占比":  "Location Percentage",
    "库位状态":  "Location Status",
    "库位状态导出":  "Export Location Status",
    "库位状态删除":  "Delete Location Status",
    "库位状态添加":  "Add Location Status",
    "库位状态修改":  "Modify Location Status",
    "路径站点设置":  "Path & Station Setup",
    "盘点":  "Inventory Check",
    "盘点出库":  "Inventory CheckOut",
    "批号":  "Carton Number Ctn",
    "品号移交":  "Item Handover",
    "品牌":  "Brand",
    "品项数":  "Inspection Document Number",
    "凭证记录":  "Credential Records",
    "请输入":  "Please enter",
    "请选择您要使用的模块":  "Please select the module you want to use",
    "权限控制":  "Permission Control",
    "全板入库":  "Full Pallet Inbound",
    "全屏":  "Full Screen",
    "日出库明细查询":  "Outbound Details",
    "日出库明细统计导出":  "Export Daily Outbound Details",
    "日入出库次数统计":  "Daily Transactions",
    "日入出库数量":  "Daily In/Out Quantity",
    "日入库明细查询":  "Inbound Details",
    "日入库明细统计导出":  "Export Daily Inbound Details",
    "日志统计":  "Logs & Stats",
    "入_出库数量":  "In/Out Quantity",
    "入出库类型":  "Transaction Types",
    "入出库类型导出":  "Export I/O Type",
    "入出库类型删除":  "Delete I/O Type",
    "入出库类型添加":  "Add I/O Type",
    "入出库类型修改":  "Modify I/O Type",
    "入出库作业":  "Out & In Operations",
    "入库":  "Inbound",
    "入库时间":  "Inbound Time",
    "入库数量":  "Inbound Quantity",
    "入库通知档":  "Inbound Notice",
    "入库通知历史档":  "Inbound Notice History",
    "入库作业":  "Inbound Operations",
    "三方接口统计":  "3rd-Party API Logs",
    "商品编号":  "Item No.",
    "商品编号_品号":  "Item No.",
    "商品编码打印":  "Print Material Code",
    "商品档案":  "Item Material",
    "商品档案数据导入":  "Import Item Data",
    "商品名称":  "Item Name",
    "商品名称_品名":  "Item Name",
    "设备维护":  "Equipment Maintenance",
    "生产日期":  "Mfg Date",
    "生成任务":  "Generate Task",
    "使用库位":  "Used Location",
    "是否批次":  "Batch Managed",
    "手动处理工作档":  "Manual Handle Work File",
    "手动删除订单":  "Manual Delete Order",
    "手动添加订单":  "Manual Add Order",
    "手动修改订单":  "Manual Modify Order",
    "首页":  "Home Page",
    "授权":  "Authorization",
    "数量":  "Quantity",
    "刷新":  "Refresh",
    "搜索":  "Search",
    "条码":  "Carton Barcode",
    "托盘码":  "Pallet Code",
    "托盘码打印":  "Print Pallet Code",
    "托盘条码":  "Pallet Barcode",
    "危险品":  "Carton Status(Pack/Open)",
    "卖家标签":  "Buyer Label Barcode",
    "组合标签":  "Combined Label",
    "系统管理":  "System Management",
    "系统配置":  "System Configuration",
    "系统用户":  "System Users",
    "系统用户编辑":  "Edit System User",
    "系统用户导出":  "Export System User",
    "系统用户删除":  "Delete System User",
    "系统用户添加":  "Add System User",
    "系统用户修改":  "Update System User",
    "下线组托":  "Offline Palletizing",
    "先入品处理":  "FIFO Handling",
    "箱子尺寸":  "Buyer",
    "详情":  "Detail",
    "修改人员":  "Updated By",
    "修改时间":  "Updated Time",
    "颜色":  "Color",
    "要求检验":  "Inspection Reqd",
    "异常工作档":  "Exception Work Orders",
    "预警天数":  "Warning Days",
    "运行任务":  "Running Tasks",
    "在库库位":  "Occupied Location",
    "站点导出":  "Export Station",
    "站点管理":  "Station Management",
    "站点路径导出":  "Export Station Path",
    "站点路径删除":  "Delete Station Path",
    "站点路径添加":  "Add Station Path",
    "站点路径修改":  "Modify Station Path",
    "站点日入出库次数统计导出":  "Export Daily Station In/Out Stats",
    "站点删除":  "Delete Station",
    "站点添加":  "Add Station",
    "站点修改":  "Modify Station",
    "制购":  "Pack Type(Solid/Ratio)",
    "滞留天数":  "Retention Days",
    "重置":  "Reset",
    "主题":  "Theme",
    "主页":  "Home",
    "主页不能关闭":  "Home page cannot be closed",
    "组托":  "Palletizing",
    "操作成功":  "Operation Success",
  "服务器错误": "Server Error",
  "初始化站点路径异常": "Failed to Initialize Station Path",
  "初始化成功": "Initialization Successful",
  "工作档已取消": "Work Order Cancelled",
  "出库启动成功": "Outbound Started Successfully",
  "查询库位失败": "Failed to Query Location",
  "入库启动失败": "Failed to Start Inbound",
  "修改完成": "Update Completed",
  "入库启动成功": "Inbound Started Successfully",
  "站点已有工作号": "Station Already Has an Active Work Order",
  "plc高低检测异常": "PLC High/Low Detection Error",
  "不能同时生成两笔入库工作档": "Cannot Generate Multiple Inbound Work Orders Simultaneously",
  "组托成功": "Palletizing Successful",
  "工作档已完成": "Work Order Completed",
  "当前操作已被阻止,请联系管理员": "This Operation Has Been Blocked. Please Contact the Administrator",
  "初始化失败解析堆垛机号失败,请填写正确的数据!!!":
  "Initialization Failed: Unable to Parse Stacker Crane Number. Please Enter Valid Data."
 
 
}