diff options
author | Norbert Preining <preining@logic.at> | 2009-08-31 18:19:49 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-08-31 18:19:49 +0000 |
commit | d159ca7c441b422678933ebf03a76eb5b8abed40 (patch) | |
tree | 6960aeea1c98b730cfefa0a946a6b7461bae6ab9 | |
parent | a81f2111208e907ef38b4f76085899d2e93b0fa0 (diff) |
add a hint how to start the advanced installer to the first wizard page
git-svn-id: svn://tug.org/texlive/trunk@14970 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/installer/install-menu-wizard.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl index 92ffa85e291..f0f9c1c571f 100644 --- a/Master/tlpkg/installer/install-menu-wizard.pl +++ b/Master/tlpkg/installer/install-menu-wizard.pl @@ -179,7 +179,7 @@ sub reset_start { $counter->configure(-text => "1/5"); $prv->placeForget; - my $inf = $fmain->Label(-text => __("Welcome to the installation of TeX Live 2009\nhttp://tug.org/texlive\n\nThis wizard will guide you through the installation.\n\nFor an advanced, customizable installation, please consult\nthe web pages or installation guide."), -justify => "left"); + my $inf = $fmain->Label(-text => __("Welcome to the installation of TeX Live 2009\nhttp://tug.org/texlive\n\nThis wizard will guide you through the installation.\n\nFor an advanced, customizable installation, please consult\nthe web pages or installation guide.") . "\n" . (win32() ? __("Or use install-tl-advanced.bat") : __("Or use the argument --gui perltk to install-tl.")), -justify => "left"); $inf->place(-x => 0, -y => 100); $nxt->configure(-text => __("Next >") , -command => \&ask_path ); |