1
mirror of https://github.com/home-assistant/core synced 2024-10-13 14:52:10 +02:00
ha-core/homeassistant/components/nest/strings.json
Paulus Schoutsen e014a84215
Nest config flow (#14921)
* Move nest to dir based component

* Add config flow for Nest

* Load Nest platforms via config entry

* Add tests for Nest config flow

* Import existing access tokens as config entries

* Lint

* Update coverage

* Update translation

* Fix tests

* Address strings

* Use python-nest token resolution

* Lint

* Do not do I/O inside constructor

* Lint

* Update test requirements
2018-06-13 11:14:52 -04:00

33 lines
1.2 KiB
JSON

{
"config": {
"title": "Nest",
"step": {
"init": {
"title": "Authentication Provider",
"description": "Pick via which authentication provider you want to authenticate with Nest.",
"data": {
"flow_impl": "Provider"
}
},
"link": {
"title": "Link Nest Account",
"description": "To link your Nest account, [authorize your account]({url}).\n\nAfter authorization, copy-paste the provided pin code below.",
"data": {
"code": "Pin code"
}
}
},
"error": {
"timeout": "Timeout validating code",
"invalid_code": "Invalid code",
"unknown": "Unknown error validating code",
"internal_error": "Internal error validating code"
},
"abort": {
"already_setup": "You can only configure a single Nest account.",
"no_flows": "You need to configure Nest before being able to authenticate with it. [Please read the instructions](https://www.home-assistant.io/components/nest/).",
"authorize_url_timeout": "Timeout generating authorize url.",
"authorize_url_fail": "Unknown error generating an authorize url."
}
}
}