diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-13 17:53:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-13 17:53:59 +0000 |
commit | 906d09feee7055c411790bb62ef839c43ba5fe0f (patch) | |
tree | bc03a9a3678c2e85edd9b71c04124470febe1351 /perl-install/Xconfig/various.pm | |
parent | aa5a8d932d27fb794b66ac81dc4b60487a2d928d (diff) | |
download | drakx-906d09feee7055c411790bb62ef839c43ba5fe0f.tar drakx-906d09feee7055c411790bb62ef839c43ba5fe0f.tar.gz drakx-906d09feee7055c411790bb62ef839c43ba5fe0f.tar.bz2 drakx-906d09feee7055c411790bb62ef839c43ba5fe0f.tar.xz drakx-906d09feee7055c411790bb62ef839c43ba5fe0f.zip |
fix and some more Help
Diffstat (limited to 'perl-install/Xconfig/various.pm')
-rw-r--r-- | perl-install/Xconfig/various.pm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/perl-install/Xconfig/various.pm b/perl-install/Xconfig/various.pm index 8fd1bf68b..daa8d27f9 100644 --- a/perl-install/Xconfig/various.pm +++ b/perl-install/Xconfig/various.pm @@ -67,10 +67,13 @@ sub choose_xdm { my $xdm = $::isStandalone ? runlevel() == 5 : 1; if (!$auto || $::isStandalone) { - $xdm = $in->ask_yesorno_({ interactive_help_id => 'configureXxdm' }, - N("Graphical interface at startup"), + $xdm = $in->ask_yesorno_({ + title => N("Graphical interface at startup"), + messages => N("I can setup your computer to automatically start the graphical interface (XFree) upon booting. -Would you like XFree to start when you reboot?"), $xdm) or return; +Would you like XFree to start when you reboot?"), + interactive_help_id => 'configureXxdm', + }, $xdm) or return; } runlevel($xdm ? 5 : 3); } |