From f7011c12e5fc6f1db32b077ff9c7d430193aa952 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 29 Jul 2007 17:59:34 +0100 Subject: [PATCH] improve wording, non-sloppy users won't see this as the active window --- terminator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminator.py b/terminator.py index 9eb3b450..b7c50a0e 100755 --- a/terminator.py +++ b/terminator.py @@ -436,7 +436,7 @@ class Terminator: def closetermreq (self): dialog = gtk.Dialog ("Close?", self.window, gtk.DIALOG_MODAL, (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_CLOSE, gtk.RESPONSE_ACCEPT)) - label = gtk.Label("Do you really want to close the active terminal?") + label = gtk.Label("Do you really want to close this terminal?") dialog.vbox.pack_start(label, True, True, 0) label.show ()