mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-27 11:16:35 +00:00
Add missing localizations to ha-script-trace.ts (#23418)
Co-authored-by: Bram Kragten <mail@bramkragten.nl>
This commit is contained in:
parent
fb72e1fb9c
commit
00c1dfa1d2
@ -178,7 +178,9 @@ export class HaScriptTrace extends LitElement {
|
|||||||
<ha-icon-button
|
<ha-icon-button
|
||||||
.disabled=${this._traces[this._traces.length - 1].run_id ===
|
.disabled=${this._traces[this._traces.length - 1].run_id ===
|
||||||
this._runId}
|
this._runId}
|
||||||
label="Older trace"
|
.label=${this.hass!.localize(
|
||||||
|
"ui.panel.config.automation.trace.older_trace"
|
||||||
|
)}
|
||||||
@click=${this._pickOlderTrace}
|
@click=${this._pickOlderTrace}
|
||||||
.path=${mdiRayEndArrow}
|
.path=${mdiRayEndArrow}
|
||||||
></ha-icon-button>
|
></ha-icon-button>
|
||||||
@ -198,7 +200,9 @@ export class HaScriptTrace extends LitElement {
|
|||||||
</select>
|
</select>
|
||||||
<ha-icon-button
|
<ha-icon-button
|
||||||
.disabled=${this._traces[0].run_id === this._runId}
|
.disabled=${this._traces[0].run_id === this._runId}
|
||||||
label="Newer trace"
|
.label=${this.hass!.localize(
|
||||||
|
"ui.panel.config.automation.trace.newer_trace"
|
||||||
|
)}
|
||||||
@click=${this._pickNewerTrace}
|
@click=${this._pickNewerTrace}
|
||||||
.path=${mdiRayStartArrow}
|
.path=${mdiRayStartArrow}
|
||||||
></ha-icon-button>
|
></ha-icon-button>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user