optimize: move i18n to lib

This commit is contained in:
源文雨
2023-07-24 14:19:53 +08:00
parent 8364750272
commit 76c18b547c
14 changed files with 4 additions and 4 deletions

View File

@@ -29,6 +29,6 @@ print("processing gui_v1.py")
process("gui_v1.py")
# Save as a JSON file
with open("./i18n/zh_CN.json", "w", encoding="utf-8") as f:
with open("./lib/i18n/zh_CN.json", "w", encoding="utf-8") as f:
json.dump(data, f, ensure_ascii=False, indent=4)
f.write("\n")