mirror of
https://github.com/home-assistant/core.git
synced 2025-12-25 13:38:04 +00:00
* Adds support for config entries and device registry * Fixing string formatting for logger * Add unit test for abode config flow * Fix for lights, only allow one config, add ability to unload entry * Fix for subscribing to hass_events on adding abode component * Several fixes from code review * Several fixes from second code review * Several fixes from third code review * Update documentation url to fix branch conflict * Fixes config flow and removes unused constants * Fix for switches, polling entry option, improved tests * Update .coveragerc, disable pylint W0611, remove polling from UI * Multiple fixes and edits to adhere to style guidelines * Removed unique_id * Minor correction for formatting error in rebase * Resolves issue causing CI to fail * Bump abodepy version * Add remove device callback and minor clean up * Fix incorrect method name * Docstring edits * Fix duplicate import issues from rebase * Add logout_listener attribute to AbodeSystem * Add additional test for complete coverage
22 lines
539 B
JSON
22 lines
539 B
JSON
{
|
|
"config": {
|
|
"title": "Abode",
|
|
"step": {
|
|
"user": {
|
|
"title": "Fill in your Abode login information",
|
|
"data": {
|
|
"username": "Email Address",
|
|
"password": "Password"
|
|
}
|
|
}
|
|
},
|
|
"error": {
|
|
"identifier_exists": "Account already registered.",
|
|
"invalid_credentials": "Invalid credentials.",
|
|
"connection_error": "Unable to connect to Abode."
|
|
},
|
|
"abort": {
|
|
"single_instance_allowed": "Only a single configuration of Abode is allowed."
|
|
}
|
|
}
|
|
} |