1
0
mirror of https://github.com/home-assistant/core.git synced 2026-03-01 06:16:29 +00:00
Files
core/homeassistant/components/group/strings.json
Erik Montnemery 5ae48bcf74 Add config flow for binary_sensor group (#67802)
* Add config flow for binary_sensor group

* Address review comments

* Remove device class selection from flow

* Update translation strings
2022-03-10 10:39:51 +01:00

95 lines
3.3 KiB
JSON

{
"title": "Group",
"config": {
"step": {
"user": {
"title": "New Group",
"data": {
"group_type": "Group type"
}
},
"binary_sensor": {
"title": "[%key:component::group::config::step::user::title%]",
"description": "If \"all entities\" is enabled, the group's state is on only if all members are on. If \"all entities\" is disabled, the group's state is on if any member is on.",
"data": {
"all": "All entities",
"entities": "Members",
"name": "Name"
}
},
"cover": {
"data": {
"title": "[%key:component::group::config::step::user::title%]",
"entities": "[%key:component::group::config::step::binary_sensor::data::entities%]",
"name": "[%key:component::group::config::step::binary_sensor::data::name%]"
}
},
"fan": {
"data": {
"title": "[%key:component::group::config::step::user::title%]",
"entities": "[%key:component::group::config::step::binary_sensor::data::entities%]",
"name": "[%key:component::group::config::step::binary_sensor::data::name%]"
}
},
"light": {
"data": {
"title": "[%key:component::group::config::step::user::title%]",
"entities": "[%key:component::group::config::step::binary_sensor::data::entities%]",
"name": "[%key:component::group::config::step::binary_sensor::data::name%]"
}
},
"media_player": {
"data": {
"title": "[%key:component::group::config::step::user::title%]",
"entities": "[%key:component::group::config::step::binary_sensor::data::entities%]",
"name": "[%key:component::group::config::step::binary_sensor::data::name%]"
}
}
}
},
"options": {
"step": {
"binary_sensor_options": {
"data": {
"all": "[%key:component::group::config::step::binary_sensor::data::all%]",
"entities": "[%key:component::group::config::step::binary_sensor::data::entities%]"
}
},
"cover_options": {
"data": {
"entities": "[%key:component::group::config::step::binary_sensor::data::entities%]"
}
},
"fan_options": {
"data": {
"entities": "[%key:component::group::config::step::binary_sensor::data::entities%]"
}
},
"light_options": {
"data": {
"entities": "[%key:component::group::config::step::binary_sensor::data::entities%]"
}
},
"media_player_options": {
"data": {
"entities": "[%key:component::group::config::step::binary_sensor::data::entities%]"
}
}
}
},
"state": {
"_": {
"off": "[%key:common::state::off%]",
"on": "[%key:common::state::on%]",
"home": "[%key:component::device_tracker::state::_::home%]",
"not_home": "[%key:component::device_tracker::state::_::not_home%]",
"open": "[%key:common::state::open%]",
"closed": "[%key:common::state::closed%]",
"locked": "[%key:common::state::locked%]",
"unlocked": "[%key:common::state::unlocked%]",
"ok": "[%key:component::binary_sensor::state::problem::off%]",
"problem": "[%key:component::binary_sensor::state::problem::on%]"
}
}
}