diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-08-28 17:56:22 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-08-28 17:56:22 +0000 |
commit | 321601779029020a7c83eb3b5c327f282a748c69 (patch) | |
tree | ff24ebde734e1774f208078db68f666e85c7bd29 /perl-install/network | |
parent | 0e3c0c921f9b36993819c05082e780add85e5f8d (diff) | |
download | drakx-321601779029020a7c83eb3b5c327f282a748c69.tar drakx-321601779029020a7c83eb3b5c327f282a748c69.tar.gz drakx-321601779029020a7c83eb3b5c327f282a748c69.tar.bz2 drakx-321601779029020a7c83eb3b5c327f282a748c69.tar.xz drakx-321601779029020a7c83eb3b5c327f282a748c69.zip |
rephrase "DSL connection type" message, the preselected type has better to be kept
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/netconnect.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 331568ab3..11e1be2f2 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -704,10 +704,8 @@ Take a look at http://www.linmodems.org"), $net->{adsl}{method} = "pppoe" if $net->{adsl}{method} eq "pppoa"; } }, - name => N("Connect to the Internet") . "\n\n" . - N("The most common way to connect with adsl is pppoe. -Some connections use PPTP, a few use DHCP. -If you do not know, choose 'use PPPoE'"), + name => N("Please choose your DSL connection type. +If you do not know, keep the preselected type."), data => [ { text => N("ADSL connection type:"), val => \$net->{adsl}{method}, type => "list", list => [ sort { $adsl_types{$a} cmp $adsl_types{$b} } keys %adsl_types ], |