summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install_steps_interactive.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 6ff83f6e8..44d2a4d8e 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -247,13 +247,13 @@ sub selectInstallClass {
my %c = my @c = (
if_(!$::corporate,
- _("Recommended") => "beginner",
+ _("Cluster Node") => "beginner",
),
if_($o->{meta_class} ne 'desktop',
- _("Expert") => "expert",
+ _("Cluster Server") => "expert",
),
);
- %c = @c = (_("Expert") => "expert") if $::expert && !$clicked;
+ %c = @c = (_("Cluster Server") => "expert") if $::expert && !$clicked;
$o->set_help('selectInstallClassCorpo') if $::corporate;