Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py

changeset 1879
194a055fff04
parent 1509
c0b5e693b0eb
child 1880
dbd4d7698310
equal deleted inserted replaced
1878:de889f485ae8 1879:194a055fff04
84 """<p>This commits changes to the local project to the VCS repository.</p>""" 84 """<p>This commits changes to the local project to the VCS repository.</p>"""
85 )) 85 ))
86 self.vcsCommitAct.triggered[()].connect(self._vcsCommit) 86 self.vcsCommitAct.triggered[()].connect(self._vcsCommit)
87 self.actions.append(self.vcsCommitAct) 87 self.actions.append(self.vcsCommitAct)
88 88
89 # TODO: remove this action from the menu
89 self.vcsAddAct = E5Action(self.trUtf8('Add to repository'), 90 self.vcsAddAct = E5Action(self.trUtf8('Add to repository'),
90 UI.PixmapCache.getIcon("vcsAdd.png"), 91 UI.PixmapCache.getIcon("vcsAdd.png"),
91 self.trUtf8('&Add to repository...'), 0, 0, self, 'subversion_add') 92 self.trUtf8('&Add to repository...'), 0, 0, self, 'subversion_add')
92 self.vcsAddAct.setStatusTip(self.trUtf8( 93 self.vcsAddAct.setStatusTip(self.trUtf8(
93 'Add the local project to the VCS repository' 94 'Add the local project to the VCS repository'
295 """<p>This switches the local copy to another tag/branch.</p>""" 296 """<p>This switches the local copy to another tag/branch.</p>"""
296 )) 297 ))
297 self.vcsSwitchAct.triggered[()].connect(self._vcsSwitch) 298 self.vcsSwitchAct.triggered[()].connect(self._vcsSwitch)
298 self.actions.append(self.vcsSwitchAct) 299 self.actions.append(self.vcsSwitchAct)
299 300
301 # TODO: rename to "Conflicts resolved"
300 self.vcsResolveAct = E5Action(self.trUtf8('Resolve conflicts'), 302 self.vcsResolveAct = E5Action(self.trUtf8('Resolve conflicts'),
301 self.trUtf8('Resolve con&flicts'), 303 self.trUtf8('Resolve con&flicts'),
302 0, 0, self, 'subversion_resolve') 304 0, 0, self, 'subversion_resolve')
303 self.vcsResolveAct.setStatusTip(self.trUtf8( 305 self.vcsResolveAct.setStatusTip(self.trUtf8(
304 'Resolve all conflicts of the local project' 306 'Resolve all conflicts of the local project'

eric ide

mercurial