/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 commit.py

  • Committer: Jelmer Vernooij
  • Date: 2007-02-03 10:51:01 UTC
  • Revision ID: jelmer@samba.org-20070203105101-kizl0u7o4xc7phgy
Fix some strings, import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
import bzrlib.errors as errors
30
30
from bzrlib import osutils
31
31
 
32
 
from dialog import error_dialog, question_dialog
 
32
from olive.dialog import error_dialog, question_dialog
33
33
from errors import show_bzr_error
34
34
 
35
35
class CommitDialog(gtk.Dialog):
80
80
        # Create the widgets
81
81
        self._button_commit = gtk.Button(_("Comm_it"), use_underline=True)
82
82
        if self._is_checkout:
83
 
            self._check_local = gtk.CheckButton(_("_Local only commit (works in checkouts)"),
 
83
            self._check_local = gtk.CheckButton(_("_Only commit locally"),
84
84
                                                use_underline=True)
85
 
        self._check_strict = gtk.CheckButton(_("_Strict commit (fails if unknown files are present)"),
 
85
        self._check_strict = gtk.CheckButton(_("_Allow unknown files"),
86
86
                                             use_underline=True)
87
 
        self._expander_files = gtk.Expander(_("Please select the file(s) to commit"))
 
87
        self._expander_files = gtk.Expander(_("File(s) to commit"))
88
88
        self._vpaned_main = gtk.VPaned()
89
89
        self._scrolledwindow_files = gtk.ScrolledWindow()
90
90
        self._scrolledwindow_message = gtk.ScrolledWindow()
91
91
        self._treeview_files = gtk.TreeView()
92
92
        self._vbox_message = gtk.VBox()
93
 
        self._label_message = gtk.Label(_("Please specify a commit message:"))
 
93
        self._label_message = gtk.Label(_("Commit message:"))
94
94
        self._textview_message = gtk.TextView()
95
95
        
96
96
        if self._is_pending: