mirror of
https://github.com/immich-app/immich.git
synced 2025-06-24 17:03:11 +02:00
Internationalization (German) of the mobile app. (#246)
* Add i18n framework to mobile app and write simple translation generator * Replace all texts in login_form with i18n keys * Localization of sharing section * Localization of asset viewer section * Use JSON as base translation format * Add check for missing/unused translation keys * Add localizely * Remove i18n directory in favour of localizely * Backup Translation * More translations * Translate home page * Translation of search page * Translate new server version announcement * Reformat code * Fix typo in german translation * Update englisch translations * Change translation keys to match dart filenames * Add /api to translated endpoint_urls * Update localizely.yml * Add languages to ios plist * Remove unused keys * Added script to check outdated key in other translations * Add download key to localizely.yml Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
parent
f3032f74a4
commit
2b5cef156c
36 changed files with 601 additions and 213 deletions
mobile/scripts
18
mobile/scripts/check_i18n_keys.py
Normal file
18
mobile/scripts/check_i18n_keys.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env python3
|
||||
import json
|
||||
import subprocess
|
||||
|
||||
def main():
|
||||
with open('assets/i18n/en-US.json', 'r') as f:
|
||||
data = json.load(f)
|
||||
|
||||
for k in data.keys():
|
||||
print(k)
|
||||
sp = subprocess.run(['sh', '-c', f'grep -r --include="*.dart" "{k}"'])
|
||||
|
||||
if sp.returncode != 0:
|
||||
print("Not found in source code!")
|
||||
return 1
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
19
mobile/scripts/check_key_uniform.py
Normal file
19
mobile/scripts/check_key_uniform.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
#!/usr/bin/env python3
|
||||
import json
|
||||
import subprocess
|
||||
|
||||
def main():
|
||||
print("CHECK GERMAN TRANSLATIONS")
|
||||
with open('assets/i18n/de-DE.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()
|
Loading…
Add table
Add a link
Reference in a new issue