8622-testToMaster #1411

Merged
alexm merged 746 commits from 8622-testToMaster into master 2025-02-18 07:54:25 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 21251a5167 - Show all commits

View File

@ -22,6 +22,7 @@ const { t, locale } = useI18n();
const { copyText } = useClipboard();
const { notify } = useNotify();
const langList = import.meta.glob('../../node_modules/quasar/lang/*.js');
const userLocale = computed({
get() {
return locale.value;
@ -32,8 +33,7 @@ const userLocale = computed({
value = localeEquivalence[value] ?? value;
try {
/* @vite-ignore */
import(`../../node_modules/quasar/lang/${value}.mjs`).then((lang) => {
langList[`../../node_modules/quasar/lang/${value}.js`]().then((lang) => {
Quasar.lang.set(lang.default);
});
} catch (error) {