diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-10 20:02:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-10 20:02:18 +0000 |
commit | 7876c5560d45793df3d5791d4c8b56c8281d662c (patch) | |
tree | 6518d70991833fad4707015fbcc7b6dff98faaf6 /perl-install | |
parent | dd1f2c3824f65882f6c4c43a48f214abfea7eda2 (diff) | |
download | drakx-7876c5560d45793df3d5791d4c8b56c8281d662c.tar drakx-7876c5560d45793df3d5791d4c8b56c8281d662c.tar.gz drakx-7876c5560d45793df3d5791d4c8b56c8281d662c.tar.bz2 drakx-7876c5560d45793df3d5791d4c8b56c8281d662c.tar.xz drakx-7876c5560d45793df3d5791d4c8b56c8281d662c.zip |
perl_checker compliance
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/netconnect.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 2ed9eb4c8..f59846571 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -156,7 +156,7 @@ If you don't want to use the auto detection, deselect the checkbox. #-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("We are now going to configure the %s connection.\n\n\nPress \"%s\" to continue.", translate($type), N("Next")), 1) or goto step_2; &{$net_conf_callbacks{$type}} or goto step_2; - $netconnect::need_restart_network = 1 if $type =~/lan|cable/; + $netconnect::need_restart_network = 1 if $type =~ /lan|cable/; } } } @@ -367,7 +367,7 @@ sub stop_internet { run_program::rooted($prefix, $disconnect_file); } -my @connection_types = (N_("modem"), N_(" isdn"), N_(" adsl"), N_(" cable"), N_(" local network")) ; +my @connection_types = (N_("modem"), N_(" isdn"), N_(" adsl"), N_(" cable"), N_(" local network")); #--------------------------------------------- # WONDERFULL pad |