summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-wizard.pl
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-06-21 18:58:24 +0000
committerKarl Berry <karl@freefriends.org>2010-06-21 18:58:24 +0000
commit8da1d72196b845ee41bcb18ac6f72e3552b280db (patch)
treec49879903ea031dc2f6e6050fa0e18038adf1477 /Master/tlpkg/installer/install-menu-wizard.pl
parent170a532d50aa247d71effcbe642d75c7d3e14d66 (diff)
* install/install-menu-perltk.pl,
* install/install-menu-wizard.pl: gettext no longer supports (x ? y : z), despite the current examples at the end of: http://www.gnu.org/software/gettext/manual/html_node/General-Problems.html. Rewrite as (x) : y : z. No actual string changes. * tl-update-messages: revert to using current gettext. git-svn-id: svn://tug.org/texlive/trunk@19095 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/install-menu-wizard.pl')
-rw-r--r--Master/tlpkg/installer/install-menu-wizard.pl9
1 files changed, 7 insertions, 2 deletions
diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl
index 252da1f3e9c..8e92cf77e0e 100644
--- a/Master/tlpkg/installer/install-menu-wizard.pl
+++ b/Master/tlpkg/installer/install-menu-wizard.pl
@@ -177,7 +177,13 @@ sub reset_start {
$counter->configure(-text => "1/5");
$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\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.")), -justify => "left");
+ 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."),
+ -justify => "left");
$inf->place(-x => 0, -y => 100);
$nxt->configure(-text => __("Next >") , -command => \&ask_path );
@@ -483,4 +489,3 @@ __END__
### indent-tabs-mode: nil
### End:
# vim:set tabstop=2 expandtab: #
-