forked from MineClone5/MineClone5
62 lines
2.0 KiB
Python
62 lines
2.0 KiB
Python
# Output indicator
|
|
# !< : Indicate a text line without = in template.txt
|
|
# << : Indicate an untranslated line in template.txt
|
|
# !> : Indicate a text line without = in translate file (.tr)
|
|
# >> : Indicate an unknow translated line in translate file (.tr)
|
|
# >> Missing file : Indicate a missing translate file (.tr)
|
|
|
|
import os
|
|
import argparse
|
|
|
|
parser = argparse.ArgumentParser(description='Check Translate file with Template.txt for a given language.')
|
|
parser.add_argument("language", nargs='?', default='fr', help='2 characters language code (default=fr)')
|
|
args = parser.parse_args()
|
|
|
|
path = "../mods/"
|
|
code_lang = args.language
|
|
|
|
def LoadTranslateFile(filename, direction):
|
|
result = set()
|
|
file = open(filename, 'r')
|
|
for line in file:
|
|
line = line.strip()
|
|
if line.startswith('#') or line == '':
|
|
continue
|
|
if '=' in line:
|
|
result.add(line.split('=')[0])
|
|
else:
|
|
print (direction + line)
|
|
|
|
return result
|
|
|
|
def CompareFiles(f1, f2):
|
|
r1 = LoadTranslateFile(f1, "!> ")
|
|
r2 = LoadTranslateFile(f2, "!< ")
|
|
|
|
for key in r1.difference(r2):
|
|
print (">> " + key )
|
|
for key in r2.difference(r1):
|
|
print ("<< " + key )
|
|
|
|
for root, directories, files in os.walk(path):
|
|
if root.endswith('locale'):
|
|
template = None
|
|
language = None
|
|
|
|
for name in files:
|
|
if name == 'template.txt':
|
|
template = os.path.join(root, name)
|
|
if name.endswith("." + code_lang + ".tr"):
|
|
language = os.path.join(root, name)
|
|
|
|
if template is not None:
|
|
if language is None:
|
|
language = os.path.join(root, os.path.basename(os.path.dirname(root))) + "." + code_lang + ".tr"
|
|
|
|
if os.path.exists(language) and os.path.isfile(language):
|
|
print("Compare Files %s with %s" % (template, language))
|
|
CompareFiles(template, language)
|
|
else:
|
|
LoadTranslateFile(filename, "!> ")
|
|
print(">> Missing File = " + language)
|