diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-17 22:42:13 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-17 22:42:13 +0000 |
commit | 80b77c3992271df7e855cec5697f95029fcf71f1 (patch) | |
tree | 3b0a91b0e4b455ac978ca02a44d117a03eee3bc5 /perl-install | |
parent | 5f9e2083fea54381cea9f32ca1bcaaa1817a5795 (diff) | |
download | drakx-backup-do-not-use-80b77c3992271df7e855cec5697f95029fcf71f1.tar drakx-backup-do-not-use-80b77c3992271df7e855cec5697f95029fcf71f1.tar.gz drakx-backup-do-not-use-80b77c3992271df7e855cec5697f95029fcf71f1.tar.bz2 drakx-backup-do-not-use-80b77c3992271df7e855cec5697f95029fcf71f1.tar.xz drakx-backup-do-not-use-80b77c3992271df7e855cec5697f95029fcf71f1.zip |
fix translation of title: N() needs to be called after
interactive->vnew has been called
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakgw | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index ef635010f..f0d65eeff 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -39,7 +39,6 @@ $::isInstall and die "Not supported during install.\n"; local $_ = join '', @ARGV; $::Wizard_pix_up = "wiz_drakgw.png"; -$::Wizard_title = N("Internet Connection Sharing"); $::direct = /-direct/; @@ -55,6 +54,7 @@ my $cups_conf = "/etc/cups/cupsd.conf"; my $shorewall = network::shorewall::read(); my $in = 'interactive'->vnew('su', 'default'); +$::Wizard_title = N("Internet Connection Sharing"); !$::isEmbedded && $in->isa('interactive::gtk') and $::isWizard = 1; |