mirror of
https://github.com/home-assistant/core.git
synced 2025-12-25 21:47:08 +00:00
* Initial commit for the solaredge configflow * rerun the hassfest script * Adding testcases * Rerun hassfest, problem with black? * Requirements for the tests * Remove CONF_MONITORED_CONDITIONS from configuration.yaml * Remove the options flow strings * Resolve some comments * Comments * More comments * Move the config from the sensor platform to the component itself * More comments * More comments * Added solaredge __init__ * Added more test to increase coverage
22 lines
604 B
JSON
22 lines
604 B
JSON
{
|
|
"config": {
|
|
"title": "SolarEdge",
|
|
"step": {
|
|
"user": {
|
|
"title": "Define the API parameters for this installation",
|
|
"data": {
|
|
"name": "The name of this installation",
|
|
"site_id": "The SolarEdge site-id",
|
|
"api_key": "The API key for this site"
|
|
}
|
|
}
|
|
},
|
|
"error": {
|
|
"site_exists": "This site_id is already configured"
|
|
},
|
|
"abort": {
|
|
"site_exists": "This site_id is already configured"
|
|
}
|
|
}
|
|
}
|