mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2025-05-14 22:13:02 +00:00
mover scripts in a scripts dir
This commit is contained in:
parent
9b20a735c6
commit
6e04c88308
6 changed files with 3 additions and 3 deletions
28
scripts/compile_locales.py
Executable file
28
scripts/compile_locales.py
Executable file
|
@ -0,0 +1,28 @@
|
|||
#!/usr/bin/env python
|
||||
import sys
|
||||
import os
|
||||
from babel.messages.frontend import main as pybabel
|
||||
|
||||
if __name__ == "__main__":
|
||||
if len(sys.argv) >= 2 and sys.argv[1] == 'mdtable':
|
||||
from libretranslate.locales import get_available_locales
|
||||
locales = get_available_locales(only_reviewed=False, sort_by_name=True)
|
||||
print("Language | Reviewed | Weblate Link")
|
||||
print("-------- | -------- | ------------")
|
||||
|
||||
for l in locales:
|
||||
link = "https://hosted.weblate.org/translate/libretranslate/app/%s/" % l['code']
|
||||
if l['code'] == 'en':
|
||||
link = "https://hosted.weblate.org/projects/libretranslate/app/"
|
||||
print("%s | %s | %s" % (l['name'], ':heavy_check_mark:' if l['reviewed'] else '', "[Edit](%s)" % link))
|
||||
else:
|
||||
locales_dir = os.path.join("libretranslate", "locales")
|
||||
if not os.path.isdir(locales_dir):
|
||||
os.makedirs(locales_dir)
|
||||
|
||||
print("Compiling locales")
|
||||
sys.argv = ["", "compile", "-f", "-d", locales_dir]
|
||||
pybabel()
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue