Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.3rc1, 0.3, and 0.4rc1

hggtk/synch: capitalize toolbutton text

Changeset 754360342650

Parent 8153ef2fc990

by TK Soh

Changes to one file · Browse files at 754360342650 Showing diff from parent 8153ef2fc990 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​synch.py Stacked
 
46
47
48
49
 
50
51
52
53
54
 
55
56
57
58
59
60
61
 
62
63
64
65
66
 
67
68
69
70
71
 
72
73
74
75
76
77
 
78
79
80
 
46
47
48
 
49
50
51
52
53
 
54
55
56
57
58
59
60
 
61
62
63
64
65
 
66
67
68
69
70
 
71
72
73
74
75
76
 
77
78
79
80
@@ -46,35 +46,35 @@
  self.tips = gtk.Tooltips()   tbuttons = [   self._toolbutton(gtk.STOCK_GO_DOWN, - 'incoming', + 'Incoming',   self._incoming_clicked,   tip='Display changes that can be pulled'   ' from selected repository'),   self._toolbutton(gtk.STOCK_GOTO_BOTTOM, - 'pull', + 'Pull',   self._pull_clicked,   self._pull_menu(),   tip='Pull changes from selected'   ' repository'),   gtk.SeparatorToolItem(),   self._toolbutton(gtk.STOCK_GO_UP, - 'outgoing', + 'Outgoing',   self._outgoing_clicked,   tip='Display local changes that will be pushed'   ' to selected repository'),   self._toolbutton(gtk.STOCK_GOTO_TOP, - 'push', + 'Push',   self._push_clicked,   tip='Push local changes to selected'   ' repository'),   self._toolbutton(gtk.STOCK_GOTO_LAST, - 'email', + 'Email',   self._email_clicked,   tip='Email local outgoing changes to'   ' one or more recipients'),   gtk.SeparatorToolItem(),   self._toolbutton(gtk.STOCK_PREFERENCES, - 'configure', + 'Configure',   self._conf_clicked,   tip='Configure peer repository paths'),   gtk.SeparatorToolItem(),