diff --git a/panels/config/cloud/ha-config-cloud-account.html b/panels/config/cloud/ha-config-cloud-account.html index 3dd36f55c3..a31b04c784 100644 --- a/panels/config/cloud/ha-config-cloud-account.html +++ b/panels/config/cloud/ha-config-cloud-account.html @@ -82,7 +82,7 @@ Integrations Integrations for Home Assistant Cloud allow you to connect with services in the cloud - without having to expose your Home Assistant instance publicy on the internet. + without having to expose your Home Assistant instance publicly on the internet. diff --git a/panels/map/ha-panel-map.html b/panels/map/ha-panel-map.html index 26d48e6f6c..f27d5d4e31 100644 --- a/panels/map/ha-panel-map.html +++ b/panels/map/ha-panel-map.html @@ -165,7 +165,7 @@ class HaPanelMap extends window.hassMixins.LocalizeMixin(Polymer.Element) { var entityPicture = entity.attributes.entity_picture || ''; var entityName = title.split(' ').map(function (part) { return part.substr(0, 1); }).join(''); /* Leaflet clones this element before adding it to the map. This messes up - our Poylmer object and we can't pass data through. Thus we hack like this. */ + our Polymer object and we can't pass data through. Thus we hack like this. */ icon = window.L.divIcon({ html: "", iconSize: [45, 45], diff --git a/src/components/ha-color-picker.html b/src/components/ha-color-picker.html index 27b2bdfc3e..1f7346b6e7 100644 --- a/src/components/ha-color-picker.html +++ b/src/components/ha-color-picker.html @@ -122,7 +122,7 @@ class HaColorPicker extends window.hassMixins.EventsMixin(Polymer.Element) { }, // the amount segments for the hue - // 0 = continious gradient + // 0 = continuous gradient // other than 0 gives 'pie-pieces' hueSegments: { type: Number, @@ -130,7 +130,7 @@ class HaColorPicker extends window.hassMixins.EventsMixin(Polymer.Element) { }, // the amount segments for the hue - // 0 = continious gradient + // 0 = continuous gradient // 1 = only fully saturated // > 1 = segments from white to fully saturated saturationSegments: { diff --git a/src/resources/ha-style.html b/src/resources/ha-style.html index 0a34d44b57..b932abdb6b 100644 --- a/src/resources/ha-style.html +++ b/src/resources/ha-style.html @@ -33,7 +33,7 @@ --disabled-text-color: #bdbdbd; --divider-color: rgba(0, 0, 0, .12); - --table-row-background-color: transparant; + --table-row-background-color: transparent; --table-row-alternative-background-color: #eee; --paper-toggle-button-checked-ink-color: #039be5; diff --git a/src/util/hass-translation.html b/src/util/hass-translation.html index 3f551a8e5b..15314ea70c 100644 --- a/src/util/hass-translation.html +++ b/src/util/hass-translation.html @@ -62,7 +62,7 @@ function getActiveTranslation() { } // Store loaded translations in memory so translations are available immediately -// when DOM is created in Polymer. Even a cache lookup creates noticable latency. +// when DOM is created in Polymer. Even a cache lookup creates noticeable latency. const translations = {}; window.getTranslation = function (fragment, translationInput) {