summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-10-15 12:37:50 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-10-15 12:37:50 +0000
commit3a073373c565e013c265ed8ce195d66f1c3ea4a0 (patch)
treeddc5ef9b4a15e9779e39b46aede0e33d75b4cfb6 /perl-install/any.pm
parent8ad913dde1837343c88867fc5d83c851e815e653 (diff)
downloaddrakx-3a073373c565e013c265ed8ce195d66f1c3ea4a0.tar
drakx-3a073373c565e013c265ed8ce195d66f1c3ea4a0.tar.gz
drakx-3a073373c565e013c265ed8ce195d66f1c3ea4a0.tar.bz2
drakx-3a073373c565e013c265ed8ce195d66f1c3ea4a0.tar.xz
drakx-3a073373c565e013c265ed8ce195d66f1c3ea4a0.zip
- localedrake:
o do propose "Suisse" after selecting french language (#34675) nb: it was not selected because CH is associated to de_CH whereas it also exists fr_CH. hence country_to_locales()
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r--perl-install/any.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index 3bc6d879a..241cb0a0e 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -1036,7 +1036,9 @@ sub selectCountry {
my $country = $locale->{country};
my @countries = lang::list_countries(exclude_non_installed => !$::isInstall);
my @best = grep {
- lang::locale_to_main_locale(lang::c2locale($_)) eq lang::locale_to_main_locale($locale->{lang});
+ find {
+ lang::locale_to_main_locale($_) eq lang::locale_to_main_locale($locale->{lang});
+ } lang::country_to_locales($_);
} @countries;
@best == 1 and @best = ();