diff --git a/src/panels/lovelace/editor/unused-entities/hui-unused-entities.ts b/src/panels/lovelace/editor/unused-entities/hui-unused-entities.ts index ef6a2aec42..00b6e82f7d 100644 --- a/src/panels/lovelace/editor/unused-entities/hui-unused-entities.ts +++ b/src/panels/lovelace/editor/unused-entities/hui-unused-entities.ts @@ -176,8 +176,12 @@ export class HuiUnusedEntities extends LitElement { selectable @selection-changed=${this._handleSelectionChanged} .dir=${computeRTLDirection(this.hass)} - .searchLabel=${this.hass.localize("ui.components.data-table.search")} - .noDataText=${this.hass.localize("ui.components.data-table.no-data")} + .searchLabel=${this.hass.localize( + "ui.panel.lovelace.unused_entities.search" + )} + .noDataText=${this.hass.localize( + "ui.panel.lovelace.unused_entities.no-data" + )} > ${this._selectedEntities.length diff --git a/src/translations/en.json b/src/translations/en.json index 4ba4a13fce..33d10e8648 100755 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -1830,7 +1830,9 @@ "entity": "Entity", "entity_id": "Entity ID", "domain": "Domain", - "last_changed": "Last Changed" + "last_changed": "Last Changed", + "search": "Search entities", + "no_data": "No unused entities found" }, "add_entities": { "yaml_unsupported": "You cannot use this function when using Lovelace UI in YAML mode.",