Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions screenlayout/metacity.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def abort_editing(self):
def on_clicked(self, widget):
if not self.editing:
self.editing = True
self.props.label = _("New accelerator...")
self.props.label = _("New accelerator")
else:
self.abort_editing()

Expand Down Expand Up @@ -282,7 +282,7 @@ def show_keybinder():
if not gconf:
d = gtk.MessageDialog(None, gtk.DIALOG_DESTROY_WITH_PARENT, gtk.MESSAGE_ERROR, gtk.BUTTONS_CLOSE)
d.props.text = _("gconf not available.")
d.props.secondary_text = _("In order to configure metacity, you need to have the python gconf module installed.")
d.props.secondary_text = _("In order to configure Metacity, you need to have the Python GConf module installed.")
d.run()
d.destroy()
return
Expand All @@ -302,7 +302,7 @@ def show_keybinder():

contents = gtk.VBox()
contents.pack_start(t)
l = gtk.Label(_('Click on a button in the left column and press a key combination you want to bind to a certain screen layout. (Use backspace to clear accelerators, escape to abort editing.) Then, select one or more layouts in the right column.\n\nThis will only work if you use metacity or another program reading its configuration.'))
l = gtk.Label(_('Click on a button in the left column and press a key combination you want to bind to a certain screen layout. (Use Backspace to clear accelerators, and Esc to abort editing.) Then, select one or more layouts in the right column.\n\nThis will only work if you use Metacity or another program reading its configuration.'))
l.props.wrap = True
contents.pack_start(l)
contents.pack_end(buttons, expand=False)
Expand Down