Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

status: fix i18n wrappers of checkbox labels for non-English language

Changeset d6f1b029244f

Parent 681187e3b1a5

by Yuki KODAMA

Changes to one file · Browse files at d6f1b029244f Showing diff from parent 681187e3b1a5 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
447
448
449
450
 
451
452
 
453
454
455
 
456
457
458
 
447
448
449
 
450
451
 
452
453
454
 
455
456
457
458
@@ -447,12 +447,12 @@
    self._show_checks = {}   row, col = 0, 0 - checks = (_('modified'), _('added'), _('removed')) + checks = ('modified', 'added', 'removed')   if self.count_revs() <= 1: - checks += (_('deleted'), _('unknown'), _('clean'), _('ignored')) + checks += ('deleted', 'unknown', 'clean', 'ignored')     for ctype in checks: - check = gtk.CheckButton('_' + ctype) + check = gtk.CheckButton(_('_' + ctype))   check.connect('toggled', self._show_toggle, ctype)   table.attach(check, col, col+1, row, row+1)   self._show_checks[ctype] = check