Please add the language selection interface (although it is not yet completed)

This commit is contained in:
2025-11-25 16:49:22 +08:00
parent 630d1d2f07
commit da7f2d6475
4 changed files with 117 additions and 19 deletions

View File

@@ -9,11 +9,17 @@
const en = {
"hello": "Hello",
};
const zhCN = {
"hello": "你好",
};
const zhTW = {
"hello": "哈囉",
};
const jp = {
"hello": "こんにちは",
};
const languages = [en, zhCN, jp];
const languages = [en, zhCN, zhTW, jp];