mirror of
https://github.com/home-assistant/core.git
synced 2026-09-10 10:06:19 -05:00
* Add support for device actions, with light as example. * Add translation; return list
18 lines
362 B
JSON
18 lines
362 B
JSON
{
|
|
"device_automation": {
|
|
"action_type": {
|
|
"toggle": "Toggle {name}",
|
|
"turn_on": "Turn on {name}",
|
|
"turn_off": "Turn off {name}"
|
|
},
|
|
"condition_type": {
|
|
"is_on": "{name} is on",
|
|
"is_off": "{name} is off"
|
|
},
|
|
"trigger_type": {
|
|
"turn_on": "{name} turned on",
|
|
"turn_off": "{name} turned off"
|
|
}
|
|
}
|
|
}
|