285 self.vcsDiffAct.setStatusTip(self.tr( |
285 self.vcsDiffAct.setStatusTip(self.tr( |
286 'Show the difference of the local project to the repository' |
286 'Show the difference of the local project to the repository' |
287 )) |
287 )) |
288 self.vcsDiffAct.setWhatsThis(self.tr( |
288 self.vcsDiffAct.setWhatsThis(self.tr( |
289 """<b>Show differences</b>""" |
289 """<b>Show differences</b>""" |
290 """<p>This shows the difference of the local project to the""" |
290 """<p>This shows differences of the local project to the""" |
291 """ repository.</p>""" |
291 """ repository.</p>""" |
292 )) |
292 )) |
293 self.vcsDiffAct.triggered.connect(self._vcsDiff) |
293 self.vcsDiffAct.triggered.connect(self._vcsDiff) |
294 self.actions.append(self.vcsDiffAct) |
294 self.actions.append(self.vcsDiffAct) |
295 |
295 |
301 self.hgExtDiffAct.setStatusTip(self.tr( |
301 self.hgExtDiffAct.setStatusTip(self.tr( |
302 'Show the difference of revisions of the project to the repository' |
302 'Show the difference of revisions of the project to the repository' |
303 )) |
303 )) |
304 self.hgExtDiffAct.setWhatsThis(self.tr( |
304 self.hgExtDiffAct.setWhatsThis(self.tr( |
305 """<b>Show differences (extended)</b>""" |
305 """<b>Show differences (extended)</b>""" |
306 """<p>This shows the difference of selectable revisions of the""" |
306 """<p>This shows differences of selectable revisions of the""" |
307 """ project.</p>""" |
307 """ project.</p>""" |
308 )) |
308 )) |
309 self.hgExtDiffAct.triggered.connect(self.__hgExtendedDiff) |
309 self.hgExtDiffAct.triggered.connect(self.__hgExtendedDiff) |
310 self.actions.append(self.hgExtDiffAct) |
310 self.actions.append(self.hgExtDiffAct) |
311 |
311 |