Use reference strings in Flume (#41075)

This commit is contained in:
SNoof85 2020-10-02 21:07:19 +02:00 committed by GitHub
parent 87c1c16b31
commit 4158cefeb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,9 @@
{ {
"config": { "config": {
"error": { "error": {
"unknown": "Unexpected error", "unknown": "[%key:common::config_flow::error::unknown%]",
"invalid_auth": "Invalid authentication", "invalid_auth": "[%key:common::config_flow::error::invalid_auth%]",
"cannot_connect": "Failed to connect, please try again" "cannot_connect": "[%key:common::config_flow::error::cannot_connect%]"
}, },
"step": { "step": {
"user": { "user": {
@ -18,7 +18,7 @@
} }
}, },
"abort": { "abort": {
"already_configured": "This account is already configured" "already_configured": "[%key:common::config_flow::abort::already_configured_account%]"
} }
} }
} }