feat(mobile) added french translations ()

This commit is contained in:
Eidenz 2022-07-13 18:35:02 +02:00 committed by GitHub
parent 72c334e5e0
commit 20b94ef0bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 125 additions and 1 deletions
mobile/scripts

View file

@ -15,5 +15,17 @@ def main():
print(f"Outdated Key! {k}")
return 1
print("CHECK FRENCH TRANSLATIONS")
with open('assets/i18n/fr-FR.json', 'r') as f:
data = json.load(f)
for k in data.keys():
print(k)
sp = subprocess.run(['sh', '-c', f'grep -r --include="./assets/i18n/en-US.json" "{k}"'])
if sp.returncode != 0:
print(f"Outdated Key! {k}")
return 1
if __name__ == '__main__':
main()