diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-08-27 03:40:55 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-08-27 03:40:55 +0000 |
commit | ae2d143860cc759166784c2d11c9acc2de0a4211 (patch) | |
tree | f7a23a74aed2de36ba627166e946e2ff9c83426e /perl-install/services.pm | |
parent | caa4e01ea7ce33370a842d302b46157c77fece58 (diff) | |
download | drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.tar drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.tar.gz drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.tar.bz2 drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.tar.xz drakx-ae2d143860cc759166784c2d11c9acc2de0a4211.zip |
fill in missing titles for banners and specify icons
Diffstat (limited to 'perl-install/services.pm')
-rw-r--r-- | perl-install/services.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/services.pm b/perl-install/services.pm index e6a6c8542..e539e1cfd 100644 --- a/perl-install/services.pm +++ b/perl-install/services.pm @@ -111,7 +111,7 @@ xfs => N_("Starts the X Font Server (this is mandatory for Xorg to run)."), sub ask_install_simple { my ($in) = @_; my ($l, $on_services) = services(); - $in->ask_many_from_list("drakxservices", + $in->ask_many_from_list(N("Services"), N("Choose which services should be automatically started at boot time"), { list => $l, @@ -154,7 +154,7 @@ sub ask_install { $services{$_} = 0 foreach @{$l || []}; $services{$_} = 1 foreach @{$on_services || []}; - $in->ask_browse_tree_info('drakxservices', N("Choose which services should be automatically started at boot time"), + $in->ask_browse_tree_info(N("Services"), N("Choose which services should be automatically started at boot time"), { node_state => sub { $services{$_[0]} ? 'selected' : 'unselected' }, build_tree => sub { |