diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-06 10:03:25 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-06 10:03:25 +0000 |
commit | d11b94c6f82a12bd0cc74843a5a5af59e82aeb56 (patch) | |
tree | 9487fb6e65a5a8840dbde5b17c62cbc034138d01 | |
parent | a3c3ceebfe9c3b8476897f42cd7bd1bb86d75614 (diff) | |
download | drakx-d11b94c6f82a12bd0cc74843a5a5af59e82aeb56.tar drakx-d11b94c6f82a12bd0cc74843a5a5af59e82aeb56.tar.gz drakx-d11b94c6f82a12bd0cc74843a5a5af59e82aeb56.tar.bz2 drakx-d11b94c6f82a12bd0cc74843a5a5af59e82aeb56.tar.xz drakx-d11b94c6f82a12bd0cc74843a5a5af59e82aeb56.zip |
(configure) fix untranslatable strings: switch from ask_from_list_()
to ask_from_list()
-rw-r--r-- | perl-install/network/adsl.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm index bb88937d9..79fae9ca7 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -16,17 +16,17 @@ sub configure { conf_adsl_step1: my %l = ( - 'pppoe' => N_("use pppoe"), - 'pptp' => N_("use pptp"), - 'dhcp' => N_("use dhcp"), - 'speedtouch' => N_("Alcatel speedtouch usb") . if_($netc->{autodetect}{adsl}{speedtouch}, " - detected"), - 'sagem' => N_("Sagem (using pppoa) usb") . if_($netc->{autodetect}{adsl}{sagem}, " - detected"), + 'pppoe' => N("use pppoe"), + 'pptp' => N("use pptp"), + 'dhcp' => N("use dhcp"), + 'speedtouch' => N("Alcatel speedtouch usb") . if_($netc->{autodetect}{adsl}{speedtouch}, N(" - detected")), + 'sagem' => N("Sagem (using pppoa) usb") . if_($netc->{autodetect}{adsl}{sagem}, N(" - detected")), if_($::expert, #- avoid clash with strings not translated but still add functionnalities... - 'sagem_dhcp' => N_("Sagem (using dhcp) usb") . if_($netc->{autodetect}{adsl}{sagem}, " - detected"), + 'sagem_dhcp' => N("Sagem (using dhcp) usb") . if_($netc->{autodetect}{adsl}{sagem}, N(" - detected")), ), ); - my $type = $in->ask_from_list_(N("Connect to the Internet"), + my $type = $in->ask_from_list(N("Connect to the Internet"), N("The most common way to connect with adsl is pppoe. Some connections use pptp, a few use dhcp. If you don't know, choose 'use pppoe'"), |