- ${this.showAdvanced
- ? html`
-
-
- ${this.hass.localize(
- "ui.panel.config.server_control.section.validation.introduction"
- )}
- ${!this._validateLog
- ? html`
-
- ${!this._validating
- ? html`
- ${this._isValid
- ? html`
- ${this.hass.localize(
- "ui.panel.config.server_control.section.validation.valid"
- )}
-
`
- : ""}
-
- ${this.hass.localize(
- "ui.panel.config.server_control.section.validation.check_config"
- )}
-
- `
- : html`
-
- `}
-
- `
- : html`
-
-
- ${this.hass.localize(
- "ui.panel.config.server_control.section.validation.invalid"
- )}
-
-
- ${this.hass.localize(
- "ui.panel.config.server_control.section.validation.check_config"
- )}
-
-
-
- ${this._validateLog}
-
- `}
-
-
- `
- : ""}
-
-
-
- ${this.hass.localize(
- "ui.panel.config.server_control.section.server_management.introduction"
- )}
-
-
- ${this.hass.localize(
- "ui.panel.config.server_control.section.server_management.restart"
- )}
-
-
-
-
- ${this.showAdvanced
- ? html`
-
-
- ${this.hass.localize(
- "ui.panel.config.server_control.section.reloading.introduction"
- )}
-
-
- ${this.hass.localize(
- "ui.panel.config.server_control.section.reloading.core"
- )}
-
-
- ${this._reloadableDomains.map(
- (domain) =>
- html`
-
- ${this.hass.localize(
- `ui.panel.config.server_control.section.reloading.${domain}`
- ) ||
- this.hass.localize(
- "ui.panel.config.server_control.section.reloading.reload",
- "domain",
- domainToName(this.hass.localize, domain)
- )}
-
-
- `
- )}
-
- `
- : ""}
-
-