104 self.__menu.addAction( |
104 self.__menu.addAction( |
105 UI.PixmapCache.getIcon("trPreviewer"), |
105 UI.PixmapCache.getIcon("trPreviewer"), |
106 self.tr("Translations Previewer"), self.__startTRPreviewer) |
106 self.tr("Translations Previewer"), self.__startTRPreviewer) |
107 self.__menu.addAction( |
107 self.__menu.addAction( |
108 UI.PixmapCache.getIcon("unittest"), |
108 UI.PixmapCache.getIcon("unittest"), |
109 self.tr("Unittest"), self.__startUnittest) |
109 self.tr("Testing"), self.__startTesting) |
110 self.__menu.addSeparator() |
110 self.__menu.addSeparator() |
111 |
111 |
112 self.__menu.addAction( |
112 self.__menu.addAction( |
113 UI.PixmapCache.getIcon("diffFiles"), |
113 UI.PixmapCache.getIcon("diffFiles"), |
114 self.tr("Compare Files"), self.__startDiff) |
114 self.tr("Compare Files"), self.__startDiff) |
367 """ |
367 """ |
368 Private slot to start the eric translations previewer. |
368 Private slot to start the eric translations previewer. |
369 """ |
369 """ |
370 self.__startProc("eric7_trpreviewer.py") |
370 self.__startProc("eric7_trpreviewer.py") |
371 |
371 |
372 def __startUnittest(self): |
372 def __startTesting(self): |
373 """ |
373 """ |
374 Private slot to start the eric unittest dialog. |
374 Private slot to start the eric testing dialog. |
375 """ |
375 """ |
376 self.__startProc("eric7_unittest.py") |
376 self.__startProc("eric7_testing.py") |
377 |
377 |
378 def __startDiff(self): |
378 def __startDiff(self): |
379 """ |
379 """ |
380 Private slot to start the eric diff dialog. |
380 Private slot to start the eric diff dialog. |
381 """ |
381 """ |