diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-12 02:12:08 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-12 02:12:08 +0000 |
commit | 4a7338d135bc6b9fedbe608714da5a8dd263ea8f (patch) | |
tree | 3f1078d21c230544a16dbbd9aa9abd7a00ffa10e /installclasses | |
parent | 18453e88acc98008df48db35ea95ee0acf8e8391 (diff) | |
download | anaconda-4a7338d135bc6b9fedbe608714da5a8dd263ea8f.tar.gz anaconda-4a7338d135bc6b9fedbe608714da5a8dd263ea8f.tar.xz anaconda-4a7338d135bc6b9fedbe608714da5a8dd263ea8f.zip |
add descriptions from docs for install classes, fix label wrapping in install path screen
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/custom.py | 6 | ||||
-rw-r--r-- | installclasses/server.py | 5 | ||||
-rw-r--r-- | installclasses/workstation.py | 6 |
3 files changed, 11 insertions, 6 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py index 74c2e3ea0..d8f97f750 100644 --- a/installclasses/custom.py +++ b/installclasses/custom.py @@ -9,8 +9,10 @@ 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.") + description = N_("Select this installation type to gain complete " + "control over the installation process, including " + "software package selection and authentication " + "preferences.") sortPriority = 10000 def setInstallData(self, id): diff --git a/installclasses/server.py b/installclasses/server.py index 9af1573ad..cece10642 100644 --- a/installclasses/server.py +++ b/installclasses/server.py @@ -9,8 +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.") + description = N_("Select this installation type if you would like to " + "set up file sharing, print sharing, and Web services. " + "Additional services can also be enabled.") sortPriority = 10 diff --git a/installclasses/workstation.py b/installclasses/workstation.py index b54f4b484..999be05f0 100644 --- a/installclasses/workstation.py +++ b/installclasses/workstation.py @@ -9,8 +9,10 @@ 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.") + description = N_("Perfect for workstations or laptops, select this " + "installation type to install a graphical desktop " + "environment and create a system ideal for home " + "or desktop use.") sortPriority = 1 |