| 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
 | | export default { |  |     'map.edit': 'Edit Model', |  |     'map.edit.close': 'Exit Edit', |  |     'map.device.add': 'Add New Device', |  |     'map.device.oper': 'Device Settings', |  |     'map.model.observer': 'Observer Pattern', |  |     'map.model.editor': 'Editor Pattern', |  |     'map.save': 'Save Map', |  |     'map.load': 'Load Map', |  |     'map.clear': 'Clear Map', |  |     'map.load.success': 'Welcome To WCS.', |  |     '': '', |  |     '': '', |  |     'map.loc.no': 'Location Number', |  |     'map.pallet.barcode': 'Pallet Barcode', |  |     'map.is.enable': 'Enable or Not', |  |     'map.loc.operation': 'Location Operation', |  |     'map.loc.lock': 'Lock', |  |     'map.loc.unlock': 'Unlock', |  |     'map.loc.reset': 'Reset Location', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     'map.sensor.type.shuttle': 'Shuttle', |  |     'map.sensor.type.shelf': 'Shelf', |  |     'map.sensor.type.agv': 'Agv', |  |     'map.sensor.type.point': 'Point', |  |     '': '', |  |     '': '', |  |     '': '', |  |     'map.drawer.json': 'JSON', |  |     'map.drawer.shelf.view.title': 'Shelf Information', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     'map.settings.more': 'More', |  |     'map.settings.delete': 'Delete', |  |     'map.settings.type': 'Type', |  |     'map.settings.uuid': 'Uuid', |  |     'map.settings.component': 'Component', |  |     'map.settings.name': 'Name', |  |     'map.settings.position': 'Position', |  |     'map.settings.scale': 'Scale', |  |     'map.settings.rotation': 'Rotation', |  |     'map.settings.copy': 'Copy', |  |     'map.settings.left': 'Left', |  |     'map.settings.right': 'Right', |  |     'map.settings.top': 'Top', |  |     'map.settings.bottom': 'Bottom', |  |     'map.settings.map.param': 'Map Parameters', |  |     'map.settings.config.param': 'Config Parameters', |  |     'map.settings.batch.select.shelf': 'Select Shelfs', |  |     'map.settings.batch.set.params': 'Set Parameters', |  |     'map.settings.batch.result': 'Result', |  |     'map.settings.batch.result.title': 'Batch settings successful!', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     'map.settings.no': 'No.', |  |     'map.settings.shelf.no': 'Shelf No', |  |     'map.settings.shelf.location': 'Location', |  |     'map.settings.shelf.row': 'Row', |  |     'map.settings.shelf.bay': 'Bay', |  |     'map.settings.shelf.type': 'Type', |  |     'map.settings.shelf.space': 'Space', |  |     'map.settings.shelf.top': 'Top', |  |     'map.settings.shelf.right': 'Right', |  |     'map.settings.shelf.bottom': 'Bottom', |  |     'map.settings.shelf.left': 'Left', |  |     'map.settings.shelf.value': 'Map Value', |  |     'map.settings.shelf.store': 'Store', |  |     'map.settings.shelf.track': 'Track', |  |     'map.settings.shelf.diable': 'Diable', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     'map.settings.point.vertical': 'Vertical', |  |     'map.settings.point.horizontal': 'Horizontal', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     'map.settings.sub.copy.reverse': 'Reverse', |  |     'map.settings.sub.copy.rule': 'Copy Rule', |  |     'map.settings.sub.copy.dire': 'Direction', |  |     'map.settings.sub.copy.count': 'Count', |  |     'map.settings.sub.copy.gap': 'Gap', |  |     'map.settings.sub.copy.id': 'ID', |  |     'map.settings.sub.copy.auto-increment': 'Auto Increment', |  |     'map.settings.sub.copy.increment-value': 'Increment Value', |  |     'map.settings.sub.copy.increment.mode': 'Increment Mode', |  |     'map.settings.sub.copy.ascend': 'Ascending', |  |     'map.settings.sub.copy.descend': 'Descending', |  |     '': '', |  |     '': '', |  |     '': '', |  |     'map.settings.sub.copy.warn.config.shelf': 'Please set the shelf parameters first!', |  |     'map.settings.sub.copy.warn.config.point': 'Please set the point parameters first!', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  |     '': '', |  | } | 
 |