#!/usr/local/bin/python3.8
# -*- coding: utf-8 -*-

# import gettext
# import locale
import sys

from PySide2.QtCore import QCoreApplication, Qt
from PySide2.QtWidgets import QApplication
from WWplot.application_window import ApplicationWindow

# gettext.bindtextdomain('wwplot', '/usr/local/share/locale')
# gettext.textdomain('wwplot')
# locale.bindtextdomain('wwplot', '/usr/local/share/locale')
# locale.textdomain('wwplot')

QCoreApplication.setAttribute(Qt.AA_ShareOpenGLContexts)

APP = QApplication(sys.argv)
AW = ApplicationWindow()

sys.exit(APP.exec_())
