mirror of
https://github.com/home-assistant/core.git
synced 2026-03-04 00:30:26 +00:00
* 🚜 Rewrite of Toon component * 🔥 Removed manual state from list * 👕 Addresses code review comments * 🔥 Removes a log line that should not have been left behind * 👕 Addresses linting warnings * 👕 Addresses Hound CI warning * 👕 Fixes small code styling issues * ✨ Sets an appropriate SCAN_INTERVAL * ✨ Sets min/max temperature for climate platform * 👕 Makes imports more consistent with codebase * 🚑 Fixes incorrect SCAN_INTERVAL value in climate platform * 🚑 Uses OrderedDict for config_flow schema * 👕 Adds return types for min/max temp * 🚜 Refactors entities into their actual devices * ⬆️ Updates toonapilib to 3.0.7 * 🚜 Refactors binary sensor state inversion * 🚑 Fixes states of OpenTherm connection and Hot Tap Water * ✨ Adds Boiler Preheat binary sensor * ✨ Adds Toon Thermostat Program binary sensor * ✨ Adds Boiler Modulation Level sensor * ✨ Adds Daily Power Cost sensor * 🔥 Cleanup of Toon Thermostat climate attributes * 🚜 Adjusts config_flow with Tenant selection * 🙋 Adds myself to codeowners file as maintainer * ⬆️ Gen requirements * ⬆️ Updates toonapilib to 3.0.9 * ☔ Adds config_flow tests
34 lines
1.2 KiB
JSON
34 lines
1.2 KiB
JSON
{
|
|
"config": {
|
|
"title": "Toon",
|
|
"step": {
|
|
"authenticate": {
|
|
"title": "Link your Toon account",
|
|
"description": "Authenticate with your Eneco Toon account (not the developer account).",
|
|
"data": {
|
|
"username": "Username",
|
|
"password": "Password",
|
|
"tenant": "Tenant"
|
|
}
|
|
},
|
|
"display": {
|
|
"title": "Select display",
|
|
"description": "Select the Toon display to connect with.",
|
|
"data": {
|
|
"display": "Choose display"
|
|
}
|
|
}
|
|
},
|
|
"error": {
|
|
"credentials": "The provided credentials are invalid.",
|
|
"display_exists": "The selected display is already configured."
|
|
},
|
|
"abort": {
|
|
"client_id": "The client ID from the configuration is invalid.",
|
|
"client_secret": "The client secret from the configuration is invalid.",
|
|
"unknown_auth_fail": "Unexpected error occured, while authenticating.",
|
|
"no_agreements": "This account has no Toon displays.",
|
|
"no_app": "You need to configure Toon before being able to authenticate with it. [Please read the instructions](https://www.home-assistant.io/components/toon/)."
|
|
}
|
|
}
|
|
} |