/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: Jelmer Vernooij
  • Date: 2008-05-21 16:38:15 UTC
  • mfrom: (487.1.1 gtk)
  • Revision ID: jelmer@samba.org-20080521163815-pofppddp5v0a0f1e
Merge trunk.

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
17
18
from linegraph import linegraph, same_branch
18
19
from graphcell import CellRendererGraph
19
20
from treemodel import TreeModel
397
398
                                                 gtk.ICON_SIZE_BUTTON)
398
399
        image_loading.show()
399
400
        
400
 
        label_loading = gtk.Label(_("Please wait, loading ancestral graph..."))
 
401
        label_loading = gtk.Label(
 
402
            _i18n("Please wait, loading ancestral graph..."))
401
403
        label_loading.set_alignment(0.0, 0.5)
402
404
        label_loading.show()
403
405