mirror of
https://github.com/home-assistant/core.git
synced 2026-02-22 10:55:50 +00:00
* Add climate platform * Add unit tests for climate platform * Use setup_integration fixture * Apply new import order * Undo import order * Code review * Throw an exception on invalid preset mode * Let device response determine state * Remove hvac mode OFF * Remove hvac mode OFF * Setup debouncer when being added to hass * Fix typo
25 lines
769 B
JSON
25 lines
769 B
JSON
{
|
|
"config": {
|
|
"flow_title": "Controller {serial}",
|
|
"step": {
|
|
"discovery_confirm": {
|
|
"title": "Add controller",
|
|
"description": "Add controller {serial}?"
|
|
}
|
|
},
|
|
"abort": {
|
|
"already_configured": "Controller already configured",
|
|
"discovery_in_progress": "Discovery in progress",
|
|
"not_supported": "Configuration for QBUS happens through MQTT discovery. If your controller is not automatically discovered, check the prerequisites and troubleshooting section of the documentation."
|
|
},
|
|
"error": {
|
|
"no_controller": "No controllers were found"
|
|
}
|
|
},
|
|
"exceptions": {
|
|
"invalid_preset": {
|
|
"message": "Preset mode \"{preset}\" is not valid. Valid preset modes are: {options}."
|
|
}
|
|
}
|
|
}
|