#
Junjie
3 小时以前 e43ada57f7ffdaf570c54b19316a7f0cacfaec1f
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
账号=Account
密码=Password
登录=Sign In
系统工具=System Tools
推荐操作=Recommended Actions
其他工具=Other Tools
获取请求码=Get Request Code
一键激活=Activate
获取项目名称=Get Project Name
获取系统配置=Get System Config
录入许可证=Import License
已复制到剪贴板=Copied to clipboard
复制失败=Copy failed
获取请求码失败=Failed to get request code
获取系统配置信息失败=Failed to get system configuration
许可证内容不能为空=License content cannot be empty
许可证更新成功=License updated successfully
许可证更新失败=Failed to update license
许可证录入失败=Failed to import license
激活成功=Activation successful
激活失败=Activation failed
获取项目名称失败=Failed to get project name
请输入账号=Please enter account
请输入密码=Please enter password
搜索菜单=Search menu
没有匹配菜单=No matching menus
当前账号没有可用菜单=No available menus
临时许可证有效期:=Temporary license valid:
仿真运行中=Simulation Running
仿真未运行=Simulation Stopped
基本资料=Profile
退出登录=Log Out
关闭其他页签=Close Other Tabs
返回控制中心=Back to Dashboard
许可证即将过期=License Expiring Soon
知道了=OK
控制中心=Control Center
实时监控=Real-time Monitoring
账户中心=Account Center
管理员=Admin
正在加载页面...=Loading page...
AI助手=AI Assistant
确定要停止仿真模拟吗?=Are you sure you want to stop the simulation?
确定要启动仿真模拟吗?=Are you sure you want to start the simulation?
仿真模拟已停止=Simulation stopped
仿真模拟已启动=Simulation started
操作失败=Operation failed
菜单加载失败=Failed to load menu
菜单加载失败,请检查接口状态=Failed to load menu. Please check the API status.
工作页面=Work Page
业务页面=Business Page
编号=ID
起始时间 - 终止时间=Start time - End time
请输入=Please enter
请输入...=Please enter...
请选择数据=Please select data
请选择要删除的数据=Please select data to delete
无数据=No data
已存在=Already exists
不可用=Unavailable
取消选择=Clear selection
正常=Active
禁用=Disabled
启用=Enabled
冻结=Frozen
删除=Delete
一级菜单=Level 1 Menu
二级菜单=Level 2 Menu
三级菜单=Level 3 Menu
查询=Search
重置=Reset
新增=Add
编辑=Edit
修改=Edit
导出=Export
保存=Save
取消=Cancel
返回=Back
详情=Details
工作号=Work No.
WMS工作号=WMS Work No.
源库位=Source Location
目标库位=Target Location
堆垛机=Crane
双工位堆垛机=Dual-station Crane
区域编码=Area Code
未命名页面=Untitled Page
未命名分组=Untitled Group
 
# Generic controls
操作=Actions
打印=Print
搜索=Search
重置=Reset
筛选列=Columns
到第=Go to
确定=OK
编号=ID
导出=Export
起始时间 - 终止时间=Start Time - End Time
修改人员=Updated By
修改时间=Updated At
备注=Remarks
新增=Add
工作号=Work No.
降序=Descending
升序=Ascending
添加时间=Created At
修改=Edit
状态=Status
目标库位=Target Location
请选择=Please select
无数据=No data
尾页=Last Page
正常=Active
添加人员=Created By
异常=Exception
异常码=Error Code
工作状态=Work Status
没有选项=No options
目标站=Target Station
源站=Source Station
堆垛机号=Crane No.
命令=Command
请求响应=Request/Response
入出库类型=IO Type
设备编号=Device No.
条码=Barcode
系统状态=System Status
下发时间=Issued At
下发状态=Issue Status
作业=Operation
创建时间=Created At
发生时间=Occurred At
结果=Result
结束时间=Ended At
类型=Type
名称=Name
起点库位=Source Location
刷新=Refresh
已下发=Issued
保存=Save
编码=Code
成功=Success
角色=Role
接口地址=API Endpoint
批次=Batch
批次序列=Batch Sequence
前往=Go
设备类型=Device Type
失败=Failed
详情=Details
用户=User
优先级=Priority
暂无数据=No Data
注册时间=Registered At
自动=Auto
RGV号=RGV No.
关闭=Close
工作时间=Work Time
托盘码=Pallet Code
源站点=Source Station
目标站点=Target Station
设备ip=Device IP
设备端口=Device Port
网关编号=Gateway No.
实现类=Implementation Class
虚拟设备=Virtual Device
创建人员=Created By
请求时间=Request Time
响应参数=Response Payload
请求参数=Request Payload
请求内容=Request Content
响应内容=Response Content
名称空间=Namespace
登录账户=Login Account
手机号=Phone
邮箱=Email
确认修改=Confirm Update
设置我的资料=Edit My Profile
不可修改=Not Editable
重要!一般用于后台登入=Important: usually used for admin login
当前角色不可更改为其它角色=Current role cannot be changed
手机号\:=Phone:
用户名\:=Username:
输入手机号=Enter phone number
输入用户名=Enter username
重置密码=Reset Password
首页菜单=Home Menu
客户端IP=Client IP
请求数据=Request Data
响应数据=Response Data
操作内容=Operation Content
凭证值=Credential Value
员工=Employee
菜单=Menu
按钮=Button
添加=Add
菜单编码=Menu Code
菜单名称=Menu Name
权限名称=Permission Name
所属菜单=Menu
权限=Permissions
上级=Parent
账号=Account
密码=Password
 
# Common dynamic patterns
regex\:^(\\d+)\\s*条/页$=$1 / page
regex\:^(\\d+)条/页$=$1 / page
regex\:^共\\s*(\\d+)\\s*条$=Total $1 items
regex\:^共\\s*(\\d+)\\s*个设备$=Total $1 devices
regex\:^(\\d+)号堆垛机$=Crane $1
regex\:^(\\d+)号双工位堆垛机$=Dual-station Crane $1
regex\:^堆垛机\\s*(\\d+)$=Crane $1
regex\:^双工位堆垛机\\s*(\\d+)$=Dual-station Crane $1
regex\:^站点列表\\s*\\((\\d+)\\)$=Station List ($1)
regex\:^堆垛机设备\\s*\\((\\d+)\\)$=Crane Devices ($1)
regex\:^出库区域\\s*\\((\\d+)\\)$=Outbound Areas ($1)
regex\:^出库站点\\s*\\((\\d+)\\)$=Outbound Stations ($1)
regex\:^工作号\\s*(\\d+)\\s*\\|\\s*目标\\s*(.+)$=Work No. $1 | Target $2
regex\:^A(\\d+)\\s*-\\s*月台(\\d+)$=A$1 - Dock $2
 
# Watch and map pages
地图操作=Map Controls
重置视图=Reset View
站点颜色=Station Color
收起面板=Collapse Panel
监控工作台=Monitoring Workbench
堆垛机监控=Crane Monitor
双工位=Dual Station
输送站=Stations
上一页=Previous
下一页=Next
打开控制中心=Open Control Center
楼层=Floor
旋转=Rotate
镜像=Mirror
显示站点方向=Show Station Direction
库位地图=Location Map
点击库位后在右侧查看详情。=Click a location to view details on the right.
点击库位可查看库位状态,点击站点可查看站点作业详情。地图操作在右上角工具面板中。=Click a location to view its status, or a station to view job details. Use the top-right tool panel for map controls.
货架=Shelf
实时数据=Live Data
原始地图=Raw Map
最近数据=Latest Data
初始化库位=Initialize Locations
导入地图=Import Map
 
# Work pages
任务管理=Task Management
任务类型=Task Type
系统消息=System Message
源库位=Source Location
时间=Time
 
# Baseline data and enums
1.入库=1. Inbound
101.出库=101. Outbound
201.移库任务=201. Transfer
1.生成入库任务=1. Create Inbound Task
2.设备上走=2. Device Moving Up
3.设备搬运中=3. Device Handling
9.入库完成=9. Inbound Completed
109.出库完成=109. Outbound Completed
F.在库=F. In Stock
X.禁用=X. Disabled
O.空库位=O. Empty Location
C.充电占用=C. Charging Occupied
R.出库预约=R. Outbound Reserved
S.入库预约=S. Inbound Reserved
出库站列表=Outbound Stations
入库站列表=Inbound Stations
深库位排号=Deep Location Row No.
控制库位排号=Control Location Row No.
站点数据=Station Data
顶升移栽点=Lift Transfer Point
出库站点数据=Outbound Station Data
入库站点数据=Inbound Station Data
站点别名=Station Alias
站点楼层=Station Floor
库位状态代号=Location Status Code
库位状态描述=Location Status Description
状态描述=Status Description
入出类型代号=IO Type Code
入出类型描述=IO Type Description
当前ID=Current ID
启动入库=Start Inbound
起始ID=Start ID
终止ID=End ID
站点回退=Station Rollback
移库任务=Transfer Task
仿真随机工作号=Simulated Random Work No.
低库位=Low Location
高库位=High Location
库位号=Location Code
宽库位=Wide Location
起止层=Start/End Level
起止列=Start/End Column
起止排=Start/End Row
轻库位=Light Location
窄库位=Narrow Location
重库位=Heavy Location
高低类型=High/Low Type
库位类型=Location Type
 
# Station and area configuration
站点设备关系配置=Station-Device Mapping
站点与堆垛机任务关联配置=Station-Crane Task Mapping
保存配置=Save Configuration
操作说明:拖拽左侧的【站点】到右侧的【设备】上即可建立关联。点击连线可删除关联。=Drag a station from the left to a device on the right to create a mapping. Click a link to remove it.
出库站与出库区域绑定配置=Outbound Station-Area Binding
区域名称=Area Name
新增区域=Add Area
操作说明:拖拽左侧【出库站点】到右侧【出库区域】上建立绑定。点击连线可删除绑定。=Drag an outbound station from the left to an outbound area on the right to create a binding. Click a link to remove the binding.
 
# Notification report
通知上报=Notification Report
补发=Retry
任务=Task
任务号=Task No.
设备号=Device No.
输送线=Conveyor
已开启=Enabled
查看报文=View Request
查看响应=View Response
队列状态=Queue Status
发送时间=Sent At
批量补发=Retry Selected
任务完成=Task Completed
日志结果=Log Result
筛选条件=Filters
上报开关=Reporting Switch
刷新全局=Refresh Global
 
# Device logs
设备日志=Device Logs
全部=All
下载=Download
日期选择=Date Selection
设备列表=Device List
选中日期=Selected Date
起始序号=Start Index
最大文件=Max Files
请输入编号=Enter ID
文件下载中=Downloading file
日志可视化 - ()=Device Logs - ()
暂无数据,请先选择日期=No data. Please select a date first.
 
# Debug and system config
调试参数=Debug Parameters
充电参数=Charging Settings
调度参数=Dispatch Settings
避障内圈半径=Inner Avoidance Radius
避障外圈半径=Outer Avoidance Radius
定时充电开关=Scheduled Charging
入库预留小车=Reserved Inbound AGV
小车满电校准=Full Battery Calibration
演示模式参数=Demo Mode Settings
定时充电时间段=Scheduled Charging Window
小车定时充电线=Scheduled Charging Line
小车默认充电线=Default Charging Line
演示模式-跑库=Demo Mode - Cycle Storage
小车充电最大阈值=Max Charge Threshold
小车电量预警阈值=Low Battery Threshold
输出RCS调试日志=Output RCS Debug Logs
演示模式-货物搬运=Demo Mode - Cargo Handling
移动演示模式-楼层=Moving Demo Mode - Floor
调度小车同层最大数量=Max AGVs Per Floor
小车出提升机近点距离=AGV Lift Exit Distance
小车移动连续下发指令=Continuous AGV Move Commands
允许交管重新规划路径=Allow Traffic Replan
地图母轨方向(x,y)=Map Main Rail Direction (x,y)
移动演示模式-是否换层=Moving Demo Mode - Change Floor
小车(x,y)命令运行方向颠倒=Invert AGV (x,y) Command Direction
对应值=Value
筛选类型=Filter Type
刷新缓存=Refresh Cache
出库迟到惩罚=Outbound Delay Penalty
监控地图镜像=Monitor Map Mirror
监控地图旋转=Monitor Map Rotation
 
# AI page
AI配置=AI Configuration
必填=Required
测试=Test
复制=Copy
更多=More
模型=Model
启用=Enabled
思考=Thinking
冷却中=Cooling
清冷却=Clear Cooldown
总路由=Default Route
调用日志=Call Logs
额度切换=Quota Switch
复制全文=Copy All
故障切换=Failover
冷却秒数=Cooldown Seconds
路由名称=Route Name
日志详情=Log Details
新增路由=Add Route
导出JSON=Export JSON
导入JSON=Import JSON
 
# Second-pass audit fixes
查询=Query
出库=Outbound
入库=Inbound
代号=Code
排序=Sort
筛选=Filter
当前没有可展示的堆垛机数据=No crane data available
当前没有待发送通知=No pending notifications
双伸位堆垛机=Dual-reach Crane
双伸位Crane=Dual-reach Crane
通知地址=Notify URL
通知ID=Notify ID
消息描述=Message Description
重试次数=Retry Count
当前队列数=Current Queue Size
间隔(s)=Interval (s)
通知日志数=Notification Log Count
当前通知队列=Current Notification Queue
通知发送日志=Notification Send Logs
通知类型=Notification Type
通知Type=Notification Type
上次重试时间=Last Retry Time
上次重试Time=Last Retry Time
消息类型/描述=Message Type / Description
消息Type/描述=Message Type / Description
通知查看与补发=Notification View & Retry
通知查看与Retry=Notification View & Retry
通知接口历史调用记录=Notification API History
展示待发送和待重试通知=Show pending and retry notifications
支持从历史日志重新发送通知=Support resending from history
已选 0 条=0 selected
站点ID=Station ID
通知上报=Notification Report
当前页签:通知队列=Current Tab: Notification Queue
通知队列=Notification Queue
通知日志=Notification Logs
任务类型/描述=Task Type / Description
消息类型=Message Type
消息Type=Message Type
通知类型/描述=Notification Type / Description
设备日志=Device Logs
日志可视化 - ()=Device Logs - ()
日志可视化=Device Logs
日期选择=Date Selection
选中日期=Selected Date
起始序号=Start Index
最大文件=Max Files
文件下载中=Downloading file
设备列表=Device List
设备号=Device No.
当前没有待发送通知=No notifications to send
03月=03
03日=03
04日=04
05日=05
06日=06
07日=07
08日=08
09日=09
未知=Unknown
宽窄类型=Width Type
宽窄Type=Width Type
轻重类型=Weight Type
轻重Type=Weight Type
堆垛机数量=Crane Count
Crane数量=Crane Count
库位状态=Location Status
库位Status=Location Status
层数=Levels
更新时间=Updated At
更新Time=Updated At
系统运行状态=System Runtime Status
系统运行Status=System Runtime Status
启动仿真模拟=Start Simulation
停止仿真模拟=Stop Simulation
异常情况=Exception Details
Exception情况=Exception Details
系统状态数据=System Status Payload
System Status数据=System Status Payload
最大出库任务数=Max Outbound Tasks
最大出库Task数=Max Outbound Tasks
最大入库任务数=Max Inbound Tasks
最大入库Task数=Max Inbound Tasks
可出(checkBox)=Outbound Enabled (Checkbox)
可入(checkBox)=Inbound Enabled (Checkbox)
工位1禁止执行列=Station 1 Disabled Columns
工位2禁止执行列=Station 2 Disabled Columns
出库站点=Outbound Stations
入库站点=Inbound Stations
出库排序交互点=Outbound Sort Interaction Point
初始化站点数据=Initialize Station Data
初始化Station Data=Initialize Station Data
运行堵塞重新分配库位站点数据=Reassign blocked location station data
运行堵塞重新分配库位Station Data=Reassign blocked location station data
虚拟设备初始化设备状态=Virtual Device Initializes Device Status
Virtual Device初始化设备Status=Virtual Device Initializes Device Status
Initialize Locations后将Delete库存明细,请谨慎Actions!=Initializing locations will delete inventory details. Proceed carefully.
绕圈最大承载量=Max Loop Load
完工时间权重=Finish Time Weight
完工Time权重=Finish Time Weight
并行搜索线程数=Parallel Search Threads
并行Search线程数=Parallel Search Threads
最大求解时间(s)=Max Solve Time (s)
最大求解Time(s)=Max Solve Time (s)
任务等待时间权重=Task Wait Time Weight
Task等待Time权重=Task Wait Time Weight
是否启用出库节拍=Enable Outbound Rhythm
是否Enabled出库节拍=Enable Outbound Rhythm
优先级早完成权重=Priority Early Completion Weight
Priority早完成权重=Priority Early Completion Weight
站点点绕圈模式=Station Loop Mode
Stations点绕圈模式=Station Loop Mode
同一出库组序列之间的最小间隔=Min Interval Between Same Outbound Group Sequences
堆垛机货叉放货耗时(s)=Crane Fork Putaway Time (s)
Crane货叉放货耗时(s)=Crane Fork Putaway Time (s)
堆垛机货叉取货耗时(s)=Crane Fork Pickup Time (s)
Crane货叉取货耗时(s)=Crane Fork Pickup Time (s)
输送线命令分段长度=Conveyor Command Segment Length
ConveyorCommand分段长度=Conveyor Command Segment Length
站点点最大任务数量上限=Max Tasks Per Station
Stations点最大Task数量上限=Max Tasks Per Station
冷却到\:-=Cooldown Until: -
最近错误\:-=Latest Error: -
故障切换开启=Failover Enabled
Failover开启=Failover Enabled
额度切换开启=Quota Switch Enabled
Quota Switch开启=Quota Switch Enabled
优先级(越小越优先)=Priority (smaller is higher)
AI配置 - LLM路由=AI Configuration - LLM Routes
支持多API、多模型、多Key,额度耗尽或故障自动切换=Supports multiple APIs, models, and keys with automatic failover on quota exhaustion or errors
支持多API、多Model、多Key,额度耗尽或故障Auto切换=Supports multiple APIs, models, and keys with automatic failover on quota exhaustion or errors
成功 0 / 失败 0 / 连续失败 0=Success 0 / Failed 0 / Consecutive Failures 0
Success 0 / Failed 0 / 连续Failed 0=Success 0 / Failed 0 / Consecutive Failures 0
Success 7 / Failed 2 / 连续Failed 0=Success 7 / Failed 2 / Consecutive Failures 0
Success 8 / Failed 0 / 连续Failed 0=Success 8 / Failed 0 / Consecutive Failures 0
必填,例如\: https\://dashscope.aliyuncs.com/compatible-mode/v1=Required, for example: https://dashscope.aliyuncs.com/compatible-mode/v1
Required,例如\: https\://dashscope.aliyuncs.com/compatible-mode/v1=Required, for example: https://dashscope.aliyuncs.com/compatible-mode/v1
最近错误\:=Latest Error:
冷却到\:=Cooldown Until:
D.空桶/空栈板=D. Empty Tote/Pallet
E.出入专用轨道=E. Dedicated IO Rail
W.穿梭车母轨道=W. Shuttle Main Rail
P.拣料/盘点/并板出库中=P. Picking/Counting/Merging Outbound
Q.拣料/盘点/并板再入库=Q. Picking/Counting/Merging Re-Inbound
4.设备搬运完成=4. Device Handling Completed
10.库存更新完成=10. Inventory Update Completed
102.设备搬运中=102. Device Handling In Progress
104.站点运行中=104. Station Running
502.设备搬运中=502. Device Handling In Progress
103.设备搬运完成=103. Device Handling Completed
110.库存更新完成=110. Inventory Update Completed
503.设备搬运完成=503. Device Handling Completed
509.移库完成=509. Transfer Completed
101.生成出库任务=101. Create Outbound Task
101.生成出库Task=101. Create Outbound Task
501.生成移库任务=501. Create Transfer Task
501.生成Transfer Task=501. Create Transfer Task
 
页=page
排=Row
列=Column
层=Level
是=Yes
否=No
开=On
关=Off
工作数据不存在=Work data does not exist
已受理(异步执行)=Accepted (async)
Command已受理(异步执行)=Command accepted (async)
通知上报中心=Notification Report Center
查看当前待通知队列、接口发送日志,支持按任务/设备快速筛选,并对失败或待发送通知执行手动补发。=View pending notification queues and send logs, filter quickly by task or device, and manually resend failed or pending notifications.
Redis 中待上报或待重试通知=Notifications pending report or retry in Redis
来源:notifyUri + notifyUriPath=Source: notifyUri + notifyUriPath
队列与日志共用同一组查询条件,切换页签时保持一致。=Queue and log tabs share the same query conditions and stay in sync when switching tabs.
通用搜索:任务号、消息描述、报文关键字、Redis Key=General search: Task No., message description, payload keyword, Redis key
当前队列显示 Redis 实时数据,发送日志显示历史接口调用结果。=The current queue shows live Redis data, and send logs show historical API call results.
CraneInboundTask执行中=CraneInboundTask in progress
LLM调用日志=LLM Call Logs
日志详情 - =Log Details - 
日志可视化 - =Device Logs - 
信息=Info
确定导出Excel吗=Export to Excel?
确定修改资料吗?=Confirm profile update?
修改密码=Change Password
当前密码=Current Password
新密码=New Password
确认新密码=Confirm New Password
密码不匹配=Password does not match
新密码不能为空=New password cannot be empty
不能少于4个字符=Must be at least 4 characters
与旧密码不能相同=Must differ from the current password
密码不一致=Passwords do not match
密码修改成功,请重新登录=Password updated successfully. Please sign in again.
收起操作=Hide Controls
隐藏站点方向=Hide Station Direction
取消镜像=Disable Mirror
展开面板=Expand Panel
收起控制中心=Hide Control Center
双工位堆垛机监控=Dual-station Crane Monitor
输送监控=Station Monitor
RGV监控=RGV Monitor
请输入堆垛机号=Enter crane number
请输入RGV号=Enter RGV number
请输入站号=Enter station number
堆垛机号=Crane No.
RGV号=RGV No.
站号=Station No.
源点=Source Point
目标点=Target Point
输入源点=Enter source point
输入目标点=Enter target point
输入工作号=Enter work number
输入目标站号=Enter target station no.
取放货=Pick/Put
移动=Move
任务完成=Task Complete
下发=Send
复位=Reset
编号=ID
模式=Mode
状态=Status
是否有物=Loaded
任务接收=Task Receive
货叉定位=Fork Position
载货台定位=Lift Position
走行定位=Travel Position
走行速度=Travel Speed
升降速度=Lift Speed
叉牙速度=Fork Speed
称重数据=Weight
条码数据=Barcode
故障代码=Error Code
故障描述=Alarm Description
扩展数据=Extended Data
当前没有可展示的堆垛机数据=No crane data available
工位=Station
工位1=Station 1
工位2=Station 2
编辑工位1任务号=Edit Station 1 Task No.
编辑工位2任务号=Edit Station 2 Task No.
当前没有可展示的双工位堆垛机数据=No dual-station crane data available
异常码=Error Code
工位1任务号=Station 1 Task No.
工位2任务号=Station 2 Task No.
设备工位1任务号=Device Station 1 Task No.
设备工位2任务号=Device Station 2 Task No.
工位1状态=Station 1 Status
工位2状态=Station 2 Status
工位1是否有物=Station 1 Loaded
工位2是否有物=Station 2 Loaded
工位1货叉定位=Station 1 Fork Position
工位2货叉定位=Station 2 Fork Position
工位1任务接收=Station 1 Task Receive
工位2任务接收=Station 2 Task Receive
工位1下发数据=Station 1 Sent Data
工位2下发数据=Station 2 Sent Data
站=Station
任务=Task
手动=Manual
有物=Loaded
可入=Inbound Enabled
可出=Outbound Enabled
空板信号=Empty Pallet Signal
满板信号=Full Pallet Signal
运行阻塞=Run Block
托盘高度=Pallet Height
条码=Barcode
重量=Weight
任务可写区=Task Writable Area
故障信息=Error Message
当前没有可展示的站点数据=No station data available
例如 1=For example: 1
例如 2=For example: 2
例如 101=For example: 101
当前没有可展示的RGV数据=No RGV data available
轨道位=Track Position
库位详情=Location Details
站点信息=Station Info
站点作业状态、来源目标和作业参数=Station job status, source/target, and job parameters
库位当前状态和所在排列层信息=Current location status and row/bay/level details
站点颜色配置=Station Color Configuration
暂无站点颜色配置项=No station color configuration items
regex\:^(\\d+)站$=Station $1
regex\:^任务\\s*(.+)\\s*\\|\\s*目标站\\s*(.+)$=Task $1 | Target Station $2
regex\:^轨道位\\s*(.+)\\s*\\|\\s*任务\\s*(.+)$=Track $1 | Task $2
regex\:^工位1\\s*(.+)\\s*\\|\\s*工位2\\s*(.+)$=Station 1 $1 | Station 2 $2
regex\:^(\\d+)号RGV$=RGV $1
15条/页=15 / page
30条/页=30 / page
50条/页=50 / page
100条/页=100 / page
200条/页=200 / page
500条/页=500 / page
Stations点绕圈Mode=Station Loop Mode
阿里百炼-MiniMax-M2.1=Alibaba Bailian - MiniMax-M2.1
阿里百炼-MiniMax-M2.5=Alibaba Bailian - MiniMax-M2.5
阿里百炼-qwen3.5-flash=Alibaba Bailian - qwen3.5-flash
阿里百炼-qwen3.5-plus=Alibaba Bailian - qwen3.5-plus
阿里百炼-kimi-k2.5=Alibaba Bailian - kimi-k2.5
阿里百炼-glm-5=Alibaba Bailian - glm-5
硅基流动=SiliconFlow
提示=Prompt
尝试=Attempt
错误=Error
空闲=Idle
无物=Unloaded
工作类型=Work Type
能出=Outbound Enabled
能入=Inbound Enabled
文件数=File Count
类型\:=Type:
设备编号\:=Device No.:
文件数\:=File Count:
日志详情 -=Log Details -
日志可视化 -=Device Logs -
已删除=Deleted
老项目仍可继续使用这份硬件信息 JSON 申请许可证。=Legacy projects can still use this hardware JSON to apply for a license.
请求码中已包含项目名称,直接发给许可证服务端即可。=The request code already contains the project name and can be sent directly to the license service.
暂无路由配置=No route configuration available
点击右上角“新增路由”创建第一条配置=Click "Add Route" in the upper-right corner to create the first route.
保存成功=Saved successfully
保存失败=Save failed
测试成功=Test succeeded
测试失败=Test failed
测试中...=Testing...
导出成功=Export succeeded
导出失败=Export failed
导入确认=Import Confirmation
导入失败=Import failed
覆盖导入=Overwrite Import
合并导入=Merge Import
读取文件失败=Failed to read file
JSON 格式不正确=Invalid JSON format
未找到可导入的 routes=No importable routes found
请选择导入方式:覆盖导入会先清空现有路由;点击“合并导入”则按ID更新或新增。=Choose an import mode: overwrite import clears existing routes first; merge import updates by ID or adds new routes.
当前是未保存配置,测试通过后仍需先保存才会生效=This configuration is not saved yet. It still needs to be saved after a successful test to take effect.
复制失败,请手动复制=Copy failed. Please copy it manually.
没有可复制内容=Nothing to copy
已复制=Copied
API Key 为空=API key is empty
API Key 已复制=API key copied
日志加载失败=Failed to load logs
删除成功=Deleted successfully
删除失败=Delete failed
已清除冷却=Cooldown cleared
已清空=Cleared
清空日志=Clear Logs
清空失败=Clear failed
确定清空全部LLM调用日志吗?=Are you sure you want to clear all LLM call logs?
确定删除该路由吗?=Are you sure you want to delete this route?
确定删除该日志吗?=Are you sure you want to delete this log?
导入完成:新增=Import completed: added
导入异常明细(最多20条)=Import exception details (up to 20 items)
状态码=Status Code
场景=Scene
模型=Model
路由=Route
结果=Result
耗时(ms)=Latency (ms)
耗时\:=Latency:
结果\:=Result:
模型\:=Model:
路由\:=Route:
场景\:=Scene:
时间\:=Time:
状态码\:=Status Code:
请求\:=Request:
响应\:=Response:
返回片段\:=Response Snippet:
最近错误\:=Latest Error:
冷却到\:=Cooldown Until:
regex\:^成功\s*(\d+)\s*\/\s*失败\s*(\d+)\s*\/\s*连续失败\s*(\d+)$=Success $1 / Failed $2 / Consecutive Failures $3
regex\:^时间\:\s*(.+)$=Time: $1
regex\:^状态码\:\s*(.+)$=Status Code: $1
regex\:^耗时\:\s*(.+)$=Latency: $1
regex\:^结果\:\s*(.+)$=Result: $1
regex\:^路由\:\s*(.+)$=Route: $1
regex\:^模型\:\s*(.+)$=Model: $1
regex\:^返回片段\:\s*(.+)$=Response Snippet: $1
regex\:^请求\:\s*(.+)$=Request: $1
regex\:^响应\:\s*(.+)$=Response: $1
regex\:^最近错误\:\s*(.+)$=Latest Error: $1
regex\:^冷却到\:\s*(.+)$=Cooldown Until: $1
WCS AI 助手=WCS AI Assistant
AI 深度思考=AI Deep Thinking
系统巡检、异常问答、历史会话=System inspection, anomaly Q&A, and session history
连接中=Connecting
一键巡检=One-click Inspection
巡检当前系统=Inspect Current System
新会话=New Session
选择历史会话=Select Session History
向 AI 助手提问=Ask the AI Assistant
支持连续追问、历史会话切换,以及 AI 思考过程折叠展示。=Supports follow-up questions, session switching, and collapsible AI reasoning.
未绑定历史会话=No history session bound
新建会话,等待首条消息=Create a new session and wait for the first message
输入问题,或先执行一次巡检=Enter a question, or run an inspection first
AI 正在生成回复...=AI is generating a response...
AI 助手=AI Assistant
用户=User
WCS 诊断回复=WCS Diagnostic Reply
问题输入=Question Input
定位堆垛机异常=Locate Crane Anomalies
分析堵塞与积压=Analyze Blockages and Backlogs
追问最近告警=Ask About Recent Alarms
让 AI 主动梳理设备、任务和日志,给出一轮完整巡检。=Let AI review devices, tasks, and logs proactively and provide a full inspection.
让 AI 优先关注工位堵塞、任务堆积和节拍异常。=Let AI focus on station blockages, task backlogs, and rhythm anomalies first.
把最近异常事件压缩成可执行排查建议。=Condense recent anomalies into actionable troubleshooting steps.
帮我定位当前堆垛机相关的异常风险,按可能性从高到低列出。=Identify current crane-related risks and list them by likelihood.
帮我总结最近最值得关注的异常,并给出下一步排查动作。=Summarize the most important recent anomalies and suggest next troubleshooting steps.
结合近期日志与任务状态,判断是否存在堆垛机链路异常。=Determine whether there is any crane workflow anomaly based on recent logs and task status.
例如:最近哪个设备最值得优先排查?异常是否和堆垛机任务、工位堵塞或日志波动有关?=For example: which device should be checked first? Are the anomalies related to crane tasks, station blockage, or log fluctuation?
请重点分析当前是否存在工位堵塞、任务积压或节拍异常。=Please focus on whether there are station blockages, task backlogs, or rhythm anomalies.
删除会话失败=Failed to delete session
加载 AI 会话列表失败=Failed to load AI session list
加载会话历史失败=Failed to load session history
诊断中=Diagnosing
未命名会话=Untitled Session
最近更新=Updated Recently
刚刚创建=Just created
刚刚更新=Just updated
会话已绑定=Session Bound
临时会话=Temporary Session
Enter 发送,Shift+Enter 换行=Press Enter to send, Shift+Enter for a new line
regex\:^(\d+)\s*个会话$=$1 sessions
regex\:^(\d+)\s*分钟前$=$1 minute(s) ago
regex\:^(\d+)\s*小时前$=$1 hour(s) ago
补发结果=Retry Result
补发失败=Retry failed
当前筛选条件下没有通知日志=No notification logs match the current filters
获取通知队列失败=Failed to load notification queue
获取通知概览失败=Failed to load notification overview
获取通知日志失败=Failed to load notification logs
请求失败=Request failed
请选择要补发的队列通知=Please select queue notifications to retry
请选择要补发的通知日志=Please select notification logs to retry
确定按该日志重新补发通知吗?=Retry this notification based on the selected log?
确定补发该队列通知吗?=Retry this queued notification?
确定批量补发选中的队列通知吗?=Retry the selected queued notifications in batch?
确定批量补发选中的通知日志吗?=Retry the selected notification logs in batch?
确定执行手动补发吗?=Are you sure you want to retry manually?
上级任务号=Parent Task No.
接口响应=API Response
通知报文=Notification Payload
待发送=Pending
发送日志=Send Logs
regex\:^已选\s*(\d+)\s*条$=Selected $1 item(s)
regex\:^当前页签:\s*(.+)$=Current Tab: $1
调色盘=Palette
恢复默认=Restore Default
保存后,新打开的监控地图会直接读取 Redis 配置;已打开页面刷新后即可生效。=After saving, newly opened monitoring maps will read the Redis configuration directly. Refresh already opened pages to apply it.
regex\:^默认值:\s*(.+)$=Default: $1
操作区域=Action Area
regex\:^层:\s*(.+)$=Level: $1
regex\:^排:\s*(.+)$=Row: $1
regex\:^列:\s*(.+)$=Bay: $1
regex\:^库位号:\s*(.+)$=Location No.: $1
regex\:^库位状态:\s*(.+)$=Location Status: $1
regex\:^站点:\s*(.+)$=Station: $1
regex\:^工作号:\s*(.+)$=Work No.: $1
regex\:^工作类型:\s*(.+)$=Work Type: $1
regex\:^工作状态:\s*(.+)$=Work Status: $1
regex\:^源站:\s*(.+)$=Source Station: $1
regex\:^目标站:\s*(.+)$=Target Station: $1
regex\:^源库位:\s*(.+)$=Source Location: $1
regex\:^目标库位:\s*(.+)$=Target Location: $1
regex\:^自动:\s*(.+)$=Auto: $1
regex\:^有物:\s*(.+)$=Loaded: $1
regex\:^能入:\s*(.+)$=Inbound Enabled: $1
regex\:^能出:\s*(.+)$=Outbound Enabled: $1
地图加载失败=Failed to load map
楼层信息加载失败=Failed to load floor information
站点详情加载失败=Failed to load station details
双工位=Dual Station
regex\:^设备\s*(.+)$=Device $1
regex\:^区域\s*(.+)$=Area $1
regex\:^出库站点\s*\((\d+)\)$=Outbound Stations ($1)
共=Total
跳转时间=Jump Time
选择时间=Select Time
压缩生成进度=Compression Progress
下载接收进度=Download Receive Progress
日期选择=Date Selection
选中日期=Selected Date
设备类型=Device Type
起始序号=Start Offset
最大文件=Max Files
设备列表=Device List
暂无数据,请先选择日期=No data. Please select a date first.
播放=Play
暂停=Pause
重置=Reset
跳转=Jump
倍速=Speed
regex\:^共\s*(\d+)\s*个设备$=Total $1 devices
regex\:^下载\((.+)\)$=Download ($1)
regex\:^可视化\((.+)\)$=Visualize ($1)
regex\:^未知设备类型\:\s*(.+)$=Unknown device type: $1
不在定位=Off Position
在定位=At Position
初始化失败=Initialization failed
加载日期失败=Failed to load dates
加载设备失败=Failed to load devices
加载数据中...=Loading data...
没有找到日志数据=No log data found
目标时间超出日志范围,已跳转至结束时间=Target time exceeds the log range. Moved to the end time.
请输入设备编号=Please enter the device number
请选择设备类型=Please select a device type
数据已全部加载=All data loaded
无任务=No Task
下载失败或未找到日志=Download failed or logs not found
已到达日志末尾,无法到达目标时间=Reached the end of logs and cannot jump to the target time
已跳转至目标时间=Jumped to the target time
正在跳转至目标时间 (加载中)...=Jumping to the target time (loading)...
保存请求异常=Save request exception
加载请求异常=Load request exception
regex\:^保存失败\:\s*(.+)$=Save failed: $1
regex\:^加载数据失败\:\s*(.+)$=Failed to load data: $1
该关联已存在=This mapping already exists
确定删除该关联吗?=Are you sure you want to delete this mapping?
regex\:^已建立关联\:\s*站点\s*(.+)$=Mapping created: Station $1
该绑定已存在=This binding already exists
请输入区域编码和名称=Please enter the area code and name
区域已存在=Area already exists
regex\:^已建立绑定\:\s*站点\s*(.+)$=Binding created: Station $1
保存站点颜色配置失败=Failed to save station color configuration
加载站点颜色配置失败=Failed to load station color configuration
颜色格式已自动修正为十六进制=Color format has been normalized to hexadecimal automatically
已恢复默认颜色=Default colors restored
站点颜色配置已保存=Station color configuration saved
登录失败=Login failed
确定执行一键激活吗?=Are you sure you want to activate now?
系统登录=System Login
系统配置信息=System Configuration
对接WMS、设备与业务规则=Integrates WMS, devices, and business rules
统一编排现场执行任务=Unified orchestration of on-site execution tasks
请输入账号和密码进入系统。=Please enter your account and password to access the system.
将许可证服务端返回的 license 字段完整粘贴到这里。=Paste the full license field returned by the license service here.
许可证 Base64=License Base64
自动化立体仓库与智能物流系统解决方案=Automated AS/RS and intelligent logistics system solutions
作业、设备、日志全链路留痕=End-to-end traceability across jobs, devices, and logs
WCS系统让设备调度、任务执行与现场监控保持在同一套业务链路中。=The WCS keeps device scheduling, task execution, and on-site monitoring within the same business workflow.
角色管理=Role Management
权限管理=Permission Management
菜单列表=Menu List
菜单等级=Menu Level
父级菜单=Parent Menu
请输入编码=Please enter code
请输入名称=Please enter name
请选择上级=Please select parent
请输入菜单编码=Please enter menu code
请输入菜单名称=Please enter menu name
请输入排序=Please enter sort order
请选择类型=Please select type
请选择上级菜单=Please select parent menu
请选择状态=Please select status
请输入接口地址=Please enter API URL
请输入权限名称=Please enter permission name
请选择所属菜单=Please select menu
菜单查询失败=Menu query failed
菜单详情加载失败=Failed to load menu details
权限加载失败=Failed to load permissions
权限树加载失败=Failed to load permission tree
权限回显失败=Failed to load assigned permissions
权限保存失败=Failed to save permissions
角色查询失败=Role query failed
角色加载失败=Failed to load roles
确定删除选中角色吗?=Delete selected roles?
确定删除选中凭证吗?=Delete selected credentials?
# Playwright audit supplement
列设置=Column Settings
创建者=Creator
主要=Primary
编 号=ID
*编 号=*ID
异 常 码=Error Code
异 常=Error
状 态=Status
工 作 号=Work No.
备 注=Remarks
作 业=Operation
命 令=Command
目 标 站=Target Station
源 站=Source Station
源 站 点=Source Station
源 库 位=Source Location
条 码=Barcode
基准排=Base Row
基准排-code=Base Row Code
基准列=Base Bay
基准列-code=Base Bay Code
实 现 类=Implementation Class
日志ID=Log ID
平台密钥=Platform Key
Time戳=Timestamp
Exception内容=Exception Content
Menu列表=Menu List
展开All=Expand All
Permissions管理=Permission Management
凭证记录=Credential Records
标 识=Identifier
字 典 值=Dictionary Value
字典文本=Dictionary Text
 
# Legacy CRUD page names and dialog titles
三方接口统计=Third-party API Statistics
HTTP请求日志=HTTP Request Log
操作日志=Operation Log
设备配置=Device Configuration
库位管理=Location Management
输送设备管理=Conveyor Device Management
站点管理=Station Management
堆垛机管理=Crane Management
双工位堆垛机管理=Dual-station Crane Management
RGV管理=RGV Management
堆垛机异常码=Crane Error Code
双工位堆垛机异常码=Dual-station Crane Error Code
RGV异常码=RGV Error Code
工作序号查询=Work Sequence Query
堆垛机命令日志=Crane Command Log
堆垛机异常日志=Crane Error Log
双工位堆垛机命令日志=Dual-station Crane Command Log
双工位堆垛机异常日志=Dual-station Crane Error Log
RGV命令日志=RGV Command Log
RGV异常日志=RGV Error Log
输送站点命令日志=Conveyor Station Command Log
系统配置=System Configuration
新增三方接口统计=Add Third-party API Statistics
修改三方接口统计=Edit Third-party API Statistics
新增HTTP请求日志=Add HTTP Request Log
修改HTTP请求日志=Edit HTTP Request Log
新增操作日志=Add Operation Log
修改操作日志=Edit Operation Log
新增设备配置=Add Device Configuration
修改设备配置=Edit Device Configuration
新增库位管理=Add Location Management
修改库位管理=Edit Location Management
新增输送设备管理=Add Conveyor Device Management
修改输送设备管理=Edit Conveyor Device Management
新增站点管理=Add Station Management
修改站点管理=Edit Station Management
新增堆垛机管理=Add Crane Management
修改堆垛机管理=Edit Crane Management
新增双工位堆垛机管理=Add Dual-station Crane Management
修改双工位堆垛机管理=Edit Dual-station Crane Management
新增RGV管理=Add RGV Management
修改RGV管理=Edit RGV Management
新增工作状态=Add Work Status
修改工作状态=Edit Work Status
新增入出库类型=Add IO Type
修改入出库类型=Edit IO Type
新增库位状态=Add Location Status
修改库位状态=Edit Location Status
新增堆垛机异常码=Add Crane Error Code
修改堆垛机异常码=Edit Crane Error Code
新增双工位堆垛机异常码=Add Dual-station Crane Error Code
修改双工位堆垛机异常码=Edit Dual-station Crane Error Code
新增RGV异常码=Add RGV Error Code
修改RGV异常码=Edit RGV Error Code
新增工作序号查询=Add Work Sequence Query
修改工作序号查询=Edit Work Sequence Query
新增堆垛机命令日志=Add Crane Command Log
修改堆垛机命令日志=Edit Crane Command Log
新增堆垛机异常日志=Add Crane Error Log
修改堆垛机异常日志=Edit Crane Error Log
新增双工位堆垛机命令日志=Add Dual-station Crane Command Log
修改双工位堆垛机命令日志=Edit Dual-station Crane Command Log
新增双工位堆垛机异常日志=Add Dual-station Crane Error Log
修改双工位堆垛机异常日志=Edit Dual-station Crane Error Log
新增RGV命令日志=Add RGV Command Log
修改RGV命令日志=Edit RGV Command Log
新增RGV异常日志=Add RGV Error Log
修改RGV异常日志=Edit RGV Error Log
新增输送站点命令日志=Add Conveyor Station Command Log
修改输送站点命令日志=Edit Conveyor Station Command Log
新增系统配置=Add System Configuration
修改系统配置=Edit System Configuration
详情系统配置=System Configuration Details
 
# Dashboard and device ping pages
系统仪表盘=System Dashboard
设备网络分析=Device Network Analysis
监控画面=Monitoring View
监控系统=Monitoring
入库任务=Inbound Tasks
出库任务=Outbound Tasks
执行中=Running
待人工=Manual Review
已完成=Completed
新建=New
生成入库任务=Create Inbound Task
设备上走=Device Moving Up
设备搬运中=Device Handling
设备搬运完成=Device Handling Completed
入库待人工回滚=Inbound Pending Manual Rollback
入库完成=Inbound Completed
入库库存更新=Inbound Inventory Updated
生成出库任务=Create Outbound Task
站点运行中=Station Running
站点运行完成=Station Run Completed
出库待人工回滚=Outbound Pending Manual Rollback
出库完成=Outbound Completed
出库库存更新=Outbound Inventory Updated
生成移库任务=Create Transfer Task
移库待人工回滚=Transfer Pending Manual Rollback
移库完成=Transfer Completed
输送站点=Conveyor Stations
可用=Available
已禁用=Disabled
超时=Timeout
波动=Unstable
超时/异常=Timeout/Error
未定义状态=Undefined Status
全部探测均超时=All probes timed out
暂无额外说明=No additional details
探测失败=Probe failed
请求超时=Request timeout
找不到主机=Could not find host
无法访问目标主机=Destination host unreachable
100.0% 丢失=100.0% packet loss
regex\:^状态(\d+)$=Status $1
regex\:^站点(\d+)$=Station $1
regex\:^站点(\d+)\s*/\s*(.+)$=Station $1 / $2
regex\:^堆垛机#(\d+)$=Crane #$1
regex\:^双工位#(\d+)$=Dual Station #$1
regex\:^RGV#(\d+)$=RGV #$1
是否Delete=Deleted
租 户=Tenant
账 号=Account
密 码=Password
昵 称=Nickname
头 像=Avatar
工 号=Employee No.
性 别=Gender
手 机 号=Mobile No.
邮 箱=Email
Email验证=Email Verified
所属部门=Department
真实姓名=Real Name
身份证号=ID Card No.
出生日期=Birth Date
个人简介=Biography
所属机构=Organization
*角 色=*Role
已设置Password=Password Set
Virtual Device初始化Status=Virtual Device Initialization Status
Please enter电梯中转点=Please enter the elevator transfer point
Role管理=Role Management
展开面板=Expand Panel
收起Actions=Collapse Actions
信息=Information
OKExportExcel吗=Export to Excel?
全选=Select All
至=to
regex\:^Success\\s*(\\d+)\\s*/\\s*Failed\\s*(\\d+)\\s*/\\s*连续Failed\\s*(\\d+)$=Success $1 / Failed $2 / Consecutive Failures $3
regex\:^(\\d{1,2})日$=Day $1
regex\:^\\*[\\s ]*编[\\s ]*号$=*ID
regex\:^编[\\s ]*号$=ID
regex\:^异[\\s ]*常$=Error
regex\:^状[\\s ]*态$=Status
regex\:^工[\\s ]*作[\\s ]*号$=Work No.
regex\:^备[\\s ]*注$=Remarks
regex\:^作[\\s ]*业$=Operation
regex\:^命[\\s ]*令$=Command
regex\:^目[\\s ]*标[\\s ]*站$=Target Station
regex\:^源[\\s ]*站[\\s ]*点$=Source Station
regex\:^源[\\s ]*站$=Source Station
regex\:^源[\\s ]*库[\\s ]*位$=Source Location
regex\:^条[\\s ]*码$=Barcode
regex\:^账[\\s ]*号$=Account
regex\:^密[\\s ]*码$=Password
regex\:^昵[\\s ]*称$=Nickname
regex\:^头[\\s ]*像$=Avatar
regex\:^工[\\s ]*号$=Employee No.
regex\:^性[\\s ]*别$=Gender
regex\:^邮[\\s ]*箱$=Email
regex\:^标[\\s ]*识$=Identifier
regex\:^租[\\s ]*户$=Tenant
regex\:^\\*[\\s ]*角[\\s ]*色$=*Role