diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-06-10 14:22:19 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-06-10 14:22:19 +0000 |
commit | 7e9eee08eac4a684fb39503f60128680b6e16bb1 (patch) | |
tree | 65e21bde22cc9fefbb0aa452b82af061e0709195 /perl-install/network/netconnect.pm | |
parent | 1c073cb93c6ed5de6fb81049dc2889336c263405 (diff) | |
download | drakx-7e9eee08eac4a684fb39503f60128680b6e16bb1.tar drakx-7e9eee08eac4a684fb39503f60128680b6e16bb1.tar.gz drakx-7e9eee08eac4a684fb39503f60128680b6e16bb1.tar.bz2 drakx-7e9eee08eac4a684fb39503f60128680b6e16bb1.tar.xz drakx-7e9eee08eac4a684fb39503f60128680b6e16bb1.zip |
first lan step: replace the "manual choice" string by the more
meaningfull "manually load a driver"
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r-- | perl-install/network/netconnect.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 1ef521daf..10eb836d8 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -826,12 +826,12 @@ You can find a driver on http://eciadsl.flashtux.org/"), pre => $lan_detect, name => N("Select the network interface to configure:"), data => sub { - [ { label => N("Net Device"), type => "list", val => \$ntf_name, list => [ (sort keys %eth_intf), N_("Manual choice") ], + [ { label => N("Net Device"), type => "list", val => \$ntf_name, list => [ (sort keys %eth_intf), N_("Manually load a driver") ], allow_empty_list => 1, format => sub { translate($eth_intf{$_[0]} || $_[0]) } } ]; }, post => sub { $ethntf = $intf->{$ntf_name} ||= { DEVICE => $ntf_name }; - if ($ntf_name eq "Manual choice") { + if ($ntf_name eq "Manually load a driver") { modules::interactive::load_category__prompt($in, 'network/main|gigabit|pcmcia|usb|wireless'); return 'lan'; } |