19from PySide6
import QtGui, QtWidgets
20from hellopython.i18n
import i18n
24 return i18n(
"Hello Python Sidebar")
27 act = QtGui.QAction(
i18n(
"Hello Python Sidebar"))
28 act.setCheckable(
True)
32 w = QtWidgets.QWidget()
33 b = QtWidgets.QPushButton(
"Hello Python v0.0.1")
34 label = QtWidgets.QLabel()
35 label.setPixmap(QtGui.QPixmap(
":icons/other/about.svg"))
36 l = QtWidgets.QVBoxLayout(w)