/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 branchview/treeview.py

  • Committer: Andrew Bennetts
  • Date: 2008-04-29 08:17:01 UTC
  • mto: This revision was merged to the branch mainline in revision 476.
  • Revision ID: andrew@puzzling.org-20080429081701-2pu9uteic8o88nre
Simple hack to fix gannotate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
import re
15
15
import treemodel
16
16
 
17
 
from bzrlib.plugins.gtk import _i18n
18
17
from linegraph import linegraph, same_branch
19
18
from graphcell import CellRendererGraph
20
19
from treemodel import TreeModel
398
397
                                                 gtk.ICON_SIZE_BUTTON)
399
398
        image_loading.show()
400
399
        
401
 
        label_loading = gtk.Label(
402
 
            _i18n("Please wait, loading ancestral graph..."))
 
400
        label_loading = gtk.Label(_("Please wait, loading ancestral graph..."))
403
401
        label_loading.set_alignment(0.0, 0.5)
404
402
        label_loading.show()
405
403