diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-29 08:59:04 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-03-29 08:59:04 +0000 |
commit | c0f29a6b08d3b5d0705d1993fa2c58e14fc899d4 (patch) | |
tree | c9c9042d73a4e6b8705224638a31c334ef39eaa2 /perl-install/any.pm | |
parent | 9018f5ff01d0fb3b83d39ee56cf9fac752bc0c3f (diff) | |
download | drakx-c0f29a6b08d3b5d0705d1993fa2c58e14fc899d4.tar drakx-c0f29a6b08d3b5d0705d1993fa2c58e14fc899d4.tar.gz drakx-c0f29a6b08d3b5d0705d1993fa2c58e14fc899d4.tar.bz2 drakx-c0f29a6b08d3b5d0705d1993fa2c58e14fc899d4.tar.xz drakx-c0f29a6b08d3b5d0705d1993fa2c58e14fc899d4.zip |
(selectLanguage) let "unicode" checkbox be an advanced item at both install
time and in standalone mode
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index d6c553316..43e4f228f 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -769,7 +769,7 @@ when your installation is complete and you restart your system.")), $in->ask_from_($common, [ { val => \$lang, type => 'list', format => sub { lang::l2name($_[0]) }, list => \@langs }, - { val => \$in->{locale}{utf8}, type => 'bool', text => N("Use Unicode by default") }, #, advanced => 1 + { val => \$in->{locale}{utf8}, type => 'bool', text => N("Use Unicode by default"), advanced => 1 }, ]) or return; $lang; } |