1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 05:57:01 +00:00
Files
core/homeassistant/components/input_select/strings.json
2025-10-28 10:33:10 +01:00

75 lines
1.9 KiB
JSON

{
"entity_component": {
"_": {
"name": "[%key:component::input_select::title%]",
"state_attributes": {
"editable": {
"name": "[%key:common::generic::ui_managed%]",
"state": {
"false": "[%key:common::state::no%]",
"true": "[%key:common::state::yes%]"
}
},
"options": {
"name": "[%key:component::select::entity_component::_::state_attributes::options::name%]"
}
}
}
},
"services": {
"reload": {
"description": "Reloads helpers from the YAML-configuration.",
"name": "[%key:common::action::reload%]"
},
"select_first": {
"description": "Selects the first option.",
"name": "First"
},
"select_last": {
"description": "Selects the last option.",
"name": "Last"
},
"select_next": {
"description": "Selects the next option.",
"fields": {
"cycle": {
"description": "If the option should cycle from the last to the first option on the list.",
"name": "Cycle"
}
},
"name": "Next"
},
"select_option": {
"description": "Selects an option.",
"fields": {
"option": {
"description": "Option to be selected.",
"name": "Option"
}
},
"name": "Select"
},
"select_previous": {
"description": "Selects the previous option.",
"fields": {
"cycle": {
"description": "If the option should cycle from the first to the last option on the list.",
"name": "[%key:component::input_select::services::select_next::fields::cycle::name%]"
}
},
"name": "Previous"
},
"set_options": {
"description": "Sets the options.",
"fields": {
"options": {
"description": "List of options.",
"name": "Options"
}
},
"name": "Set options"
}
},
"title": "Input select"
}