summaryrefslogtreecommitdiffstats
path: root/partIntfHelpers.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-06-10 19:02:30 +0000
committerMike Fulbright <msf@redhat.com>2002-06-10 19:02:30 +0000
commit27d0a7dc129a2d24f0fd6e629d140869a17e683e (patch)
tree64c36a9b865f121aeb066095ff1f7ee8e6a47692 /partIntfHelpers.py
parentbb99f24c5a842f993575bd040cd7ced8c228c48f (diff)
downloadanaconda-27d0a7dc129a2d24f0fd6e629d140869a17e683e.tar.gz
anaconda-27d0a7dc129a2d24f0fd6e629d140869a17e683e.tar.xz
anaconda-27d0a7dc129a2d24f0fd6e629d140869a17e683e.zip
change slightly so tui and gui frontends can share concept of custom buttons, related to bug #66353
Diffstat (limited to 'partIntfHelpers.py')
-rw-r--r--partIntfHelpers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/partIntfHelpers.py b/partIntfHelpers.py
index 6c880857a..79611b641 100644
--- a/partIntfHelpers.py
+++ b/partIntfHelpers.py
@@ -318,7 +318,7 @@ def queryNoFormatPreExisting(intf):
# "the partition ?")
# rc = intf.messageWindow(_("Format?"), txt, type = "yesno", default = "no")
- rc = intf.messageWindow(_("Format?"), txt, type = "custom", custom_buttons=["gtk-cancel", _("Do Not Format")])
+ rc = intf.messageWindow(_("Format?"), txt, type = "custom", custom_buttons=[_("Cancel"), _("Do Not Format")])
return rc
def partitionSanityErrors(intf, errors):
@@ -405,7 +405,7 @@ def confirmDeleteRequest(intf, request):
else:
errmsg = _("You are about to delete the /dev/%s partition." % (request.device,))
rc = intf.messageWindow(_("Confirm Delete"), errmsg, type="custom",
- custom_buttons=["gtk-cancel", _("Delete")])
+ custom_buttons=[_("Cancel"), _("Delete")])
else:
errmsg = _("Are you sure you want to delete this partition?")
rc = intf.messageWindow(_("Confirm Delete"), errmsg, type="yesno")