diff --git a/ui/about.py b/ui/about.py new file mode 100644 --- /dev/null +++ b/ui/about.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'about.ui' +# +# Created by: PyQt5 UI code generator 5.10.1 +# +# WARNING! All changes made in this file will be lost! + +from PyQt5 import QtCore, QtGui, QtWidgets + +class Ui_Form(object): + def setupUi(self, Form): + Form.setObjectName("Form") + Form.resize(539, 316) + self.horizontalLayout = QtWidgets.QHBoxLayout(Form) + self.horizontalLayout.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout.setSpacing(0) + self.horizontalLayout.setObjectName("horizontalLayout") + self.label = QtWidgets.QLabel(Form) + self.label.setEnabled(True) + self.label.setObjectName("label") + self.horizontalLayout.addWidget(self.label, 0, QtCore.Qt.AlignHCenter) + + self.retranslateUi(Form) + QtCore.QMetaObject.connectSlotsByName(Form) + + def retranslateUi(self, Form): + _translate = QtCore.QCoreApplication.translate + Form.setWindowTitle(_translate("Form", "About KUSBFloppyFormatter")) + self.label.setText(_translate("Form", "

USB Floppy Formatter

Version 1.0

By: Khaelenmore Thaal


GUI utility for formatting thumb drives for usage with hardware usb emulators
Uses Qt5
https://www.qt.io/
Uses PyQt5
https://www.riverbankcomputing.com/software/pyqt/intro
Built-in icons by
http://www.fatcow.com/free-icons
This program is licensed with GNU GPL v3
This program is available on
http://silverwing.one/pages/kusbff

"))