ui_open_success.py (1420B)
1 # -*- coding: utf-8 -*- 2 3 # Form implementation generated from reading ui file 'tombqt/open_success.ui' 4 # 5 # Created: Mon Jan 23 23:06:38 2012 6 # by: PyQt4 UI code generator 4.9 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_success(object): 18 def setupUi(self, success): 19 success.setObjectName(_fromUtf8("success")) 20 success.resize(480, 640) 21 self.verticalLayout = QtGui.QVBoxLayout(success) 22 self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) 23 self.label = QtGui.QLabel(success) 24 self.label.setObjectName(_fromUtf8("label")) 25 self.verticalLayout.addWidget(self.label) 26 27 self.retranslateUi(success) 28 QtCore.QMetaObject.connectSlotsByName(success) 29 30 def retranslateUi(self, success): 31 success.setWindowTitle(QtGui.QApplication.translate("success", "WizardPage", None, QtGui.QApplication.UnicodeUTF8)) 32 success.setTitle(QtGui.QApplication.translate("success", "Tomb opened", None, QtGui.QApplication.UnicodeUTF8)) 33 success.setSubTitle(QtGui.QApplication.translate("success", "success", None, QtGui.QApplication.UnicodeUTF8)) 34 self.label.setText(QtGui.QApplication.translate("success", "You successfully opened the tomb", None, QtGui.QApplication.UnicodeUTF8)) 35