forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfanMode.i18n.fr.json
80 lines (80 loc) · 2.69 KB
/
fanMode.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
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
{
"tag": "fr",
"label": "Mode de ventilation",
"description": "Maintains and sets the state of a fan",
"attributes": {
"fanMode": {
"label": "Mode de ventilation",
"description": "The current mode of the fan, an enum of off, low, medium, high, or auto",
"displayTemplate": "{{device.label}} {{attribute}} was {{value}}",
"i18n": {
"value": {
"auto": {
"label": "Automatique"
},
"high": {
"label": "Élevée"
},
"low": {
"label": "Faible"
},
"medium": {
"label": "Moyenne"
},
"off": {
"label": "Désactivé"
}
}
}
},
"supportedFanModes": {
"label": "supported fan modes",
"description": "Supported states for this fan to be in",
"displayTemplate": "{{device.label}} {{attribute}} are {{value}}",
"i18n": {}
}
},
"commands": {
"setFanMode": {
"label": "setFanMode",
"description": "Set the fan's mode",
"arguments": {
"fanMode": {
"i18n": {
"auto": {
"label": "Automatique"
},
"high": {
"label": "Élevée"
},
"low": {
"label": "Faible"
},
"medium": {
"label": "Moyenne"
},
"off description": {
"label": "The fan is off"
},
"low description": {
"label": "The fan is on low"
},
"medium description": {
"label": "The fan is on medium"
},
"auto description": {
"label": "The fan is on auto"
},
"off": {
"label": "Désactivé"
},
"high description": {
"label": "The fan is on high"
}
},
"description": "The fan mode"
}
}
}
}
}