Changing description, starting translator.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Adsooi 2022-01-20 18:19:36 +01:00
parent 94dc7b28a1
commit 74ea50d19f
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
57 changed files with 2659 additions and 154 deletions

11
run.py
View file

@ -1,5 +1,16 @@
def update_translations():
"""
Updates all binary translations
"""
from os import system, getcwd, chdir, path
pwd = getcwd()
chdir(path.join("LogarithmPlotter", "i18n"))
system("./release.sh")
chdir(pwd)
def run():
update_translations()
from LogarithmPlotter import logarithmplotter
logarithmplotter.run()