21 |
21 |
22 titleText = "<b>{0} - {1}</b>".format(UI.Info.Program, UI.Info.Version) |
22 titleText = "<b>{0} - {1}</b>".format(UI.Info.Program, UI.Info.Version) |
23 |
23 |
24 aboutText = QApplication.translate("AboutDialog", |
24 aboutText = QApplication.translate("AboutDialog", |
25 """<p>{0} is an Integrated Development Environment for the Python""" |
25 """<p>{0} is an Integrated Development Environment for the Python""" |
26 """ programming language. It is written using the PyQt Python bindings for""" |
26 """ programming language. It is written using the PyQt Python bindings""" |
27 """ the Qt GUI toolkit and the QScintilla editor widget.</p>""" |
27 """ for the Qt GUI toolkit and the QScintilla editor widget.</p>""" |
28 """<p>For more information see""" |
28 """<p>For more information see""" |
29 """ <a href="{1}">{1}</a>.</p>""" |
29 """ <a href="{1}">{1}</a>.</p>""" |
30 """<p>Please send bug reports to <a href="mailto:{2}">{2}</a>.</p>""" |
30 """<p>Please send bug reports to <a href="mailto:{2}">{2}</a>.</p>""" |
31 """<p>To request a new feature please send an email to""" |
31 """<p>To request a new feature please send an email to""" |
32 """ <a href="mailto:{3}">{3}</a>.</p>""" |
32 """ <a href="mailto:{3}">{3}</a>.</p>""" |
33 """<p>{0} uses third party software which is copyrighted""" |
33 """<p>{0} uses third party software which is copyrighted""" |
34 """ by its respective copyright holder. For details see""" |
34 """ by its respective copyright holder. For details see""" |
35 """ the copyright notice of the individual package.</p>""" |
35 """ the copyright notice of the individual package.</p>""" |
36 ).format(UI.Info.Program, UI.Info.Homepage, UI.Info.BugAddress, UI.Info.FeatureAddress) |
36 ).format(UI.Info.Program, UI.Info.Homepage, UI.Info.BugAddress, |
|
37 UI.Info.FeatureAddress) |
37 |
38 |
38 authorsText = \ |
39 authorsText = \ |
39 """\ |
40 """\ |
40 Detlev Offenbach |
41 Detlev Offenbach |
41 Project Manager, Maintainer and German translation |
42 Project Manager, Maintainer and German translation |
64 |
65 |
65 Gianluca |
66 Gianluca |
66 Italian translations |
67 Italian translations |
67 """ |
68 """ |
68 |
69 |
69 thanksText = \ |
70 thanksText = """\ |
70 """Phil Thompson for providing PyQt and QScintilla and pushing me into this business. |
71 Phil Thompson for providing PyQt and QScintilla and pushing me into this |
|
72 business. |
71 |
73 |
72 Andrew Bushnell of Fluent Inc. for contributing the multithreading debugger |
74 Andrew Bushnell of Fluent Inc. for contributing the multithreading debugger |
73 and a bunch of fixes to enhance the platform independence. |
75 and a bunch of fixes to enhance the platform independence. |
74 |
76 |
75 Alexander Darovsky and Mikhail Terekhov for providing Russian translations. |
77 Alexander Darovsky and Mikhail Terekhov for providing Russian translations. |
739 """ |
741 """ |
740 super(AboutDialog, self).__init__(parent) |
742 super(AboutDialog, self).__init__(parent) |
741 self.setupUi(self) |
743 self.setupUi(self) |
742 |
744 |
743 self.ericLabel.setText(titleText) |
745 self.ericLabel.setText(titleText) |
744 self.ericPixmap.setPixmap(UI.PixmapCache.getPixmap("eric.png").scaled(48, 48)) |
746 self.ericPixmap.setPixmap( |
|
747 UI.PixmapCache.getPixmap("eric.png").scaled(48, 48)) |
745 |
748 |
746 #################################################################### |
749 #################################################################### |
747 ## ABOUT |
750 ## ABOUT |
748 #################################################################### |
751 #################################################################### |
749 |
752 |