diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-21 16:48:57 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-21 16:48:57 +0000 |
commit | eb7a52d533568aaab1b4a3d7f6f65e4e127e553d (patch) | |
tree | 9fa2bbfa5582d59dc0e68df52836685dadb1d06c /perl-install/network/netconnect.pm | |
parent | 1ae1c79439e11f298a43a1af6bf602f89f4c3ca6 (diff) | |
download | drakx-eb7a52d533568aaab1b4a3d7f6f65e4e127e553d.tar drakx-eb7a52d533568aaab1b4a3d7f6f65e4e127e553d.tar.gz drakx-eb7a52d533568aaab1b4a3d7f6f65e4e127e553d.tar.bz2 drakx-eb7a52d533568aaab1b4a3d7f6f65e4e127e553d.tar.xz drakx-eb7a52d533568aaab1b4a3d7f6f65e4e127e553d.zip |
fix final success message:
- fix join usage
- fix gtk frontend detection
Diffstat (limited to 'perl-install/network/netconnect.pm')
-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 7e57ff7e7..90478f62e 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -209,9 +209,9 @@ If you don't want to use the auto detection, deselect the checkbox. $success = ask_connect_now($netc->{internet_cnx_choice}); step_3: - my $m = $success ? join(N("Congratulations, the network and Internet configuration is finished. + my $m = $success ? join('', N("Congratulations, the network and Internet configuration is finished. -"), if_($::isStandalone && $in->isa('interactive_gtk'), +"), if_($::isStandalone && $in->isa('interactive::gtk'), N("After this is done, we recommend that you restart your X environment to avoid any hostname-related problems."))) : N("Problems occured during configuration. Test your connection via net_monitor or mcc. If your connection doesn't work, you might want to relaunch the configuration."); |