Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable workbench: remove elipsis from task tab action names

These actions do not open any new windows

Changeset 4451d2eaec7b

Parent 91df37182065

by Steve Borho

Changes to one file · Browse files at 4451d2eaec7b Showing diff from parent 91df37182065 Diff from another changeset...

 
240
241
242
243
244
245
246
 
 
 
 
247
248
 
249
250
 
251
252
253
 
240
241
242
 
 
 
 
243
244
245
246
247
 
248
249
 
250
251
252
253
@@ -240,14 +240,14 @@
  return a   # NOTE: Sequence must match that in repowidget.py   addtaskview('log', _("Revision &Details")) - addtaskview('Checkmark', _("&Commit...")) - addtaskview('annotate', _("&Manifest...")) - addtaskview('repobrowse', _("&Search...")) - addtaskview('sync', _("S&ynchronize...")) + addtaskview('Checkmark', _('&Commit')) + addtaskview('annotate', _('&Manifest')) + addtaskview('repobrowse', _('&Search')) + addtaskview('sync', _('S&ynchronize'))   self.actionSelectTaskMQ = \ - addtaskview('mq', _("Patch &Queue..."), 'mq') + addtaskview('mq', _('Patch &Queue'), 'mq')   self.actionSelectTaskPbranch = \ - addtaskview('branch', _("&Patch Branch..."), 'pbranch') + addtaskview('branch', _('&Patch Branch'), 'pbranch')   newseparator(menu='view')     newaction(_("&Refresh"), self._repofwd('reload'), icon='reload',