Use common strings for Sentry config flow (#41087)

This commit is contained in:
groot406 2020-10-03 15:04:22 +02:00 committed by GitHub
parent 20bacb6918
commit 31ce68e91e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,10 +4,15 @@
"user": { "user": {
"title": "Sentry", "title": "Sentry",
"description": "Enter your Sentry DSN", "description": "Enter your Sentry DSN",
"data": { "dsn": "DSN" } "data": {
"dsn": "DSN"
}
} }
}, },
"error": { "unknown": "Unexpected error", "bad_dsn": "Invalid DSN" }, "error": {
"unknown": "[%key:common::config_flow::error::unknown%]",
"bad_dsn": "Invalid DSN"
},
"abort": { "abort": {
"single_instance_allowed": "[%key:common::config_flow::abort::single_instance_allowed%]" "single_instance_allowed": "[%key:common::config_flow::abort::single_instance_allowed%]"
} }