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