From ebc28cc251558d3f1d53d196d3446d716de286a1 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 27 May 2005 00:16:03 +0000 Subject: (selectCountry) display SCIM combinaisons in a sub menu --- perl-install/any.pm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/perl-install/any.pm b/perl-install/any.pm index e7a972a0e..2a6b55c08 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -790,6 +790,10 @@ sub selectCountry { my ($other, $ext_country); member($country, @best) or ($ext_country, $country) = ($country, $ext_country); + + my $format = sub { local $_ = $_[0]; s/(.*)\+(.*)/\1|\1+$2/ if /\+/ ; $_ }; + $locale->{IM} = $format->($locale->{IM}); + $in->ask_from_( { title => N("Country / Region"), messages => N("Please choose your country."), @@ -803,12 +807,13 @@ sub selectCountry { list => \@best, sort => 1 }), { val => \$ext_country, type => 'list', format => \&lang::c2name, list => [ @countries ], advanced => scalar(@best) }, - { val => \$locale->{IM}, type => 'combo', label => N("Input method:"), sort => 0, - list => [ N_("None"), sort(lang::get_ims()) ], format => sub { uc(translate($_[0])) }, + { val => \$locale->{IM}, type => 'combo', label => N("Input method:"), sort => 0, separator => '|', not_edit => 1, + list => [ N_("None"), map { $format->($_) } sort(lang::get_ims()) ], format => sub { uc(translate($_[0])) }, advanced => !$locale->{IM} || $locale->{IM} eq 'None', }, ]) or return; + $locale->{IM} =~ s/.*\|//; $locale->{country} = $other || !@best ? $ext_country : $country; } -- cgit v1.2.1