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

  • Committer: Curtis Hovey
  • Date: 2011-08-12 19:50:45 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110812195045-y86bmaibs3pw5w6d
Updated buffer.getText() calls and ModifierType enums.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
        # Create the widgets
47
47
        self._button_init = Gtk.Button(_i18n("_Initialize"), use_underline=True)
48
48
        self._label_question = Gtk.Label(label=_i18n("Which directory do you want to initialize?"))
49
 
        self._radio_current = Gtk.RadioButton.new_with_label(
50
 
            None, _i18n("Current directory"))
51
 
        self._radio_custom = Gtk.RadioButton.new_with_label_from_widget(
52
 
            self._radio_current, _i18n("Create a new directory with the name:"))
 
49
        self._radio_current = Gtk.RadioButton(None, _i18n("Current directory"))
 
50
        self._radio_custom = Gtk.RadioButton(self._radio_current, _i18n("Create a new directory with the name:"))
53
51
        self._entry_custom = Gtk.Entry()
54
52
        self._hbox_custom = Gtk.HBox()
55
53