diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-21 16:49:26 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-21 16:49:26 +0000 |
commit | df5f254913297d2f80a74af67389e23867d6d3c0 (patch) | |
tree | fdf3f2118c660c3fcab0acda4719e119eaf63fd2 /perl-install | |
parent | 9fa2bfdf385d361caa10b5f57e9a17c7dba9ee5d (diff) | |
download | drakx-df5f254913297d2f80a74af67389e23867d6d3c0.tar drakx-df5f254913297d2f80a74af67389e23867d6d3c0.tar.gz drakx-df5f254913297d2f80a74af67389e23867d6d3c0.tar.bz2 drakx-df5f254913297d2f80a74af67389e23867d6d3c0.tar.xz drakx-df5f254913297d2f80a74af67389e23867d6d3c0.zip |
do not gratuitously waste space
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index da55eb1ee..ead8496fe 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -154,7 +154,7 @@ If you don't want to use the auto detection, deselect the checkbox. $conf{$type} and do { $in->isa('interactive::gtk') and do { #-PO here, "forward" is the standard gtk+ button for "next"; check what is displayed in your language - $in->ask_okcancel(N("Network Configuration Wizard"), N("\n\n\nWe are now going to configure the %s connection.\n\n\nPress \"Forward\" to continue.", translate($type)), 1) or goto step_2; + $in->ask_okcancel(N("Network Configuration Wizard"), N("We are now going to configure the %s connection.\n\n\nPress \"Forward\" to continue.", translate($type)), 1) or goto step_2; &{$net_conf_callbacks{$type}} or goto step_2; $netconnect::need_restart_network = 1 if $type =~/lan|cable/; } |