forked from Github-Mirrors/canaille
11 lines
250 B
Python
11 lines
250 B
Python
import subprocess
|
|
|
|
|
|
def create_mo_files(setup_kwargs):
|
|
print("Compile translations:")
|
|
subprocess.run(["pybabel", "compile", "--directory", "canaille/translations"])
|
|
return setup_kwargs
|
|
|
|
|
|
if __name__ == "__main__":
|
|
create_mo_files({})
|