新增配置插件
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
yiqiu
2025-11-20 23:37:31 +08:00
parent 3e345e9e22
commit 8a1fa3fb8b
14 changed files with 923 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
(function () {
const module_lang = {
"zh-cn": {
success: "请求成功",
},
"zh-hk": {
success: "请求成功",
},
"en-us": {
success: "Success",
},
};
const DEFAULT_LANG = localStorage.getItem("lang") || "zh-cn";
window.theme_configurator_client_lang = module_lang[DEFAULT_LANG];
})();