/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to annotate/gannotate.py

  • Committer: Curtis Hovey
  • Date: 2012-03-11 21:41:49 UTC
  • mfrom: (785 trunk)
  • mto: This revision was merged to the branch mainline in revision 788.
  • Revision ID: sinzui.is@verizon.net-20120311214149-5r8750zihn80nk2r
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from bzrlib.revision import NULL_REVISION, CURRENT_REVISION
28
28
 
29
29
from bzrlib.plugins.gtk.annotate.colormap import AnnotateColorSaturation
 
30
from bzrlib.plugins.gtk.i18n import _i18n
30
31
from bzrlib.plugins.gtk.revisionview import RevisionView
31
32
from bzrlib.plugins.gtk.window import Window
32
33
 
483
484
        self.pack_start(entry, False, False, 0)
484
485
 
485
486
        # Next/previous buttons
486
 
        button = Gtk.Button('_Next')
 
487
        button = Gtk.Button(_i18n('_Next'), use_underline=True)
487
488
        image = Gtk.Image()
488
489
        image.set_from_stock('gtk-go-forward', Gtk.IconSize.BUTTON)
489
490
        button.set_image(image)
491
492
                       'forward')
492
493
        self.pack_start(button, False, False, 0)
493
494
 
494
 
        button = Gtk.Button('_Previous')
 
495
        button = Gtk.Button(_i18n('_Previous'), use_underline=True)
495
496
        image = Gtk.Image()
496
497
        image.set_from_stock('gtk-go-back', Gtk.IconSize.BUTTON)
497
498
        button.set_image(image)