mirror of
https://github.com/home-assistant/core.git
synced 2026-02-25 12:27:07 +00:00
* Initial draft * Add tests for init Fix hound comments * Add tests for device Change parameter handling to make device easier to test * Remove superfluous functionality per Martins request * Fix hound comments * Embedded platforms * Fix device import * Config flow retry * Options default values will be set automatically to options in config entry before component can be used * Clean up init Add populate options Fix small issues in config flow Add tests covering init * Improve device tests * Add config flow tests * Fix hound comments * Rebase miss * Initial tests for binary sensors * Clean up More binary sensor tests * Hound comments * Add camera tests * Fix initial state of sensors * Bump dependency to v17 * Fix pylint and flake8 * Fix comments
26 lines
816 B
JSON
26 lines
816 B
JSON
{
|
|
"config": {
|
|
"title": "Axis device",
|
|
"step": {
|
|
"user": {
|
|
"title": "Set up Axis device",
|
|
"data": {
|
|
"host": "Host",
|
|
"username": "Username",
|
|
"password": "Password",
|
|
"port": "Port"
|
|
}
|
|
}
|
|
},
|
|
"error": {
|
|
"already_configured": "Device is already configured",
|
|
"device_unavailable": "Device is not available",
|
|
"faulty_credentials": "Bad user credentials"
|
|
},
|
|
"abort": {
|
|
"already_configured": "Device is already configured",
|
|
"bad_config_file": "Bad data from config file",
|
|
"link_local_address": "Link local addresses are not supported"
|
|
}
|
|
}
|
|
} |