Rename logbook integration to Activity in user-facing strings

Co-authored-by: balloob <1444314+balloob@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-20 15:24:59 +00:00
parent e888fc5a88
commit f04fe301f8
3 changed files with 7 additions and 7 deletions

View File

@@ -115,7 +115,7 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
async_log_entry(hass, name, message, domain, entity_id, service.context) async_log_entry(hass, name, message, domain, entity_id, service.context)
frontend.async_register_built_in_panel( 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, {}) recorder_conf = config.get(RECORDER_DOMAIN, {})

View File

@@ -1,6 +1,6 @@
{ {
"domain": "logbook", "domain": "logbook",
"name": "Logbook", "name": "Activity",
"codeowners": ["@home-assistant/core"], "codeowners": ["@home-assistant/core"],
"dependencies": ["frontend", "http", "recorder"], "dependencies": ["frontend", "http", "recorder"],
"documentation": "https://www.home-assistant.io/integrations/logbook", "documentation": "https://www.home-assistant.io/integrations/logbook",

View File

@@ -1,9 +1,9 @@
{ {
"title": "Logbook", "title": "Activity",
"services": { "services": {
"log": { "log": {
"name": "Log", "name": "Log",
"description": "Creates a custom entry in the logbook.", "description": "Creates a custom entry in the activity log.",
"fields": { "fields": {
"name": { "name": {
"name": "[%key:common::config_flow::data::name%]", "name": "[%key:common::config_flow::data::name%]",
@@ -11,15 +11,15 @@
}, },
"message": { "message": {
"name": "Message", "name": "Message",
"description": "Message of the logbook entry." "description": "Message of the activity log entry."
}, },
"entity_id": { "entity_id": {
"name": "Entity ID", "name": "Entity ID",
"description": "Entity to reference in the logbook entry." "description": "Entity to reference in the activity log entry."
}, },
"domain": { "domain": {
"name": "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."
} }
} }
} }