Skip to content

Commit e1c83c2

Browse files
committed
Fix missing translation
1 parent 3c5cee7 commit e1c83c2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/panels/config/apps/app-view/components/supervisor-app-update-available-card.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ import {
2929
extractApiErrorMessage,
3030
ignoreSupervisorError,
3131
} from "../../../../../data/hassio/common";
32-
import type { StoreAddonDetails } from "../../../../../data/supervisor/store";
3332
import { haStyle } from "../../../../../resources/styles";
3433
import type { HomeAssistant } from "../../../../../types";
3534
import { extractChangelog } from "../util/supervisor-app";
@@ -46,9 +45,7 @@ class SupervisorAppUpdateAvailableCard extends LitElement {
4645

4746
@property({ type: Boolean }) public narrow = false;
4847

49-
@property({ attribute: false }) public addon!:
50-
| HassioAddonDetails
51-
| StoreAddonDetails;
48+
@property({ attribute: false }) public addon!: HassioAddonDetails;
5249

5350
@state() private _changelogContent?: string;
5451

src/translations/en.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,8 +2527,11 @@
25272527
"signed": "Signed"
25282528
},
25292529
"role": {
2530-
"manager": "Supervisor manager",
2531-
"admin": "Supervisor admin"
2530+
"manager": "manager",
2531+
"default": "default",
2532+
"homeassistant": "homeassistant",
2533+
"backup": "backup",
2534+
"admin": "admin"
25322535
},
25332536
"stage": {
25342537
"title": "App stage",

0 commit comments

Comments
 (0)