2020-12-22 00:01:36 +00:00
|
|
|
|
2022-01-20 17:19:36 +00:00
|
|
|
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)
|
|
|
|
|
2021-06-21 22:27:40 +00:00
|
|
|
def run():
|
2022-01-20 17:19:36 +00:00
|
|
|
update_translations()
|
2021-07-30 23:40:51 +00:00
|
|
|
from LogarithmPlotter import logarithmplotter
|
|
|
|
logarithmplotter.run()
|
2020-12-22 00:01:36 +00:00
|
|
|
|
2021-06-21 22:27:40 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
run()
|
|
|
|
|