diff options
author | Norbert Preining <preining@logic.at> | 2010-07-05 17:11:14 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2010-07-05 17:11:14 +0000 |
commit | 5ff8f96c8ab3bd3aeb8fed8d512c57134fb2a6cc (patch) | |
tree | 748bef74054e24b85cb09643a9215940cf0e120d /Master/tlpkg/installer | |
parent | bf39620045c7b4dfbb61f94c0a93c8a3bc97582b (diff) |
add missing parenthesis around ? : expr to get correct strings
git-svn-id: svn://tug.org/texlive/trunk@19249 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer')
-rw-r--r-- | Master/tlpkg/installer/install-menu-wizard.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl index 38eb81a7dbc..5fb7cfdb09b 100644 --- a/Master/tlpkg/installer/install-menu-wizard.pl +++ b/Master/tlpkg/installer/install-menu-wizard.pl @@ -182,9 +182,9 @@ sub reset_start { 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\nFor an advanced, customizable installation, please consult\nthe web pages or installation guide.", $TeXLive::TLConfig::ReleaseYear) . "\n" - . (win32()) - ? __("Or use install-tl-advanced.bat") - : __("Or use the argument --gui perltk to install-tl."), + . ( (win32()) + ? __("Or use install-tl-advanced.bat") + : __("Or use the argument --gui perltk to install-tl.") ), -justify => "left"); $inf->place(-x => 0, -y => 100); |