小程序初始提交

This commit is contained in:
jdc
2025-11-13 10:36:23 +08:00
parent f26b4f9a2f
commit 5db3b180eb
447 changed files with 83351 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { appendLocale } from "@/locale";
import zhcn from "./zh-cn.json";
import zhtw from "./zh-tw.json";
import en from "./en.json";
import es from "./es.json";
import ja from "./ja.json";
import fr from "./fr.json";
import ko from "./ko.json";
setTimeout(() => {
appendLocale("zh-cn", zhcn);
appendLocale("zh-tw", zhtw);
appendLocale("en", en);
appendLocale("es", es);
appendLocale("ja", ja);
appendLocale("fr", fr);
appendLocale("ko", ko);
}, 0);