Plugins/VcsPlugins/vcsPySvn/ProjectHelper.py

changeset 4112
f15ce9247b7c
parent 4079
a3319822d303
child 4115
0c70a8f8d54a
equal deleted inserted replaced
4111:82e21ab01491 4112:f15ce9247b7c
50 """ 50 """
51 self.vcsNewAct = E5Action( 51 self.vcsNewAct = E5Action(
52 self.tr('New from repository'), 52 self.tr('New from repository'),
53 UI.PixmapCache.getIcon("vcsCheckout.png"), 53 UI.PixmapCache.getIcon("vcsCheckout.png"),
54 self.tr('&New from repository...'), 0, 0, self, 54 self.tr('&New from repository...'), 0, 0, self,
55 'subversion_new') 55 'pysvn_new')
56 self.vcsNewAct.setStatusTip(self.tr( 56 self.vcsNewAct.setStatusTip(self.tr(
57 'Create a new project from the VCS repository' 57 'Create a new project from the VCS repository'
58 )) 58 ))
59 self.vcsNewAct.setWhatsThis(self.tr( 59 self.vcsNewAct.setWhatsThis(self.tr(
60 """<b>New from repository</b>""" 60 """<b>New from repository</b>"""
66 66
67 self.vcsUpdateAct = E5Action( 67 self.vcsUpdateAct = E5Action(
68 self.tr('Update from repository'), 68 self.tr('Update from repository'),
69 UI.PixmapCache.getIcon("vcsUpdate.png"), 69 UI.PixmapCache.getIcon("vcsUpdate.png"),
70 self.tr('&Update from repository'), 0, 0, self, 70 self.tr('&Update from repository'), 0, 0, self,
71 'subversion_update') 71 'pysvn_update')
72 self.vcsUpdateAct.setStatusTip(self.tr( 72 self.vcsUpdateAct.setStatusTip(self.tr(
73 'Update the local project from the VCS repository' 73 'Update the local project from the VCS repository'
74 )) 74 ))
75 self.vcsUpdateAct.setWhatsThis(self.tr( 75 self.vcsUpdateAct.setWhatsThis(self.tr(
76 """<b>Update from repository</b>""" 76 """<b>Update from repository</b>"""
82 82
83 self.vcsCommitAct = E5Action( 83 self.vcsCommitAct = E5Action(
84 self.tr('Commit changes to repository'), 84 self.tr('Commit changes to repository'),
85 UI.PixmapCache.getIcon("vcsCommit.png"), 85 UI.PixmapCache.getIcon("vcsCommit.png"),
86 self.tr('&Commit changes to repository...'), 0, 0, self, 86 self.tr('&Commit changes to repository...'), 0, 0, self,
87 'subversion_commit') 87 'pysvn_commit')
88 self.vcsCommitAct.setStatusTip(self.tr( 88 self.vcsCommitAct.setStatusTip(self.tr(
89 'Commit changes to the local project to the VCS repository' 89 'Commit changes to the local project to the VCS repository'
90 )) 90 ))
91 self.vcsCommitAct.setWhatsThis(self.tr( 91 self.vcsCommitAct.setWhatsThis(self.tr(
92 """<b>Commit changes to repository</b>""" 92 """<b>Commit changes to repository</b>"""
98 98
99 self.vcsLogAct = E5Action( 99 self.vcsLogAct = E5Action(
100 self.tr('Show log'), 100 self.tr('Show log'),
101 UI.PixmapCache.getIcon("vcsLog.png"), 101 UI.PixmapCache.getIcon("vcsLog.png"),
102 self.tr('Show &log'), 102 self.tr('Show &log'),
103 0, 0, self, 'subversion_log') 103 0, 0, self, 'pysvn_log')
104 self.vcsLogAct.setStatusTip(self.tr( 104 self.vcsLogAct.setStatusTip(self.tr(
105 'Show the log of the local project' 105 'Show the log of the local project'
106 )) 106 ))
107 self.vcsLogAct.setWhatsThis(self.tr( 107 self.vcsLogAct.setWhatsThis(self.tr(
108 """<b>Show log</b>""" 108 """<b>Show log</b>"""
113 113
114 self.svnLogBrowserAct = E5Action( 114 self.svnLogBrowserAct = E5Action(
115 self.tr('Show log browser'), 115 self.tr('Show log browser'),
116 UI.PixmapCache.getIcon("vcsLog.png"), 116 UI.PixmapCache.getIcon("vcsLog.png"),
117 self.tr('Show log browser'), 117 self.tr('Show log browser'),
118 0, 0, self, 'subversion_log_browser') 118 0, 0, self, 'pysvn_log_browser')
119 self.svnLogBrowserAct.setStatusTip(self.tr( 119 self.svnLogBrowserAct.setStatusTip(self.tr(
120 'Show a dialog to browse the log of the local project' 120 'Show a dialog to browse the log of the local project'
121 )) 121 ))
122 self.svnLogBrowserAct.setWhatsThis(self.tr( 122 self.svnLogBrowserAct.setWhatsThis(self.tr(
123 """<b>Show log browser</b>""" 123 """<b>Show log browser</b>"""
130 130
131 self.vcsDiffAct = E5Action( 131 self.vcsDiffAct = E5Action(
132 self.tr('Show differences'), 132 self.tr('Show differences'),
133 UI.PixmapCache.getIcon("vcsDiff.png"), 133 UI.PixmapCache.getIcon("vcsDiff.png"),
134 self.tr('Show &difference'), 134 self.tr('Show &difference'),
135 0, 0, self, 'subversion_diff') 135 0, 0, self, 'pysvn_diff')
136 self.vcsDiffAct.setStatusTip(self.tr( 136 self.vcsDiffAct.setStatusTip(self.tr(
137 'Show the difference of the local project to the repository' 137 'Show the difference of the local project to the repository'
138 )) 138 ))
139 self.vcsDiffAct.setWhatsThis(self.tr( 139 self.vcsDiffAct.setWhatsThis(self.tr(
140 """<b>Show differences</b>""" 140 """<b>Show differences</b>"""
146 146
147 self.svnExtDiffAct = E5Action( 147 self.svnExtDiffAct = E5Action(
148 self.tr('Show differences (extended)'), 148 self.tr('Show differences (extended)'),
149 UI.PixmapCache.getIcon("vcsDiff.png"), 149 UI.PixmapCache.getIcon("vcsDiff.png"),
150 self.tr('Show differences (extended)'), 150 self.tr('Show differences (extended)'),
151 0, 0, self, 'subversion_extendeddiff') 151 0, 0, self, 'pysvn_extendeddiff')
152 self.svnExtDiffAct.setStatusTip(self.tr( 152 self.svnExtDiffAct.setStatusTip(self.tr(
153 'Show the difference of revisions of the project to the repository' 153 'Show the difference of revisions of the project to the repository'
154 )) 154 ))
155 self.svnExtDiffAct.setWhatsThis(self.tr( 155 self.svnExtDiffAct.setWhatsThis(self.tr(
156 """<b>Show differences (extended)</b>""" 156 """<b>Show differences (extended)</b>"""
162 162
163 self.svnUrlDiffAct = E5Action( 163 self.svnUrlDiffAct = E5Action(
164 self.tr('Show differences (URLs)'), 164 self.tr('Show differences (URLs)'),
165 UI.PixmapCache.getIcon("vcsDiff.png"), 165 UI.PixmapCache.getIcon("vcsDiff.png"),
166 self.tr('Show differences (URLs)'), 166 self.tr('Show differences (URLs)'),
167 0, 0, self, 'subversion_urldiff') 167 0, 0, self, 'pysvn_urldiff')
168 self.svnUrlDiffAct.setStatusTip(self.tr( 168 self.svnUrlDiffAct.setStatusTip(self.tr(
169 'Show the difference of the project between two repository URLs' 169 'Show the difference of the project between two repository URLs'
170 )) 170 ))
171 self.svnUrlDiffAct.setWhatsThis(self.tr( 171 self.svnUrlDiffAct.setWhatsThis(self.tr(
172 """<b>Show differences (URLs)</b>""" 172 """<b>Show differences (URLs)</b>"""
178 178
179 self.vcsStatusAct = E5Action( 179 self.vcsStatusAct = E5Action(
180 self.tr('Show status'), 180 self.tr('Show status'),
181 UI.PixmapCache.getIcon("vcsStatus.png"), 181 UI.PixmapCache.getIcon("vcsStatus.png"),
182 self.tr('Show &status'), 182 self.tr('Show &status'),
183 0, 0, self, 'subversion_status') 183 0, 0, self, 'pysvn_status')
184 self.vcsStatusAct.setStatusTip(self.tr( 184 self.vcsStatusAct.setStatusTip(self.tr(
185 'Show the status of the local project' 185 'Show the status of the local project'
186 )) 186 ))
187 self.vcsStatusAct.setWhatsThis(self.tr( 187 self.vcsStatusAct.setWhatsThis(self.tr(
188 """<b>Show status</b>""" 188 """<b>Show status</b>"""
193 193
194 self.svnChangeListsAct = E5Action( 194 self.svnChangeListsAct = E5Action(
195 self.tr('Show change lists'), 195 self.tr('Show change lists'),
196 UI.PixmapCache.getIcon("vcsChangeLists.png"), 196 UI.PixmapCache.getIcon("vcsChangeLists.png"),
197 self.tr('Show change lists'), 197 self.tr('Show change lists'),
198 0, 0, self, 'subversion_changelists') 198 0, 0, self, 'pysvn_changelists')
199 self.svnChangeListsAct.setStatusTip(self.tr( 199 self.svnChangeListsAct.setStatusTip(self.tr(
200 'Show the change lists and associated files of the local project' 200 'Show the change lists and associated files of the local project'
201 )) 201 ))
202 self.svnChangeListsAct.setWhatsThis(self.tr( 202 self.svnChangeListsAct.setWhatsThis(self.tr(
203 """<b>Show change lists</b>""" 203 """<b>Show change lists</b>"""
209 209
210 self.svnRepoInfoAct = E5Action( 210 self.svnRepoInfoAct = E5Action(
211 self.tr('Show repository info'), 211 self.tr('Show repository info'),
212 UI.PixmapCache.getIcon("vcsRepo.png"), 212 UI.PixmapCache.getIcon("vcsRepo.png"),
213 self.tr('Show repository info'), 213 self.tr('Show repository info'),
214 0, 0, self, 'subversion_repoinfo') 214 0, 0, self, 'pysvn_repoinfo')
215 self.svnRepoInfoAct.setStatusTip(self.tr( 215 self.svnRepoInfoAct.setStatusTip(self.tr(
216 'Show some repository related information for the local project' 216 'Show some repository related information for the local project'
217 )) 217 ))
218 self.svnRepoInfoAct.setWhatsThis(self.tr( 218 self.svnRepoInfoAct.setWhatsThis(self.tr(
219 """<b>Show repository info</b>""" 219 """<b>Show repository info</b>"""
225 225
226 self.vcsTagAct = E5Action( 226 self.vcsTagAct = E5Action(
227 self.tr('Tag in repository'), 227 self.tr('Tag in repository'),
228 UI.PixmapCache.getIcon("vcsTag.png"), 228 UI.PixmapCache.getIcon("vcsTag.png"),
229 self.tr('&Tag in repository...'), 229 self.tr('&Tag in repository...'),
230 0, 0, self, 'subversion_tag') 230 0, 0, self, 'pysvn_tag')
231 self.vcsTagAct.setStatusTip(self.tr( 231 self.vcsTagAct.setStatusTip(self.tr(
232 'Tag the local project in the repository' 232 'Tag the local project in the repository'
233 )) 233 ))
234 self.vcsTagAct.setWhatsThis(self.tr( 234 self.vcsTagAct.setWhatsThis(self.tr(
235 """<b>Tag in repository</b>""" 235 """<b>Tag in repository</b>"""
240 240
241 self.vcsExportAct = E5Action( 241 self.vcsExportAct = E5Action(
242 self.tr('Export from repository'), 242 self.tr('Export from repository'),
243 UI.PixmapCache.getIcon("vcsExport.png"), 243 UI.PixmapCache.getIcon("vcsExport.png"),
244 self.tr('&Export from repository...'), 244 self.tr('&Export from repository...'),
245 0, 0, self, 'subversion_export') 245 0, 0, self, 'pysvn_export')
246 self.vcsExportAct.setStatusTip(self.tr( 246 self.vcsExportAct.setStatusTip(self.tr(
247 'Export a project from the repository' 247 'Export a project from the repository'
248 )) 248 ))
249 self.vcsExportAct.setWhatsThis(self.tr( 249 self.vcsExportAct.setWhatsThis(self.tr(
250 """<b>Export from repository</b>""" 250 """<b>Export from repository</b>"""
254 self.actions.append(self.vcsExportAct) 254 self.actions.append(self.vcsExportAct)
255 255
256 self.vcsPropsAct = E5Action( 256 self.vcsPropsAct = E5Action(
257 self.tr('Command options'), 257 self.tr('Command options'),
258 self.tr('Command &options...'), 0, 0, self, 258 self.tr('Command &options...'), 0, 0, self,
259 'subversion_options') 259 'pysvn_options')
260 self.vcsPropsAct.setStatusTip(self.tr( 260 self.vcsPropsAct.setStatusTip(self.tr(
261 'Show the VCS command options')) 261 'Show the VCS command options'))
262 self.vcsPropsAct.setWhatsThis(self.tr( 262 self.vcsPropsAct.setWhatsThis(self.tr(
263 """<b>Command options...</b>""" 263 """<b>Command options...</b>"""
264 """<p>This shows a dialog to edit the VCS command options.</p>""" 264 """<p>This shows a dialog to edit the VCS command options.</p>"""
268 268
269 self.vcsRevertAct = E5Action( 269 self.vcsRevertAct = E5Action(
270 self.tr('Revert changes'), 270 self.tr('Revert changes'),
271 UI.PixmapCache.getIcon("vcsRevert.png"), 271 UI.PixmapCache.getIcon("vcsRevert.png"),
272 self.tr('Re&vert changes'), 272 self.tr('Re&vert changes'),
273 0, 0, self, 'subversion_revert') 273 0, 0, self, 'pysvn_revert')
274 self.vcsRevertAct.setStatusTip(self.tr( 274 self.vcsRevertAct.setStatusTip(self.tr(
275 'Revert all changes made to the local project' 275 'Revert all changes made to the local project'
276 )) 276 ))
277 self.vcsRevertAct.setWhatsThis(self.tr( 277 self.vcsRevertAct.setWhatsThis(self.tr(
278 """<b>Revert changes</b>""" 278 """<b>Revert changes</b>"""
283 283
284 self.vcsMergeAct = E5Action( 284 self.vcsMergeAct = E5Action(
285 self.tr('Merge'), 285 self.tr('Merge'),
286 UI.PixmapCache.getIcon("vcsMerge.png"), 286 UI.PixmapCache.getIcon("vcsMerge.png"),
287 self.tr('Mer&ge changes...'), 287 self.tr('Mer&ge changes...'),
288 0, 0, self, 'subversion_merge') 288 0, 0, self, 'pysvn_merge')
289 self.vcsMergeAct.setStatusTip(self.tr( 289 self.vcsMergeAct.setStatusTip(self.tr(
290 'Merge changes of a tag/revision into the local project' 290 'Merge changes of a tag/revision into the local project'
291 )) 291 ))
292 self.vcsMergeAct.setWhatsThis(self.tr( 292 self.vcsMergeAct.setWhatsThis(self.tr(
293 """<b>Merge</b>""" 293 """<b>Merge</b>"""
299 299
300 self.vcsSwitchAct = E5Action( 300 self.vcsSwitchAct = E5Action(
301 self.tr('Switch'), 301 self.tr('Switch'),
302 UI.PixmapCache.getIcon("vcsSwitch.png"), 302 UI.PixmapCache.getIcon("vcsSwitch.png"),
303 self.tr('S&witch...'), 303 self.tr('S&witch...'),
304 0, 0, self, 'subversion_switch') 304 0, 0, self, 'pysvn_switch')
305 self.vcsSwitchAct.setStatusTip(self.tr( 305 self.vcsSwitchAct.setStatusTip(self.tr(
306 'Switch the local copy to another tag/branch' 306 'Switch the local copy to another tag/branch'
307 )) 307 ))
308 self.vcsSwitchAct.setWhatsThis(self.tr( 308 self.vcsSwitchAct.setWhatsThis(self.tr(
309 """<b>Switch</b>""" 309 """<b>Switch</b>"""
313 self.actions.append(self.vcsSwitchAct) 313 self.actions.append(self.vcsSwitchAct)
314 314
315 self.vcsResolveAct = E5Action( 315 self.vcsResolveAct = E5Action(
316 self.tr('Conflicts resolved'), 316 self.tr('Conflicts resolved'),
317 self.tr('Con&flicts resolved'), 317 self.tr('Con&flicts resolved'),
318 0, 0, self, 'subversion_resolve') 318 0, 0, self, 'pysvn_resolve')
319 self.vcsResolveAct.setStatusTip(self.tr( 319 self.vcsResolveAct.setStatusTip(self.tr(
320 'Mark all conflicts of the local project as resolved' 320 'Mark all conflicts of the local project as resolved'
321 )) 321 ))
322 self.vcsResolveAct.setWhatsThis(self.tr( 322 self.vcsResolveAct.setWhatsThis(self.tr(
323 """<b>Conflicts resolved</b>""" 323 """<b>Conflicts resolved</b>"""
328 self.actions.append(self.vcsResolveAct) 328 self.actions.append(self.vcsResolveAct)
329 329
330 self.vcsCleanupAct = E5Action( 330 self.vcsCleanupAct = E5Action(
331 self.tr('Cleanup'), 331 self.tr('Cleanup'),
332 self.tr('Cleanu&p'), 332 self.tr('Cleanu&p'),
333 0, 0, self, 'subversion_cleanup') 333 0, 0, self, 'pysvn_cleanup')
334 self.vcsCleanupAct.setStatusTip(self.tr( 334 self.vcsCleanupAct.setStatusTip(self.tr(
335 'Cleanup the local project' 335 'Cleanup the local project'
336 )) 336 ))
337 self.vcsCleanupAct.setWhatsThis(self.tr( 337 self.vcsCleanupAct.setWhatsThis(self.tr(
338 """<b>Cleanup</b>""" 338 """<b>Cleanup</b>"""
342 self.actions.append(self.vcsCleanupAct) 342 self.actions.append(self.vcsCleanupAct)
343 343
344 self.vcsCommandAct = E5Action( 344 self.vcsCommandAct = E5Action(
345 self.tr('Execute command'), 345 self.tr('Execute command'),
346 self.tr('E&xecute command...'), 346 self.tr('E&xecute command...'),
347 0, 0, self, 'subversion_command') 347 0, 0, self, 'pysvn_command')
348 self.vcsCommandAct.setStatusTip(self.tr( 348 self.vcsCommandAct.setStatusTip(self.tr(
349 'Execute an arbitrary VCS command' 349 'Execute an arbitrary VCS command'
350 )) 350 ))
351 self.vcsCommandAct.setWhatsThis(self.tr( 351 self.vcsCommandAct.setWhatsThis(self.tr(
352 """<b>Execute command</b>""" 352 """<b>Execute command</b>"""
356 self.actions.append(self.vcsCommandAct) 356 self.actions.append(self.vcsCommandAct)
357 357
358 self.svnTagListAct = E5Action( 358 self.svnTagListAct = E5Action(
359 self.tr('List tags'), 359 self.tr('List tags'),
360 self.tr('List tags...'), 360 self.tr('List tags...'),
361 0, 0, self, 'subversion_list_tags') 361 0, 0, self, 'pysvn_list_tags')
362 self.svnTagListAct.setStatusTip(self.tr( 362 self.svnTagListAct.setStatusTip(self.tr(
363 'List tags of the project' 363 'List tags of the project'
364 )) 364 ))
365 self.svnTagListAct.setWhatsThis(self.tr( 365 self.svnTagListAct.setWhatsThis(self.tr(
366 """<b>List tags</b>""" 366 """<b>List tags</b>"""
370 self.actions.append(self.svnTagListAct) 370 self.actions.append(self.svnTagListAct)
371 371
372 self.svnBranchListAct = E5Action( 372 self.svnBranchListAct = E5Action(
373 self.tr('List branches'), 373 self.tr('List branches'),
374 self.tr('List branches...'), 374 self.tr('List branches...'),
375 0, 0, self, 'subversion_list_branches') 375 0, 0, self, 'pysvn_list_branches')
376 self.svnBranchListAct.setStatusTip(self.tr( 376 self.svnBranchListAct.setStatusTip(self.tr(
377 'List branches of the project' 377 'List branches of the project'
378 )) 378 ))
379 self.svnBranchListAct.setWhatsThis(self.tr( 379 self.svnBranchListAct.setWhatsThis(self.tr(
380 """<b>List branches</b>""" 380 """<b>List branches</b>"""
384 self.actions.append(self.svnBranchListAct) 384 self.actions.append(self.svnBranchListAct)
385 385
386 self.svnListAct = E5Action( 386 self.svnListAct = E5Action(
387 self.tr('List repository contents'), 387 self.tr('List repository contents'),
388 self.tr('List repository contents...'), 388 self.tr('List repository contents...'),
389 0, 0, self, 'subversion_contents') 389 0, 0, self, 'pysvn_contents')
390 self.svnListAct.setStatusTip(self.tr( 390 self.svnListAct.setStatusTip(self.tr(
391 'Lists the contents of the repository' 391 'Lists the contents of the repository'
392 )) 392 ))
393 self.svnListAct.setWhatsThis(self.tr( 393 self.svnListAct.setWhatsThis(self.tr(
394 """<b>List repository contents</b>""" 394 """<b>List repository contents</b>"""
398 self.actions.append(self.svnListAct) 398 self.actions.append(self.svnListAct)
399 399
400 self.svnPropSetAct = E5Action( 400 self.svnPropSetAct = E5Action(
401 self.tr('Set Property'), 401 self.tr('Set Property'),
402 self.tr('Set Property...'), 402 self.tr('Set Property...'),
403 0, 0, self, 'subversion_property_set') 403 0, 0, self, 'pysvn_property_set')
404 self.svnPropSetAct.setStatusTip(self.tr( 404 self.svnPropSetAct.setStatusTip(self.tr(
405 'Set a property for the project files' 405 'Set a property for the project files'
406 )) 406 ))
407 self.svnPropSetAct.setWhatsThis(self.tr( 407 self.svnPropSetAct.setWhatsThis(self.tr(
408 """<b>Set Property</b>""" 408 """<b>Set Property</b>"""
412 self.actions.append(self.svnPropSetAct) 412 self.actions.append(self.svnPropSetAct)
413 413
414 self.svnPropListAct = E5Action( 414 self.svnPropListAct = E5Action(
415 self.tr('List Properties'), 415 self.tr('List Properties'),
416 self.tr('List Properties...'), 416 self.tr('List Properties...'),
417 0, 0, self, 'subversion_property_list') 417 0, 0, self, 'pysvn_property_list')
418 self.svnPropListAct.setStatusTip(self.tr( 418 self.svnPropListAct.setStatusTip(self.tr(
419 'List properties of the project files' 419 'List properties of the project files'
420 )) 420 ))
421 self.svnPropListAct.setWhatsThis(self.tr( 421 self.svnPropListAct.setWhatsThis(self.tr(
422 """<b>List Properties</b>""" 422 """<b>List Properties</b>"""
426 self.actions.append(self.svnPropListAct) 426 self.actions.append(self.svnPropListAct)
427 427
428 self.svnPropDelAct = E5Action( 428 self.svnPropDelAct = E5Action(
429 self.tr('Delete Property'), 429 self.tr('Delete Property'),
430 self.tr('Delete Property...'), 430 self.tr('Delete Property...'),
431 0, 0, self, 'subversion_property_delete') 431 0, 0, self, 'pysvn_property_delete')
432 self.svnPropDelAct.setStatusTip(self.tr( 432 self.svnPropDelAct.setStatusTip(self.tr(
433 'Delete a property for the project files' 433 'Delete a property for the project files'
434 )) 434 ))
435 self.svnPropDelAct.setWhatsThis(self.tr( 435 self.svnPropDelAct.setWhatsThis(self.tr(
436 """<b>Delete Property</b>""" 436 """<b>Delete Property</b>"""
441 441
442 self.svnRelocateAct = E5Action( 442 self.svnRelocateAct = E5Action(
443 self.tr('Relocate'), 443 self.tr('Relocate'),
444 UI.PixmapCache.getIcon("vcsSwitch.png"), 444 UI.PixmapCache.getIcon("vcsSwitch.png"),
445 self.tr('Relocate...'), 445 self.tr('Relocate...'),
446 0, 0, self, 'subversion_relocate') 446 0, 0, self, 'pysvn_relocate')
447 self.svnRelocateAct.setStatusTip(self.tr( 447 self.svnRelocateAct.setStatusTip(self.tr(
448 'Relocate the working copy to a new repository URL' 448 'Relocate the working copy to a new repository URL'
449 )) 449 ))
450 self.svnRelocateAct.setWhatsThis(self.tr( 450 self.svnRelocateAct.setWhatsThis(self.tr(
451 """<b>Relocate</b>""" 451 """<b>Relocate</b>"""
457 457
458 self.svnRepoBrowserAct = E5Action( 458 self.svnRepoBrowserAct = E5Action(
459 self.tr('Repository Browser'), 459 self.tr('Repository Browser'),
460 UI.PixmapCache.getIcon("vcsRepoBrowser.png"), 460 UI.PixmapCache.getIcon("vcsRepoBrowser.png"),
461 self.tr('Repository Browser...'), 461 self.tr('Repository Browser...'),
462 0, 0, self, 'subversion_repo_browser') 462 0, 0, self, 'pysvn_repo_browser')
463 self.svnRepoBrowserAct.setStatusTip(self.tr( 463 self.svnRepoBrowserAct.setStatusTip(self.tr(
464 'Show the Repository Browser dialog' 464 'Show the Repository Browser dialog'
465 )) 465 ))
466 self.svnRepoBrowserAct.setWhatsThis(self.tr( 466 self.svnRepoBrowserAct.setWhatsThis(self.tr(
467 """<b>Repository Browser</b>""" 467 """<b>Repository Browser</b>"""
471 self.actions.append(self.svnRepoBrowserAct) 471 self.actions.append(self.svnRepoBrowserAct)
472 472
473 self.svnConfigAct = E5Action( 473 self.svnConfigAct = E5Action(
474 self.tr('Configure'), 474 self.tr('Configure'),
475 self.tr('Configure...'), 475 self.tr('Configure...'),
476 0, 0, self, 'subversion_configure') 476 0, 0, self, 'pysvn_configure')
477 self.svnConfigAct.setStatusTip(self.tr( 477 self.svnConfigAct.setStatusTip(self.tr(
478 'Show the configuration dialog with the Subversion page selected' 478 'Show the configuration dialog with the Subversion page selected'
479 )) 479 ))
480 self.svnConfigAct.setWhatsThis(self.tr( 480 self.svnConfigAct.setWhatsThis(self.tr(
481 """<b>Configure</b>""" 481 """<b>Configure</b>"""
486 self.actions.append(self.svnConfigAct) 486 self.actions.append(self.svnConfigAct)
487 487
488 self.svnUpgradeAct = E5Action( 488 self.svnUpgradeAct = E5Action(
489 self.tr('Upgrade'), 489 self.tr('Upgrade'),
490 self.tr('Upgrade...'), 490 self.tr('Upgrade...'),
491 0, 0, self, 'subversion_upgrade') 491 0, 0, self, 'pysvn_upgrade')
492 self.svnUpgradeAct.setStatusTip(self.tr( 492 self.svnUpgradeAct.setStatusTip(self.tr(
493 'Upgrade the working copy to the current format' 493 'Upgrade the working copy to the current format'
494 )) 494 ))
495 self.svnUpgradeAct.setWhatsThis(self.tr( 495 self.svnUpgradeAct.setWhatsThis(self.tr(
496 """<b>Upgrade</b>""" 496 """<b>Upgrade</b>"""

eric ide

mercurial