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

View File

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