Changing description, starting translator.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
94dc7b28a1
commit
74ea50d19f
57 changed files with 2659 additions and 154 deletions
11
run.py
11
run.py
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue