diff --git a/src/dialogs/config-flow/show-dialog-config-flow.ts b/src/dialogs/config-flow/show-dialog-config-flow.ts index a42663ea6b..452d83cb22 100644 --- a/src/dialogs/config-flow/show-dialog-config-flow.ts +++ b/src/dialogs/config-flow/show-dialog-config-flow.ts @@ -162,7 +162,11 @@ export const showConfigFlowDialog = ( }, renderShowFormProgressHeader(hass, step) { - return hass.localize(`component.${step.handler}.title`); + return ( + hass.localize( + `component.${step.handler}.config.step.${step.step_id}.title` + ) || hass.localize(`component.${step.handler}.title`) + ); }, renderShowFormProgressDescription(hass, step) {