diff --git a/src/panels/config/config-entries/ha-ce-entities-card.js b/src/panels/config/config-entries/ha-ce-entities-card.js index ec2af9ff97..21e356b9a2 100644 --- a/src/panels/config/config-entries/ha-ce-entities-card.js +++ b/src/panels/config/config-entries/ha-ce-entities-card.js @@ -19,7 +19,7 @@ function computeEntityName(hass, entity) { /* * @appliesMixin EventsMixin */ -class HaDeviceCard extends EventsMixin(PolymerElement) { +class HaCeEntitiesCard extends EventsMixin(PolymerElement) { static get template() { return html` - + - Discovered + [[localize('ui.panel.config.integrations.discovered')]] [[_computeIntegrationTitle(localize, item.handler)]] - Configure + [[localize('ui.panel.config.integrations.configure')]] @@ -68,12 +70,12 @@ class HaConfigManagerDashboard extends - Configured + [[localize('ui.panel.config.integrations.configured')]] - Nothing configured yet + [[localize('ui.panel.config.integrations.none')]] @@ -99,14 +101,16 @@ class HaConfigManagerDashboard extends - Set up a new integration + [[localize('ui.panel.config.integrations.new')]] [[_computeIntegrationTitle(localize, item)]] - Configure + [[localize('ui.panel.config.integrations.configure')]] diff --git a/src/panels/config/config-entries/ha-config-entry-page.js b/src/panels/config/config-entries/ha-config-entry-page.js index 47a553f0dc..c781c20e6e 100644 --- a/src/panels/config/config-entries/ha-config-entry-page.js +++ b/src/panels/config/config-entries/ha-config-entry-page.js @@ -10,9 +10,10 @@ import compare from '../../../common/string/compare.js'; import './ha-device-card.js'; import './ha-ce-entities-card.js'; import EventsMixin from '../../../mixins/events-mixin.js'; +import LocalizeMixin from '../../../mixins/localize-mixin.js'; import NavigateMixin from '../../../mixins/navigate-mixin.js'; -class HaConfigEntryPage extends NavigateMixin(EventsMixin(PolymerElement)) { +class HaConfigEntryPage extends NavigateMixin(EventsMixin(LocalizeMixin(PolymerElement))) { static get template() { return html`