439 self.svnTagListAct = EricAction( |
439 self.svnTagListAct = EricAction( |
440 self.tr("List tags"), self.tr("List tags..."), 0, 0, self, "pysvn_list_tags" |
440 self.tr("List tags"), self.tr("List tags..."), 0, 0, self, "pysvn_list_tags" |
441 ) |
441 ) |
442 self.svnTagListAct.setStatusTip(self.tr("List tags of the project")) |
442 self.svnTagListAct.setStatusTip(self.tr("List tags of the project")) |
443 self.svnTagListAct.setWhatsThis( |
443 self.svnTagListAct.setWhatsThis( |
444 self.tr( |
444 self.tr("""<b>List tags</b><p>This lists the tags of the project.</p>""") |
445 """<b>List tags</b><p>This lists the tags of the project.</p>""" |
|
446 ) |
|
447 ) |
445 ) |
448 self.svnTagListAct.triggered.connect(self.__svnTagList) |
446 self.svnTagListAct.triggered.connect(self.__svnTagList) |
449 self.actions.append(self.svnTagListAct) |
447 self.actions.append(self.svnTagListAct) |
450 |
448 |
451 self.svnBranchListAct = EricAction( |
449 self.svnBranchListAct = EricAction( |