summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--iw/bootdisk_gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/bootdisk_gui.py b/iw/bootdisk_gui.py
index 83052f052..091f099f0 100644
--- a/iw/bootdisk_gui.py
+++ b/iw/bootdisk_gui.py
@@ -66,10 +66,10 @@ class BootdiskWindow (InstallWindow):
radioBox = gtk.VBox (gtk.FALSE)
self.createDisk = gtk.RadioButton(
- None, _("Yes, I would like to create a boot disk"))
+ None, _("_Yes, I would like to create a boot disk"))
radioBox.pack_start(self.createDisk, gtk.FALSE, gtk.FALSE, padding=10)
self.skipDisk = gtk.RadioButton(
- self.createDisk, _("No, I do not want to create a boot disk"))
+ self.createDisk, _("No, I _do not want to create a boot disk"))
radioBox.pack_start(self.skipDisk, gtk.FALSE, gtk.FALSE)
self.createDisk.set_active(1)