diff options
author | Stefan Siegel <siegel@linux-mandrake.com> | 2001-08-18 00:10:21 +0000 |
---|---|---|
committer | Stefan Siegel <siegel@linux-mandrake.com> | 2001-08-18 00:10:21 +0000 |
commit | a9493db8b616de80fd82b0b66562f5d443d9b70f (patch) | |
tree | 848bef9c862224a2567b22c1c3c8d9ba77a005bb /perl-install/network/ethernet.pm | |
parent | 254ddbad5d1bb357fad4595897df9eb954f95f7c (diff) | |
download | drakx-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar drakx-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar.gz drakx-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar.bz2 drakx-a9493db8b616de80fd82b0b66562f5d443d9b70f.tar.xz drakx-a9493db8b616de80fd82b0b66562f5d443d9b70f.zip |
fixed i18n
Diffstat (limited to 'perl-install/network/ethernet.pm')
-rw-r--r-- | perl-install/network/ethernet.pm | 2 |
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; } |