diff options
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 9 |
2 files changed, 8 insertions, 2 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 5fdf0cdb4..56c907cea 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -6,6 +6,7 @@ o add a separator before "Close" button o fix displaying "Help" Button for HTML help o put "Close" button of help at right end +- small improvements in many steps (desktop, ...) - services (thanks to spuk): o list ip6tables in "Internet" category o list nfs-common and nfs-server in "File sharing" category diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 8fb1a4973..dbafdcf67 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -255,8 +255,13 @@ sub reallyChooseDesktop { my $img = gtksignal_connect( gtkadd(Gtk2::EventBox->new, gtknew('Image', file => "desktop-$val->[0]")), 'button-press-event' => sub { - my $wp = ugtk2->new(N("Help"), transient => $w->{real_window}, modal => 1, - ); + my %title = ( + KDE => N("KDE Desktop"), + GNOME => N("GNOME Desktop"), + Custom => N("Custom Desktop"), + ); + + my $wp = ugtk2->new($title{$val->[1]}, transient => $w->{real_window}, modal => 1,); gtkadd($wp->{rwindow}, gtkpack_(Gtk2::VBox->new, 0, N("Here's a preview of the '%s' desktop.", $val->[1]), |