summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-27 21:57:33 +0000
committerMatt Wilson <msw@redhat.com>1999-08-27 21:57:33 +0000
commit18a7d681cc98f0ab8bd04972554cad0a51fb97b6 (patch)
tree5e8b8b197a8aff0fd315b2a4afae99780e757484 /iw
parent2c247397ae73a06ace517a8314cd454c7a5b9a6b (diff)
downloadanaconda-18a7d681cc98f0ab8bd04972554cad0a51fb97b6.tar.gz
anaconda-18a7d681cc98f0ab8bd04972554cad0a51fb97b6.tar.xz
anaconda-18a7d681cc98f0ab8bd04972554cad0a51fb97b6.zip
more changes
Diffstat (limited to 'iw')
-rw-r--r--iw/installpath.py33
-rw-r--r--iw/installtype.py5
2 files changed, 28 insertions, 10 deletions
diff --git a/iw/installpath.py b/iw/installpath.py
index 05699fae4..d2b7a15a0 100644
--- a/iw/installpath.py
+++ b/iw/installpath.py
@@ -32,16 +32,33 @@ class InstallPathWindow (InstallWindow):
ics.setTitle (_("Install Path"))
ics.setNextEnabled (1)
- self.commonSteps = [LanguageWindow, KeyboardWindow, MouseWindow,
- WelcomeWindow, InstallPathWindow]
+ self.commonSteps = [ LanguageWindow,
+ KeyboardWindow,
+ MouseWindow,
+ WelcomeWindow,
+ InstallPathWindow
+ ]
- self.installSteps = [TimezoneWindow, NetworkWindow, PartitionWindow, FormatWindow, PackageSelectionWindow,
- UnresolvedDependenciesWindow, LiloWindow, AuthWindow, AccountWindow,
- InstallProgressWindow, BootdiskWindow, CongratulationWindow]
+ self.installSteps = [ InstallTypeWindow,
+ TimezoneWindow,
+ NetworkWindow,
+ PartitionWindow,
+ FormatWindow,
+ PackageSelectionWindow,
+ UnresolvedDependenciesWindow,
+ LiloWindow,
+ AuthWindow,
+ AccountWindow,
+ InstallProgressWindow,
+ BootdiskWindow,
+ CongratulationWindow
+ ]
- self.upgradeSteps = [UpgradeExamineWindow,
- UnresolvedDependenciesWindow, InstallProgressWindow,
- CongratulationWindow]
+ self.upgradeSteps = [ UpgradeExamineWindow,
+ UnresolvedDependenciesWindow,
+ InstallProgressWindow,
+ CongratulationWindow
+ ]
def toggled (self, widget, type):
if not widget.get_active (): return
diff --git a/iw/installtype.py b/iw/installtype.py
index 7e4a6f32d..a75efcc5c 100644
--- a/iw/installtype.py
+++ b/iw/installtype.py
@@ -1,6 +1,7 @@
from gtk import *
from iw import *
from thread import *
+from gui import _
WORKSTATION_GNOME = 1
WORKSTATION_KDE = 2
@@ -16,8 +17,8 @@ class InstallTypeWindow (InstallWindow):
ics.setTitle (_("Installation Type"))
ics.setNextEnabled (TRUE)
- self.installTypes = ((WORKSTATION_GNOME, _("Workstation (Gnome)")),
- (WORKSTATION_KDE, _("Workstation (KDE)")),
+ self.installTypes = ((WORKSTATION_GNOME, _("GNOME Workstation")),
+ (WORKSTATION_KDE, _("KDE Workstation")),
(SERVER, _("Server")),
(CUSTOM, _("Custom")))