Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py

changeset 3472
9ea593813385
parent 3471
31a6d4300906
child 3515
1b8381afe38f
equal deleted inserted replaced
3471:31a6d4300906 3472:9ea593813385
133 self.vcsDiffAct.setStatusTip(self.tr( 133 self.vcsDiffAct.setStatusTip(self.tr(
134 'Show the difference of the local project to the repository' 134 'Show the difference of the local project to the repository'
135 )) 135 ))
136 self.vcsDiffAct.setWhatsThis(self.tr( 136 self.vcsDiffAct.setWhatsThis(self.tr(
137 """<b>Show differences</b>""" 137 """<b>Show differences</b>"""
138 """<p>This shows the difference of the local project to the""" 138 """<p>This shows differences of the local project to the"""
139 """ repository.</p>""" 139 """ repository.</p>"""
140 )) 140 ))
141 self.vcsDiffAct.triggered.connect(self._vcsDiff) 141 self.vcsDiffAct.triggered.connect(self._vcsDiff)
142 self.actions.append(self.vcsDiffAct) 142 self.actions.append(self.vcsDiffAct)
143 143
149 self.svnExtDiffAct.setStatusTip(self.tr( 149 self.svnExtDiffAct.setStatusTip(self.tr(
150 'Show the difference of revisions of the project to the repository' 150 'Show the difference of revisions of the project to the repository'
151 )) 151 ))
152 self.svnExtDiffAct.setWhatsThis(self.tr( 152 self.svnExtDiffAct.setWhatsThis(self.tr(
153 """<b>Show differences (extended)</b>""" 153 """<b>Show differences (extended)</b>"""
154 """<p>This shows the difference of selectable revisions of""" 154 """<p>This shows differences of selectable revisions of"""
155 """ the project.</p>""" 155 """ the project.</p>"""
156 )) 156 ))
157 self.svnExtDiffAct.triggered.connect(self.__svnExtendedDiff) 157 self.svnExtDiffAct.triggered.connect(self.__svnExtendedDiff)
158 self.actions.append(self.svnExtDiffAct) 158 self.actions.append(self.svnExtDiffAct)
159 159
165 self.svnUrlDiffAct.setStatusTip(self.tr( 165 self.svnUrlDiffAct.setStatusTip(self.tr(
166 'Show the difference of the project between two repository URLs' 166 'Show the difference of the project between two repository URLs'
167 )) 167 ))
168 self.svnUrlDiffAct.setWhatsThis(self.tr( 168 self.svnUrlDiffAct.setWhatsThis(self.tr(
169 """<b>Show differences (URLs)</b>""" 169 """<b>Show differences (URLs)</b>"""
170 """<p>This shows the difference of the project between""" 170 """<p>This shows differences of the project between"""
171 """ two repository URLs.</p>""" 171 """ two repository URLs.</p>"""
172 )) 172 ))
173 self.svnUrlDiffAct.triggered.connect(self.__svnUrlDiff) 173 self.svnUrlDiffAct.triggered.connect(self.__svnUrlDiff)
174 self.actions.append(self.svnUrlDiffAct) 174 self.actions.append(self.svnUrlDiffAct)
175 175

eric ide

mercurial