diff options
-rw-r--r-- | installclasses/custom.py | 2 | ||||
-rw-r--r-- | installclasses/server.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py index e19650c0a..5451121b8 100644 --- a/installclasses/custom.py +++ b/installclasses/custom.py @@ -9,7 +9,7 @@ from partitioning import autoCreatePartitionRequests # custom installs are easy :-) class InstallClass(BaseInstallClass): - name = N_("Custom System") + name = N_("Custom") pixmap = "custom.png" sortPriority = 10000 diff --git a/installclasses/server.py b/installclasses/server.py index 7f58f2e36..23b2be85f 100644 --- a/installclasses/server.py +++ b/installclasses/server.py @@ -9,7 +9,7 @@ from autopart import CLEARPART_TYPE_NONE class InstallClass(BaseInstallClass): - name = N_("Server System") + name = N_("Server") pixmap = "server.png" sortPriority = 10 |