diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-18 18:02:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-18 18:02:43 +0000 |
commit | 12797bcdae73a20d13251efb0212ef0a565e7d60 (patch) | |
tree | a58a58eeefa046570c231f813f377fbfea5a2d45 /perl-install/network/tools.pm | |
parent | 3c449c259f3c6325a00bf542511bb1ccbce55054 (diff) | |
download | drakx-12797bcdae73a20d13251efb0212ef0a565e7d60.tar drakx-12797bcdae73a20d13251efb0212ef0a565e7d60.tar.gz drakx-12797bcdae73a20d13251efb0212ef0a565e7d60.tar.bz2 drakx-12797bcdae73a20d13251efb0212ef0a565e7d60.tar.xz drakx-12797bcdae73a20d13251efb0212ef0a565e7d60.zip |
fix typo
Diffstat (limited to 'perl-install/network/tools.pm')
-rw-r--r-- | perl-install/network/tools.pm | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm index 47abf7892..815ed5436 100644 --- a/perl-install/network/tools.pm +++ b/perl-install/network/tools.pm @@ -68,21 +68,21 @@ sub ask_info2 { $in->ask_from(_("Connection Configuration"), _("Please fill or check the field below"), [ - if __ ($cnx->{irq}, { label => _("Card IRQ"), val => \$cnx->{irq} }) , - if __ ($cnx->{mem}, { label => _("Card mem (DMA)"), val => \$cnx->{mem} }), - if __ ($cnx->{io}, { label => _("Card IO"), val => \$cnx->{io} }), - if __ ($cnx->{io0}, { label => _("Card IO_0"), val => \$cnx->{io0} }), - if __ ($cnx->{io1}, { label => _("Card IO_1"), val => \$cnx->{io1} }), - if __ ($cnx->{phone_in}, { label => _("Your personal phone number"), val => \$cnx->{phone_in} }), - if __ ($netc->{DOMAINNAME2}, { label => _("Provider name (ex provider.net)"), val => \$netc->{DOMAINNAME2} }), - if __ ($cnx->{phone_out}, { label => _("Provider phone number"), val => \$cnx->{phone_out} }), - if __ ($netc->{dnsServer2}, { label => _("Provider dns 1 (optional)"), val => \$netc->{dnsServer2} }), - if __ ($netc->{dnsServer3}, { label => _("Provider dns 2 (optional)"), val => \$netc->{dnsServer3} }), - if __ ($cnx->{dialing_mode}, { label => _("Dialing mode"), val => \$cnx->{dialing_mode},list=>["auto","manual"]}), - if __ ($cnx->{speed}, { label => _("Connection speed"), val => \$cnx->{speed}, list => ["64 Kb/s", "128 Kb/s"]}), - if __ ($cnx->{huptimeout}, { label => _("Connection timeout (in sec)"), val => \$cnx->{huptimeout} }), - if __ ($cnx->{login}, { label => _("Account Login (user name)"), val => \$cnx->{login} }), - if __ ($cnx->{passwd}, { label => _("Account Password"), val => \$cnx->{passwd} }), + if__($cnx->{irq}, { label => _("Card IRQ"), val => \$cnx->{irq} }) , + if__($cnx->{mem}, { label => _("Card mem (DMA)"), val => \$cnx->{mem} }), + if__($cnx->{io}, { label => _("Card IO"), val => \$cnx->{io} }), + if__($cnx->{io0}, { label => _("Card IO_0"), val => \$cnx->{io0} }), + if__($cnx->{io1}, { label => _("Card IO_1"), val => \$cnx->{io1} }), + if__($cnx->{phone_in}, { label => _("Your personal phone number"), val => \$cnx->{phone_in} }), + if__($netc->{DOMAINNAME2}, { label => _("Provider name (ex provider.net)"), val => \$netc->{DOMAINNAME2} }), + if__($cnx->{phone_out}, { label => _("Provider phone number"), val => \$cnx->{phone_out} }), + if__($netc->{dnsServer2}, { label => _("Provider dns 1 (optional)"), val => \$netc->{dnsServer2} }), + if__($netc->{dnsServer3}, { label => _("Provider dns 2 (optional)"), val => \$netc->{dnsServer3} }), + if__($cnx->{dialing_mode}, { label => _("Dialing mode"), val => \$cnx->{dialing_mode},list=>["auto","manual"]}), + if__($cnx->{speed}, { label => _("Connection speed"), val => \$cnx->{speed}, list => ["64 Kb/s", "128 Kb/s"]}), + if__($cnx->{huptimeout}, { label => _("Connection timeout (in sec)"), val => \$cnx->{huptimeout} }), + if__($cnx->{login}, { label => _("Account Login (user name)"), val => \$cnx->{login} }), + if__($cnx->{passwd}, { label => _("Account Password"), val => \$cnx->{passwd} }), ] ) or return; 1; |