1
mirror of https://github.com/home-assistant/core synced 2024-08-31 05:57:13 +02:00

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": {
"title": "Sentry",
"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": {
"single_instance_allowed": "[%key:common::config_flow::abort::single_instance_allowed%]"
}