Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

datamine: capitalize labels of context menu

Changeset 672e3510d406

Parent 51bdaf4c54d9

by Yuki KODAMA

Changes to one file · Browse files at 672e3510d406 Showing diff from parent 51bdaf4c54d9 Diff from another changeset...

 
135
136
137
138
 
139
140
141
142
 
 
 
143
144
145
146
147
148
149
 
150
151
 
152
153
 
154
155
156
 
 
157
158
159
 
135
136
137
 
138
139
 
 
 
140
141
142
143
144
145
146
147
148
 
149
150
 
151
152
 
153
154
 
 
155
156
157
158
159
@@ -135,25 +135,25 @@
    def grep_context_menu(self):   m = gtklib.MenuBuilder() - m.append(_('di_splay change'), self.cmenu_display, + m.append(_('Di_splay Change'), self.cmenu_display,   'menushowchanged.ico') - m.append(_('_annotate file'), self.cmenu_annotate, 'menublame.ico') - m.append(_('_file history'), self.cmenu_file_log, 'menulog.ico') - m.append(_('_view file at revision'), self.cmenu_view, gtk.STOCK_EDIT) + m.append(_('_Annotate File'), self.cmenu_annotate, 'menublame.ico') + m.append(_('_File History'), self.cmenu_file_log, 'menulog.ico') + m.append(_('_View File at Revision'), self.cmenu_view, gtk.STOCK_EDIT)   menu = m.build()   menu.show_all()   return menu     def annotate_context_menu(self, objs):   m = gtklib.MenuBuilder() - m.append(_('_zoom to change'), self.cmenu_zoom, gtk.STOCK_ZOOM_IN, + m.append(_('_Zoom to Change'), self.cmenu_zoom, gtk.STOCK_ZOOM_IN,   args=[objs]) - m.append(_('di_splay change'), self.cmenu_display, + m.append(_('Di_splay Change'), self.cmenu_display,   'menushowchanged.ico') - m.append(_('_annotate parent'), self.cmenu_annotate_parent, + m.append(_('_Annotate Parent'), self.cmenu_annotate_parent,   'menublame.ico', args=[objs]) - m.append(_('_view file at revision'), self.cmenu_view, gtk.STOCK_EDIT) - m.append(_('_file history'), self.cmenu_file_log, 'menulog.ico') + m.append(_('_View File at Revision'), self.cmenu_view, gtk.STOCK_EDIT) + m.append(_('_File History'), self.cmenu_file_log, 'menulog.ico')   menu = m.build()   menu.show_all()   return menu