Add vicare strings (#61593)

* Add vicare strings

* Remove duplicates

* Remove duplicates from english translation

* Add missing strings
This commit is contained in:
Hans Oischinger 2021-12-17 15:43:41 +01:00 committed by GitHub
parent 177ffa3aa6
commit ed1ce7d9f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{
"config": {
"flow_title": "{name} ({host})",
"step": {
"user": {
"title": "{name}",
"description": "Set up ViCare integration. To generate API key go to https://developer.viessmann.com",
"data": {
"name": "[%key:common::config_flow::data::name%]",
"scan_interval": "Scan Interval (seconds)",
"username": "[%key:common::config_flow::data::email%]",
"password": "[%key:common::config_flow::data::password%]",
"client_id": "[%key:common::config_flow::data::api_key%]",
"heating_type": "Heating type"
}
}
},
"error": {
"invalid_auth": "[%key:common::config_flow::error::invalid_auth%]"
},
"abort": {
"single_instance_allowed": "[%key:common::config_flow::abort::single_instance_allowed%]",
"unknown": "[%key:common::config_flow::error::unknown%]"
}
}
}

View file

@ -0,0 +1,26 @@
{
"config": {
"abort": {
"single_instance_allowed": "Already configured. Only a single configuration possible.",
"unknown": "Unexpected error"
},
"error": {
"invalid_auth": "Invalid authentication"
},
"flow_title": "{name} ({host})",
"step": {
"user": {
"data": {
"name": "Name",
"scan_interval": "Scan Interval (seconds)",
"client_id": "API Key",
"heating_type": "Heating type",
"password": "Password",
"username": "Email"
},
"title": "{name}",
"description": "Set up ViCare integration. To generate API key go to https://developer.viessmann.com"
}
}
}
}