summaryrefslogtreecommitdiffstats
path: root/iw/examine.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/examine.py
parent82ba493137e9cb80c484291a5595e7d47bc67058 (diff)
downloadanaconda-d2fb657ae4aeeaf3ab070b594371742d810829c3.tar.gz
anaconda-d2fb657ae4aeeaf3ab070b594371742d810829c3.tar.xz
anaconda-d2fb657ae4aeeaf3ab070b594371742d810829c3.zip
i18n
Diffstat (limited to 'iw/examine.py')
-rw-r--r--iw/examine.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/iw/examine.py b/iw/examine.py
index ab469cf49..459367dae 100644
--- a/iw/examine.py
+++ b/iw/examine.py
@@ -7,7 +7,7 @@ class UpgradeExamineWindow (InstallWindow):
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
- ics.setTitle ("Upgrade Examine")
+ ics.setTitle (_("Upgrade Examine"))
def toggled (self, widget, part):
if widget.get_active ():
@@ -31,7 +31,7 @@ class UpgradeExamineWindow (InstallWindow):
box = GtkVBox (FALSE)
if not parts:
- box.pack_start (GtkLabel ("You don't have any Linux partitions.\n You can't upgrade this sytem!"),
+ box.pack_start (GtkLabel (_("You don't have any Linux partitions.\n You can't upgrade this sytem!")),
FALSE)
return box
@@ -49,7 +49,7 @@ class UpgradeExamineWindow (InstallWindow):
sw.add_with_viewport (box)
vbox = GtkVBox (FALSE, 5)
- self.individualPackages = GtkCheckButton ("Customize packages to be upgraded")
+ self.individualPackages = GtkCheckButton (_("Customize packages to be upgraded"))
self.individualPackages.set_active (FALSE)
align = GtkAlignment (0.5, 0.5)
align.add (self.individualPackages)