diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-11 00:57:40 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-11 00:57:40 +0000 |
commit | b870ade4a604b2ed1960682f02b4f337b0621541 (patch) | |
tree | 8ef8e867edecd57c262abaab8d7ea2bd7e9e8215 /installclasses | |
parent | e6b3465a1ea5e13c6ec149d0ec9547c480478deb (diff) | |
download | anaconda-b870ade4a604b2ed1960682f02b4f337b0621541.tar.gz anaconda-b870ade4a604b2ed1960682f02b4f337b0621541.tar.xz anaconda-b870ade4a604b2ed1960682f02b4f337b0621541.zip |
add descriptions for installclasses
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/custom.py | 3 | ||||
-rw-r--r-- | installclasses/laptop.py | 3 | ||||
-rw-r--r-- | installclasses/server.py | 3 | ||||
-rw-r--r-- | installclasses/workstation.py | 2 |
4 files changed, 9 insertions, 2 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py index 9ae165dc9..74c2e3ea0 100644 --- a/installclasses/custom.py +++ b/installclasses/custom.py @@ -9,7 +9,8 @@ from autopart import getAutopartitionBoot, autoCreatePartitionRequests class InstallClass(BaseInstallClass): name = N_("Custom") pixmap = "custom.png" - + description = N_("Use this option to have the most control over " + "the software installed and configuration options.") sortPriority = 10000 def setInstallData(self, id): diff --git a/installclasses/laptop.py b/installclasses/laptop.py index b3739332c..3530882dc 100644 --- a/installclasses/laptop.py +++ b/installclasses/laptop.py @@ -6,7 +6,8 @@ import pcmcia class InstallClass(workstation.InstallClass): name = N_("Laptop") pixmap = "laptop-class.png" - + description = N_("Similar to 'Workstation' option, with laptop support.") + sortPriority = 5000 arch = 'i386' diff --git a/installclasses/server.py b/installclasses/server.py index 3a1a3c35e..9af1573ad 100644 --- a/installclasses/server.py +++ b/installclasses/server.py @@ -9,6 +9,9 @@ class InstallClass(BaseInstallClass): name = N_("Server") pixmap = "server.png" + description = N_("Includes services for file and print sharing, " + "hosting web serving, and necessary config tools.") + sortPriority = 10 def setSteps(self, dispatch): diff --git a/installclasses/workstation.py b/installclasses/workstation.py index 841f551b4..198b485ec 100644 --- a/installclasses/workstation.py +++ b/installclasses/workstation.py @@ -9,6 +9,8 @@ from fsset import * class InstallClass(BaseInstallClass): name = N_("Workstation") pixmap = "workstation.png" + description = N_("For systems intended for graphical desktop use using " + "the GNOME or KDE desktop environments.") sortPriority = 1 |