diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2017-05-18 15:38:13 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2017-05-18 15:38:13 +0000 |
commit | b23fd1e83621e2219b6d556a75b8e357a3708651 (patch) | |
tree | 5786826b52db60449c6b22f5704a731cf14d6543 /Master/install-tl | |
parent | 82b7c1dbd117f698835b5685e3ebc01865314498 (diff) |
Fixes for translation welcome message
git-svn-id: svn://tug.org/texlive/trunk@44402 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 32 |
1 files changed, 11 insertions, 21 deletions
diff --git a/Master/install-tl b/Master/install-tl index 7dcdc33c77f..51553c782f8 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -596,8 +596,7 @@ if ($opt_gui eq 'text' or if ($::env_warns) { print STDERR $::env_warns; } unless ($ENV{"TEXLIVE_INSTALL_NO_WELCOME"}) { foreach my $t (@::welcome_arr) { - printf STDOUT sprintf (shift @$t, @$t); - print STDOUT "\n"; + print STDOUT "$t\n"; } } do_cleanup(); # sets $::LOGFILENAME if not already defined @@ -2367,26 +2366,17 @@ EOF # sub create_welcome { @::welcome_arr = (); - push @::welcome_arr, (["\nWelcome to TeX Live!\n"]); - push @::welcome_arr, [ <<END_WELCOME_GENERIC, -Documentation links: %s/index.html -The TeX Live web site (https://tug.org/texlive/) -contains updates and corrections. - -TeX Live is a joint project of the TeX user groups around the world; -please consider supporting it by joining the group best for you. -The list of groups is on the web at https://tug.org/usergroups.html. -END_WELCOME_GENERIC - $::vars{'TEXDIR'}]; + push @::welcome_arr, __("\nWelcome to TeX Live!\n"); + push @::welcome_arr, __( + "Documentation links: %s/index.html\nThe TeX Live web site (https://tug.org/texlive/)\ncontains updates and corrections.\n\nTeX Live is a joint project of the TeX user groups around the world;\n +please consider supporting it by joining the group best for you.\n +The list of groups is on the web at https://tug.org/usergroups.html.", + $::vars{'TEXDIR'}); if (!win32()) { - push @::welcome_arr, [ <<END_WELCOME_W32, -Add %s/texmf-dist/doc/man to MANPATH. -Add %s/texmf-dist/doc/info to INFOPATH. -Most importantly, add %s/bin/%s -to your PATH for current and future sessions. -END_WELCOME_W32 - $::vars{'TEXDIR'}, $::vars{'TEXDIR'}, $::vars{'TEXDIR'}, - $::vars{'this_platform'}]; + push @::welcome_arr, __( + "Add %s/texmf-dist/doc/man to MANPATH.\nAdd %s/texmf-dist/doc/info to INFOPATH.\nMost importantly, add %s/bin/%s\nto your PATH for current and future sessions.", + $::vars{'TEXDIR'}, $::vars{'TEXDIR'}, $::vars{'TEXDIR'}, + $::vars{'this_platform'}); } } |