summaryrefslogtreecommitdiffstats
path: root/iw/bootdisk.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-26 18:44:35 +0000
committerMatt Wilson <msw@redhat.com>1999-08-26 18:44:35 +0000
commitd2fb657ae4aeeaf3ab070b594371742d810829c3 (patch)
tree8eb4b406fbf81def6a5aeed771143956febde417 /iw/bootdisk.py
parent82ba493137e9cb80c484291a5595e7d47bc67058 (diff)
downloadanaconda-d2fb657ae4aeeaf3ab070b594371742d810829c3.tar.gz
anaconda-d2fb657ae4aeeaf3ab070b594371742d810829c3.tar.xz
anaconda-d2fb657ae4aeeaf3ab070b594371742d810829c3.zip
i18n
Diffstat (limited to 'iw/bootdisk.py')
-rw-r--r--iw/bootdisk.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/iw/bootdisk.py b/iw/bootdisk.py
index 76320812e..3f177b008 100644
--- a/iw/bootdisk.py
+++ b/iw/bootdisk.py
@@ -2,7 +2,7 @@ from iw import *
from gtk import *
import gettext
-cat = gettext.Catalog ("anaconda-text", "/usr/share/locale")
+cat = gettext.Catalog ("anaconda", "/usr/share/locale")
_ = cat.gettext
class BootdiskWindow (InstallWindow):
@@ -10,7 +10,7 @@ class BootdiskWindow (InstallWindow):
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
- ics.setTitle ("Bootdisk Creation")
+ ics.setTitle (_("Bootdisk Creation"))
ics.setPrevEnabled (0)
ics.setNextEnabled (1)
BootdiskWindow.initial = 1
@@ -51,7 +51,7 @@ class BootdiskWindow (InstallWindow):
label.set_line_wrap (TRUE)
box.pack_start (label, FALSE)
- self.bootdisk = GtkCheckButton ("Skip boot disk creation")
+ self.bootdisk = GtkCheckButton (_("Skip boot disk creation"))
self.bootdisk.set_active (FALSE)
box.pack_start (GtkHSeparator (), FALSE, padding=3)
box.pack_start (self.bootdisk, FALSE)