Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

stable changeset: capitalize labels for csinfo

The column titles are already capitalized (e.g. 'User').

Changeset cb1b61e2ab3f

Parent 68f504b0318d

by Adrian Buehlmann

Changes to one file · Browse files at cb1b61e2ab3f Showing diff from parent 68f504b0318d Diff from another changeset...

 
462
463
464
465
 
466
467
 
468
469
 
470
471
 
472
473
 
474
475
 
 
 
 
 
476
477
478
 
462
463
464
 
465
466
 
467
468
 
469
470
 
471
472
 
473
474
 
475
476
477
478
479
480
481
482
@@ -462,17 +462,21 @@
  raise csinfo.UnknownItem(item)   def label_func(widget, item):   if item == 'cset': - return _('changeset:') + return _('Changeset:')   elif item == 'dateage': - return _('date:') + return _('Date:')   elif item == 'parents': - return _('parent:') + return _('Parent:')   elif item == 'children': - return _('child:') + return _('Child:')   elif item == 'transplant': - return _('transplant:') + return _('Transplant:')   elif item == 'patch': - return _('patch:') + return _('Patch:') + elif item == 'branch': + return _('Branch:') + elif item == 'user': + return _('User:')   raise csinfo.UnknownItem(item)   def markup_func(widget, item, value):   def revid_markup(revid):