diff --git a/src/panels/config/person/ha-config-person.ts b/src/panels/config/person/ha-config-person.ts index 829b12278a60..206cc2016f2b 100644 --- a/src/panels/config/person/ha-config-person.ts +++ b/src/panels/config/person/ha-config-person.ts @@ -27,6 +27,7 @@ import { showConfirmationDialog } from "../../../dialogs/generic/show-dialog-box import "../../../layouts/hass-loading-screen"; import "../../../layouts/hass-tabs-subpage"; import { HomeAssistant, Route } from "../../../types"; +import { documentationUrl } from "../../../util/documentation-url"; import "../ha-config-section"; import { configSections } from "../ha-panel-config"; import { @@ -71,7 +72,9 @@ class HaConfigPerson extends LitElement { >${hass.localize("ui.panel.config.person.caption")} - ${hass.localize("ui.panel.config.person.introduction")} +

+ ${hass.localize("ui.panel.config.person.introduction")} +

${this._configItems.length > 0 ? html`

@@ -81,7 +84,22 @@ class HaConfigPerson extends LitElement {

` : ""} + + + ${this.hass.localize( + "ui.panel.config.person.learn_more" + )} +
+ + ${this._storageItems.map((entry) => { return html` diff --git a/src/translations/en.json b/src/translations/en.json index 690c71de3e75..a061f202b94f 100755 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -1638,6 +1638,7 @@ "description": "Manage the people that Home Assistant tracks", "introduction": "Here you can define each person of interest in Home Assistant.", "note_about_persons_configured_in_yaml": "Note: people configured via configuration.yaml cannot be edited via the UI.", + "learn_more": "Learn more about people", "no_persons_created_yet": "Looks like you have not created any people yet.", "create_person": "Create Person", "add_person": "Add Person",