Files
MeowBox-Core/internal/handler/web/js/i18n.js

25 lines
351 B
JavaScript

/*
* 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 zhTW = {
"hello": "哈囉",
};
const jp = {
"hello": "こんにちは",
};
const languages = [en, zhCN, zhTW, jp];