* Add sensor for which stage of heating/cooling is active for example, a 2-stage heating system would initially use the first stage for heat and if it was unable to fulfill the demand, the thermostat would call for the second stage heat in addition to the first stage heat already in use. * Add translation keys for english * Apply suggestions from code review Co-authored-by: Josef Zweck <24647999+zweckj@users.noreply.github.com> * Add translation of entity name * Update sensor name to correctly be translatable --------- Co-authored-by: Josef Zweck <24647999+zweckj@users.noreply.github.com>
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"config": {
|
|
"step": {
|
|
"user": {
|
|
"description": "Connect to the Venstar thermostat",
|
|
"data": {
|
|
"host": "[%key:common::config_flow::data::host%]",
|
|
"username": "[%key:common::config_flow::data::username%]",
|
|
"password": "[%key:common::config_flow::data::password%]",
|
|
"pin": "[%key:common::config_flow::data::pin%]",
|
|
"ssl": "[%key:common::config_flow::data::ssl%]"
|
|
},
|
|
"data_description": {
|
|
"host": "Hostname or IP address of your Venstar thermostat."
|
|
}
|
|
}
|
|
},
|
|
"abort": {
|
|
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]"
|
|
},
|
|
"error": {
|
|
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
|
|
"unknown": "[%key:common::config_flow::error::unknown%]"
|
|
}
|
|
},
|
|
"entity": {
|
|
"sensor": {
|
|
"schedule_part": {
|
|
"name": "Schedule Part",
|
|
"state": {
|
|
"morning": "Morning",
|
|
"day": "Day",
|
|
"evening": "Evening",
|
|
"night": "Night",
|
|
"inactive": "Inactive"
|
|
}
|
|
},
|
|
"active_stage": {
|
|
"name": "Active stage",
|
|
"state": {
|
|
"idle": "Idle",
|
|
"first_stage": "First stage",
|
|
"second_stage": "Second stage"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|