forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcameraPreset.i18n.fr.json
executable file
·71 lines (71 loc) · 2.28 KB
/
cameraPreset.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
{
"tag": "fr",
"label": "Orienter caméra sur point passage",
"description": "Allow for preset camera positon and control settings",
"attributes": {
"presets": {
"label": "Presets",
"description": "A Json representation of the current presets. It will be a JSON array of objects containing 'name', 'id', and 'data' as mandatory fields. Format, '``[{\"id\":\"<id>\",\"name\":\"<name>\",\"data\":{<data>}},{}..]``'",
"displayTemplate": "{{device.label}} {{attribute}} was {{value}}",
"i18n": {}
}
},
"commands": {
"create": {
"label": "create",
"description": "Create a preset",
"arguments": {
"data": {
"i18n": {},
"description": "New settings for the preset"
},
"name": {
"i18n": {},
"description": "Name for the new preset"
},
"id": {
"i18n": {},
"description": "The id of the preset to update"
}
}
},
"update": {
"label": "update",
"description": "Update a preset",
"arguments": {
"data": {
"i18n": {},
"description": "New settings for the preset"
},
"name": {
"i18n": {},
"description": "New name for the preset"
},
"id": {
"i18n": {},
"description": "The id of the preset to update"
}
}
},
"execute": {
"label": "execute",
"description": "Go to a preset",
"arguments": {
"id": {
"i18n": {},
"description": "The id of the preset to go to"
}
}
},
"delete": {
"label": "delete",
"description": "Delete a preset",
"arguments": {
"id": {
"i18n": {},
"description": "The id of the preset to delete"
}
}
}
}
}