forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathairPurifierFanMode.i18n.fr.json
executable file
·83 lines (83 loc) · 2.88 KB
/
airPurifierFanMode.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
81
82
83
{
"tag": "fr",
"label": "Mode de ventilation du purificateur d'air",
"description": "Maintains and sets the state of an air purifier's fan",
"attributes": {
"supportedAirPurifierFanModes": {
"label": "supported air purifier fan modes",
"description": "Supported states for this air purifier fan to be in",
"displayTemplate": "{{device.label}} {{attribute}} are {{value}}",
"i18n": {}
},
"airPurifierFanMode": {
"label": "Mode de ventilation du purificateur d'air",
"description": "The current mode of the air purifier fan, an enum of auto, low, medium, high, sleep, quiet or windFree",
"displayTemplate": "{{device.label}} {{attribute}} was {{value}}",
"i18n": {
"value": {
"sleep": {
"label": "Veille"
},
"auto": {
"label": "Automatique"
},
"high": {
"label": "Intensif"
},
"low": {
"label": "Faible"
},
"windFree": {
"label": "Ventilation autonome"
},
"medium": {
"label": "Moyen"
},
"quiet": {
"label": "Silencieux"
},
"off": {
"label": "Désactivé"
}
}
}
}
},
"commands": {
"setAirPurifierFanMode": {
"label": "setAirPurifierFanMode",
"description": "Set the air purifier fan's mode",
"arguments": {
"airPurifierFanMode": {
"i18n": {
"sleep": {
"label": "Veille"
},
"high": {
"label": "Intensif"
},
"auto": {
"label": "Automatique"
},
"windFree": {
"label": "Ventilation autonome"
},
"low": {
"label": "Faible"
},
"quiet": {
"label": "Silencieux"
},
"medium": {
"label": "Moyen"
},
"off": {
"label": "Désactivé"
}
},
"description": "The air purifier fan mode"
}
}
}
}
}