diff --git a/.github/.misspell-fixer.ignore b/.github/.misspell-fixer.ignore new file mode 100644 index 00000000..2683e173 --- /dev/null +++ b/.github/.misspell-fixer.ignore @@ -0,0 +1,7 @@ + +^./src/assets/locales/de.json +^./src/assets/locales/es.json +^./src/assets/locales/fr.json +^./src/assets/locales/nl.json +^./src/assets/locales/sl.json +^./src/assets/locales/zh-CN.json diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index fe74cffa..523f7710 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -30,7 +30,7 @@ jobs: uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - # Build the container, and push if succesful + # Build the container, and push if successful - name: Build and push Docker image ⚒️ uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc with: diff --git a/src/components/Configuration/CustomCss.vue b/src/components/Configuration/CustomCss.vue index c9f6fe5e..535c7f8c 100644 --- a/src/components/Configuration/CustomCss.vue +++ b/src/components/Configuration/CustomCss.vue @@ -48,7 +48,7 @@ export default { const appConfig = { ...this.config.appConfig }; appConfig.customCss = this.customCss; localStorage.setItem(localStorageKeys.APP_CONFIG, JSON.stringify(appConfig)); - msg = 'Changes saved succesfully'; + msg = 'Changes saved successfully'; this.inject(this.customCss); if (this.customCss === '') setTimeout(() => { location.reload(); }, 1500); // eslint-disable-line no-restricted-globals } else { diff --git a/src/components/Configuration/EditSiteMeta.vue b/src/components/Configuration/EditSiteMeta.vue index b64a7f5b..a372e9b6 100644 --- a/src/components/Configuration/EditSiteMeta.vue +++ b/src/components/Configuration/EditSiteMeta.vue @@ -64,7 +64,7 @@ export default { pageInfo.navLinks = this.formElements.navLinks.filter(link => (link.title !== '')); } localStorage.setItem(localStorageKeys.PAGE_INFO, JSON.stringify(pageInfo)); - this.$toasted.show('Changes saved succesfully'); + this.$toasted.show('Changes saved successfully'); setTimeout(() => { location.reload(); }, 1500); // eslint-disable-line no-restricted-globals }, addNavLinkRow() { diff --git a/src/styles/global-styles.scss b/src/styles/global-styles.scss index 14a1e5ab..bd93f79a 100644 --- a/src/styles/global-styles.scss +++ b/src/styles/global-styles.scss @@ -22,7 +22,7 @@ html { } } -/* Hide text, and show 'Loading...' while Vue is intializing tags */ +/* Hide text, and show 'Loading...' while Vue is initializing tags */ [v-cloak] > * { display:none } [v-cloak]::before { content: "loading…" }