1
0
Fork 0
mirror of synced 2024-04-26 08:42:07 +12:00
czkawka/misc/translation_test.py
2021-12-21 10:11:34 +01:00

45 lines
1.5 KiB
Python

translations = ["pl", "it"] # en is missing here
base_translation = "en"
base_keywords = []
with open('i18n/' + base_translation + "/czkawka_gui.ftl", 'r') as file:
base_translation_file_content = file.readlines()
for line in base_translation_file_content:
if line.find("=") != -1:
first_split = line.split("=")[0].strip()
try:
base_keywords.index(first_split)
print("Duplicated member " + first_split +" in base translation")
except:
True # All good
base_keywords.append(first_split)
for lang in translations:
print("\nChecking " + lang + " language")
lang_keywords = []
with open('i18n/' + lang + "/czkawka_gui.ftl", 'r') as file:
file_content = file.readlines()
for line in file_content:
if line.find("=") != -1:
first_split = line.split("=")[0].strip()
try:
lang_keywords.index(first_split)
print("Duplicated member " + first_split +" in " + lang + " translation")
except:
True # All good
lang_keywords.append(first_split)
for keyword in base_keywords:
try:
lang_keywords.index(keyword)
except:
print("Missing keyword - " + keyword)
for keyword in lang_keywords:
try:
base_keywords.index(keyword)
except:
print("Unused keyword - " + keyword)