Failed to fetch fork details. Try again later.
-
Olivier Kaufmann authoredbbba9e0a
Forked from
reversaal / OhmPi
Source project has a limited visibility.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys, os
import locale
from PyQt5.QtCore import QTranslator
from PyQt5.QtWidgets import QApplication
from config import Config
from tools import (
reset_timers, display_timers, timer
)
from View.MainWindow import ApplicationWindow
from Model.Study import Study
def main():
reset_timers()
conf = Config.load()
app = QApplication(sys.argv)
translator = QTranslator()
lang_file = ""
if conf.lang == "":
# System language
sys_lang = locale.getdefaultlocale()
if "fr" in sys_lang[0]:
lang_file = os.path.dirname(__file__) + "/lang/fr.qm"
elif conf.lang == "fr":
# French
lang_file = os.path.dirname(__file__) + "/lang/fr.qm"
else:
lang_file = ""
# English default language
if lang_file != "":
ok = translator.load(lang_file)
if not ok:
print("failed")
app.installTranslator(translator)
application = ApplicationWindow(conf=conf)
application.show()
ret = app.exec_()
display_timers()
sys.exit(ret)
if __name__ == "__main__":
main()