forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindMode.i18n.fr.json
executable file
·53 lines (53 loc) · 1.65 KB
/
windMode.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
43
44
45
46
47
48
49
50
51
52
53
{
"tag": "fr",
"label": "Mode Vent",
"description": "Maintains and sets the wind mode",
"attributes": {
"supportedWindModes": {
"label": "supported wind modes",
"description": "Supported wind modes",
"displayTemplate": "{{device.label}} {{attribute}} are {{value}}",
"i18n": {}
},
"windMode": {
"label": "Mode Vent",
"description": "The current mode of the wind, an enum of sleepWind or naturalWind",
"displayTemplate": "{{device.label}} {{attribute}} was {{value}}",
"i18n": {
"value": {
"sleepWind": {
"label": "Vent Sommeil"
},
"noWind": {
"label": "Désactivé"
},
"naturalWind": {
"label": "Vent Nature"
}
}
}
}
},
"commands": {
"setWindMode": {
"label": "setWindMode",
"description": "Set the wind mode",
"arguments": {
"windMode": {
"i18n": {
"sleepWind": {
"label": "Vent Sommeil"
},
"noWind": {
"label": "Désactivé"
},
"naturalWind": {
"label": "Vent Nature"
}
},
"description": "The wind mode"
}
}
}
}
}