diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2003-01-21 08:09:01 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2003-01-21 08:09:01 +0000 |
commit | ca192729278dcab2579371db5dc716746277fa24 (patch) | |
tree | 63de147760c3426591cb3c7bc105a942f4699a7e /perl-install/network/ethernet.pm | |
parent | e9c64c704260364a2eac2e806ad308b19a2410d1 (diff) | |
download | drakx-ca192729278dcab2579371db5dc716746277fa24.tar drakx-ca192729278dcab2579371db5dc716746277fa24.tar.gz drakx-ca192729278dcab2579371db5dc716746277fa24.tar.bz2 drakx-ca192729278dcab2579371db5dc716746277fa24.tar.xz drakx-ca192729278dcab2579371db5dc716746277fa24.zip |
English proofreading by Stew Benedicts
Diffstat (limited to 'perl-install/network/ethernet.pm')
-rw-r--r-- | perl-install/network/ethernet.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index 22bb7b9ec..ca468125d 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -29,7 +29,7 @@ sub configure_cable { ); if (my $f = $in->ask_from_listf(N("Connect to the Internet"), N("Which dhcp client do you want to use? -Default is dhcp-client"), +Default is dhcp-client."), sub { $_[0]{description} }, \@m)) { $f->{c} == 3 and $netcnx->{dhcp_client} = "dhcpcd" and $in->do_pkgs->install(qw(dhcpcd)); @@ -84,7 +84,7 @@ I cannot set up this connection type.")) and return; @all_cards == 1 and $interface = $all_cards[0][0]; while (!$interface) { $interface = $in->ask_from_list(N("Choose the network interface"), - N("Please choose which network adapter you want to use to connect to Internet"), + N("Please choose which network adapter you want to use to connect to Internet."), [ map { $_->[0] . ($_->[1] ? " (using module $_->[1])" : "") } @all_cards ] ) or return; } |