1
0
Fork 0
mirror of synced 2024-04-29 18:13:47 +12:00
czkawka/misc/translation_test.py
Igor b320d6aa3a
Add Italian translation (#508)
* Add Italian translation - #251

* Italian translation reviewed.

* Updated languages in misc/translation_test.py

* Italian translation reviewed.
2021-12-21 06:35:53 +01:00

35 lines
1.1 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()
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()
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)