From aa17be0e3310946020fd56b4da819a18dbc950f9 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Thu, 17 Jul 2025 10:27:36 +0200 Subject: [PATCH] Add Supervisor unhealthy reason translations (#26190) * Add Supervisor unhealthy reason translations This adds translations for new Supervisor unhealthy reasons, including: - `oserror_bad_message` (https://github.com/home-assistant/supervisor/pull/4750) - `duplicate_os_installation` (https://github.com/home-assistant/supervisor/pull/6024) While at it, sort the keys alphabetically for consistency. --- src/translations/en.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/translations/en.json b/src/translations/en.json index abd022ab5c..23b39abc45 100644 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -1908,10 +1908,12 @@ "title": "[%key:supervisor::system::supervisor::unhealthy_title%]", "description": "[%key:supervisor::system::supervisor::unhealthy_description%]", "reasons": { + "docker": "[%key:supervisor::system::supervisor::unhealthy_reason::docker%]", + "oserror_bad_message": "[%key:supervisor::system::supervisor::unhealthy_reason::oserror_bad_message%]", + "duplicate_os_installation": "[%key:supervisor::system::supervisor::unhealthy_reason::duplicate_os_installation%]", "privileged": "[%key:supervisor::system::supervisor::unhealthy_reason::privileged%]", "supervisor": "[%key:supervisor::system::supervisor::unhealthy_reason::supervisor%]", "setup": "[%key:supervisor::system::supervisor::unhealthy_reason::setup%]", - "docker": "[%key:supervisor::system::supervisor::unhealthy_reason::docker%]", "untrusted": "[%key:supervisor::system::supervisor::unhealthy_reason::untrusted%]" } }, @@ -9354,10 +9356,12 @@ "systemd_resolved": "Systemd-Resolved" }, "unhealthy_reason": { - "privileged": "Supervisor is not privileged", - "supervisor": "Supervisor was not able to update", - "setup": "Setup of the Supervisor failed", "docker": "The Docker environment is not working properly", + "duplicate_os_installation": "Duplicate Home Assistant OS installation", + "oserror_bad_message": "Operating System error: Bad message", + "privileged": "Supervisor is not privileged", + "setup": "Setup of the Supervisor failed", + "supervisor": "Supervisor was not able to update", "untrusted": "Detected untrusted content" } },