merge latest master

This commit is contained in:
Bnyro
2022-10-21 18:50:08 +02:00
57 changed files with 1217 additions and 939 deletions

View File

@@ -244,9 +244,6 @@ const mixin = {
},
},
computed: {
theme() {
return this.getPreferenceString("theme", "dark");
},
authenticated(_this) {
return _this.getAuthToken() !== undefined;
},
@@ -262,7 +259,7 @@ const mixin = {
const languages = window.navigator.languages;
for (let i = 0; i < languages.length; i++) {
try {
await import("./locales/" + languages[i] + ".json");
await import(`./locales/${languages[i]}.json`);
return languages[i];
} catch {
continue;