@coolon/i18n-resource-generator 2.0.10 → 2.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,288 +0,0 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
21
-
22
-
23
- # GRR: http://stackoverflow.com/questions/9642901/how-to-change-case-of-interpolated-variables-in-rails-locale-file
24
-
25
- ui:
26
- device:
27
- attributes:
28
- power_source(Enum): # attributes.powerSource
29
- unknown:
30
- label: ''
31
- mains_single_phase:
32
- label: 'Mains Single Phase'
33
- mains_three_phase:
34
- label: 'Mains 3 Phase'
35
- battery:
36
- label: 'Battery'
37
- dc_source:
38
- label: 'DC Source'
39
- emergency_mains_constantly_powered:
40
- label: 'Emergency Mains Constantly Powered'
41
- emergency_mains_transfer_switch:
42
- label: 'Emergency Mains Transfer Switch'
43
-
44
- capabilities(Enum):
45
- light:
46
- label: 'Light'
47
- dimmable:
48
- label: 'Dimmable'
49
- switch:
50
- label: 'Switch'
51
- dimmer:
52
- label: 'Dimmer'
53
- occupancy:
54
- label: 'Occupancy Detector'
55
- power_meter:
56
- label: 'Power Meter'
57
- illuminance:
58
- label: 'Light Meter'
59
-
60
- type(Enum):
61
- light:
62
- label: 'Light'
63
- label_with_state: '{state,select,enabled {Light} other {Light (Disabled)}}'
64
- icon: 'devices:light'
65
- count: '{count,plural, =1 {1 light} other {# lights}}'
66
- dimmable_light:
67
- label: 'Dimmable Light'
68
- label_with_state: '{state, select, enabled {Dimmable Light} other {Dimmable Light (Disabled)}}'
69
- icon: 'devices:dimmable_light'
70
- count: '{count, plural, =1 {1 dimmable light} other {# dimmable lights}}'
71
- switch:
72
- label: 'Switch'
73
- label_with_state: '{state, select, enabled {Switch} other {Switch (Disabled)}}'
74
- icon: 'devices:switch'
75
- count: '{count, plural, =1 {1 switch} other {# switches}}'
76
- switch_dimmer:
77
- label: 'Switch + Dimmer'
78
- label_with_state: '{state, select, enabled {Switch + Dimmer} other {Switch + Dimmer (Disabled)}}'
79
- icon: 'devices:switch_dimmer'
80
- count: '{count, plural, =1 {1 switch dimmer} other {# switch dimmers}}'
81
- dimmer:
82
- label: 'Dimmer'
83
- label_with_state: '{state, select, enabled {Dimmer} other {Dimmer (Disabled)}}'
84
- icon: 'devices:dimmer'
85
- count: '{count, plural, =1 {1 dimmer} other {# dimmers}}'
86
- occupancy_sensor:
87
- label: 'Occupancy Detector'
88
- label_with_state: '{state, select, enabled {Occupancy Detector} other {Occupancy Detector (Disabled)}}'
89
- icon: 'devices:occupancy_detector'
90
- count: '{count, plural, =1 {1 occupancy detector} other {# occupancy detectors}}'
91
- power_meter:
92
- label: 'Power Meter'
93
- label_with_state: '{state, select, enabled {Power Meter} other {Power Meter (Disabled)}}'
94
- icon: 'devices:power_meter'
95
- count: '{count, plural, =1 {1 power meter} other {# power meters}}'
96
- light_meter:
97
- label: 'Light Meter'
98
- label_with_state: '{state, select, enabled {Light Meter} other {Light Meter (Disabled)}}'
99
- icon: 'devices:light_meter'
100
- count: '{count, plural, =1 {1 light meter} other {# light meters}}'
101
- temperature_sensor:
102
- label: 'Temperature Sensor'
103
- label_with_state: '{state, select, enabled {Temperature Sensor} other {Temperature Sensor (Disabled)}}'
104
- icon: 'devices:temperature_sensor'
105
- count: '{count, plural, =1 {1 temperature sensor} other {# temperature sensors}}'
106
- relative_humidity_sensor:
107
- label: 'Relative Humidity Sensor'
108
- label_with_state: '{state, select, enabled {Relative Humidity Sensor} other {Relative Humidity Sensor (Disabled)}}'
109
- icon: 'devices:relative_humidity_sensor'
110
- count: '{count, plural, =1 {1 relative humidity sensor} other {# relative humidity sensors}}'
111
-
112
- type_selector(Enum):
113
- light:
114
- label: 'Lighting'
115
- icon: 'devices:light'
116
- dimmable_light:
117
- label: 'Lighting'
118
- icon: 'devices:dimmable_light'
119
- switch:
120
- label: 'Manual Control'
121
- icon: 'devices:switch'
122
- switch_dimmer:
123
- label: 'Manual Control'
124
- icon: 'devices:switch_dimmer'
125
- dimmer:
126
- label: 'Manual Control'
127
- icon: 'devices:dimmer'
128
- occupancy_sensor:
129
- label: 'Occupancy Detection'
130
- icon: 'devices:occupancy_detector'
131
- power_meter:
132
- label: 'Power Measurement'
133
- icon: 'devices:power_meter'
134
- light_meter:
135
- label: 'Light Measurement'
136
- icon: 'devices:light_meter'
137
- temperature_sensor:
138
- label: 'Temperature Measurement'
139
- icon: 'devices:temperature_sensor'
140
- relative_humidity_sensor:
141
- label: 'Humidity Measurement'
142
- icon: 'devices:relative_humidity_sensor'
143
-
144
- settings_editor(Enum):
145
- light:
146
- label: 'Enable Lighting'
147
- icon: 'devices:light'
148
- dimmable_light:
149
- label: 'Enable Lighting'
150
- icon: 'devices:dimmable_light'
151
- switch:
152
- label: 'Enable Manual Control'
153
- icon: 'devices:switch'
154
- switch_dimmer:
155
- label: 'Enable Manual Control'
156
- icon: 'devices:switch_dimmer'
157
- dimmer:
158
- label: 'Enable Manual Control'
159
- icon: 'devices:dimmer'
160
- occupancy_sensor:
161
- label: 'Enable Occupancy Detection'
162
- icon: 'devices:occupancy_detector'
163
- power_meter:
164
- label: 'Enable Power Measurement'
165
- icon: 'devices:power_meter'
166
- light_meter:
167
- label: 'Enable Light Measurement'
168
- icon: 'devices:light_meter'
169
-
170
-
171
- category(Enum):
172
- all:
173
- icon:
174
- label: 'All'
175
- tooltip:
176
- battery:
177
- icon: 'devices:battery_category_filter'
178
- label:
179
- tooltip: 'Battery powered devices'
180
- light:
181
- label:
182
- tooltip: 'Lights'
183
- icon: 'devices:light'
184
- manual_control:
185
- label:
186
- tooltip: 'Switches & Dimmers'
187
- icon: 'devices:manual_control'
188
- occupancy_sensor:
189
- label:
190
- tooltip: 'Occupancy Sensors'
191
- icon: 'devices:occupancy_detector'
192
- power_meter:
193
- label:
194
- tooltip: 'Power Meters'
195
- icon: 'devices:power_meter'
196
- light_meter:
197
- label:
198
- tooltip: 'Light Meters'
199
- icon: 'devices:light_meter'
200
- temperature_sensor:
201
- label:
202
- tooltip: 'Temperature Sensors'
203
- icon: 'devices:temperature_sensor'
204
- humidity_sensor:
205
- label:
206
- tooltip: 'Humidity Sensors'
207
- icon: 'devices:relative_humidity_sensor'
208
-
209
- area_filter(Enum):
210
- all:
211
- label: 'All'
212
- tooltip:
213
- assigned:
214
- label: 'Assigned'
215
- tooltip: 'Show devices assigned to an area'
216
- unassigned:
217
- label: 'Unassigned'
218
- tooltip: 'Show devices not assigned to an area'
219
-
220
- interactive_search:
221
- category_hint: >
222
- {category, select,
223
- light { {count, plural, =0 {There are no unassigned lights in the system} other {There are # lights to choose from}} }
224
- manual_control {{count, plural, =0 {There are no unassigned switches or dimmers in the system} other {There are # devices to choose from}}}
225
- occupancy_sensor {{count, plural, =0 {There are no unassigned occupancy sensors in the system} other {There are # occupancy sensors to choose from}}}
226
- light_meter {{count, plural, =0 {There are no unassigned light meters in the system} other {There are # light meters to choose from}}}
227
- other {}
228
- }
229
- # scope_hint: "{count, plural, =0 {There are none of these} other {# available}}"
230
- # >
231
- # {scope, select,
232
- # assigned {{count, plural, =0 {with none assigned} other {with # assigned}}}
233
- # unassigned {{count, plural, =0 {with none unassigned} other {with # unassigned}}}
234
- # other { }
235
- # }
236
-
237
- no_matching_device_error: >
238
- {category, select,
239
- light {{scope, select,
240
- assigned { There are no assigned lights in the system }
241
- unassigned { There are no unassigned lights in the system }
242
- other {There are no lights in the system} }}
243
- manual_control {{scope, select,
244
- assigned { There are no assigned switches or dimmers in the system }
245
- unassigned { There are no unassigned switches or dimmers in the system }
246
- other {There are no switches or dimmers in the system} }}
247
- occupancy_sensor {{scope, select,
248
- assigned { There are no assigned occupancy sensors in the system }
249
- unassigned { There are no unassigned occupancy sensors in the system }
250
- other {There are no occupancy sensors in the system} }}
251
- light_meter {{scope, select,
252
- assigned { There are no assigned light meters in the system }
253
- unassigned { There are no unassigned light meters in the system }
254
- other {There are no light meters in the system} }}
255
- other {}
256
- }
257
-
258
-
259
- device_list:
260
- power_source:
261
- battery:
262
- tooltip: "Battery Powered ({level, number}% / {volts, number}V)"
263
- tooltip_unknown: "Battery Powered - No status available"
264
- tooltip_low: "Battery Powered - Low Battery!!"
265
-
266
-
267
- joining:
268
- status(Enum):
269
- reading_endpoint_list:
270
- label: "Finding Endpoints"
271
- reading_endpoint_details:
272
- label: "Reading Endpoints"
273
- reading_attributes:
274
- label: "Reading Attributes"
275
- announced:
276
- label: 'Discovered'
277
- configuring:
278
- label: 'Configuring'
279
- joined:
280
- label: 'Joined'
281
- unsupported:
282
- label: "Unsupported device"
283
- existing:
284
- label: "Already added"
285
- aborted:
286
- label: "Unsupported device"
287
- error:
288
- label: "Error"
@@ -1,44 +0,0 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
21
-
22
-
23
- # GRR: http://stackoverflow.com/questions/9642901/how-to-change-case-of-interpolated-variables-in-rails-locale-file
24
-
25
- ui:
26
- lux:
27
- standard_levels:
28
- # - {value: 40, description: 'Corridors, cable tunnels, indoor storage tanks, walkways'}
29
- # - {value: 80, description: 'Staff change rooms, live storage of bulky material, dead storage of materials needing care, locker rooms, loading bays'}
30
- # - {value: 160, description: 'Waiting rooms, staff canteens, rough checking of stock, rough bench and machine work, entrance halls, general fabrication of structural steel, casting concrete, automated process monitoring, turbine halls'}
31
- # - {value: 240, description: 'School chalkboards and charts, medium woodworking, food preparation, counters for transactions'}
32
- # - {value: 320, description: 'Routine office tasks, e.g. reading, writing, typing, enquiry desks'}
33
- # - {value: 400, description: 'Inspection of medium work, fine woodwork, car assembly'}
34
- # - {value: 600, description: 'Drawing boards, most inspection tasks, proofreading, fine machine work, fine painting and finishing, color matching'}
35
- # - {value: 800, description: 'Fine inspection, paint retouching, fine manufacturer, grading of dark materials, color matching of dyes'}
36
- # - {value: 1200, description: 'Graphic arts inspection, hand tailoring, fine die sinking, inspection of dark goods, extra fine bench work'}
37
- # - {value: 1600, description: 'Finished fabric inspection, assembly of minute mechanisms, jewellery and watchmaking'}
38
-
39
- format: >
40
- {level_units, select,
41
- percent {{level, number, percent}}
42
- lux {{level, number} lux}
43
- other {}
44
- }
@@ -1,238 +0,0 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
21
-
22
-
23
- # GRR: http://stackoverflow.com/questions/9642901/how-to-change-case-of-interpolated-variables-in-rails-locale-file
24
-
25
-
26
- alerts(Alert[]):
27
- unknown_error:
28
- content:
29
- - "Yikes, this is a bit embarrassing, we've had an error condition we weren't expecting."
30
- - "It's with great shame an loathing that we can only suggest reloading the page to see if that helps..."
31
- ok: "Ok, try reloading it..."
32
- no_response:
33
- content:
34
- - "Couldn't connect to server"
35
- ok: "Ok"
36
- unexpected_validation_error:
37
- content:
38
- - "Doh, this is a bit embarrassing, we've had a validation error condition we weren't expecting."
39
- ok: "Yeah, ok. Bugger."
40
-
41
- not_authorized:
42
- content:
43
- - "It seems you're not authorized to perform this operation."
44
- - "You need to get the administrator to update your account permissions."
45
- ok: "Bugger"
46
-
47
- authentication_failed_bug:
48
- content:
49
- - "Doh, you've come across an elusive bug we've been trying to track down."
50
- - "Until we fix it permanently you should be able to reload."
51
- - "If that doesn't fix it then you've found another bug... bugger."
52
- ok: "Ok, Lets reload"
53
-
54
- zone_missing_race_condition:
55
- content:
56
- - "Someone else has deleted this zone while you were doing your thing."
57
- ok: "Ok, Got it"
58
-
59
- area_missing_race_condition:
60
- content:
61
- - "Someone else has deleted this area while you were doing your thing."
62
- ok: "Ok, Got it"
63
-
64
- room_missing_race_condition:
65
- content:
66
- - "Someone else has deleted this room while you were doing your thing."
67
- ok: "Ok, Got it"
68
-
69
- no_suitable_areas:
70
- content:
71
- - "There no areas configured yet. You'll need to create at least one."
72
- ok: "Ok, Got it"
73
-
74
- area_already_has_devices:
75
- content:
76
- - "This area already has devices. Only areas without devices can have child areas."
77
- ok: "Ok, Got it"
78
-
79
- device_missing_race_condition:
80
- content:
81
- - "This device was deleted while you were doing your thing."
82
- ok: "Ok, Got it"
83
-
84
- device_already_assigned:
85
- content:
86
- - "This device has already been assigned to an area."
87
- ok: "Ok, Got it"
88
-
89
- last_zone_readonly:
90
- content:
91
- - "This is the last zone and can't be deleted"
92
- ok: "Ok, Got it"
93
-
94
- race_condition:
95
- content:
96
- - "Someone else has made some changes while you were doing your thing."
97
- - "We've loaded the latest version of things but you'll need to make those changes again."
98
- ok: "Got it"
99
-
100
- resource_not_found:
101
- content:
102
- - "Someone else has deleted this while you were doing your thing."
103
- ok: "Got it"
104
-
105
- parent_resource_not_found:
106
- content:
107
- - "Someone else has deleted some settings while you were doing your thing."
108
- ok: "Got it"
109
-
110
- facility_controller_not_synchronized:
111
- content:
112
- - "It seems some of our hard working minions are still applying some recent changes to the network."
113
- - "This might take a minute or two, so we need to wait a bit and then try again."
114
- ok: "Ok, Got it"
115
- area_calibration_session_exists:
116
-
117
- content:
118
- - "It seems someone else is already calibrating this area"
119
- ok: "Got it"
120
-
121
- scene_in_use_as_default:
122
- content:
123
- - "This scene is currently used as the default scene for this zone's schedule."
124
- - "You'll need to change the default scene in the schedule before you can delete it."
125
- ok: "Ok, got it"
126
- scene_in_use:
127
- content:
128
- - "This scene is used in the schedule for this zone."
129
- - "You'll need to remove it from the schedule before you can delete it."
130
- ok: "Ok, got it"
131
-
132
- users_cant_delete_themselves:
133
- content:
134
- - "Oops! It looks like you tried to delete yourself."
135
- - "If you want to remove yourself from the system you'll need to get an administrator to do it for you."
136
- ok: "Ok, got it"
137
-
138
- gateway_error:
139
- content:
140
- - "We've had a communication problem with the gateway managing this device."
141
- - "Check out the alarms for more information"
142
- ok: "Ok, got it"
143
-
144
- gateway_not_responding:
145
- content:
146
- - "Hmm, we knocked but no one answered. So it appears there's no gateway at this address"
147
- ok: "Ok, got it"
148
-
149
- gateway_response_invalid:
150
- content:
151
- - "The gateway has responded with some thing that makes no sense so it's likely that it's faulty or has become confused"
152
- - "You could try rebooting it and see if that fixes it"
153
- ok: "Ok, got it"
154
- gateway_address_in_use:
155
- content:
156
- - "It looks a gateway with this address has already been added to the system"
157
- ok: "Ok, got it"
158
- gateway_already_commissioned:
159
- content:
160
- - "This gateway has already been commissioned by someone else"
161
- ok: "Ok, got it"
162
- gateway_discovery_session_already_exists:
163
- content:
164
- - "A gateway scan is already in progress"
165
- - "You'll need to wait until it's finished and try again"
166
- ok: "Ok, got it"
167
-
168
- device_unreachable:
169
- content:
170
- - "We were unable to make contact with the device."
171
- ok: "Ok, Got it"
172
- identify_not_supported:
173
- content:
174
- - "This devices doesn't seem to support identification"
175
- ok: "Ok, Got it"
176
-
177
- identify_session_in_progress:
178
- content:
179
- - "Someone else is currently searching for devices."
180
- - "You'll need to wait until they're finished before you can try again."
181
- ok: "Ok, Got it"
182
-
183
- not_implemented:
184
- content:
185
- - "Sorry, we haven't implemented this yet."
186
- ok: "Ok, Bugger"
187
-
188
- discovery_session_in_progress:
189
- content:
190
- - "There's already a session in progress"
191
- ok: "Ok"
192
-
193
-
194
- confirm(Confirm[]):
195
- delete_day_type:
196
- content:
197
- - "{name} is still in use, would you still like to delete it?"
198
- - "This will remove {name} from today onwards."
199
- ok: "Yes, Delete {name}"
200
- cancel: "Cancel"
201
-
202
- invalidate_calibration:
203
- title: "Confirm Calibration Changes"
204
- content:
205
- - "This change will result in incorrect light levels in {name} until you recalibrate."
206
- - "Do you want to continue?"
207
- ok: "Yes, Continue"
208
- cancel: "Cancel"
209
-
210
- remove_calibration:
211
- title: "Confirm Calibration Changes"
212
- content:
213
- - "This change will remove the calibration from {name} and require all levels to be manually set using percentages rather than lux levels."
214
- - "Do you want to continue?"
215
- ok: "Yes, Continue"
216
- cancel: "Cancel"
217
-
218
- restart_calibration_session:
219
- content:
220
- - "We've released control of the area for now."
221
- - "Click Resume to pick up where you left off."
222
- ok: "Resume"
223
- cancel: "Cancel"
224
-
225
-
226
- toasts:
227
- saved: "Saved"
228
- added_named: "Added {name}"
229
- saved_named: "Saved {name}"
230
- deleted_named: "Deleted {name}"
231
- added_area_to_parent: "Added {name} to {parent}"
232
- added_device_to_area: "Added {physicalId} to {areaName}"
233
- updated_device_in_area: "Updated settings for {physicalId} in {areaName}"
234
- removed_device_from_area: "Removed {physicalId} from {areaName}"
235
- gateway_added: "Gateway added"
236
- gateway_commissioned: "Gateway {gatewayId} is now commissioned"
237
- connection_restored: "Connection restored, you're good to go"
238
-
@@ -1,104 +0,0 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
21
-
22
-
23
- # GRR: http://stackoverflow.com/questions/9642901/how-to-change-case-of-interpolated-variables-in-rails-locale-file
24
-
25
- ui:
26
- places(Enum):
27
- login:
28
- title: 'Login'
29
- nav_icon: ''
30
- dashboard:
31
- title: 'Dashboard'
32
- nav_icon: 'fa-home'
33
- live_view:
34
- title: 'Zones & Rooms'
35
- nav_icon: 'fa-sitemap'
36
- alarms:
37
- title: "Alarms"
38
- nav_icon: 'fa-bell'
39
- reports:
40
- title: 'Reports'
41
- nav_icon: 'fa-bar-chart'
42
- reports_energy_usage:
43
- title: "Energy Usage"
44
- nav_icon: 'fa-bar-chart'
45
- reports_energy_usage_charts:
46
- title: 'Charts'
47
- nav_icon: ''
48
- reports_energy_usage_temporal:
49
- title: 'Usage Patterns Over Time'
50
- nav_icon: ''
51
- reports_occupancy:
52
- title: "Occupancy"
53
- nav_icon: 'fa-male'
54
- reports_devices:
55
- title: "Devices"
56
- nav_icon: 'fa-lightbulb-o'
57
- schedule:
58
- title: 'Schedule'
59
- nav_icon: 'fa-calendar'
60
- scenes:
61
- title: 'Scenes'
62
- nav_icon: 'fa-moon-o'
63
- zones:
64
- title: "Zones & Rooms"
65
- nav_icon: 'fa-sitemap'
66
- configuration:
67
- title: 'Configure'
68
- nav_icon: 'fa-wrench'
69
- system:
70
- title: 'System'
71
- nav_icon: 'fa-cog'
72
- system_devices:
73
- title: "Devices"
74
- nav_icon: 'fa-lightbulb-o'
75
- system_lighting_networks:
76
- title: 'Lighting Networks'
77
- nav_icon: 'fa-rss'
78
- system_lighting_networks_zigbee:
79
- title: 'Zigbee'
80
- nav_icon: ''
81
- system_lighting_networks_dali:
82
- title: 'Dali'
83
- nav_icon: ''
84
- system_software_updates:
85
- title: 'Software Updates'
86
- nav_icon: 'fa-upload'
87
- system_floor_plans:
88
- title: 'Floor Plans'
89
- nav_icon: 'fa-map-marker'
90
- system_software_updates_firmware:
91
- title: 'Firmware Updates'
92
- nav_icon: ''
93
- system_software_updates_system:
94
- title: 'System Updates'
95
- nav_icon: ''
96
- system_users:
97
- title: 'Users'
98
- nav_icon: 'fa-user'
99
- system_control_panels:
100
- title: 'Control Panels'
101
- nav_icon: 'fa-tablet'
102
- system_notifications:
103
- title: 'Notifications'
104
- nav_icon: 'fa-bell'