diff --git a/hassio/src/addon-store/hassio-addon-store.ts b/hassio/src/addon-store/hassio-addon-store.ts index baf2fef515..81c761b1f8 100644 --- a/hassio/src/addon-store/hassio-addon-store.ts +++ b/hassio/src/addon-store/hassio-addon-store.ts @@ -98,7 +98,7 @@ class HassioAddonStore extends LitElement { main-page .tabs=${supervisorTabs} > - Add-on store + Add-on Store

- Create snapshot + Create Snapshot

Snapshots allow you to easily backup and restore all data of your @@ -219,7 +219,7 @@ class HassioSnapshots extends LitElement { -

Available snapshots

+

Available Snapshots

${this._snapshots === undefined ? undefined diff --git a/hassio/src/system/hassio-host-info.ts b/hassio/src/system/hassio-host-info.ts index 94400402ae..f0f34aec2f 100644 --- a/hassio/src/system/hassio-host-info.ts +++ b/hassio/src/system/hassio-host-info.ts @@ -87,7 +87,7 @@ class HassioHostInfo extends LitElement { ${this.hostInfo.features.includes("network") ? html` - IP address + IP Address ${primaryIpAddress} @@ -103,7 +103,7 @@ class HassioHostInfo extends LitElement { - Operating system + Operating System ${this.hostInfo.operating_system} @@ -221,7 +221,7 @@ class HassioHostInfo extends LitElement { }); } catch (err) { showAlertDialog(this, { - title: "Failed to get Hardware list", + title: "Failed to get hardware list", text: extractApiErrorMessage(err), }); } @@ -324,7 +324,7 @@ class HassioHostInfo extends LitElement { private async _changeHostnameClicked(): Promise { const curHostname: string = this.hostInfo.hostname; const hostname = await showPromptDialog(this, { - title: "Change hostname", + title: "Change Hostname", inputLabel: "Please enter a new hostname:", inputType: "string", defaultValue: curHostname, diff --git a/hassio/src/system/hassio-supervisor-info.ts b/hassio/src/system/hassio-supervisor-info.ts index fcec51d607..d53597699c 100644 --- a/hassio/src/system/hassio-supervisor-info.ts +++ b/hassio/src/system/hassio-supervisor-info.ts @@ -51,7 +51,7 @@ class HassioSupervisorInfo extends LitElement { - Newest version + Newest Version ${this.supervisorInfo.version_latest} @@ -98,7 +98,7 @@ class HassioSupervisorInfo extends LitElement { ${this.supervisorInfo?.supported ? html` - Share diagnostics + Share Diagnostics
Share crash reports and diagnostic information. @@ -135,7 +135,7 @@ class HassioSupervisorInfo extends LitElement {
Reload @@ -212,7 +212,7 @@ class HassioSupervisorInfo extends LitElement { button.progress = true; const confirmed = await showConfirmationDialog(this, { - title: "Update supervisor", + title: "Update Supervisor", text: `Are you sure you want to update supervisor to version ${this.supervisorInfo.version_latest}?`, confirmText: "update", dismissText: "cancel", diff --git a/hassio/src/system/hassio-supervisor-log.ts b/hassio/src/system/hassio-supervisor-log.ts index 88528eb431..2e1e2162aa 100644 --- a/hassio/src/system/hassio-supervisor-log.ts +++ b/hassio/src/system/hassio-supervisor-log.ts @@ -76,7 +76,7 @@ class HassioSupervisorLog extends LitElement { ${this.hass.userData?.showAdvanced ? html` +
${metrics.map((metric) => this._renderMetric(metric.description, metric.value ?? 0)