forked from hongtat/smartthings-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wifiMeshRouter.i18n.fr.json
executable file
·91 lines (91 loc) · 3.61 KB
/
wifiMeshRouter.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
{
"tag": "fr",
"label": "Wifi Mesh Router",
"description": "Allows for basic control of a mesh router",
"attributes": {
"disconnectedRouterCount": {
"label": "Nombre de routeurs déconnectés",
"description": "A numeric representation of the quantity of disconnected routers in the mesh network",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {}
},
"wifiGuestNetworkStatus": {
"label": "Statut du réseau d'invité Wi-Fi",
"description": "The current state of the guest network. Possible values are \"enabled\", \"disabled\", and \"not configured\"",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {
"value": {
"disabled": {
"label": "disabled"
},
"not configured": {
"label": "not configured"
},
"enabled": {
"label": "enabled"
}
}
}
},
"connectedRouterCount": {
"label": "Nombre de routeurs connectés",
"description": "A numeric representation of the quantity of connected routers in the mesh network",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {}
},
"connectedDeviceCount": {
"label": "Nombre d'appareils connectés",
"description": "A numeric representation of the quantity of connected WiFi devices in the network",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {}
},
"wifiNetworkName": {
"label": "Nom du réseau Wi-Fi",
"description": "A string representation of the primary WiFi network name",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {}
},
"wifiGuestNetworkName": {
"label": "Nom du réseau d'invité Wi-Fi",
"description": "A string representation of the guest WiFi network name",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {}
},
"wifiNetworkStatus": {
"label": "Statut du réseau Wi-Fi",
"description": "The current state of the primary network. Possible values are \"enabled\", \"disabled\", and \"not configured\"",
"displayTemplate": "{{attribute}} de {{device.label}} était : {{value}}",
"i18n": {
"value": {
"disabled": {
"label": "disabled"
},
"not configured": {
"label": "not configured"
},
"enabled": {
"label": "enabled"
}
}
}
}
},
"commands": {
"enableWifiGuestNetwork": {
"description": "Enable the guest WiFi network",
"arguments": {}
},
"disableWifiNetwork": {
"description": "Disable the primary WiFi network",
"arguments": {}
},
"enableWifiNetwork": {
"description": "Enable the primary WiFi network",
"arguments": {}
},
"disableWifiGuestNetwork": {
"description": "Disable the guest WiFi network",
"arguments": {}
}
}
}