1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-22 02:47:14 +00:00
Files
core/homeassistant/components/sftp_storage/strings.json
2025-10-28 10:33:10 +01:00

38 lines
1.8 KiB
JSON

{
"config": {
"abort": {
"already_configured": "Integration already configured. Host with same address, port and backup location already exists."
},
"error": {
"invalid_key": "Invalid key uploaded. Please make sure key corresponds to valid SSH key algorithm.",
"key_or_password_needed": "Please configure password or private key file location for SFTP Storage.",
"os_error": "{error_message}. Please check if host and/or port are correct.",
"permission_denied": "{error_message}",
"sftp_no_such_file": "Could not check directory {backup_location}. Make sure directory exists.",
"sftp_permission_denied": "Permission denied for directory {backup_location}",
"unknown": "Unexpected exception ({exception}) occurred during config flow. {error_message}"
},
"step": {
"user": {
"data": {
"backup_location": "Remote path",
"host": "[%key:common::config_flow::data::host%]",
"password": "[%key:common::config_flow::data::password%]",
"port": "[%key:common::config_flow::data::port%]",
"private_key_file": "Private key file",
"username": "[%key:common::config_flow::data::username%]"
},
"data_description": {
"backup_location": "Remote path where to upload backups.",
"host": "Hostname or IP address of SSH/SFTP server to connect to.",
"password": "Password to authenticate with. Provide this or private key file.",
"port": "Port of your SSH/SFTP server. This is usually 22.",
"private_key_file": "Upload private key file used for authentication. Provide this or password.",
"username": "Username to authenticate with."
},
"description": "Set up SFTP Storage"
}
}
}
}