From 6e74dca9528f3c0e36507289ff2419c53c169989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Bachmann?= Date: Wed, 14 Jan 2026 10:17:52 +0100 Subject: [PATCH] Create strings.json for ownCloud backup config Add configuration strings for ownCloud backup integration. --- .../owncloud_backup/strings.json | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 custom_components/owncloud_backup/strings.json diff --git a/custom_components/owncloud_backup/strings.json b/custom_components/owncloud_backup/strings.json new file mode 100644 index 0000000..6240fdc --- /dev/null +++ b/custom_components/owncloud_backup/strings.json @@ -0,0 +1,20 @@ +{ + "config": { + "step": { + "user": { + "title": "ownCloud Backup (WebDAV)", + "description": "Configure ownCloud as a Home Assistant backup location using WebDAV.", + "data": { + "base_url": "Base URL (e.g. https://cloud.example.com)", + "username": "Username", + "password": "Password / App password", + "backup_path": "Backup folder path (e.g. /HomeAssistant/Backups)", + "verify_ssl": "Verify SSL certificate" + } + } + }, + "error": { + "cannot_connect": "Failed to connect or authenticate. Check URL, credentials, and WebDAV availability." + } + } +}