-
Notifications
You must be signed in to change notification settings - Fork 298
/
main.py
66 lines (59 loc) · 2.17 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import os
import sys
import json
reload(sys)
sys.setdefaultencoding('utf-8')
class Translate(object):
def __init__(self, dir):
self.kibana_dir = dir
self.tran_file_ext = ["js", "html", "json"]
f = open("./config/kibana_resource.json", "r")
self.resource = json.loads(f.read())
f.close()
def tran(self):
for root, dirs, files in os.walk(self.kibana_dir):
for file in files:
if self.checkFile(file, self.tran_file_ext) == False:
continue
source_path = "%s/%s"%(root.replace('\\', '/'), file.replace('\\', '/'))
f = open(source_path, "r")
content = f.read()
f.close()
changed = False # 文件内容是否改变标识
for item in self.resource:
path = item.get("path", "")
if source_path.find(str(path)) == -1:
continue
en = item.get("en", "")
cn = item.get("cn", "")
if en == "" or cn == "":
continue
if content.find(str(en)) != -1:
content = content.replace(en, cn) # 替换要翻译的文字
changed = True
if changed:
print("文件[%s]已翻译。" % source_path)
f = open(source_path, "w")
f.write(str(content))
f.close()
def checkFile(self, file, whitelist):
if whitelist == []:
return True
ext = os.path.splitext(file)[1]
if ext.strip('.') in whitelist:
return True
else:
return False
if __name__ == '__main__':
if len(sys.argv) == 2:
try:
dir = sys.argv[1]
obj = Translate(dir)
obj.tran()
print("恭喜,Kibana汉化完成!")
except Exception, e:
print("汉化Kibana时出错,错误:%s" % str(e))
else:
print("使用示例: python main.py \"/opt/kibana-5.6.2-darwin-x86_64/\"")