1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-25 16:19:43 +02:00

Remove unmaintained languages + minor localization tasks (#587)

* Fix missing string

* Localize "loading recipes"

* Remove unmaintained languages

Remove support for Danish, Portuguese and Chinese Traditional,
since their current translation state is <20%
This commit is contained in:
sephrat 2021-06-22 20:23:52 +02:00 committed by GitHub
parent c463ef279a
commit 2e8c50e4ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 16 additions and 27 deletions

View file

@ -7,14 +7,14 @@
</v-icon>
<div v-if="large" class="text-small">
<slot>
{{ small ? "" : "Loading Recipes" }}
{{ small ? "" : waitingText }}
</slot>
</div>
</div>
</v-progress-circular>
<div v-if="!large" class="text-small">
<slot>
{{ small ? "" : "Loading Recipes" }}
{{ small ? "" : waitingText }}
</slot>
</div>
</div>
@ -60,6 +60,9 @@ export default {
size: 125,
};
},
waitingText() {
return this.$t("general.loading-recipes");
}
},
};
</script>