Files
BlackFruit-UI/plugins/addon/theme_configurator/template/admin/lang/index.js
yiqiu 8a1fa3fb8b
All checks were successful
continuous-integration/drone/push Build is passing
新增配置插件
2025-11-20 23:37:31 +08:00

16 lines
322 B
JavaScript

(function () {
const module_lang = {
"zh-cn": {
save: "保存配置",
},
"zh-hk": {
save: "保存配置",
},
"en-us": {
save: "Save",
},
};
const DEFAULT_LANG = localStorage.getItem("backLang") || "zh-cn";
window.theme_configurator_lang = module_lang[DEFAULT_LANG];
})();