diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-17 22:49:14 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-02-17 22:49:14 +0000 |
commit | e2afbf8c73204719b345674a6e212f47e789d806 (patch) | |
tree | 59ad6b3968def17e1fdcb6106095de65199a67b9 /perl-install/standalone | |
parent | 80b77c3992271df7e855cec5697f95029fcf71f1 (diff) | |
download | drakx-e2afbf8c73204719b345674a6e212f47e789d806.tar drakx-e2afbf8c73204719b345674a6e212f47e789d806.tar.gz drakx-e2afbf8c73204719b345674a6e212f47e789d806.tar.bz2 drakx-e2afbf8c73204719b345674a6e212f47e789d806.tar.xz drakx-e2afbf8c73204719b345674a6e212f47e789d806.zip |
fix translation of title by calling N() after interactive->vnew
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakpxe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakpxe b/perl-install/standalone/drakpxe index 723ecceac..6bd222a53 100755 --- a/perl-install/standalone/drakpxe +++ b/perl-install/standalone/drakpxe @@ -33,7 +33,6 @@ use network::netconnect; $::isInstall and die "Not supported during install.\n"; $::Wizard_pix_up = "wiz_drakgw.png"; #- to change ? keep existing one, nobody will see (too late) ;-) -$::Wizard_title = N("PXE Server Configuration"); $::direct = grep { /-direct/ } @ARGV; @@ -54,6 +53,7 @@ my $intf = {}; network::read_all_conf('', $netc, $intf); my $in = 'interactive'->vnew('su', 'default'); +$::Wizard_title = N("PXE Server Configuration"); !$::isEmbedded && $in->isa('interactive::gtk') and $::isWizard = 1; |