diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-24 15:46:18 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-24 15:46:18 +0000 |
commit | 1834a3cb8e4b52fd30573d1a1e35b09fa7a4eb7b (patch) | |
tree | ee360b9fce8840ccb7d429986e0addadab4cad4a /perl-install | |
parent | 87e27ed6fb5070c32e6ae6644925245bc874f732 (diff) | |
download | drakx-1834a3cb8e4b52fd30573d1a1e35b09fa7a4eb7b.tar drakx-1834a3cb8e4b52fd30573d1a1e35b09fa7a4eb7b.tar.gz drakx-1834a3cb8e4b52fd30573d1a1e35b09fa7a4eb7b.tar.bz2 drakx-1834a3cb8e4b52fd30573d1a1e35b09fa7a4eb7b.tar.xz drakx-1834a3cb8e4b52fd30573d1a1e35b09fa7a4eb7b.zip |
hp fix
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 2 | ||||
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index dd7f6b932..b08e405c3 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -688,7 +688,7 @@ sub selectCountry { my ($other, $ext_country); member($country, @best) or ($ext_country, $country) = ($country, $ext_country); $o->ask_from_( - { title => N("Country"), + { title => N("Country") . N(" / Region"), messages => N("Please choose your country."), interactive_help_id => 'selectCountry', advanced_messages => N("Here is the full list of available countries"), diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index bc136610c..aa2869585 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -894,7 +894,7 @@ sub summary { my $timezone_manually_set; push @l, { group => N("System"), - label => N("Country"), + label => N("Country") . N(" / Region"), val => sub { lang::c2name($o->{locale}{country}) }, clicked => sub { any::selectCountry($o, $o->{locale}) or return; |