1
0
mirror of https://github.com/LibreTranslate/LibreTranslate.git synced 2024-07-04 16:30:14 +02:00
LibreTranslate/compile_locales.py
2023-01-05 13:12:35 -05:00

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()