forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
securitySystem.i18n.fr.json
executable file
·63 lines (63 loc) · 2.17 KB
/
securitySystem.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
{
"tag": "fr",
"label": "Mode de sécurité",
"description": "Allows for the control of a security system",
"attributes": {
"sensorStatus": {
"label": "Sensor Status",
"description": "Array of sensors that are open or otherwise not functional, requiring a bypass to arm the system",
"displayTemplate": "{{attribute}} of {{device.label}} is: {{value}}",
"i18n": {
"value": {
"ready": {
"label": "Ready"
},
"bypassedNotReady": {
"label": "Bypassed / Not Ready"
}
}
}
},
"alarm": {
"label": "Alarme",
"description": "[DEPRECATED] The reference to the device that most recently generated an event to trigger an alarm",
"displayTemplate": "{{attribute}} de {{device.label}} sont : {{value}}",
"i18n": {}
},
"securitySystemStatus": {
"label": "Mode de sécurité",
"description": "The current arming status of the security system",
"displayTemplate": "{{attribute}} de {{device.label}} sont : {{value}}",
"i18n": {
"value": {
"disarmed": {
"label": "Désactivé"
},
"armedStay": {
"label": "Activé (présent)"
},
"armedAway": {
"label": "Activé (absent)"
}
}
}
}
},
"commands": {
"armStay": {
"label": "Activé (présent)",
"description": "Set the security system to ``armedStay``",
"arguments": {}
},
"disarm": {
"label": "Désactivé",
"description": "Set the security system to ``disarmed``",
"arguments": {}
},
"armAway": {
"label": "Activé (absent)",
"description": "Set the security system to ``armedAway``",
"arguments": {}
}
}
}