/* * 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];