forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatelessMediaPlaybackButton.i18n.fr.json
executable file
·41 lines (41 loc) · 1.41 KB
/
statelessMediaPlaybackButton.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
{
"tag": "fr",
"label": "Media Playback Button",
"description": "Allows for the control of a media playback device with stateless action buttons",
"attributes": {
"availableMediaPlaybackButtons": {
"label": "configured buttons",
"description": "A list of commands/buttons that have been configured in the device",
"displayTemplate": "{{device.label}} {{attribute}} was {{value}}",
"i18n": {}
}
},
"commands": {
"setButton": {
"label": "setButton",
"description": "Emulate the pressing of a supported button",
"arguments": {
"button": {
"i18n": {
"play": {
"label": "Lecture"
},
"rewind": {
"label": "Rembobinage"
},
"stop": {
"label": "Arrêter"
},
"fastForward": {
"label": "Avance rapide"
},
"pause": {
"label": "Pause"
}
},
"description": "The button in availableMediaPlaybackButtons to send to the device"
}
}
}
}
}