summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Chaumette <dchaumette@mandriva.com>2002-09-10 12:41:55 +0000
committerDamien Chaumette <dchaumette@mandriva.com>2002-09-10 12:41:55 +0000
commitebd6186bb96353e5d2dad9a2446cb536c0ec9524 (patch)
tree7b52182ad057cb2a33f5f49a5b8f54456a6154a0
parent5f770b258b90d2518e16f42dd98de81a04bdc15a (diff)
downloaddrakx-ebd6186bb96353e5d2dad9a2446cb536c0ec9524.tar
drakx-ebd6186bb96353e5d2dad9a2446cb536c0ec9524.tar.gz
drakx-ebd6186bb96353e5d2dad9a2446cb536c0ec9524.tar.bz2
drakx-ebd6186bb96353e5d2dad9a2446cb536c0ec9524.tar.xz
drakx-ebd6186bb96353e5d2dad9a2446cb536c0ec9524.zip
- remove variable from a translated chain
-rw-r--r--perl-install/network/isdn.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/isdn.pm b/perl-install/network/isdn.pm
index 5289d9d23..19459dab5 100644
--- a/perl-install/network/isdn.pm
+++ b/perl-install/network/isdn.pm
@@ -197,7 +197,7 @@ sub isdn_ask {
#- ISDN card already detected
if (!$::expert && defined $netc->{autodetect}{isdn}{card_type}) {
- $in->ask_yesorno(_("ISDN Configuration"), _("Found \"$netc->{autodetect}{isdn}{description}\" interface do you want to use it ?"), 1) or return;
+ $in->ask_yesorno(_("ISDN Configuration"), _("Found \"") . $netc->{autodetect}{isdn}{description} . _("\" interface do you want to use it ?"), 1) or return;
$isdn->{$_} = $netc->{autodetect}{isdn}{$_} foreach qw(description vendor id card_type driver type mem io io0 io1 irq firmware);
goto isdn_ask_step_3;
}