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

stable i18n: add contexts for 'All'

Changeset 6b1688cf7302

Parent 07d24580b59c

by Wagner Bruna

Changes to 3 files · Browse files at 6b1688cf7302 Showing diff from parent 07d24580b59c Diff from another changeset...

 
428
429
430
431
 
432
433
434
 
428
429
430
 
431
432
433
434
@@ -428,7 +428,7 @@
    self.sumlabel = QLabel()   self.allbutton = QToolButton() - self.allbutton.setText(_('All')) + self.allbutton.setText(_('All', 'files'))   self.allbutton.setShortcut(QKeySequence.SelectAll)   self.allbutton.clicked.connect(self.selectAll)   self.nonebutton = QToolButton()
 
125
126
127
128
 
129
130
131
 
125
126
127
 
128
129
130
131
@@ -125,7 +125,7 @@
    self.countlbl = QLabel()   self.allbutton = QToolButton() - self.allbutton.setText(_('All')) + self.allbutton.setText(_('All', 'files'))   self.allbutton.setToolTip(_('Check all files'))   self.allbutton.clicked.connect(self.checkAll)   self.nonebutton = QToolButton()
 
50
51
52
53
 
54
55
56
 
472
473
474
475
 
476
477
478
 
50
51
52
 
53
54
55
56
 
472
473
474
 
475
476
477
478
@@ -50,7 +50,7 @@
  self.buttons = {}   self.handlers = {}   - self.all = gtk.RadioButton(None, _('All')) + self.all = gtk.RadioButton(None, _('All', 'changesets'))   self.all.set_active(True)   self.append_widget(self.all, padding=0)   self.buttons['all'] = self.all @@ -472,7 +472,7 @@
  ]),     dict(text=_('_Filter'), subitems=[ - dict(text=_('All'), name='all', asradio=True, + dict(text=_('All', 'changesets'), name='all', asradio=True,   func=self.filter_handler, args=['all'], check=True),   dict(text=_('Tagged'), name='tagged', asradio=True,   func=self.filter_handler, args=['tagged'], rg='all'),