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

thgconfig: convert strings for combobox to UTF-8

Changeset b1351aecb822

Parent b971a09d608b

by Yuki KODAMA

Changes to one file · Browse files at b1351aecb822 Showing diff from parent b971a09d608b Diff from another changeset...

 
429
430
431
432
 
433
434
435
 
429
430
431
 
432
433
434
435
@@ -429,7 +429,7 @@
  combo = gtk.combo_box_new_text()   combo.append_text(_('User global settings'))   if repo: - combo.append_text(_('%s repository settings') % name) + combo.append_text(_('%s repository settings') % hglib.toutf(name))   combo.connect('changed', self.fileselect)     hbox = gtk.HBox()