348 self.gitTagListAct = EricAction( |
348 self.gitTagListAct = EricAction( |
349 self.tr("List tags"), self.tr("&List tags..."), 0, 0, self, "git_list_tags" |
349 self.tr("List tags"), self.tr("&List tags..."), 0, 0, self, "git_list_tags" |
350 ) |
350 ) |
351 self.gitTagListAct.setStatusTip(self.tr("List tags of the project")) |
351 self.gitTagListAct.setStatusTip(self.tr("List tags of the project")) |
352 self.gitTagListAct.setWhatsThis( |
352 self.gitTagListAct.setWhatsThis( |
353 self.tr( |
353 self.tr("""<b>List tags</b><p>This lists the tags of the project.</p>""") |
354 """<b>List tags</b><p>This lists the tags of the project.</p>""" |
|
355 ) |
|
356 ) |
354 ) |
357 self.gitTagListAct.triggered.connect(self.__gitTagList) |
355 self.gitTagListAct.triggered.connect(self.__gitTagList) |
358 self.actions.append(self.gitTagListAct) |
356 self.actions.append(self.gitTagListAct) |
359 |
357 |
360 self.gitDescribeTagAct = EricAction( |
358 self.gitDescribeTagAct = EricAction( |
848 self, |
846 self, |
849 "git_cherrypick_abort", |
847 "git_cherrypick_abort", |
850 ) |
848 ) |
851 self.gitCherryPickAbortAct.setStatusTip( |
849 self.gitCherryPickAbortAct.setStatusTip( |
852 self.tr( |
850 self.tr( |
853 "Cancel the current copying session and return to the" " previous state" |
851 "Cancel the current copying session and return to the previous state" |
854 ) |
852 ) |
855 ) |
853 ) |
856 self.gitCherryPickAbortAct.setWhatsThis( |
854 self.gitCherryPickAbortAct.setWhatsThis( |
857 self.tr( |
855 self.tr( |
858 """<b>Cancel Copying Session</b>""" |
856 """<b>Cancel Copying Session</b>""" |