mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-14 18:11:23 +01:00
8 lines
197 B
Python
8 lines
197 B
Python
|
#!flask/bin/python
|
||
|
import os
|
||
|
import sys
|
||
|
if sys.platform == 'win32':
|
||
|
pybabel = 'flask\\Scripts\\pybabel'
|
||
|
else:
|
||
|
pybabel = 'pybabel'
|
||
|
os.system(pybabel + ' compile -d titanembeds/translations')
|