forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathovenOperatingState.i18n.fr.json
executable file
·166 lines (166 loc) · 5.49 KB
/
ovenOperatingState.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
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
{
"tag": "fr",
"label": "Four",
"description": "Allows for the control of the oven operational state.",
"attributes": {
"completionTime": {
"label": "Heure de fin",
"description": "The completion time for the oven job",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {}
},
"machineState": {
"label": "Statut de l'appareil",
"description": "Current state of the oven",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {
"value": {
"running": {
"label": "En marche"
},
"paused": {
"label": "Mis en pause"
},
"ready": {
"label": "Prêt"
}
}
}
},
"progress": {
"label": "Progression",
"description": "The percentage complete for the oven job",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}} %",
"i18n": {}
},
"supportedMachineStates": {
"label": "Statut de machine pris en charge",
"description": "States supported by the oven",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {
"value": {
"running": {
"label": "Fonctionnement"
},
"paused": {
"label": "Mis en pause"
},
"ready": {
"label": "Prêt"
}
}
}
},
"ovenJobState": {
"label": "Four",
"description": "The state of the oven job",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {
"value": {
"cleaning": {
"label": "Nettoyage"
},
"sensing": {
"label": "sensing"
},
"stoneHeating": {
"label": "stoneHeating"
},
"fastPreheat": {
"label": "fastPreheat"
},
"scheduledEnd": {
"label": "scheduledEnd"
},
"finished": {
"label": "finished"
},
"searing": {
"label": "searing"
},
"preheat": {
"label": "Préchauffage"
},
"rinsing": {
"label": "Rinçage"
},
"ready": {
"label": "Prêt"
},
"draining": {
"label": "Catalyse/pyrolyse"
},
"cooling": {
"label": "Refroidissement"
},
"warming": {
"label": "warming"
},
"timeHoldPreheat": {
"label": "timeHoldPreheat"
},
"cooking": {
"label": "Cuisson"
},
"defrosting": {
"label": "defrosting"
},
"scheduledStart": {
"label": "scheduledStart"
}
}
}
},
"operationTime": {
"label": "Temps de fonctionnement",
"description": "Operation time of the oven job",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {}
}
},
"commands": {
"stop": {
"label": "stop",
"description": "Stop the oven operation",
"arguments": {}
},
"setMachineState": {
"label": "setMachineState",
"description": "Set the oven state",
"arguments": {
"state": {
"i18n": {
"running": {
"label": "Lancer"
},
"ready": {
"label": "Annuler"
},
"pause": {
"label": "Pause"
}
},
"description": "Set the oven to this state"
}
}
},
"start": {
"label": "start",
"description": "Start the oven operation",
"arguments": {
"mode": {
"i18n": {},
"description": "the mode for oven-mode"
},
"setpoint": {
"i18n": {},
"description": "the setpoint for oven-setpoint"
},
"time": {
"i18n": {},
"description": "operationTime for oven-operaitng-state"
}
}
}
}
}