summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install_steps_gtk.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm
index e51264144..36f183245 100644
--- a/perl-install/install_steps_gtk.pm
+++ b/perl-install/install_steps_gtk.pm
@@ -358,8 +358,9 @@ sub choosePackagesTree {
push(@firstchoice, pkgs::packageName($p)) :
push(@others, pkgs::packageName($p));
}
- $add_node->($_, $root ) foreach sort @firstchoice;
- $add_node->($_, $root . '|' . _("Other")) foreach sort @others;
+ my $root2 = join('|', map { translate($_) } split('\|', $root));
+ $add_node->($_, $root2 ) foreach sort @firstchoice;
+ $add_node->($_, $root2 . '|' . _("Other")) foreach sort @others;
}
}
},