forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudioVolume.i18n.fr.json
executable file
·35 lines (35 loc) · 1.01 KB
/
audioVolume.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
{
"tag": "fr",
"label": "Volume",
"description": "Allows for the control of audio volume.",
"attributes": {
"volume": {
"label": "Volume",
"description": "The current volume setting of the audio",
"displayTemplate": "{{attribute}} de {{device.label}} : {{value}} %",
"i18n": {}
}
},
"commands": {
"volumeDown": {
"label": "volumeDown",
"description": "Turn the audio volume down",
"arguments": {}
},
"volumeUp": {
"label": "volumeUp",
"description": "Turn the audio volume up",
"arguments": {}
},
"setVolume": {
"label": "setVolume",
"description": "Set the audio volume level",
"arguments": {
"volume": {
"i18n": {},
"description": "A value to which the audio volume level should be set"
}
}
}
}
}