Skip to content

Commit

Permalink
Update strings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Xerolux authored Sep 23, 2024
1 parent 82c4584 commit 0812b7f
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions custom_components/violet_pool_controller/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@
"step": {
"user": {
"data": {
"api_url": "API URL",
"api_url": "API URL (e.g., http://192.168.x.x/getReadings?ALL)",
"polling_interval": "Polling Interval (seconds)",
"use_ssl": "SSL verwenden"
"use_ssl": "Use SSL (Check for HTTPS)"
},
"title": "Configure Violet Device"
"title": "Configure Violet Device",
"description": "Please enter the API URL and choose if SSL should be used. Ensure the API URL is correct and reachable."
}
},
"error": {
"cannot_connect": "Cannot connect to the device. Please check the API URL.",
"unknown": "An unknown error occurred."
"cannot_connect": "Cannot connect to the device. Please check the API URL or SSL settings.",
"invalid_url": "The API URL format is invalid. Please check and try again.",
"ssl_error": "SSL connection failed. Ensure SSL is enabled on the device or disable SSL.",
"timeout": "The connection to the device timed out. Please try again later.",
"unknown": "An unknown error occurred. Please try again or check the logs for more details."
}
}
}

0 comments on commit 0812b7f

Please sign in to comment.