From f04fe301f84bcf46687442f8ac8c558343b25753 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 20 Aug 2025 15:24:59 +0000 Subject: [PATCH] Rename logbook integration to Activity in user-facing strings Co-authored-by: balloob <1444314+balloob@users.noreply.github.com> --- homeassistant/components/logbook/__init__.py | 2 +- homeassistant/components/logbook/manifest.json | 2 +- homeassistant/components/logbook/strings.json | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/homeassistant/components/logbook/__init__.py b/homeassistant/components/logbook/__init__.py index 2e2ffddac88..72cacc081b4 100644 --- a/homeassistant/components/logbook/__init__.py +++ b/homeassistant/components/logbook/__init__.py @@ -115,7 +115,7 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: async_log_entry(hass, name, message, domain, entity_id, service.context) frontend.async_register_built_in_panel( - hass, "logbook", "logbook", "hass:format-list-bulleted-type" + hass, "logbook", "Activity", "hass:format-list-bulleted-type" ) recorder_conf = config.get(RECORDER_DOMAIN, {}) diff --git a/homeassistant/components/logbook/manifest.json b/homeassistant/components/logbook/manifest.json index b6b68a1489e..5a84fdb85e5 100644 --- a/homeassistant/components/logbook/manifest.json +++ b/homeassistant/components/logbook/manifest.json @@ -1,6 +1,6 @@ { "domain": "logbook", - "name": "Logbook", + "name": "Activity", "codeowners": ["@home-assistant/core"], "dependencies": ["frontend", "http", "recorder"], "documentation": "https://www.home-assistant.io/integrations/logbook", diff --git a/homeassistant/components/logbook/strings.json b/homeassistant/components/logbook/strings.json index 5a38b57a9b7..7f17a7b200d 100644 --- a/homeassistant/components/logbook/strings.json +++ b/homeassistant/components/logbook/strings.json @@ -1,9 +1,9 @@ { - "title": "Logbook", + "title": "Activity", "services": { "log": { "name": "Log", - "description": "Creates a custom entry in the logbook.", + "description": "Creates a custom entry in the activity log.", "fields": { "name": { "name": "[%key:common::config_flow::data::name%]", @@ -11,15 +11,15 @@ }, "message": { "name": "Message", - "description": "Message of the logbook entry." + "description": "Message of the activity log entry." }, "entity_id": { "name": "Entity ID", - "description": "Entity to reference in the logbook entry." + "description": "Entity to reference in the activity log entry." }, "domain": { "name": "Domain", - "description": "Determines which icon is used in the logbook entry. The icon illustrates the integration domain related to this logbook entry." + "description": "Determines which icon is used in the activity log entry. The icon illustrates the integration domain related to this activity log entry." } } }