summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/steps_curses.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 43e53426c..f455e0f31 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,6 +1,7 @@
- drakx-in-chroot:
o do not start an X server if using --text
- text mode installer:
+ o display a separator before step name
o properly handle big text in list such as security level
descriptions (#43561)
- continue installing if an advertising image is corrupted (#37674)
diff --git a/perl-install/install/steps_curses.pm b/perl-install/install/steps_curses.pm
index 213993839..44fe83546 100644
--- a/perl-install/install/steps_curses.pm
+++ b/perl-install/install/steps_curses.pm
@@ -19,7 +19,7 @@ use common;
my $banner;
sub banner {
my ($cui, $step) = @_;
- my $text = N("Mandriva Linux Installation %s", $step);
+ my $text = N("Mandriva Linux Installation %s", "| $step");
$banner ||= do {
my $win = $cui->add(undef, 'Window', '-x' => 1, '-y' => 0, '-height' => 1);
$win->add(undef, 'Label');