124 )) |
124 )) |
125 self.svnLogBrowserAct.triggered.connect(self._vcsLogBrowser) |
125 self.svnLogBrowserAct.triggered.connect(self._vcsLogBrowser) |
126 self.actions.append(self.svnLogBrowserAct) |
126 self.actions.append(self.svnLogBrowserAct) |
127 |
127 |
128 self.vcsDiffAct = E5Action( |
128 self.vcsDiffAct = E5Action( |
129 self.tr('Show difference'), |
129 self.tr('Show differences'), |
130 UI.PixmapCache.getIcon("vcsDiff.png"), |
130 UI.PixmapCache.getIcon("vcsDiff.png"), |
131 self.tr('Show &difference'), |
131 self.tr('Show &difference'), |
132 0, 0, self, 'subversion_diff') |
132 0, 0, self, 'subversion_diff') |
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 difference</b>""" |
137 """<b>Show differences</b>""" |
138 """<p>This shows the difference of the local project to the""" |
138 """<p>This shows the difference 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.tr('Show difference (extended)'), |
145 self.tr('Show differences (extended)'), |
146 UI.PixmapCache.getIcon("vcsDiff.png"), |
146 UI.PixmapCache.getIcon("vcsDiff.png"), |
147 self.tr('Show difference (extended)'), |
147 self.tr('Show differences (extended)'), |
148 0, 0, self, 'subversion_extendeddiff') |
148 0, 0, self, 'subversion_extendeddiff') |
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 difference (extended)</b>""" |
153 """<b>Show differences (extended)</b>""" |
154 """<p>This shows the difference of selectable revisions of""" |
154 """<p>This shows the difference 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.tr('Show difference (URLs)'), |
161 self.tr('Show differences (URLs)'), |
162 UI.PixmapCache.getIcon("vcsDiff.png"), |
162 UI.PixmapCache.getIcon("vcsDiff.png"), |
163 self.tr('Show difference (URLs)'), |
163 self.tr('Show differences (URLs)'), |
164 0, 0, self, 'subversion_urldiff') |
164 0, 0, self, 'subversion_urldiff') |
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 difference (URLs)</b>""" |
169 """<b>Show differences (URLs)</b>""" |
170 """<p>This shows the difference of the project between""" |
170 """<p>This shows the difference 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) |