19 lines
301 B
JavaScript
19 lines
301 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 jp = {
|
|
"hello": "こんにちは",
|
|
};
|
|
|
|
const languages = [en, zhCN, jp]; |