Plugins/VcsPlugins/vcsSubversion/ProjectHelper.py

branch
5_4_x
changeset 3474
ca4b926f1bbb
parent 3160
209a07d7e401
equal deleted inserted replaced
3470:741ab2eecaf9 3474:ca4b926f1bbb
124 )) 124 ))
125 self.svnLogBrowserAct.triggered[()].connect(self.__svnLogBrowser) 125 self.svnLogBrowserAct.triggered[()].connect(self.__svnLogBrowser)
126 self.actions.append(self.svnLogBrowserAct) 126 self.actions.append(self.svnLogBrowserAct)
127 127
128 self.vcsDiffAct = E5Action( 128 self.vcsDiffAct = E5Action(
129 self.trUtf8('Show difference'), 129 self.trUtf8('Show differences'),
130 UI.PixmapCache.getIcon("vcsDiff.png"), 130 UI.PixmapCache.getIcon("vcsDiff.png"),
131 self.trUtf8('Show &difference'), 131 self.trUtf8('Show &difference'),
132 0, 0, self, 'subversion_diff') 132 0, 0, self, 'subversion_diff')
133 self.vcsDiffAct.setStatusTip(self.trUtf8( 133 self.vcsDiffAct.setStatusTip(self.trUtf8(
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.trUtf8( 136 self.vcsDiffAct.setWhatsThis(self.trUtf8(
137 """<b>Show difference</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
144 self.svnExtDiffAct = E5Action( 144 self.svnExtDiffAct = E5Action(
145 self.trUtf8('Show difference (extended)'), 145 self.trUtf8('Show differences (extended)'),
146 UI.PixmapCache.getIcon("vcsDiff.png"), 146 UI.PixmapCache.getIcon("vcsDiff.png"),
147 self.trUtf8('Show difference (extended)'), 147 self.trUtf8('Show differences (extended)'),
148 0, 0, self, 'subversion_extendeddiff') 148 0, 0, self, 'subversion_extendeddiff')
149 self.svnExtDiffAct.setStatusTip(self.trUtf8( 149 self.svnExtDiffAct.setStatusTip(self.trUtf8(
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.trUtf8( 152 self.svnExtDiffAct.setWhatsThis(self.trUtf8(
153 """<b>Show difference (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
160 self.svnUrlDiffAct = E5Action( 160 self.svnUrlDiffAct = E5Action(
161 self.trUtf8('Show difference (URLs)'), 161 self.trUtf8('Show differences (URLs)'),
162 UI.PixmapCache.getIcon("vcsDiff.png"), 162 UI.PixmapCache.getIcon("vcsDiff.png"),
163 self.trUtf8('Show difference (URLs)'), 163 self.trUtf8('Show differences (URLs)'),
164 0, 0, self, 'subversion_urldiff') 164 0, 0, self, 'subversion_urldiff')
165 self.svnUrlDiffAct.setStatusTip(self.trUtf8( 165 self.svnUrlDiffAct.setStatusTip(self.trUtf8(
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.trUtf8( 168 self.svnUrlDiffAct.setWhatsThis(self.trUtf8(
169 """<b>Show difference (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