Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

recovery: capitalize text in toolbar buttons, like all the other dialog

Changeset 1bb55fcc793f

Parent 91c87cc8e5cc

by Giampaolo Fadel

Changes to one file · Browse files at 1bb55fcc793f Showing diff from parent 91c87cc8e5cc Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​recovery.py Stacked
 
44
45
46
47
 
48
49
50
51
52
 
53
54
55
56
57
58
 
59
60
61
62
63
 
64
65
66
 
44
45
46
 
47
48
49
50
51
 
52
53
54
55
56
57
 
58
59
60
61
62
 
63
64
65
66
@@ -44,23 +44,23 @@
  self._stop_button.set_sensitive(False)   tbuttons = [   self._toolbutton(gtk.STOCK_CLEAR, - _('clean'), + _('Clean'),   self._clean_clicked,   tip=_('Clean checkout, undo all changes')),   gtk.SeparatorToolItem(),   self._toolbutton(gtk.STOCK_UNDO, - _('rollback'), + _('Rollback'),   self._rollback_clicked,   tip=_('Rollback (undo) last transaction to'   ' repository (pull, commit, etc)')),   gtk.SeparatorToolItem(),   self._toolbutton(gtk.STOCK_CLEAR, - _('recover'), + _('Recover'),   self._recover_clicked,   tip=_('Recover from interrupted operation')),   gtk.SeparatorToolItem(),   self._toolbutton(gtk.STOCK_APPLY, - _('verify'), + _('Verify'),   self._verify_clicked,   tip=_('Validate repository consistency')),   gtk.SeparatorToolItem(),