A brand new welcome page (installer)
This commit is contained in:
19
internal/handler/web/js/i18n.js
Normal file
19
internal/handler/web/js/i18n.js
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* i18n.js
|
||||
* MeowBox-Core
|
||||
* Created by MoeCinnamo on 2025/11/24.
|
||||
*
|
||||
* This file contains the i18n strings for the web interface.
|
||||
*/
|
||||
|
||||
const en = {
|
||||
"hello": "Hello",
|
||||
};
|
||||
const zhCN = {
|
||||
"hello": "你好",
|
||||
};
|
||||
const jp = {
|
||||
"hello": "こんにちは",
|
||||
};
|
||||
|
||||
const languages = [en, zhCN, jp];
|
||||
Reference in New Issue
Block a user