diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2012-06-01 14:25:00 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2012-06-01 14:25:00 +0000 |
commit | 9dea90b133aaee6e92366282ea0a39585a7a80a6 (patch) | |
tree | fc9f842a98dc691d51d65aedb72a6fa6c1ee843a /Master/tlpkg/installer | |
parent | 4c2ca72c831ae08bbc0fdf1359e86ccec58ecec6 (diff) |
Eliminate surplus virus scanner warning
git-svn-id: svn://tug.org/texlive/trunk@26774 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer')
-rw-r--r-- | Master/tlpkg/installer/install-menu-wizard.pl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl index a3eaff1b2f6..563f1bb02b2 100644 --- a/Master/tlpkg/installer/install-menu-wizard.pl +++ b/Master/tlpkg/installer/install-menu-wizard.pl @@ -187,11 +187,13 @@ sub reset_start { $prv->placeForget; my $inf = $fmain->Label( - -text => __("Welcome to the installation of TeX Live %s\nhttp://tug.org/texlive\n\nThis wizard will guide you through the installation.\n\nBest to turn off your virus scanner during installation.\n\nFor an advanced, customizable installation, please consult\nthe web pages or installation guide.", $TeXLive::TLConfig::ReleaseYear) + -text => __("Welcome to the installation of TeX Live %s\nhttp://tug.org/texlive\n\nThis wizard will guide you through the installation.", $TeXLive::TLConfig::ReleaseYear) + . ( (win32()) ? "\n\n" . "Best turn off your virusscanner during installation." : "" ) + . "\n\n" + . "For an advanced, customizable installation, please consult\nthe web pages or installation guide." . "\n" . ( (win32()) - ? __("Or use install-tl-advanced.bat.") . "\n\n" - . __('Best to turn off your virus scanner during installation.') + ? __("Or use install-tl-advanced.bat.") : __("Or specify --gui expert to install-tl.") ), -justify => "left"); $inf->place(-x => 0, -y => 50); |