diff --git a/homeassistant/components/zha/entity.py b/homeassistant/components/zha/entity.py index fea90b5167f..7030a20e4d8 100644 --- a/homeassistant/components/zha/entity.py +++ b/homeassistant/components/zha/entity.py @@ -61,6 +61,9 @@ class ZHAEntity(LogMixin, RestoreEntity, Entity): if meta.translation_key is not None: self._attr_translation_key = meta.translation_key + if meta.translation_placeholders is not None: + self._attr_translation_placeholders = meta.translation_placeholders + @cached_property def name(self) -> str | UndefinedType | None: """Return the name of the entity."""