summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index f39ab8f65..f9358761f 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -760,11 +760,14 @@ when your installation is complete and you restart your system.")),
$listval2val->($lang);
} else {
+ my $utf = $in->{locale}{utf8};
my @langs = sort { lang::l2name($a) cmp lang::l2name($b) } lang::list_langs(exclude_non_installed => 1);
die 'one lang only' if @langs == 1;
$in->ask_from_($common,
[ { val => \$lang, type => 'list',
- format => sub { lang::l2name($_[0]) }, list => \@langs } ]) or return;
+ format => sub { lang::l2name($_[0]) }, list => \@langs },
+ { val => \$in->{locale}{utf8}, type => 'bool', text => N("Use Unicode by default") }, #, advanced => 1
+ ]) or return;
$lang;
}
}