Get rid of button label ambiguity
This commit is contained in:
parent
909a285200
commit
e3be3519ed
|
@ -195,11 +195,14 @@ class Terminator:
|
|||
return False
|
||||
|
||||
# show dialog
|
||||
dialog = gtk.Dialog (_("Close?"), window, gtk.DIALOG_MODAL,
|
||||
(gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_CLOSE, gtk.RESPONSE_ACCEPT))
|
||||
dialog = gtk.Dialog (_("Close?"), window, gtk.DIALOG_MODAL)
|
||||
dialog.set_has_separator (False)
|
||||
dialog.set_resizable (False)
|
||||
|
||||
cancel = dialog.add_button(gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT)
|
||||
close_all = dialog.add_button(gtk.STOCK_CLOSE, gtk.RESPONSE_ACCEPT)
|
||||
label = close_all.get_children()[0].get_children()[0].get_children()[1].set_label(_("Close _All Terminals"))
|
||||
|
||||
primairy = gtk.Label (_('<big><b>Close all terminals?</b></big>'))
|
||||
primairy.set_use_markup (True)
|
||||
primairy.set_alignment (0, 0.5)
|
||||
|
|
Loading…
Reference in New Issue