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

hgignore: change text of adds button

They used the tooltip of add files button

Changeset 0cfea0adc5eb

Parent 79690e4119f2

by Giampaolo Fadel

Changes to one file · Browse files at 0cfea0adc5eb Showing diff from parent 79690e4119f2 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​hgignore.py Stacked
 
37
38
39
40
 
41
42
43
 
52
53
54
55
 
56
57
58
 
37
38
39
 
40
41
42
43
 
52
53
54
 
55
56
57
58
@@ -37,7 +37,7 @@
  hbox.pack_start(lbl, False, False, 4)   glob_entry = gtk.Entry()   hbox.pack_start(glob_entry, True, True, 4) - glob_button = gtk.Button(_('add')) + glob_button = gtk.Button(_('Add'))   hbox.pack_start(glob_button, False, False, 4)   glob_button.connect('clicked', self.add_glob, glob_entry)   glob_entry.connect('activate', self.add_glob, glob_entry) @@ -52,7 +52,7 @@
  hbox.pack_start(lbl, False, False, 4)   regexp_entry = gtk.Entry()   hbox.pack_start(regexp_entry, True, True, 4) - regexp_button = gtk.Button(_('add')) + regexp_button = gtk.Button(_('Add'))   hbox.pack_start(regexp_button, False, False, 4)   regexp_button.connect('clicked', self.add_regexp, regexp_entry)   regexp_entry.connect('activate', self.add_regexp, regexp_entry)