Files
core/homeassistant/components/cert_expiry/strings.json
T
jjlawren df3f7687d4 Refactor Certificate Expiry Sensor (#32066)
* Cert Expiry refactor

* Unused parameter

* Reduce delay

* Deprecate 'name' config

* Use config entry unique_id

* Fix logic bugs found with tests

* Rewrite tests to use config flow core interfaces, validate created sensors

* Update strings

* Minor consistency fix

* Review fixes, complete test coverage

* Move error handling to helper

* Subclass exceptions

* Better tests

* Use first object reference

* Fix docstring
2020-03-02 07:44:24 -06:00

25 lines
835 B
JSON

{
"config": {
"title": "Certificate Expiry",
"step": {
"user": {
"title": "Define the certificate to test",
"data": {
"name": "The name of the certificate",
"host": "The hostname of the certificate",
"port": "The port of the certificate"
}
}
},
"error": {
"resolve_failed": "This host can not be resolved",
"connection_timeout": "Timeout when connecting to this host",
"connection_refused": "Connection refused when connecting to host"
},
"abort": {
"already_configured": "This host and port combination is already configured",
"import_failed": "Import from config failed"
}
}
}