Use common strings for roku config flow (#35504)

* use common strings for roku config flow.

* Update strings.json

* Update strings.json
This commit is contained in:
Chris Talkington 2020-05-12 10:00:38 -05:00 committed by GitHub
parent 1e157a4f41
commit de22bb1df6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,9 @@
"step": { "step": {
"user": { "user": {
"description": "Enter your Roku information.", "description": "Enter your Roku information.",
"data": { "host": "Host or IP address" } "data": {
"host": "[%key:common::config_flow::data::host%]"
}
}, },
"ssdp_confirm": { "ssdp_confirm": {
"title": "Roku", "title": "Roku",
@ -12,10 +14,12 @@
"data": {} "data": {}
} }
}, },
"error": { "cannot_connect": "Failed to connect, please try again" }, "error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]"
},
"abort": { "abort": {
"already_configured": "Roku device is already configured", "already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"unknown": "Unexpected error" "unknown": "[%key:common::config_flow::error::unknown%]"
} }
} }
} }