ShadowEditor/ShadowEditor.AI/old/language_upgrade.py
2019-08-18 21:18:08 +08:00

90 lines
2.2 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import json
import os
import re
## 将旧语言包升级为i18next该文件已经没用。
# 读取英文语言文件
file = open(
'E:\github\ShadowEditor\ShadowEditor.Web\src\language\Language.js', encoding='utf-8')
list = file.read().split('\n')
file.close()
en = {}
for i in list:
line = i.strip()
if not line.startswith('L_'):
continue
items = line.split(':')
key = items[0].strip()[2:]
value = items[1].replace("'", '').replace(',', '').strip()
en[key] = value
# print(en)
# 读取中文语言文件
file = open('E:\github\ShadowEditor\ShadowEditor.Web\lang\zh-CN.js',
encoding='utf-8')
list = file.read().split('\n')
file.close()
cn = {}
for i in list:
line = i.strip()
if not line.startswith('L_'):
continue
items = line.split('=')
key = items[0].strip()[2:]
value = items[1].replace("'", '').replace(';', '').strip()
cn[key] = value
# print(cn)
# 写入语言文件
# lang = {}
# for key in en:
# lang[en[key]] = cn[key]
# file = open('E:\github\ShadowEditor\ShadowEditor.Web\locales\zh-CN.json',
# 'w', encoding='utf-8')
# file.write(json.dumps(lang, ensure_ascii=False))
# 转换源码
list = os.walk('E:\github\ShadowEditor\ShadowEditor.Web\src')
def translateFile(path):
file = open(path, encoding='utf-8')
data = file.read()
file.close()
for key in en:
data = data.replace('{L_' + key + '}', "{_t('" + en[key] + "')}")
data = data.replace(' L_' + key + ',', " _t('" + en[key] + "'),")
data = data.replace(' L_' + key + ' ', " _t('" + en[key] + "') ")
data = data.replace(' L_' + key + ';', " _t('" + en[key] + "');")
data = data.replace('(L_' + key + ')', "(_t('" + en[key] + "'))")
data = data.replace('(L_' + key + '\n', "(_t('" + en[key] + "')\n")
data = data.replace(' L_' + key + '\n', " _t('" + en[key] + "')\n")
data = data.replace(' L_' + key + '}', " _t('" + en[key] + "')}")
file = open(path, 'w', encoding='utf-8')
file.write(data)
file.close()
print(path)
num = 0
for root, dirs, files in list:
for name in files:
num += 1
translateFile(os.path.join(root, name))
print('Done!')