| |
|
|
| |
| |
| |
| |
| |
| |
|
|
| from PyQt4 import QtCore, QtGui |
|
|
|
|
| _fromUtf8 = getattr(QtCore.QString, 'fromUtf8', lambda s: s) |
|
|
|
|
| def _translate(context, text, disambig): |
| return QtGui.QApplication.translate( |
| context, text, disambig, |
| getattr( |
| QtGui.QApplication, 'UnicodeUTF8', |
| QtCore.QCoreApplication.Encoding)) |
|
|
|
|
| class Ui_Dialog(object): |
| def setupUi(self, Dialog): |
| Dialog.setObjectName(_fromUtf8("Dialog")) |
| Dialog.resize(359, 271) |
| self.label = QtGui.QLabel(Dialog) |
| self.label.setGeometry(QtCore.QRect(10, 10, 341, 211)) |
| self.label.setAlignment(QtCore.Qt.AlignJustify | QtCore.Qt.AlignVCenter) |
| self.label.setWordWrap(True) |
| self.label.setObjectName(_fromUtf8("label")) |
| self.pushButton = QtGui.QPushButton(Dialog) |
| self.pushButton.setGeometry(QtCore.QRect(150, 240, 75, 23)) |
| self.pushButton.setObjectName(_fromUtf8("pushButton")) |
|
|
| self.retranslateUi(Dialog) |
| QtCore.QObject.connect(self.pushButton, QtCore.SIGNAL(_fromUtf8("clicked()")), Dialog.accept) |
| QtCore.QMetaObject.connectSlotsByName(Dialog) |
|
|
| def retranslateUi(self, Dialog): |
| Dialog.setWindowTitle(_translate("Dialog", "Credits and Support", None)) |
| self.label.setText(_translate("Dialog", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n" |
| "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n" |
| "p, li { white-space: pre-wrap; }\n" |
| "</style></head><body style=\" font-family:\'MS Shell Dlg 2\'; font-size:8pt; font-weight:400; font-style:normal;\">\n" |
| "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt;\">This software is provided by </span><a href=\"http://www.capitatranslationinterpreting.com/\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">Capita Translation and Interpreting</span></a><span style=\" font-size:10pt;\"> for the </span><a href=\"http://www.statmt.org/moses/\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">Moses</span></a><span style=\" font-size:10pt;\"> Statistical Machine Translation decoder as part of the </span><a href=\"http://www.statmt.org/mosescore/\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">Moses Core Project</span></a><a href=\"http://www.statmt.org/mosescore/\"><span style=\" font-size:10pt; text-decoration: underline; color:#000000;\">.</span></a></p>\n" |
| "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; color:#000000;\"><br /></p>\n" |
| "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt; color:#000000;\">For support, please email mail.jie.jiang@gmail.com or submit a post on </span><a href=\"http://www.statmt.org/moses/?n=Moses.MailingLists\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">Moses Support List</span></a><span style=\" font-size:10pt; text-decoration: underline; color:#000000;\">.</span></p>\n" |
| "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; color:#000000;\"><br /></p>\n" |
| "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-size:10pt; color:#000000;\">More models are coming soon, please check </span><a href=\"http://www.statmt.org/moses/?n=Moses.Packages\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">Moses Packages</span></a><span style=\" font-size:10pt; text-decoration: underline; color:#000000;\">.</span></p></body></html>", None)) |
| self.pushButton.setText(_translate("Dialog", "OK", None)) |
|
|
|
|
| if __name__ == "__main__": |
| import sys |
| app = QtGui.QApplication(sys.argv) |
| Dialog = QtGui.QDialog() |
| ui = Ui_Dialog() |
| ui.setupUi(Dialog) |
| Dialog.show() |
| sys.exit(app.exec_()) |
|
|