/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: Sabin Iacob (m0n5t3r)
  • Date: 2008-05-29 09:48:15 UTC
  • mfrom: (496 bzr-gtk)
  • mto: This revision was merged to the branch mainline in revision 499.
  • Revision ID: iacobs@m0n5t3r.info-20080529094815-4b2ne78kjh3mnykk
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