mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-05 15:30:17 +01:00
17 lines
360 B
Python
Executable File
17 lines
360 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
import os
|
|
from babel.messages.frontend import main as pybabel
|
|
|
|
if __name__ == "__main__":
|
|
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()
|
|
|
|
|
|
|