diff options
author | Mike Fulbright <msf@redhat.com> | 2002-05-31 06:13:44 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-05-31 06:13:44 +0000 |
commit | 7a90ca2ff633a03be8e93141edcf7a6a86c04ccf (patch) | |
tree | c0f950388465988aa26c21443b540e58b622a6e1 | |
parent | 5722fefe14f3f81a3cc5670bd3ee80f698664dbf (diff) | |
download | anaconda-7a90ca2ff633a03be8e93141edcf7a6a86c04ccf.tar.gz anaconda-7a90ca2ff633a03be8e93141edcf7a6a86c04ccf.tar.xz anaconda-7a90ca2ff633a03be8e93141edcf7a6a86c04ccf.zip |
use stock gtk cancel buttons
-rw-r--r-- | iw/network_gui.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/iw/network_gui.py b/iw/network_gui.py index 3398dac8c..84c96b27e 100644 --- a/iw/network_gui.py +++ b/iw/network_gui.py @@ -147,11 +147,11 @@ class NetworkWindow(InstallWindow): def handleMissingHostname(self): return not self.intf.messageWindow(_("Error With Data"), - _("You have not specified a hostname. Depending on your network environment this may cause problems later."), type="custom", custom_buttons=[_("Cancel"), _("Continue")]) + _("You have not specified a hostname. Depending on your network environment this may cause problems later."), type="custom", custom_buttons=["gtk-cancel", _("Continue")]) def handleMissingOptionalIP(self, field): return not self.intf.messageWindow(_("Error With Data"), - _("You have not specified the field \"%s\". Depending on your network environment this may cause problems later.") % (field,), type="custom", custom_buttons=[_("Cancel"), _("Continue")]) + _("You have not specified the field \"%s\". Depending on your network environment this may cause problems later.") % (field,), type="custom", custom_buttons=["gtk-cancel", _("Continue")]) def handleBadHostname(self, hostname, error): self.intf.messageWindow(_("Error With Data"), @@ -172,7 +172,7 @@ class NetworkWindow(InstallWindow): "invalid.")) def handleNoActiveDevices(self): - return self.intf.messageWindow(_("Error With Data"), _("You have no active network devices. Your system will not be able to commuciate over a network by default without at least one device active."), type="custom", custom_buttons=[_("Cancel"), _("Continue")]) + return self.intf.messageWindow(_("Error With Data"), _("You have no active network devices. Your system will not be able to commuciate over a network by default without at least one device active."), type="custom", custom_buttons=["gtk-cancel", _("Continue")]) def setHostnameRadioState(self): pass |