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

# import gettext
# import locale
import sys

from PySide6.QtCore import QCoreApplication, Qt
from PySide6.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())
