forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindicator.i18n.fr.json
42 lines (42 loc) · 1.45 KB
/
indicator.i18n.fr.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
{
"tag": "en",
"label": "Indicator",
"description": "The indicator capability gives you the ability to set the indicator LED light on a Z-Wave switch. As such, the most common use case for the indicator capability is in a Device Handler.",
"attributes": {
"indicatorStatus": {
"label": "indicator status",
"description": "A value representing the current state of the indicator LED",
"displayTemplate": "{{device.label}} {{attribute}} was {{value}}",
"i18n": {
"value": {
"never": {
"label": "never"
},
"when off": {
"label": "when off"
},
"when on": {
"label": "when on"
}
}
}
}
},
"commands": {
"indicatorNever": {
"label": "indicatorNever",
"description": "Set the indicator LED to be always off",
"arguments": {}
},
"indicatorWhenOn": {
"label": "indicatorWhenOn",
"description": "Set the indicator LED to on when the switch is on",
"arguments": {}
},
"indicatorWhenOff": {
"label": "indicatorWhenOff",
"description": "Set the indicator LED to off when the switch is on",
"arguments": {}
}
}
}