summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-05-11 22:26:30 +0000
committerMike Fulbright <msf@redhat.com>2000-05-11 22:26:30 +0000
commita21b91674aac3c19047811a43ca1300bf622ce1b (patch)
tree9c232e523994142c2466a1047d4d758bd06a2f87 /installclasses
parent45fef894e284729f9dfa21849cb1763c11e04ab8 (diff)
downloadanaconda-a21b91674aac3c19047811a43ca1300bf622ce1b.tar.gz
anaconda-a21b91674aac3c19047811a43ca1300bf622ce1b.tar.xz
anaconda-a21b91674aac3c19047811a43ca1300bf622ce1b.zip
cleaned up descriptions
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/custom.py2
-rw-r--r--installclasses/server.py2
-rw-r--r--installclasses/workstation.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py
index ba38b0955..5d01b0329 100644
--- a/installclasses/custom.py
+++ b/installclasses/custom.py
@@ -4,7 +4,7 @@ from translate import N_
# custom installs are easy :-)
class InstallClass(BaseInstallClass):
- name = N_("Install Custom System")
+ name = N_("Custom System")
pixmap = "custom.png"
sortPriority = 10000
diff --git a/installclasses/server.py b/installclasses/server.py
index 1d90c2283..ebd960e6b 100644
--- a/installclasses/server.py
+++ b/installclasses/server.py
@@ -5,7 +5,7 @@ import os
class InstallClass(BaseInstallClass):
- name = N_('Install Server System')
+ name = N_('Server System')
pixmap = "server.png"
sortPriority = 10
diff --git a/installclasses/workstation.py b/installclasses/workstation.py
index 2aab43b4e..8523d5bee 100644
--- a/installclasses/workstation.py
+++ b/installclasses/workstation.py
@@ -4,7 +4,7 @@ from translate import N_
import os
class InstallClass(BaseInstallClass):
- name = N_("Install Workstation")
+ name = N_("Workstation")
pixmap = "workstation.png"
sortPriority = 1