Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions custom_components/mass_queue/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
},
"manual": {
"title": "Manually add Music Assistant server",
"description": "Enter the URL to your already running Music Assistant server. If you do not have the Music Assistant server running, you should install it first.",
"description": "Enter the URL to your already running Music Assistant server for Music Assistant Queue Actions to use. If you do not have the Music Assistant server running, you should install it first.",
"data": {
"url": "URL of the Music Assistant server"
}
},
"discovery_confirm": {
"description": "Do you want to add the Music Assistant server `{url}` to Home Assistant?",
"description": "Do you want to add Music Assistant Queue Actions (via the Music Assistant server `{url}`) to Home Assistant?",
"title": "Discovered Music Assistant server"
}
},
Expand All @@ -26,7 +26,7 @@
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"already_in_progress": "[%key:common::config_flow::abort::already_in_progress%]",
"reconfiguration_successful": "Successfully reconfigured the Music Assistant integration.",
"reconfiguration_successful": "Successfully reconfigured the Music Assistant Queue Action integration.",
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"reconfigure_successful": "[%key:common::config_flow::abort::reconfigure_successful%]"
}
Expand All @@ -43,7 +43,7 @@
"issues": {
"invalid_server_version": {
"title": "The Music Assistant server is not the correct version",
"description": "Check if there are updates available for the Music Assistant server and/or integration."
"description": "Check if there are updates available for the Music Assistant server and/or MA Queue Actions integration."
}
},
"services": {
Expand Down
2 changes: 1 addition & 1 deletion custom_components/mass_queue/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def find_mass_queue_entry_from_unique_id(hass: HomeAssistant, unique_id: str):
for entry in entries:
if entry.unique_id == unique_id:
return entry
msg = f"Cannot find entry for Music Assistant with unique ID {unique_id}"
msg = f"Cannot find entry for Music Assistant Queue Actions with unique ID {unique_id}. Are the integrations for Music Assistant and Music Assistant Queue Actions configured?"
raise ServiceValidationError(msg)


Expand Down
Loading