diff options
author | damien <damien@mandriva.com> | 2001-08-08 17:24:43 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-08-08 17:24:43 +0000 |
commit | fd9b67fdac0335af36788f19084d87be8a2f087c (patch) | |
tree | d6608aabd7b358ceac0da51d8f324ea9b5237441 /perl-install | |
parent | b7b8f8fc3b3b95817c77f376065b8ce705f8d4d9 (diff) | |
download | drakx-backup-do-not-use-fd9b67fdac0335af36788f19084d87be8a2f087c.tar drakx-backup-do-not-use-fd9b67fdac0335af36788f19084d87be8a2f087c.tar.gz drakx-backup-do-not-use-fd9b67fdac0335af36788f19084d87be8a2f087c.tar.bz2 drakx-backup-do-not-use-fd9b67fdac0335af36788f19084d87be8a2f087c.tar.xz drakx-backup-do-not-use-fd9b67fdac0335af36788f19084d87be8a2f087c.zip |
removed splash screen during install
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/netconnect.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 1ba17a3e2..b9ac8f677 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -85,7 +85,7 @@ sub detect { sub pre_func { my ($text) = @_; $::Wizard_no_previous=1; - if ($in->isa('interactive_gtk')) { + if ($in->isa('interactive_gtk') && $::isStandalone) { $::Wizard_splash=1; require my_gtk; my_gtk->import(qw(:wrappers)); @@ -93,7 +93,7 @@ sub pre_func { gtkadd($W->{window}, gtkpack_(new Gtk::VBox(0, 0), 1, write_on_pixmap(gtkpng ("draknet_step"), - 20,190, + 20,200, _("We are now going to configure the %s connection.",_($text)), _("Press next to continue."), ), @@ -104,7 +104,7 @@ sub pre_func { $::Wizard_splash=0; } else { #- for i18n : %s is the type of connection of the list: (modem, isdn, adsl, cable, local network); - $in->ask_okcancel(_("Network Configuration Wizard"), _("\n\n\nWe are now going to configure the %s connection.\n\n\nPress next to begin.",_($_[0])), 1); + $in->ask_okcancel(_("Network Configuration Wizard"), _("\n\n\nWe are now going to configure the %s connection.\n\n\nPress OK to continue.",_($_[0])), 1); } undef $::Wizard_no_previous; } |