Preferences/ProgramsDialog.py

changeset 2737
dbe5497851fa
parent 2615
bdc9b4659826
child 2791
a9577f248f04
child 3010
befeff46ec0f
--- a/Preferences/ProgramsDialog.py	Sun Jun 23 13:12:38 2013 +0200
+++ b/Preferences/ProgramsDialog.py	Mon Jun 24 19:12:10 2013 +0200
@@ -115,17 +115,29 @@
         
         # 2. do the PyQt programs
         # 2a. Translation Extractor PyQt4
-        self.__createProgramEntry(self.trUtf8("Translation Extractor (Python, Qt)"),
+        self.__createProgramEntry(self.trUtf8("Translation Extractor (Python, PyQt4)"),
             Utilities.isWindowsPlatform() and "pylupdate4.exe" or "pylupdate4",
             '-version', 'pylupdate', -1)
         # 2b. Forms Compiler PyQt4
-        self.__createProgramEntry(self.trUtf8("Forms Compiler (Python, Qt)"),
+        self.__createProgramEntry(self.trUtf8("Forms Compiler (Python, PyQt4)"),
             Utilities.isWindowsPlatform() and "pyuic4.bat" or "pyuic4",
             '--version', 'Python User', 4)
         # 2c. Resource Compiler PyQt4
-        self.__createProgramEntry(self.trUtf8("Resource Compiler (Python, Qt)"),
+        self.__createProgramEntry(self.trUtf8("Resource Compiler (Python, PyQt4)"),
             Utilities.isWindowsPlatform() and "pyrcc4.exe" or "pyrcc4",
             '-version', 'Resource Compiler', -1)
+        # 2d. Translation Extractor PyQt5
+        self.__createProgramEntry(self.trUtf8("Translation Extractor (Python, PyQt5)"),
+            Utilities.isWindowsPlatform() and "pylupdate5.exe" or "pylupdate5",
+            '-version', 'pylupdate', -1)
+        # 2e. Forms Compiler PyQt4
+        self.__createProgramEntry(self.trUtf8("Forms Compiler (Python, PyQt5)"),
+            Utilities.isWindowsPlatform() and "pyuic5.bat" or "pyuic5",
+            '--version', 'Python User', 4)
+        # 2f. Resource Compiler PyQt4
+        self.__createProgramEntry(self.trUtf8("Resource Compiler (Python, PyQt5)"),
+            Utilities.isWindowsPlatform() and "pyrcc5.exe" or "pyrcc5",
+            '-version', 'Resource Compiler', -1)
         
         # 3. do the PySide programs
         # 3a. Translation Extractor PySide

eric ide

mercurial