diff options
-rw-r--r-- | installclasses/custom.py | 2 | ||||
-rw-r--r-- | installclasses/server.py | 2 | ||||
-rw-r--r-- | 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 |