Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

history: capitalize ui texts of filters

Changeset b97311db8105

Parent 19c65c440bfc

by Adrian Buehlmann

Changes to one file · Browse files at b97311db8105 Showing diff from parent 19c65c440bfc Diff from another changeset...

 
954
955
956
957
 
958
959
960
961
962
 
963
964
965
966
 
967
968
969
970
971
 
972
973
974
975
 
976
977
978
979
 
980
981
982
983
 
984
985
986
987
988
 
989
990
991
 
999
1000
1001
1002
 
1003
1004
1005
 
954
955
956
 
957
958
959
960
961
 
962
963
964
965
 
966
967
968
969
970
 
971
972
973
974
 
975
976
977
978
 
979
980
981
982
 
983
984
985
986
987
 
988
989
990
991
 
999
1000
1001
 
1002
1003
1004
1005
@@ -954,38 +954,38 @@
  self.filterbox = gtklib.SlimToolbar()   filterbox = self.filterbox   - all = gtk.RadioButton(None, _('all')) + all = gtk.RadioButton(None, _('All'))   all.set_active(True)   all.connect('toggled', self.filter_selected, 'all')   filterbox.append_widget(all, padding=0)   - tagged = gtk.RadioButton(all, _('tagged')) + tagged = gtk.RadioButton(all, _('Tagged'))   tagged.connect('toggled', self.filter_selected, 'tagged')   filterbox.append_widget(tagged, padding=0)   - ancestry = gtk.RadioButton(all, _('ancestry')) + ancestry = gtk.RadioButton(all, _('Ancestry'))   ancestry.connect('toggled', self.filter_selected, 'ancestry')   filterbox.append_widget(ancestry, padding=0)   self.ancestrybutton = ancestry   - parents = gtk.RadioButton(all, _('parents')) + parents = gtk.RadioButton(all, _('Parents'))   parents.connect('toggled', self.filter_selected, 'parents')   filterbox.append_widget(parents, padding=0)   - heads = gtk.RadioButton(all, _('heads')) + heads = gtk.RadioButton(all, _('Heads'))   heads.connect('toggled', self.filter_selected, 'heads')   filterbox.append_widget(heads, padding=0)   - merges = gtk.RadioButton(all, _('merges')) + merges = gtk.RadioButton(all, _('Merges'))   merges.connect('toggled', self.filter_selected, 'only_merges')   filterbox.append_widget(merges, padding=0)   - hidemerges = gtk.CheckButton(_('hide merges')) + hidemerges = gtk.CheckButton(_('Hide Merges'))   hidemerges.connect('toggled', self.filter_selected, 'no_merges')   filterbox.append_widget(hidemerges, padding=0)   self.hidemerges = hidemerges   - branches = gtk.RadioButton(all, _('branch')) + branches = gtk.RadioButton(all, _('Branch'))   branches.connect('toggled', self.filter_selected, 'branch')   branches.set_sensitive(False)   filterbox.append_widget(branches, padding=0) @@ -999,7 +999,7 @@
  filterbox.append_widget(branchcombo, padding=0)   self.branchcombo = branchcombo   - self.custombutton = gtk.RadioButton(all, _('custom')) + self.custombutton = gtk.RadioButton(all, _('Custom'))   self.custombutton.set_sensitive(False)   filterbox.append_widget(self.custombutton, padding=0)