diff options
author | Mike Fulbright <msf@redhat.com> | 2002-06-19 18:58:45 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-06-19 18:58:45 +0000 |
commit | 3b77558d92d422443fd8e9dfa2ad64a4997846e5 (patch) | |
tree | 96d3244c2f87d6fad19eab20eca858cc14c1bc86 /partIntfHelpers.py | |
parent | e4f21ffc20457cdb177f3be7812dfded72164efd (diff) | |
download | anaconda-3b77558d92d422443fd8e9dfa2ad64a4997846e5.tar.gz anaconda-3b77558d92d422443fd8e9dfa2ad64a4997846e5.tar.xz anaconda-3b77558d92d422443fd8e9dfa2ad64a4997846e5.zip |
add keyaccel
Diffstat (limited to 'partIntfHelpers.py')
-rw-r--r-- | partIntfHelpers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/partIntfHelpers.py b/partIntfHelpers.py index 1e62da286..a69f4052f 100644 --- a/partIntfHelpers.py +++ b/partIntfHelpers.py @@ -316,7 +316,7 @@ def queryNoFormatPreExisting(intf): # "the partition ?") # rc = intf.messageWindow(_("Format?"), txt, type = "yesno", default = "no") - rc = intf.messageWindow(_("Format?"), txt, type = "custom", custom_buttons=[_("Cancel"), _("Do Not Format")]) + rc = intf.messageWindow(_("Format?"), txt, type = "custom", custom_buttons=[_("Cancel"), _("Do _Not Format")]) return rc def partitionSanityErrors(intf, errors): @@ -419,7 +419,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=[_("Cancel"), _("Delete")]) + custom_buttons=[_("Cancel"), _("_Delete")]) else: # XXX can this ever happen? errmsg = _("Are you sure you want to delete this partition?") |