diff --git a/homeassistant/components/logbook/__init__.py b/homeassistant/components/logbook/__init__.py index 72cacc081b4..2e2ffddac88 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", "Activity", "hass:format-list-bulleted-type" + hass, "logbook", "logbook", "hass:format-list-bulleted-type" ) recorder_conf = config.get(RECORDER_DOMAIN, {}) diff --git a/homeassistant/components/logbook/strings.json b/homeassistant/components/logbook/strings.json index 7f17a7b200d..42e05c6ab02 100644 --- a/homeassistant/components/logbook/strings.json +++ b/homeassistant/components/logbook/strings.json @@ -3,7 +3,7 @@ "services": { "log": { "name": "Log", - "description": "Creates a custom entry in the activity log.", + "description": "Track a custom activity.", "fields": { "name": { "name": "[%key:common::config_flow::data::name%]", @@ -11,15 +11,15 @@ }, "message": { "name": "Message", - "description": "Message of the activity log entry." + "description": "Message of the activity." }, "entity_id": { "name": "Entity ID", - "description": "Entity to reference in the activity log entry." + "description": "Entity to reference in the activity." }, "domain": { "name": "Domain", - "description": "Determines which icon is used in the activity log entry. The icon illustrates the integration domain related to this activity log entry." + "description": "Determines which icon is used in the activity. The icon illustrates the integration domain related to this activity." } } }