@@ -79,7 +80,9 @@ export class HuiAreasDashboardStrategyEditor
`
: html`
- No entities in this section, it will not be displayed.
+ ${this.hass!.localize(
+ "ui.panel.lovelace.editor.strategy.areas.no_entities"
+ )}
`}
diff --git a/src/panels/lovelace/strategies/areas/helpers/areas-strategy-helper.ts b/src/panels/lovelace/strategies/areas/helpers/areas-strategy-helper.ts
index 64934c6216..2c284fcca8 100644
--- a/src/panels/lovelace/strategies/areas/helpers/areas-strategy-helper.ts
+++ b/src/panels/lovelace/strategies/areas/helpers/areas-strategy-helper.ts
@@ -32,15 +32,6 @@ export const AREA_STRATEGY_GROUP_ICONS = {
others: "mdi:shape",
};
-// Todo be replace by translation when validated
-export const AREA_STRATEGY_GROUP_LABELS = {
- lights: "Lights",
- climate: "Climate",
- media_players: "Entertainment",
- security: "Security",
- others: "Others",
-};
-
export type AreaStrategyGroup = (typeof AREA_STRATEGY_GROUPS)[number];
type AreaEntitiesByGroup = Record