24 lines
578 B
Python
24 lines
578 B
Python
import sys
|
|
|
|
from PyQt6.QtCore import QTranslator
|
|
from PyQt6.QtWidgets import QApplication
|
|
|
|
from source import assets_path
|
|
from source.widget import MyMainWindow
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# create the application
|
|
application = QApplication(sys.argv)
|
|
|
|
# load the translator to support multiple languages
|
|
translator = QTranslator()
|
|
application.installTranslator(translator)
|
|
translator.load(str(assets_path / "language/french.qm"))
|
|
|
|
# create the window
|
|
window = MyMainWindow()
|
|
window.show()
|
|
|
|
# start the application
|
|
application.exec()
|