Skip to content

Commit

Permalink
Fix backup translations key issues (#23654)
Browse files Browse the repository at this point in the history
Co-authored-by: Wendelin <w@pe8.at>
  • Loading branch information
2 people authored and bramkragten committed Jan 9, 2025
1 parent 14c71f4 commit 6dde7d6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class HaBackupOverviewBackups extends LitElement {
<ha-svg-icon slot="start" .path=${mdiGestureTap}></ha-svg-icon>
<div slot="headline">
${this.hass.localize(
"ui.panel.config.backup.overview.backups.automatic",
"ui.panel.config.backup.overview.backups.manual",
{ count: manualStats.count }
)}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ class HaBackupOverviewBackups extends LitElement {
return html`
<ha-backup-summary-card
.heading=${this.hass.localize(
"ui.panel.config.backup.overview.summary.backup_too_old_heading"
"ui.panel.config.backup.overview.summary.backup_too_old_heading",
{ count: numberOfDays }
)}
status="warning"
>
Expand Down
2 changes: 1 addition & 1 deletion src/panels/config/backup/dialogs/dialog-new-backup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class DialogNewBackup extends LitElement implements HassDialog {
<ha-svg-icon slot="start" .path=${mdiCalendarSync}></ha-svg-icon>
<span slot="headline">
${this.hass.localize(
"ui.panel.config.backup.dialogs.new.automatic.description"
"ui.panel.config.backup.dialogs.new.automatic.title"
)}
</span>
<span slot="supporting-text">
Expand Down

0 comments on commit 6dde7d6

Please sign in to comment.