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

logfilter: increase width of labels, for translations

Changeset 0e09f6822bf2

Parent be3603dedca0

by Steve Borho

Changes to one file · Browse files at 0e09f6822bf2 Showing diff from parent be3603dedca0 Diff from another changeset...

 
90
91
92
93
 
94
95
96
 
106
107
108
109
 
110
111
112
 
124
125
126
127
 
128
129
130
 
90
91
92
 
93
94
95
96
 
106
107
108
 
109
110
111
112
 
124
125
126
 
127
128
129
130
@@ -90,7 +90,7 @@
  self.filesentry = gtk.Entry()   self.filesentry.connect('activate', self._btn_apply_clicked)   lbl = gtk.Label(_('File(s):')) - lbl.set_property('width-chars', 10) + lbl.set_property('width-chars', 12)   lbl.set_alignment(0, 0.5)   hbox.pack_start(lbl, False, False, 4)   hbox.pack_start(self.filesentry, True, True, 4) @@ -106,7 +106,7 @@
  self.kwentry = gtk.Entry()   self.kwentry.connect('activate', self._btn_apply_clicked)   lbl = gtk.Label(_('Keyword(s):')) - lbl.set_property('width-chars', 10) + lbl.set_property('width-chars', 12)   lbl.set_alignment(0, 0.5)   hbox.pack_start(lbl, False, False, 4)   hbox.pack_start(self.kwentry, True, True, 4) @@ -124,7 +124,7 @@
  self.tips.set_tip(self.helpbutton, _('Help on date formats'))   self.helpbutton.connect('clicked', self._date_help)   lbl = gtk.Label(_('Date:')) - lbl.set_property('width-chars', 10) + lbl.set_property('width-chars', 12)   lbl.set_alignment(0, 0.5)   hbox.pack_start(lbl, False, False, 4)   hbox.pack_start(self.dateentry, True, True, 4)