mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-18 23:06:40 +00:00
Energy setup wizard missing localization entries (#11469)
This commit is contained in:
parent
5caa256f1b
commit
cb47ee7721
@ -51,7 +51,12 @@ export class EnergySetupWizard extends LitElement implements LovelaceCard {
|
|||||||
|
|
||||||
protected render(): TemplateResult {
|
protected render(): TemplateResult {
|
||||||
return html`
|
return html`
|
||||||
<p>Step ${this._step + 1} of 5</p>
|
<p>
|
||||||
|
${this.hass.localize("ui.panel.energy.setup.step", {
|
||||||
|
step: this._step + 1,
|
||||||
|
steps: 5,
|
||||||
|
})}
|
||||||
|
</p>
|
||||||
${this._step === 0
|
${this._step === 0
|
||||||
? html`<ha-energy-grid-settings
|
? html`<ha-energy-grid-settings
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
|
@ -4105,7 +4105,8 @@
|
|||||||
"setup": {
|
"setup": {
|
||||||
"next": "Next",
|
"next": "Next",
|
||||||
"back": "Back",
|
"back": "Back",
|
||||||
"done": "Show me my energy dashboard!"
|
"done": "Show me my energy dashboard!",
|
||||||
|
"step": "Step {step} of {steps}"
|
||||||
},
|
},
|
||||||
"charts": {
|
"charts": {
|
||||||
"stat_house_energy_meter": "Total energy consumption",
|
"stat_house_energy_meter": "Total energy consumption",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user