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

thgconfig: consistent capitalization

Changeset 89a969d06d9a

Parent 8f2068f5cb52

by Steve Borho

Changes to one file · Browse files at 89a969d06d9a Showing diff from parent 8f2068f5cb52 Diff from another changeset...

 
457
458
459
460
 
461
462
463
 
465
466
467
468
 
469
470
471
472
473
474
475
 
476
477
478
 
457
458
459
 
460
461
462
463
 
465
466
467
 
468
469
470
471
472
473
474
 
475
476
477
478
@@ -457,7 +457,7 @@
  vbox.pack_start(ovframe, False, False, 2)   ovcvbox = gtk.VBox()   ovframe.add(ovcvbox) - self.ovenable = gtk.CheckButton(_('Enable Overlays')) + self.ovenable = gtk.CheckButton(_('Enable overlays'))   ovcvbox.pack_start(self.ovenable, False, False, 2)   self.lclonly = gtk.CheckButton(_('Local disks only'))   ovcvbox.pack_start(self.lclonly, False, False, 2) @@ -465,14 +465,14 @@
  ovcvbox.pack_start(table, False, False, 2)     # Text entry for overlay include path - lbl = gtk.Label(_('include path:')) + lbl = gtk.Label(_('Include path:'))   lbl.set_alignment(1.0, 0.0)   self.ovinclude = gtk.Entry()   table.attach(lbl, 0, 1, 0, 1, gtk.FILL, 0, 4, 3)   table.attach(self.ovinclude, 1, 2, 0, 1, gtk.FILL|gtk.EXPAND, 0, 4, 3)     # Text entry for overlay include path - lbl = gtk.Label(_('exclude path:')) + lbl = gtk.Label(_('Exclude path:'))   lbl.set_alignment(1.0, 0.0)   self.ovexclude = gtk.Entry()   table.attach(lbl, 0, 1, 1, 2, gtk.FILL, 0, 4, 3)