mirror of
https://github.com/Xevion/bulk-reminders.git
synced 2025-12-06 01:14:29 -06:00
46 lines
2.1 KiB
Python
46 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Form implementation generated from reading ui file 'oauth.ui'
|
|
#
|
|
# Created by: PyQt5 UI code generator 5.15.4
|
|
#
|
|
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
|
|
# run again. Do not edit this file unless you know what you are doing.
|
|
|
|
|
|
from PyQt5 import QtCore, QtWidgets
|
|
|
|
|
|
class Ui_Dialog(object):
|
|
def setupUi(self, Dialog):
|
|
Dialog.setObjectName("Dialog")
|
|
Dialog.setWindowModality(QtCore.Qt.NonModal)
|
|
Dialog.resize(297, 153)
|
|
Dialog.setSizeGripEnabled(False)
|
|
self.gridLayout = QtWidgets.QGridLayout(Dialog)
|
|
self.gridLayout.setObjectName("gridLayout")
|
|
spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
self.gridLayout.addItem(spacerItem, 3, 1, 1, 1)
|
|
spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
self.gridLayout.addItem(spacerItem1, 2, 2, 1, 1)
|
|
spacerItem2 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
|
self.gridLayout.addItem(spacerItem2, 2, 0, 1, 1)
|
|
self.label = QtWidgets.QLabel(Dialog)
|
|
self.label.setMinimumSize(QtCore.QSize(0, 0))
|
|
self.label.setMaximumSize(QtCore.QSize(300, 16777215))
|
|
self.label.setAlignment(QtCore.Qt.AlignCenter)
|
|
self.label.setWordWrap(True)
|
|
self.label.setObjectName("label")
|
|
self.gridLayout.addWidget(self.label, 2, 1, 1, 1)
|
|
spacerItem3 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
|
self.gridLayout.addItem(spacerItem3, 1, 1, 1, 1)
|
|
|
|
self.retranslateUi(Dialog)
|
|
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
|
|
def retranslateUi(self, Dialog):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
|
|
self.label.setText(_translate("Dialog", "No token file was found.\n"
|
|
"A browser tab has been opened, please sign in to complete the authentication process."))
|