Python script for check translation files.

It's compare locale\template.txt with translate file (.tr) for a language.
This commit is contained in:
Laurent Rocher 2020-11-18 23:01:56 +01:00
parent 2b1d21a5b5
commit 7f12c246b5
1 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,61 @@
# 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)