summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-03-03 21:11:31 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-03-03 21:11:31 +0000
commit2537f0747f98281fd2bef400614cb9a422665023 (patch)
tree8e844e9804b3d768ea9f1ab3c826345f2b9255b9 /perl-install
parente5bd4a254a9fab7c7b569e7454e508ef92c55740 (diff)
downloaddrakx-2537f0747f98281fd2bef400614cb9a422665023.tar
drakx-2537f0747f98281fd2bef400614cb9a422665023.tar.gz
drakx-2537f0747f98281fd2bef400614cb9a422665023.tar.bz2
drakx-2537f0747f98281fd2bef400614cb9a422665023.tar.xz
drakx-2537f0747f98281fd2bef400614cb9a422665023.zip
any::selectLanguage: in standalone, don't categorize langs, for
better looking (since most people will have very few of them)
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/any.pm64
-rw-r--r--perl-install/drakxtools.spec6
2 files changed, 42 insertions, 28 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index be9ab101c..c42583384 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -619,31 +619,33 @@ sub autologin {
sub selectLanguage {
my ($in, $lang, $langs_) = @_;
- my $langs = $langs_ || {};
- #- can't use images after install since the install theme is inverse video :/
- my $using_images = $in->isa('interactive::gtk') && $::isInstall;
-
- #- to create the default value, use the first location for that value :/
- $lang = first(lang::l2location($lang))."|$lang";
-
- my %name2l = map { lang::l2name($_) => $_ } lang::list_langs();
- my $listval2val = sub { $_[0] =~ /\|(.*)/; $1 };
-
- my @langs = map { my $l = $_; map { [ "$_|$l", $_, $l ] } lang::l2location($l) } lang::list_langs(exclude_non_installed => !$::isInstall);
- #- since gtk version will use images (function image2f) we need to sort differently
- my $sort_func = $using_images ? \&lang::l2transliterated : \&lang::l2name;
- @langs = map { $_->[0] } sort { $a->[1] cmp $b->[1] || $sort_func->($a->[2]) cmp $sort_func->($b->[2]) } @langs;
-
- $in->ask_from_(
- { messages => N("Please choose a language to use."),
- title => 'language choice',
- interactive_help_id => 'selectLanguage',
- if_($::isInstall, cancel => ''),
- advanced_messages => formatAlaTeX(N("Mandrake Linux can support multiple languages. Select
+
+ my $common = { messages => N("Please choose a language to use."),
+ title => 'language choice',
+ interactive_help_id => 'selectLanguage' };
+
+ if ($::isInstall) {
+ my $langs = $langs_ || {};
+ my $using_images = $in->isa('interactive::gtk');
+
+ #- to create the default value, use the first location for that value :/
+ $lang = first(lang::l2location($lang))."|$lang";
+
+ my %name2l = map { lang::l2name($_) => $_ } lang::list_langs();
+ my $listval2val = sub { $_[0] =~ /\|(.*)/; $1 };
+
+ my @langs = map { my $l = $_; map { [ "$_|$l", $_, $l ] } lang::l2location($l) } lang::list_langs();
+ #- since gtk version will use images (function image2f) we need to sort differently
+ my $sort_func = $using_images ? \&lang::l2transliterated : \&lang::l2name;
+ @langs = map { $_->[0] } sort { $a->[1] cmp $b->[1] || $sort_func->($a->[2]) cmp $sort_func->($b->[2]) } @langs;
+
+ add2hash($common, { cancel => '',
+ advanced_messages => formatAlaTeX(N("Mandrake Linux can support multiple languages. Select
the languages you would like to install. They will be available
when your installation is complete and you restart your system.")),
- callbacks => { advanced => sub { $langs->{$listval2val->($lang)} = 1 } }
- },
+ callbacks => { advanced => sub { $langs->{$listval2val->($lang)} = 1 } } });
+
+ $in->ask_from_($common,
[ { val => \$lang, separator => '|',
if_($using_images, image2f => sub { $name2l{$_[0]} =~ /^[a-z]/ ? ('', "langs/lang-$name2l{$_[0]}") : $_[0] }),
format => sub { $_[0] =~ /(.*\|)(.*)/; $1.lang::l2name($2) },
@@ -658,11 +660,19 @@ when your installation is complete and you restart your system.")),
}
} sort { $a->[1] cmp $b->[1] } map { [ $_, $sort_func->($_) ] } lang::list_langs())
]) or return;
- $langs->{$listval2val->($lang)} = 1;
- $langs->{$_} or delete $langs->{$_} foreach keys %$langs; #- clean hash
+ $langs->{$listval2val->($lang)} = 1;
+ $langs->{$_} or delete $langs->{$_} foreach keys %$langs; #- clean hash
+
+ #- convert to the default locale for asked language
+ $listval2val->($lang);
- #- convert to the default locale for asked language
- $listval2val->($lang);
+ } else {
+ my @langs = sort { lang::l2name($a) cmp lang::l2name($b) } lang::list_langs(exclude_non_installed => 1);
+ $in->ask_from_($common,
+ [ { val => \$lang, type => 'list',
+ format => sub { lang::l2name($_[0]) }, list => \@langs } ]) or return;
+ $lang;
+ }
}
sub selectCountry {
diff --git a/perl-install/drakxtools.spec b/perl-install/drakxtools.spec
index 4fcb9f659..3675d1b65 100644
--- a/perl-install/drakxtools.spec
+++ b/perl-install/drakxtools.spec
@@ -1,7 +1,7 @@
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Name: drakxtools
Version: 9.1
-Release: 13mdk
+Release: 14mdk
Url: http://www.mandrakelinux.com/en/drakx.php3
Source0: %name-%version.tar.bz2
License: GPL
@@ -291,6 +291,10 @@ file /etc/sysconfig/harddrake2/previous_hw | fgrep -q perl && %_datadir/harddrak
%config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http
%changelog
+* Mon Mar 3 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-14mdk
+- localedrake: don't categorize langs, for better looking (since
+ most people will have very few of them)
+
* Mon Mar 3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-13mdk
- drakboot: fix #2091, #2480