1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-21 10:27:52 +00:00
Files
Patrick Vorgers d930755f92 IDrive e2 backup provider (#144910)
Co-authored-by: Josef Zweck <josef@zweck.dev>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-02-12 15:49:03 -08:00

57 lines
2.2 KiB
JSON

{
"config": {
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"cannot_connect": "[%key:component::idrive_e2::exceptions::cannot_connect::message%]",
"invalid_credentials": "[%key:component::idrive_e2::exceptions::invalid_credentials::message%]",
"invalid_endpoint_url": "[%key:component::idrive_e2::exceptions::invalid_endpoint_url::message%]"
},
"error": {
"bucket_not_found": "[%key:component::idrive_e2::exceptions::bucket_not_found::message%]",
"cannot_connect": "[%key:component::idrive_e2::exceptions::cannot_connect::message%]",
"invalid_credentials": "[%key:component::idrive_e2::exceptions::invalid_credentials::message%]",
"invalid_endpoint_url": "[%key:component::idrive_e2::exceptions::invalid_endpoint_url::message%]",
"no_buckets": "[%key:component::idrive_e2::exceptions::no_buckets::message%]"
},
"step": {
"bucket": {
"data": {
"bucket": "Bucket name"
},
"data_description": {
"bucket": "The name of the bucket to store the Home Assistant backups in."
},
"title": "Select IDrive e2 bucket"
},
"user": {
"data": {
"access_key_id": "Access key ID",
"secret_access_key": "Secret access key"
},
"data_description": {
"access_key_id": "Access key ID to connect to IDrive e2 API",
"secret_access_key": "Secret access key to connect to IDrive e2 API"
},
"title": "Add IDrive e2"
}
}
},
"exceptions": {
"bucket_not_found": {
"message": "Bucket \"{bucket}\" does not exist. Please recreate this bucket in IDrive e2 before continuing."
},
"cannot_connect": {
"message": "Cannot connect to endpoint"
},
"invalid_credentials": {
"message": "The provided access key ID and secret access key are invalid or do not have the required permissions."
},
"invalid_endpoint_url": {
"message": "Invalid endpoint URL. Please make sure it's a valid IDrive e2 endpoint URL."
},
"no_buckets": {
"message": "No buckets were found for the provided credentials. Create a bucket in IDrive e2 first, then try again."
}
}
}