2016-02-25 13:39:39 +00:00
|
|
|
#!/usr/bin/env python3
|
2015-03-08 20:25:27 +01:00
|
|
|
|
|
|
|
# Remove extra translations
|
|
|
|
|
|
|
|
import glob
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
from xml.etree import ElementTree
|
|
|
|
|
|
|
|
strings = set()
|
|
|
|
|
2016-03-28 12:12:37 +02:00
|
|
|
for e in ElementTree.parse(os.path.join('src', 'main', 'res', 'values', 'strings.xml')).getroot().findall('.//string'):
|
2015-03-08 20:25:27 +01:00
|
|
|
name = e.attrib['name']
|
|
|
|
strings.add(name)
|
|
|
|
|
2016-04-04 21:42:59 +01:00
|
|
|
for d in glob.glob(os.path.join('src', 'main', 'res', 'values-*')):
|
2015-03-08 20:25:27 +01:00
|
|
|
|
|
|
|
str_path = os.path.join(d, 'strings.xml')
|
|
|
|
if os.path.exists(str_path):
|
2015-09-13 16:41:58 -07:00
|
|
|
header = ''
|
|
|
|
with open(str_path, 'r') as f:
|
|
|
|
header = f.readline()
|
2015-03-08 20:25:27 +01:00
|
|
|
tree = ElementTree.parse(str_path)
|
|
|
|
root = tree.getroot()
|
|
|
|
|
|
|
|
elems = root.findall('.//string')
|
|
|
|
for e in elems:
|
|
|
|
name = e.attrib['name']
|
|
|
|
if name not in strings:
|
|
|
|
root.remove(e)
|
2015-10-19 09:49:14 +02:00
|
|
|
if not e.text:
|
|
|
|
root.remove(e)
|
2015-03-08 20:25:27 +01:00
|
|
|
|
2016-02-25 13:39:39 +00:00
|
|
|
result = re.sub(r' />', r'/>', ElementTree.tostring(root, encoding='utf-8').decode('utf-8'))
|
2015-03-08 20:25:27 +01:00
|
|
|
|
|
|
|
with open(str_path, 'w+') as f:
|
2015-09-13 16:41:58 -07:00
|
|
|
f.write(header)
|
2015-03-08 20:25:27 +01:00
|
|
|
f.write(result)
|
|
|
|
f.write('\n')
|