Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

reporegistry: write 'Repositories' into left header

instead of nothing, and rename the 'All Repositories' group to just 'all'

Changeset 842aa63e9fe8

Parent 87a4c97bc4fd

by Adrian Buehlmann

Changes to one file · Browse files at 842aa63e9fe8 Showing diff from parent 87a4c97bc4fd Diff from another changeset...

 
237
238
239
240
 
241
242
243
 
334
335
336
 
 
337
338
339
 
237
238
239
 
240
241
242
243
 
334
335
336
337
338
339
340
341
@@ -237,7 +237,7 @@
 class AllRepoGroupItem(RepoGroupItem):   def __init__(self, parent=None):   RepoGroupItem.__init__(self, parent) - self.name = _('All Repositories') + self.name = _('all')     def setData(self, column, value):   return False @@ -334,6 +334,8 @@
  def headerData(self, section, orientation, role):   if role == Qt.DisplayRole:   if orientation == Qt.Horizontal: + if section == 0: + return QString(_('Repositories'))   if section == 1:   return QString(_('Path'))   return QVariant()