summaryrefslogtreecommitdiffstats
path: root/perl-install/network/ethernet.pm
diff options
context:
space:
mode:
authorStefan Siegel <siegel@linux-mandrake.com>2001-08-18 00:10:21 +0000
committerStefan Siegel <siegel@linux-mandrake.com>2001-08-18 00:10:21 +0000
commita9493db8b616de80fd82b0b66562f5d443d9b70f (patch)
tree848bef9c862224a2567b22c1c3c8d9ba77a005bb /perl-install/network/ethernet.pm
parent254ddbad5d1bb357fad4595897df9eb954f95f7c (diff)
downloaddrakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar
drakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar.gz
drakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar.bz2
drakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar.xz
drakx-backup-do-not-use-a9493db8b616de80fd82b0b66562f5d443d9b70f.zip
fixed i18n
Diffstat (limited to 'perl-install/network/ethernet.pm')
-rw-r--r--perl-install/network/ethernet.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm
index 518834848..fcc07b5d0 100644
--- a/perl-install/network/ethernet.pm
+++ b/perl-install/network/ethernet.pm
@@ -176,7 +176,7 @@ sub go_ethernet {
configureNetwork($netc, $intf, $first_time) or return;
if ( $::isStandalone and $netc->{NET_DEVICE}) {
$in->ask_yesorno(_("Network interface"),
- _("I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"), 1) and system("$prefix/sbin/ifdown $netc->{NET_DEVICE}; $prefix/sbin/ifup $netc->{NET_DEVICE}");
+ _("I'm about to restart the network device %s. Do you agree?", $netc->{NET_DEVICE}), 1) and system("$prefix/sbin/ifdown $netc->{NET_DEVICE}; $prefix/sbin/ifup $netc->{NET_DEVICE}");
}
1;
}