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 csinfo: capitalize labels of preset items

Changeset 1c2bb1a7c48c

Parent 0a34badb9206

by Yuki KODAMA

Changes to 2 files · Browse files at 1c2bb1a7c48c Showing diff from parent 0a34badb9206 Diff from another changeset...

 
473
474
475
476
477
478
479
480
481
482
 
473
474
475
 
 
 
 
476
477
478
@@ -473,10 +473,6 @@
  return _('Transplant:')   elif item == '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):
 
195
196
197
198
199
200
201
 
 
 
 
 
202
203
204
 
195
196
197
 
 
 
 
198
199
200
201
202
203
204
205
@@ -195,10 +195,11 @@
   class SummaryInfo(object):   - LABELS = {'rev': _('rev:'), 'revnum': _('rev:'), 'revid': _('rev:'), - 'summary': _('summary:'), 'user': _('user:'), 'age': _('age:'), - 'date': _('date:'), 'branch': _('branch:'), 'tags': _('tags:'), - 'rawbranch': _('branch:'), 'rawtags': _('tags:')} + LABELS = {'rev': _('Revision:'), 'revnum': _('Revision:'), + 'revid': _('Revision:'), 'summary': _('Summary:'), + 'user': _('User:'), 'age': _('Age:'), 'date': _('Date:'), + 'branch': _('Branch:'), 'tags': _('Tags:'), + 'rawbranch': _('Branch:'), 'rawtags': _('Tags:')}     def __init__(self):   pass