-
-
Notifications
You must be signed in to change notification settings - Fork 31.8k
/
strings.json
1380 lines (1380 loc) · 47.3 KB
/
strings.json
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
{
"config": {
"flow_title": "{name}",
"step": {
"choose_serial_port": {
"title": "Select a Serial Port",
"data": {
"path": "Serial Device Path"
},
"description": "Select the serial port for your Zigbee radio"
},
"confirm": {
"description": "Do you want to set up {name}?"
},
"confirm_hardware": {
"description": "Do you want to set up {name}?"
},
"manual_pick_radio_type": {
"data": {
"radio_type": "Radio Type"
},
"title": "[%key:component::zha::config::step::manual_pick_radio_type::data::radio_type%]",
"description": "Pick your Zigbee radio type"
},
"manual_port_config": {
"title": "Serial Port Settings",
"description": "Enter the serial port settings",
"data": {
"path": "Serial device path",
"baudrate": "Port speed",
"flow_control": "Data flow control"
}
},
"verify_radio": {
"title": "Radio is not recommended",
"description": "The radio you are using ({name}) is not recommended and support for it may be removed in the future. Please see the Zigbee Home Automation integration's documentation for [a list of recommended adapters]({docs_recommended_adapters_url})."
},
"choose_formation_strategy": {
"title": "Network Formation",
"description": "Choose the network settings for your radio.",
"menu_options": {
"form_new_network": "Erase network settings and create a new network",
"form_initial_network": "Create a network",
"reuse_settings": "Keep radio network settings",
"choose_automatic_backup": "Restore an automatic backup",
"upload_manual_backup": "Upload a manual backup"
}
},
"choose_automatic_backup": {
"title": "Restore Automatic Backup",
"description": "Restore your network settings from an automatic backup",
"data": {
"choose_automatic_backup": "Choose an automatic backup"
}
},
"upload_manual_backup": {
"title": "Upload a Manual Backup",
"description": "Restore your network settings from an uploaded backup JSON file. You can download one from a different ZHA installation from **Network Settings**, or use a Zigbee2MQTT `coordinator_backup.json` file.",
"data": {
"uploaded_backup_file": "Upload a file"
}
},
"maybe_confirm_ezsp_restore": {
"title": "Overwrite Radio IEEE Address",
"description": "Your backup has a different IEEE address than your radio. For your network to function properly, the IEEE address of your radio should also be changed.\n\nThis is a permanent operation.",
"data": {
"overwrite_coordinator_ieee": "Permanently replace the radio IEEE address"
}
}
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_backup_json": "Invalid backup JSON"
},
"abort": {
"single_instance_allowed": "[%key:common::config_flow::abort::single_instance_allowed%]",
"not_zha_device": "This device is not a zha device",
"usb_probe_failed": "Failed to probe the usb device",
"wrong_firmware_installed": "Your device is running the wrong firmware and cannot be used with ZHA until the correct firmware is installed. [A repair has been created]({repair_url}) with more information and instructions for how to fix this.",
"invalid_zeroconf_data": "The coordinator has invalid zeroconf service info and cannot be identified by ZHA"
}
},
"options": {
"flow_title": "[%key:component::zha::config::flow_title%]",
"step": {
"init": {
"title": "Reconfigure ZHA",
"description": "ZHA will be stopped. Do you wish to continue?"
},
"prompt_migrate_or_reconfigure": {
"title": "Migrate or re-configure",
"description": "Are you migrating to a new radio or re-configuring the current radio?",
"menu_options": {
"intent_migrate": "Migrate to a new radio",
"intent_reconfigure": "Re-configure the current radio"
}
},
"intent_migrate": {
"title": "[%key:component::zha::options::step::prompt_migrate_or_reconfigure::menu_options::intent_migrate%]",
"description": "Before plugging in your new radio, your old radio needs to be reset. An automatic backup will be performed. If you are using a combined Z-Wave and Zigbee adapter like the HUSBZB-1, this will only reset the Zigbee portion.\n\n*Note: if you are migrating from a **ConBee/RaspBee**, make sure it is running firmware `0x26720700` or newer! Otherwise, some devices may not be controllable after migrating until they are power cycled.*\n\nDo you wish to continue?"
},
"instruct_unplug": {
"title": "Unplug your old radio",
"description": "Your old radio has been reset. If the hardware is no longer needed, you can now unplug it.\n\nYou can now plug in your new radio."
},
"choose_serial_port": {
"title": "[%key:component::zha::config::step::choose_serial_port::title%]",
"data": {
"path": "[%key:component::zha::config::step::choose_serial_port::data::path%]"
},
"description": "[%key:component::zha::config::step::choose_serial_port::description%]"
},
"manual_pick_radio_type": {
"data": {
"radio_type": "[%key:component::zha::config::step::manual_pick_radio_type::data::radio_type%]"
},
"title": "[%key:component::zha::config::step::manual_pick_radio_type::data::radio_type%]",
"description": "[%key:component::zha::config::step::manual_pick_radio_type::description%]"
},
"manual_port_config": {
"title": "[%key:component::zha::config::step::manual_port_config::title%]",
"description": "[%key:component::zha::config::step::manual_port_config::description%]",
"data": {
"path": "[%key:component::zha::config::step::manual_port_config::data::path%]",
"baudrate": "[%key:component::zha::config::step::manual_port_config::data::baudrate%]",
"flow_control": "[%key:component::zha::config::step::manual_port_config::data::flow_control%]"
}
},
"verify_radio": {
"title": "[%key:component::zha::config::step::verify_radio::title%]",
"description": "[%key:component::zha::config::step::verify_radio::description%]"
},
"choose_formation_strategy": {
"title": "[%key:component::zha::config::step::choose_formation_strategy::title%]",
"description": "[%key:component::zha::config::step::choose_formation_strategy::description%]",
"menu_options": {
"form_new_network": "[%key:component::zha::config::step::choose_formation_strategy::menu_options::form_new_network%]",
"form_initial_network": "[%key:component::zha::config::step::choose_formation_strategy::menu_options::form_initial_network%]",
"reuse_settings": "[%key:component::zha::config::step::choose_formation_strategy::menu_options::reuse_settings%]",
"choose_automatic_backup": "[%key:component::zha::config::step::choose_formation_strategy::menu_options::choose_automatic_backup%]",
"upload_manual_backup": "[%key:component::zha::config::step::choose_formation_strategy::menu_options::upload_manual_backup%]"
}
},
"choose_automatic_backup": {
"title": "[%key:component::zha::config::step::choose_automatic_backup::title%]",
"description": "[%key:component::zha::config::step::choose_automatic_backup::description%]",
"data": {
"choose_automatic_backup": "[%key:component::zha::config::step::choose_automatic_backup::data::choose_automatic_backup%]"
}
},
"upload_manual_backup": {
"title": "[%key:component::zha::config::step::upload_manual_backup::title%]",
"description": "[%key:component::zha::config::step::upload_manual_backup::description%]",
"data": {
"uploaded_backup_file": "[%key:component::zha::config::step::upload_manual_backup::data::uploaded_backup_file%]"
}
},
"maybe_confirm_ezsp_restore": {
"title": "[%key:component::zha::config::step::maybe_confirm_ezsp_restore::title%]",
"description": "[%key:component::zha::config::step::maybe_confirm_ezsp_restore::description%]",
"data": {
"overwrite_coordinator_ieee": "[%key:component::zha::config::step::maybe_confirm_ezsp_restore::data::overwrite_coordinator_ieee%]"
}
}
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_backup_json": "[%key:component::zha::config::error::invalid_backup_json%]"
},
"abort": {
"single_instance_allowed": "[%key:common::config_flow::abort::single_instance_allowed%]",
"not_zha_device": "[%key:component::zha::config::abort::not_zha_device%]",
"usb_probe_failed": "[%key:component::zha::config::abort::usb_probe_failed%]",
"wrong_firmware_installed": "[%key:component::zha::config::abort::wrong_firmware_installed%]"
}
},
"config_panel": {
"zha_options": {
"title": "Global Options",
"enhanced_light_transition": "Enable enhanced light color/temperature transition from an off-state",
"light_transitioning_flag": "Enable enhanced brightness slider during light transition",
"group_members_assume_state": "Group members assume state of group",
"enable_identify_on_join": "Enable identify effect when devices join the network",
"default_light_transition": "Default light transition time (seconds)",
"consider_unavailable_mains": "Consider mains powered devices unavailable after (seconds)",
"enable_mains_startup_polling": "Refresh state for mains powered devices on startup",
"consider_unavailable_battery": "Consider battery powered devices unavailable after (seconds)"
},
"zha_alarm_options": {
"title": "Alarm Control Panel Options",
"alarm_master_code": "Master code for the alarm control panel(s)",
"alarm_failed_tries": "The number of consecutive failed code entries to trigger an alarm",
"alarm_arm_requires_code": "Code required for arming actions"
}
},
"device_automation": {
"action_type": {
"squawk": "Squawk",
"warn": "Warn",
"issue_all_led_effect": "Issue effect for all LEDs",
"issue_individual_led_effect": "Issue effect for individual LED"
},
"trigger_type": {
"remote_button_short_press": "\"{subtype}\" pressed",
"remote_button_short_release": "\"{subtype}\" released",
"remote_button_long_press": "\"{subtype}\" continuously pressed",
"remote_button_long_release": "\"{subtype}\" released after long press",
"remote_button_double_press": "\"{subtype}\" double clicked",
"remote_button_triple_press": "\"{subtype}\" triple clicked",
"remote_button_quadruple_press": "\"{subtype}\" quadruple clicked",
"remote_button_quintuple_press": "\"{subtype}\" quintuple clicked",
"remote_button_alt_short_press": "\"{subtype}\" pressed (Alternate mode)",
"remote_button_alt_short_release": "\"{subtype}\" released (Alternate mode)",
"remote_button_alt_long_press": "\"{subtype}\" continuously pressed (Alternate mode)",
"remote_button_alt_long_release": "\"{subtype}\" released after long press (Alternate mode)",
"remote_button_alt_double_press": "\"{subtype}\" double clicked (Alternate mode)",
"remote_button_alt_triple_press": "\"{subtype}\" triple clicked (Alternate mode)",
"remote_button_alt_quadruple_press": "\"{subtype}\" quadruple clicked (Alternate mode)",
"remote_button_alt_quintuple_press": "\"{subtype}\" quintuple clicked (Alternate mode)",
"device_rotated": "Device rotated \"{subtype}\"",
"device_shaken": "Device shaken",
"device_slid": "Device slid \"{subtype}\"",
"device_tilted": "Device tilted",
"device_knocked": "Device knocked \"{subtype}\"",
"device_dropped": "Device dropped",
"device_flipped": "Device flipped \"{subtype}\"",
"device_offline": "Device offline"
},
"trigger_subtype": {
"turn_on": "[%key:common::action::turn_on%]",
"turn_off": "[%key:common::action::turn_off%]",
"dim_up": "Dim up",
"dim_down": "Dim down",
"left": "Left",
"right": "Right",
"open": "[%key:common::action::open%]",
"close": "[%key:common::action::close%]",
"both_buttons": "Both buttons",
"button": "Button",
"button_1": "First button",
"button_2": "Second button",
"button_3": "Third button",
"button_4": "Fourth button",
"button_5": "Fifth button",
"button_6": "Sixth button",
"face_any": "With any/specified face(s) activated",
"face_1": "With face 1 activated",
"face_2": "With face 2 activated",
"face_3": "With face 3 activated",
"face_4": "With face 4 activated",
"face_5": "With face 5 activated",
"face_6": "With face 6 activated"
},
"extra_fields": {
"color": "Color hue",
"duration": "Duration in seconds",
"effect_type": "Effect type",
"led_number": "LED number",
"level": "Brightness (%)"
}
},
"services": {
"permit": {
"name": "Permit",
"description": "Allows nodes to join the Zigbee network.",
"fields": {
"duration": {
"name": "Duration",
"description": "Time to permit joins."
},
"ieee": {
"name": "IEEE",
"description": "IEEE address of the node permitting new joins."
},
"source_ieee": {
"name": "Source IEEE",
"description": "IEEE address of the joining device (must be used with the install code)."
},
"install_code": {
"name": "Install code",
"description": "Install code of the joining device (must be used with the source_ieee)."
},
"qr_code": {
"name": "QR code",
"description": "Value of the QR install code (different between vendors)."
}
}
},
"remove": {
"name": "Remove",
"description": "Removes a node from the Zigbee network.",
"fields": {
"ieee": {
"name": "[%key:component::zha::services::permit::fields::ieee::name%]",
"description": "IEEE address of the node to remove."
}
}
},
"reconfigure_device": {
"name": "Reconfigure device",
"description": "Reconfigures a ZHA device (heal device). Use this if you are having issues with the device. If the device in question is a battery-powered device, ensure it is awake and accepting commands when you use this action.",
"fields": {
"ieee": {
"name": "[%key:component::zha::services::permit::fields::ieee::name%]",
"description": "IEEE address of the device to reconfigure."
}
}
},
"set_zigbee_cluster_attribute": {
"name": "Set zigbee cluster attribute",
"description": "Sets an attribute value for the specified cluster on the specified entity.",
"fields": {
"ieee": {
"name": "[%key:component::zha::services::permit::fields::ieee::name%]",
"description": "IEEE address for the device."
},
"endpoint_id": {
"name": "Endpoint ID",
"description": "Endpoint ID for the cluster."
},
"cluster_id": {
"name": "Cluster ID",
"description": "ZCL cluster to retrieve attributes for."
},
"cluster_type": {
"name": "Cluster Type",
"description": "Type of the cluster."
},
"attribute": {
"name": "Attribute",
"description": "ID of the attribute to set."
},
"value": {
"name": "Value",
"description": "Value to write to the attribute."
},
"manufacturer": {
"name": "Manufacturer",
"description": "Manufacturer code. Use a value of \"-1\" to force no code to be set."
}
}
},
"issue_zigbee_cluster_command": {
"name": "Issue zigbee cluster command",
"description": "Issues a command on the specified cluster on the specified entity.",
"fields": {
"ieee": {
"name": "[%key:component::zha::services::permit::fields::ieee::name%]",
"description": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::ieee::description%]"
},
"endpoint_id": {
"name": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::endpoint_id::name%]",
"description": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::endpoint_id::description%]"
},
"cluster_id": {
"name": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::cluster_id::name%]",
"description": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::cluster_id::description%]"
},
"cluster_type": {
"name": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::cluster_type::name%]",
"description": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::cluster_type::description%]"
},
"command": {
"name": "Command",
"description": "ID of the command to execute."
},
"command_type": {
"name": "Command Type",
"description": "Type of the command to execute."
},
"args": {
"name": "Args",
"description": "Arguments to pass to the command."
},
"params": {
"name": "Params",
"description": "Parameters to pass to the command."
},
"manufacturer": {
"name": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::manufacturer::name%]",
"description": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::manufacturer::description%]"
}
}
},
"issue_zigbee_group_command": {
"name": "Issue zigbee group command",
"description": "Issue command on the specified cluster on the specified group.",
"fields": {
"group": {
"name": "Group",
"description": "Hexadecimal address of the group."
},
"cluster_id": {
"name": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::cluster_id::name%]",
"description": "ZCL cluster to send command to."
},
"cluster_type": {
"name": "Cluster type",
"description": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::cluster_type::description%]"
},
"command": {
"name": "Command",
"description": "[%key:component::zha::services::issue_zigbee_cluster_command::fields::command::description%]"
},
"args": {
"name": "Args",
"description": "[%key:component::zha::services::issue_zigbee_cluster_command::fields::args::description%]"
},
"manufacturer": {
"name": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::manufacturer::name%]",
"description": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::manufacturer::description%]"
}
}
},
"warning_device_squawk": {
"name": "Warning device squawk",
"description": "This action uses the WD capabilities to emit a quick audible/visible pulse called a \"squawk\". The squawk command has no effect if the WD is currently active (warning in progress).",
"fields": {
"ieee": {
"name": "[%key:component::zha::services::permit::fields::ieee::name%]",
"description": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::ieee::description%]"
},
"mode": {
"name": "[%key:common::config_flow::data::mode%]",
"description": "The Squawk Mode field is used as a 4-bit enumeration, and can have one of the values shown in Table 8-24 of the ZCL spec - Squawk Mode Field. The exact operation of each mode (how the WD “squawks”) is implementation specific."
},
"strobe": {
"name": "Strobe",
"description": "The strobe field is used as a Boolean, and determines if the visual indication is also required in addition to the audible squawk, as shown in Table 8-25 of the ZCL spec - Strobe Bit."
},
"level": {
"name": "Level",
"description": "The squawk level field is used as a 2-bit enumeration, and determines the intensity of audible squawk sound as shown in Table 8-26 of the ZCL spec - Squawk Level Field Values."
}
}
},
"warning_device_warn": {
"name": "Warning device starts alert",
"description": "This action starts the operation of the warning device. The warning device alerts the surrounding area by audible (siren) and visual (strobe) signals.",
"fields": {
"ieee": {
"name": "[%key:component::zha::services::permit::fields::ieee::name%]",
"description": "[%key:component::zha::services::set_zigbee_cluster_attribute::fields::ieee::description%]"
},
"mode": {
"name": "[%key:common::config_flow::data::mode%]",
"description": "The Warning Mode field is used as a 4-bit enumeration, can have one of the values 0-6 defined below in table 8-20 of the ZCL spec. The exact behavior of the warning device in each mode is according to the relevant security standards."
},
"strobe": {
"name": "[%key:component::zha::services::warning_device_squawk::fields::strobe::name%]",
"description": "The Strobe field is used as a 2-bit enumeration, and determines if the visual indication is required in addition to the audible siren, as indicated in Table 8-21 of the ZCL spec. \"0\" means no strobe, \"1\" means strobe. If the strobe field is “1” and the Warning Mode is “0” (“Stop”), then only the strobe is activated."
},
"level": {
"name": "Level",
"description": "The Siren Level field is used as a 2-bit enumeration, and indicates the intensity of audible squawk sound as shown in Table 8-22 of the ZCL spec."
},
"duration": {
"name": "Duration",
"description": "Requested duration of warning, in seconds (16 bit). If both Strobe and Warning Mode are \"0\" this field is ignored."
},
"duty_cycle": {
"name": "Duty cycle",
"description": "Indicates the length of the flash cycle. This allows you to vary the flash duration for different alarm types (e.g., fire, police, burglar). The valid range is 0-100 in increments of 10. All other values must be rounded to the nearest valid value. Strobe calculates a duty cycle over a duration of one second. The ON state must precede the OFF state. For example, if the Strobe Duty Cycle field specifies “40,”, then the strobe flashes ON for 4/10ths of a second and then turns OFF for 6/10ths of a second."
},
"intensity": {
"name": "Intensity",
"description": "Indicates the intensity of the strobe as shown in Table 8-23 of the ZCL spec. This attribute is designed to vary the output of the strobe (i.e., brightness) and not its frequency, which is detailed in section 8.4.2.3.1.6 of the ZCL spec."
}
}
},
"clear_lock_user_code": {
"name": "Clear lock user",
"description": "Clears a user code from a lock.",
"fields": {
"code_slot": {
"name": "Code slot",
"description": "Code slot to clear code from."
}
}
},
"enable_lock_user_code": {
"name": "Enable lock user",
"description": "Enables a user code on a lock.",
"fields": {
"code_slot": {
"name": "[%key:component::zha::services::clear_lock_user_code::fields::code_slot::name%]",
"description": "Code slot to enable."
}
}
},
"disable_lock_user_code": {
"name": "Disable lock user",
"description": "Disables a user code on a lock.",
"fields": {
"code_slot": {
"name": "[%key:component::zha::services::clear_lock_user_code::fields::code_slot::name%]",
"description": "Code slot to disable."
}
}
},
"set_lock_user_code": {
"name": "Set lock user code",
"description": "Sets a user code on a lock.",
"fields": {
"code_slot": {
"name": "[%key:component::zha::services::clear_lock_user_code::fields::code_slot::name%]",
"description": "Code slot to set the code in."
},
"user_code": {
"name": "Code",
"description": "Code to set."
}
}
}
},
"issues": {
"wrong_silabs_firmware_installed_nabucasa": {
"title": "Zigbee radio with multiprotocol firmware detected",
"description": "Your Zigbee radio was previously used with multiprotocol (Zigbee and Thread) and still has multiprotocol firmware installed: ({firmware_type}). \n Option 1: To run your radio exclusively with ZHA, you need to install the Zigbee firmware:\n - Open the documentation by selecting the link under \"Learn More\".\n - Follow the instructions described in Step 2 (and Step 2 only) to 'Flash the Silicon Labs radio Zigbee firmware'.\n Option 2: To run your radio with multiprotocol, follow these steps: \n - Go to Settings > System > Hardware, select the device and select Configure. \n - Select the Configure IEEE 802.15.4 radio multiprotocol support option. \n - Select the checkbox and select Submit. \n - Once installed, configure the newly discovered ZHA integration."
},
"wrong_silabs_firmware_installed_other": {
"title": "[%key:component::zha::issues::wrong_silabs_firmware_installed_nabucasa::title%]",
"description": "Your Zigbee radio was previously used with multiprotocol (Zigbee and Thread) and still has multiprotocol firmware installed: ({firmware_type}). To run your radio exclusively with ZHA, you need to install Zigbee firmware. Follow your Zigbee radio manufacturer's instructions for how to do this."
},
"inconsistent_network_settings": {
"title": "Zigbee network settings have changed",
"fix_flow": {
"step": {
"init": {
"title": "[%key:component::zha::issues::inconsistent_network_settings::title%]",
"description": "Your Zigbee radio's network settings are inconsistent with the most recent network backup. This usually happens if another Zigbee integration (e.g. Zigbee2MQTT or deCONZ) has overwritten them.\n\n{diff}\n\nIf you did not intentionally change your network settings, restore from the most recent backup: your devices will not work otherwise.",
"menu_options": {
"use_new_settings": "Keep the new settings",
"restore_old_settings": "Restore backup (recommended)"
}
}
}
}
}
},
"entity": {
"alarm_control_panel": {
"alarm_control_panel": {
"name": "[%key:component::alarm_control_panel::title%]"
}
},
"binary_sensor": {
"accelerometer": {
"name": "Accelerometer"
},
"binary_input": {
"name": "Binary input"
},
"frost_lock": {
"name": "Frost lock"
},
"replace_filter": {
"name": "Replace filter"
},
"consumer_connected": {
"name": "Consumer connected"
},
"valve_alarm": {
"name": "Valve alarm"
},
"calibrated": {
"name": "Calibrated"
},
"external_sensor": {
"name": "External sensor"
},
"linkage_alarm_state": {
"name": "Linkage alarm state"
},
"ias_zone": {
"name": "IAS zone"
},
"hand_open": {
"name": "Opened by hand"
},
"mounting_mode_active": {
"name": "Mounting mode active"
},
"heat_required": {
"name": "Heat required"
},
"preheat_status": {
"name": "Pre-heat status"
},
"open_window_detection_status": {
"name": "Open window detection status"
},
"window_detection": {
"name": "Open window detection"
}
},
"button": {
"reset_frost_lock": {
"name": "Frost lock reset"
},
"reset_no_presence_status": {
"name": "Presence status reset"
},
"feed": {
"name": "Feed"
},
"self_test": {
"name": "Self-test"
},
"reset_summation_delivered": {
"name": "Reset summation delivered"
},
"restart_device": {
"name": "Restart device"
}
},
"climate": {
"thermostat": {
"name": "[%key:component::climate::entity_component::_::name%]"
}
},
"cover": {
"cover": {
"name": "[%key:component::cover::title%]"
},
"shade": {
"name": "[%key:component::cover::entity_component::shade::name%]"
},
"keen_vent": {
"name": "Keen vent"
}
},
"fan": {
"fan": {
"name": "[%key:component::fan::title%]"
},
"fan_group": {
"name": "Fan group"
}
},
"light": {
"light": {
"name": "[%key:component::light::title%]"
},
"light_group": {
"name": "Light group"
}
},
"lock": {
"door_lock": {
"name": "Door lock"
}
},
"number": {
"number": {
"name": "[%key:component::number::title%]"
},
"detection_interval": {
"name": "Detection interval"
},
"on_level": {
"name": "On level"
},
"on_off_transition_time": {
"name": "On/Off transition time"
},
"on_transition_time": {
"name": "On transition time"
},
"off_transition_time": {
"name": "Off transition time"
},
"default_move_rate": {
"name": "Default move rate"
},
"start_up_current_level": {
"name": "Start-up current level"
},
"start_up_color_temperature": {
"name": "Start-up color temperature"
},
"timer_duration": {
"name": "Timer duration"
},
"filter_life_time": {
"name": "Filter life time"
},
"transmit_power": {
"name": "Transmit power"
},
"dimming_speed_up_remote": {
"name": "Remote dimming up speed"
},
"button_delay": {
"name": "Button delay"
},
"dimming_speed_up_local": {
"name": "Local dimming up speed"
},
"ramp_rate_off_to_on_local": {
"name": "Local ramp rate off to on"
},
"ramp_rate_off_to_on_remote": {
"name": "Remote ramp rate off to on"
},
"dimming_speed_down_remote": {
"name": "Remote dimming down speed"
},
"dimming_speed_down_local": {
"name": "Local dimming down speed"
},
"ramp_rate_on_to_off_local": {
"name": "Local ramp rate on to off"
},
"ramp_rate_on_to_off_remote": {
"name": "Remote ramp rate on to off"
},
"minimum_level": {
"name": "Minimum load dimming level"
},
"maximum_level": {
"name": "Maximum load dimming level"
},
"default_level_local": {
"name": "Local default dimming level"
},
"default_level_remote": {
"name": "Remote default dimming level"
},
"state_after_power_restored": {
"name": "Start-up default dimming level"
},
"auto_off_timer": {
"name": "Automatic switch shutoff timer"
},
"load_level_indicator_timeout": {
"name": "Load level indicator timeout"
},
"led_color_when_on": {
"name": "Default all LED on color"
},
"led_color_when_off": {
"name": "Default all LED off color"
},
"led_intensity_when_on": {
"name": "Default all LED on intensity"
},
"led_intensity_when_off": {
"name": "Default all LED off intensity"
},
"double_tap_up_level": {
"name": "Double tap up level"
},
"double_tap_down_level": {
"name": "Double tap down level"
},
"serving_size": {
"name": "Serving to dispense"
},
"portion_weight": {
"name": "Portion weight"
},
"away_preset_temperature": {
"name": "Away preset temperature"
},
"quick_start_time": {
"name": "Quick start time"
},
"local_temperature_calibration": {
"name": "Local temperature offset"
},
"presence_detection_timeout": {
"name": "Presence detection timeout"
},
"max_heat_setpoint_limit": {
"name": "Max heat setpoint limit"
},
"min_heat_setpoint_limit": {
"name": "Min heat setpoint limit"
},
"exercise_trigger_time": {
"name": "Exercise start time"
},
"external_temperature_sensor": {
"name": "External temperature sensor"
},
"load_room_mean": {
"name": "Load room mean"
},
"regulation_setpoint_offset": {
"name": "Regulation setpoint offset"
},
"irrigation_cycles": {
"name": "Irrigation cycles"
},
"irrigation_target": {
"name": "Irrigation target"
},
"irrigation_interval": {
"name": "Irrigation interval"
},
"valve_countdown_1": {
"name": "Irrigation time 1"
},
"valve_countdown_2": {
"name": "Irrigation time 2"
},
"on_led_intensity": {
"name": "On LED intensity"
},
"off_led_intensity": {
"name": "Off LED intensity"
},
"frost_protection_temperature": {
"name": "Frost protection temperature"
},
"valve_opening_degree": {
"name": "Valve opening degree"
},
"valve_closing_degree": {
"name": "Valve closing degree"
},
"siren_time": {
"name": "Siren time"
},
"timer_time_left": {
"name": "Timer time left"
},
"approach_distance": {
"name": "Approach distance"
},
"fixed_load_demand": {
"name": "Fixed load demand"
},
"display_brightness": {
"name": "Display brightness"
},
"display_inactive_brightness": {
"name": "Display inactive brightness"
},
"display_activity_timeout": {
"name": "Display activity timeout"
},
"open_window_detection_threshold": {
"name": "Open window detection threshold"
},
"open_window_event_duration": {
"name": "Open window event duration"
},
"open_window_detection_guard_period": {
"name": "Open window detection guard period"
},
"fallback_timeout": {
"name": "Fallback timeout"
},
"boost_amount": {
"name": "Boost amount"
},
"ambient_sensor_correction": {
"name": "Ambient sensor correction"
},
"external_sensor_correction": {
"name": "External sensor correction"
},
"move_sensitivity": {
"name": "Motion sensitivity"
},
"detection_distance_min": {
"name": "Minimum range"
},
"detection_distance_max": {
"name": "Maximum range"
},
"presence_sensitivity": {
"name": "Presence sensitivity"
},
"presence_timeout": {
"name": "Fade time"
},
"regulator_set_point": {
"name": "Regulator set point"
},
"detection_delay": {
"name": "Detection delay"
},
"fading_time": {
"name": "Fading time"
}
},
"select": {
"default_siren_tone": {
"name": "Default siren tone"
},
"default_siren_level": {
"name": "Default siren level"
},
"default_strobe_level": {
"name": "Default strobe level"
},
"default_strobe": {
"name": "Default strobe"
},
"start_up_on_off": {
"name": "Start-up behavior"
},
"power_on_state": {
"name": "Power on state"
},
"backlight_mode": {
"name": "Backlight mode"
},
"motion_sensitivity": {
"name": "Motion sensitivity"
},
"monitoring_mode": {
"name": "Monitoring mode"
},
"approach_distance": {
"name": "Approach distance"
},
"window_covering_mode": {
"name": "Curtain mode"
},
"output_mode": {
"name": "Output mode"
},
"switch_type": {
"name": "Switch type"
},
"led_scaling_mode": {
"name": "Led scaling mode"
},
"smart_fan_led_display_levels": {
"name": "Smart fan led display levels"
},
"increased_non_neutral_output": {
"name": "Non neutral output"
},
"leading_or_trailing_edge": {
"name": "Dimming mode"
},
"feeding_mode": {
"name": "Mode"
},
"preset": {
"name": "Preset"
},
"detection_distance": {
"name": "Detection distance"
},
"switch_mode": {
"name": "Switch mode"
},
"decoupled_mode": {
"name": "Decoupled mode"
},
"detection_sensitivity": {
"name": "Detection Sensitivity"
},
"keypad_lockout": {
"name": "Keypad lockout"
},
"exercise_day_of_week": {
"name": "Exercise day of the week"
},
"valve_orientation": {
"name": "Valve orientation"
},
"adaptation_run_command": {
"name": "Adaptation run command"
},
"viewing_direction": {
"name": "Viewing direction"
},
"setpoint_response_time": {
"name": "Setpoint response time"
},
"irrigation_mode": {
"name": "Irrigation mode"
},
"weather_delay": {
"name": "Weather delay"
},
"on_led_color": {
"name": "On LED color"
},
"off_led_color": {
"name": "Off LED color"
},
"external_trigger_mode": {
"name": "External trigger mode"
},
"local_temperature_source": {
"name": "Local temperature source"
},
"control_type": {
"name": "Control type"
},
"thermostat_application": {
"name": "Thermostat application"