From a21b91674aac3c19047811a43ca1300bf622ce1b Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Thu, 11 May 2000 22:26:30 +0000 Subject: cleaned up descriptions --- installclasses/custom.py | 2 +- installclasses/server.py | 2 +- installclasses/workstation.py | 2 +- 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 -- cgit