|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | + |
| 3 | +# Form implementation generated from reading ui file 'about.ui' |
| 4 | +# |
| 5 | +# Created: Mon Nov 19 13:33:47 2012 |
| 6 | +# by: PyQt4 UI code generator 4.9.4 |
| 7 | +# |
| 8 | +# WARNING! All changes made in this file will be lost! |
| 9 | + |
| 10 | +from PyQt4 import QtCore, QtGui |
| 11 | + |
| 12 | +try: |
| 13 | + _fromUtf8 = QtCore.QString.fromUtf8 |
| 14 | +except AttributeError: |
| 15 | + _fromUtf8 = lambda s: s |
| 16 | + |
| 17 | +class Ui_aboutDialog(object): |
| 18 | + def setupUi(self, aboutDialog): |
| 19 | + aboutDialog.setObjectName(_fromUtf8("aboutDialog")) |
| 20 | + aboutDialog.resize(360, 402) |
| 21 | + self.buttonBox = QtGui.QDialogButtonBox(aboutDialog) |
| 22 | + self.buttonBox.setGeometry(QtCore.QRect(20, 360, 311, 32)) |
| 23 | + self.buttonBox.setOrientation(QtCore.Qt.Horizontal) |
| 24 | + self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Ok) |
| 25 | + self.buttonBox.setObjectName(_fromUtf8("buttonBox")) |
| 26 | + self.label = QtGui.QLabel(aboutDialog) |
| 27 | + self.label.setGeometry(QtCore.QRect(70, 126, 111, 20)) |
| 28 | + font = QtGui.QFont() |
| 29 | + font.setBold(True) |
| 30 | + font.setWeight(75) |
| 31 | + self.label.setFont(font) |
| 32 | + self.label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) |
| 33 | + self.label.setObjectName(_fromUtf8("label")) |
| 34 | + self.labelVersion = QtGui.QLabel(aboutDialog) |
| 35 | + self.labelVersion.setGeometry(QtCore.QRect(190, 126, 161, 20)) |
| 36 | + self.labelVersion.setObjectName(_fromUtf8("labelVersion")) |
| 37 | + self.label_2 = QtGui.QLabel(aboutDialog) |
| 38 | + self.label_2.setGeometry(QtCore.QRect(10, 150, 341, 20)) |
| 39 | + self.label_2.setAlignment(QtCore.Qt.AlignCenter) |
| 40 | + self.label_2.setObjectName(_fromUtf8("label_2")) |
| 41 | + self.label_3 = QtGui.QLabel(aboutDialog) |
| 42 | + self.label_3.setGeometry(QtCore.QRect(30, 210, 321, 51)) |
| 43 | + self.label_3.setWordWrap(True) |
| 44 | + self.label_3.setObjectName(_fromUtf8("label_3")) |
| 45 | + self.label_4 = QtGui.QLabel(aboutDialog) |
| 46 | + self.label_4.setGeometry(QtCore.QRect(30, 260, 321, 101)) |
| 47 | + self.label_4.setWordWrap(True) |
| 48 | + self.label_4.setObjectName(_fromUtf8("label_4")) |
| 49 | + self.label_5 = QtGui.QLabel(aboutDialog) |
| 50 | + self.label_5.setGeometry(QtCore.QRect(10, 180, 341, 20)) |
| 51 | + self.label_5.setAlignment(QtCore.Qt.AlignCenter) |
| 52 | + self.label_5.setObjectName(_fromUtf8("label_5")) |
| 53 | + |
| 54 | + self.retranslateUi(aboutDialog) |
| 55 | + QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), aboutDialog.accept) |
| 56 | + QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), aboutDialog.reject) |
| 57 | + QtCore.QMetaObject.connectSlotsByName(aboutDialog) |
| 58 | + |
| 59 | + def retranslateUi(self, aboutDialog): |
| 60 | + aboutDialog.setWindowTitle(QtGui.QApplication.translate("aboutDialog", "About", None, QtGui.QApplication.UnicodeUTF8)) |
| 61 | + self.label.setText(QtGui.QApplication.translate("aboutDialog", "PyBitmessage", None, QtGui.QApplication.UnicodeUTF8)) |
| 62 | + self.labelVersion.setText(QtGui.QApplication.translate("aboutDialog", "version ?", None, QtGui.QApplication.UnicodeUTF8)) |
| 63 | + self.label_2.setText(QtGui.QApplication.translate("aboutDialog", "Copyright © 2012 Jonathan Warren", None, QtGui.QApplication.UnicodeUTF8)) |
| 64 | + self.label_3.setText(QtGui.QApplication.translate("aboutDialog", "Distributed under the MIT/X11 software license, see the accompanying file license.txt or http://www.opensource.org/licenses/mit-license.php", None, QtGui.QApplication.UnicodeUTF8)) |
| 65 | + self. label_4. setText( QtGui. QApplication. translate( "aboutDialog", "This product includes Python-RSA (http://stuvel.eu/rsa) originally written by Sybren A. Stüvel <[email protected]>. It is licensed under the Apache 2.0 license: http://www.apache.org/licenses/LICENSE-2.0", None, QtGui. QApplication. UnicodeUTF8)) |
| 66 | + self.label_5.setText(QtGui.QApplication.translate("aboutDialog", "This is Beta software.", None, QtGui.QApplication.UnicodeUTF8)) |
| 67 | + |
0 commit comments