summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2024-05-03 03:01:15 +0000
committerNorbert Preining <norbert@preining.info>2024-05-03 03:01:15 +0000
commit5fc635e606281a4f66bbc31bfb827fee53a21f96 (patch)
tree9098d3cf064670ee534c4170ecdbdd90355d8932 /systems
parent68c5442089b7c2e61ee14fc3efed490e291a244a (diff)
CTAN sync 202405030301
Diffstat (limited to 'systems')
-rwxr-xr-xsystems/texlive/tlnet/install-tl34
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm5
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm13
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl4
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb100
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.md52
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha5122
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc16
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.xzbin2566056 -> 2568812 bytes
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/cs.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/da.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/de.po30
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/es.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/fr.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/it.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/ja.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/messages.pot10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/nl.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/pl.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/pt_BR.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/ru.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sk.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sl.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sr.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/uk.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/vi.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/zh_CN.po10
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/zh_TW.po10
28 files changed, 203 insertions, 183 deletions
diff --git a/systems/texlive/tlnet/install-tl b/systems/texlive/tlnet/install-tl
index 657fec072e..f4861e4f4d 100755
--- a/systems/texlive/tlnet/install-tl
+++ b/systems/texlive/tlnet/install-tl
@@ -1,5 +1,5 @@
#!/usr/bin/env perl
-# $Id: install-tl 70922 2024-04-11 20:44:12Z karl $
+# $Id: install-tl 71157 2024-05-02 20:29:00Z karl $
# Copyright 2007-2024
# Reinhard Kotucha, Norbert Preining, Karl Berry, Siep Kroonenberg.
# This file is licensed under the GNU General Public License version 2
@@ -12,7 +12,7 @@
use strict; use warnings;
-my $svnrev = '$Revision: 70922 $';
+my $svnrev = '$Revision: 71157 $';
$svnrev =~ m/: ([0-9]+) /;
$::installerrevision = ($1 ? $1 : 'unknown');
@@ -361,16 +361,13 @@ my %profiledata;
if (-r "installation.profile"
&& $opt_interaction
&& !exists $ENV{"TEXLIVE_INSTALL_NO_RESUME"}) {
- if ($from_ext_gui) { # prepare for dialog interaction
- print "mess_yesno\n";
- }
+ print "mess_yesno\n" if $from_ext_gui; # prepare for dialog interaction
my $pwd = Cwd::getcwd();
print "ABORTED TL INSTALLATION FOUND: installation.profile (in $pwd)\n";
- print
- "Do you want to continue with the exact same settings as before (y/N): ";
+ print "Do you want to continue with the same settings as before (y/N): ";
print "\nendmess\n" if $from_ext_gui;
my $answer = <STDIN>;
- if ($answer =~ m/^y(es)?$/i) {
+ if ($answer && $answer =~ m/^y(es)?$/i) {
$opt_profile = "installation.profile";
}
}
@@ -601,6 +598,25 @@ if (!$opt_custom_bin && (platform() eq "i386-cygwin")) {
}
}
}
+#
+# More Cygwin: if the user doesn't have Cygwin's wget or curl,
+# it's unlikely anything good will happen.
+if ($^O eq 'cygwin'
+ && (! -x "/usr/bin/curl.exe" && ! -x "/usr/bin/wget.exe")) {
+ print "mess_yesno\n" if $from_ext_gui; # prepare for dialog interaction
+ print <<END_CYGWIN_WGET_MSG;
+It seems you are using Cygwin and have not installed Cygwin's
+curl or wget. See the TeX Live Guide information on Cygwin for required
+and recommended packages:
+ https://tug.org/texlive/doc/texlive-en/texlive-en.html#cygwin
+END_CYGWIN_WGET_MSG
+ print "Continue anyway (unlikely to work) (y/N): ";
+ print "\nendmess\n" if $from_ext_gui;
+ my $answer = <STDIN>;
+ if (! $answer || $answer !~ m/^y(es)?$/i) {
+ tldie("$0: Ok, goodbye. Please install the needed packages.\n");
+ }
+}
# determine which media are available, don't put NET here, it is
# assumed to be available at any time
@@ -3582,7 +3598,7 @@ This script and its documentation were written for the TeX Live
distribution (L<https://tug.org/texlive>) and both are licensed under the
GNU General Public License Version 2 or later.
-$Id: install-tl 70922 2024-04-11 20:44:12Z karl $
+$Id: install-tl 71157 2024-05-02 20:29:00Z karl $
=cut
# to remake HTML version: pod2html --cachedir=/tmp install-tl >/tmp/itl.html
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm
index f540fabaca..5d0a4d7005 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLDownload.pm
@@ -1,4 +1,4 @@
-# $Id: TLDownload.pm 69646 2024-01-31 18:17:20Z karl $
+# $Id: TLDownload.pm 71152 2024-05-02 17:03:11Z karl $
# TeXLive::TLDownload.pm - module for abstracting the download modes
# Copyright 2009-2024 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -11,7 +11,7 @@ package TeXLive::TLDownload;
use TeXLive::TLUtils;
use TeXLive::TLConfig;
-my $svnrev = '$Revision: 69646 $';
+my $svnrev = '$Revision: 71152 $';
my $_modulerevision;
if ($svnrev =~ m/: ([0-9]+) /) {
$_modulerevision = $1;
@@ -60,6 +60,7 @@ sub reinit {
# differing case-insensitive like foo=1 and FOO=2. Even on systems
# that have case-sensitive environments, and even about variables that
# have nothing whatsoever to do with LWP (like foo).
+ # https://github.com/libwww-perl/libwww-perl/issues/372
#
# So, only pass env_proxy=>1 when creating the UserAgent if there are
# in fact *_proxy variables (case-insensitive, just in case) set in
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
index 0b73214017..369aa46068 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
@@ -1,4 +1,4 @@
-# $Id: TLPDB.pm 71122 2024-04-29 17:34:15Z karl $
+# $Id: TLPDB.pm 71157 2024-05-02 20:29:00Z karl $
# TeXLive::TLPDB.pm - tlpdb plain text database files.
# Copyright 2007-2024 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -7,7 +7,7 @@
use strict; use warnings;
package TeXLive::TLPDB;
-my $svnrev = '$Revision: 71122 $';
+my $svnrev = '$Revision: 71157 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -369,12 +369,13 @@ More info: https://tug.org/texlive/acquire.html
END_DOWNLOAD_FAILURE_MSG
# If they have the Cygwin wget.exe, some other problem.
- if ($^O eq 'cygwin' && -x "/usr/bin/wget.exe") {
+ if ($^O eq 'cygwin'
+ && (! -x "/usr/bin/curl.exe" && ! -x "/usr/bin/wget.exe")) {
$diemsg .= <<END_CYGWIN_WGET_MSG;
-It seems you are using Cygwin and haven't installed Cygwin's wget.
-See the TeX Live Guide information on Cygwin for required and
-recommended packages:
+It seems you are using Cygwin and have not installed Cygwin's
+curl or wget. See the TeX Live Guide information on Cygwin for required
+and recommended packages:
https://tug.org/texlive/doc/texlive-en/texlive-en.html#cygwin
END_CYGWIN_WGET_MSG
}
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index e45ccfd0c4..33408d6f09 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -148,7 +148,6 @@ $mirrors = {
'Russia' => {
'https://ctan.altspu.ru/' => 1,
'https://mirror.macomnet.net/pub/CTAN/' => 1,
- 'https://mirror.truenetwork.ru/CTAN/' => 1,
},
'Spain' => {
'https://ctan.fisiquimicamente.com/' => 1,
@@ -179,6 +178,9 @@ $mirrors = {
'https://mirror.quantum5.ca/CTAN/' => 1,
'https://muug.ca/mirror/ctan/' => 1,
},
+ 'Costa Rica' => {
+ 'https://mirrors.ucr.ac.cr/CTAN/' => 1,
+ },
'USA' => {
'http://mirrors.ibiblio.org/pub/mirrors/CTAN/' => 1,
'https://ctan.math.illinois.edu/' => 1,
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index 69f02a6d3e..b2d34a84a7 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
@@ -26,7 +26,7 @@ depend container_split_src_files/1
depend frozen/0
depend minrelease/2016
depend release/2024
-depend revision/71149
+depend revision/71159
name 00texlive.image
category TLCore
@@ -4891,7 +4891,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd
name 00texlive.installer
category TLCore
-revision 71149
+revision 71158
shortdesc TeX Live standalone installer package
longdesc This package defines the files to go into the installer
longdesc archives (install-tl-unx.tar.gz, install-tl.zip) built by the
@@ -35798,16 +35798,16 @@ catalogue-topics book-pub class doc-templ expl3
name beebe
category Package
-revision 71082
+revision 71158
catalogue biblio
shortdesc A collection of bibliographies
relocated 1
longdesc A collection of BibTeX bibliographies on TeX-related topics
longdesc (including, for example, spell-checking and SGML). Each
longdesc includes a LaTeX wrapper file to typeset the bibliography.
-containersize 922772
-containerchecksum d38a175f2e09b445ae84ba138e967bd7fa48bb126e982969e3634282fefe2d6053a63e9e1fa7d02920476045c8b22b5f18ce3c23d6dc16bf1fb1804b6d06bd16
-runfiles size=2268
+containersize 922960
+containerchecksum e4ad0f64a1d7e7db8aa5331581e394f8c58977c41475b6d71220c712ea53152905aeee883866e2e2040577695ca9b6969052dc35f9d608efe7b5029f18d4d8c1
+runfiles size=2269
RELOC/bibtex/bib/beebe/epodd.bib
RELOC/bibtex/bib/beebe/font.bib
RELOC/bibtex/bib/beebe/printing-history.bib
@@ -106577,7 +106577,7 @@ catalogue-topics notes editorial
name easybook
category Package
-revision 71125
+revision 71154
shortdesc Easily typesetting Chinese theses or books
relocated 1
longdesc easybook is a pure academic template created based on the
@@ -106588,16 +106588,16 @@ longdesc providing multiple commands and interfaces allows users to
longdesc easily customize the thesis template. Its basic macro package
longdesc easybase can also be used with CTeX and standard document
longdesc classes.
-containersize 17852
-containerchecksum ea64568c7e8ec8978a66554c106c3abcb17139130c98dd2bc0cb16fd5bf908becc3268e1113b2909fccf46f072abd3fdcdc8c7905e71263cd8e5e819e0ba7311
-doccontainersize 667248
-doccontainerchecksum 054c4d7d1b86da952cee06d59f8ffe26abd4ec90df7059f8b720713b2af002d379651edad6a6b508b1cf43fe387280bddf8f4df1978ca90cac07e87a18abeb62
+containersize 17872
+containerchecksum 7babda812fce063279178913429e46090c3ccbd02fcc835dc9132885f2dfe6e74dd8b87fffe62904cf20de99e7cae2fefc6a1e30b8deeaf477a4726d3a43cab0
+doccontainersize 667276
+doccontainerchecksum df5a74be258a6c78df2cdc86b1d70aa13815ac28c1bfd027cd6ae8103e8d176786f1ec4162f7331ee6686174389737f4b4e131e8ca3b83c10af2e714fc6b86ab
docfiles size=183
RELOC/doc/latex/easybook/README.md details="Readme"
RELOC/doc/latex/easybook/easybook.pdf details="Package documentation" language="zh"
RELOC/doc/latex/easybook/easybook.tex
-srccontainersize 17740
-srccontainerchecksum 672291750160a865e187ff525f567050d340866dfe9dc09e7d2be3451901d297263ecb9d6b13af00ee416192d9f682012d2fd59d6ae8ae2a152f916a39c7b467
+srccontainersize 17748
+srccontainerchecksum dc40bcba2b6c31235bf931d01ddb24134f04d1538742f80fc495d47c3e2ed37a1b0fa5e85074b4e5c527b704b91b858eeae9fa40634214f2ce527b79dd5e2a22
srcfiles size=22
RELOC/source/latex/easybook/easybook.dtx
RELOC/source/latex/easybook/easybook.ins
@@ -106610,7 +106610,7 @@ catalogue-contact-repository https://gitee.com/texno3/easybook
catalogue-ctan /macros/latex/contrib/easybook
catalogue-license lppl1.3c
catalogue-topics book-pub dissertation class doc-templ chinese expl3
-catalogue-version 2024bc
+catalogue-version 2024be
name easydtx
category Package
@@ -178779,7 +178779,7 @@ catalogue-version 3.35
name kpfonts-otf
category Package
-revision 69636
+revision 71153
shortdesc OTF version of the Kp-fonts
relocated 1
longdesc This bundle provides OpenType versions of the Type1 Kp-fonts
@@ -178793,11 +178793,11 @@ longdesc st), ancient long-s and a long-tailed capital Q are available
longdesc via font features. Math fonts cover all usual symbols including
longdesc AMS'; a full list of available symbols is provided, see the
longdesc 'List of glyphs'.
-containersize 1115540
-containerchecksum 5c90bbd34da4ff9b610e5d1d407787cf658cc1a649c42c43d64bd374d04f43038956a5dcd159efbe912fb952d5a11370388870c87bf0a4094f19c019965a173b
-doccontainersize 2035528
-doccontainerchecksum 677dc5c94ab24a047028b403db43a0493acb4bf8644ff6b63cbdfba12f1de11541eaca6836290c4ed822c1800dba299e2b5afb9f5455164db038c01e7ef0f17a
-docfiles size=565
+containersize 1120524
+containerchecksum 1f765652903691c14fbf984bd791628baf41f6fa60969c3b7335d072e5c9a765beb9029cf45c272e395d9dd996d72c18c7c801f092b1d0cd3de0ca483911d041
+doccontainersize 2046356
+doccontainerchecksum 66f6e8db7c002ec8a7d3b5519c7f7cbf2c90987ef403468fad00abc248adfe1a44046d06e4c9551b91c0bd735bc6fb674b7cfd712368e3b177d75fc72b57b6df
+docfiles size=566
RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.ltx
RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.pdf details="Package documentation (English)" language="en"
RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-French.ltx
@@ -178805,7 +178805,7 @@ docfiles size=565
RELOC/doc/fonts/kpfonts-otf/README.md details="Readme"
RELOC/doc/fonts/kpfonts-otf/unimath-kpfonts.ltx
RELOC/doc/fonts/kpfonts-otf/unimath-kpfonts.pdf details="List of glyphs"
-runfiles size=838
+runfiles size=845
RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Bold.otf
RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Light.otf
RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Regular.otf
@@ -178840,7 +178840,7 @@ catalogue-also kpfonts
catalogue-ctan /fonts/kpfonts-otf
catalogue-license ofl lppl1.3
catalogue-topics font font-body font-maths font-mono font-otf font-proportional font-sans font-serif font-supp
-catalogue-version 0.62
+catalogue-version 0.63
name ksfh_nat
category Package
@@ -206444,7 +206444,7 @@ catalogue-version 1.3
name luavlna
category Package
-revision 67442
+revision 71156
shortdesc Prevent line breaks after single letter words, units, or academic titles
relocated 1
longdesc In some languages, like Czech or Polish, there should be no
@@ -206460,11 +206460,11 @@ longdesc units. The package supports both plain LuaTeX and LuaLaTeX.
longdesc BTW: "vlna" is the Czech word for "wave" or "curl" and also
longdesc denotes the tilde which, in TeX, is used for "unbreakable
longdesc spaces".
-containersize 9068
-containerchecksum 012bdbcca4062a2f551b28dbbd781c885fbb557f5c1258157db01fff7141c8380341f53a9e58c3f844c022af64a748299efb703de5e37f05acaa0d385b8ab8ed
-doccontainersize 95120
-doccontainerchecksum a785d65816ff637c4c08f6a0ce95e5a65c4121885f6af32b3e68574845adc10886685451cf3fb68cff05b4ab29c792b3c02f793d912e86ace55f2602af6d63e6
-docfiles size=27
+containersize 9164
+containerchecksum 42239e3f975d17137ae3d6319e6d6f1f4f06cf8ae69c06d3e1b959739f2b8965936b4dc01cdae06aa87693dc52ba6da32ae1b075af989866fea99f623de846e9
+doccontainersize 87996
+doccontainerchecksum ae4f6c69799bb30b9ce497e1c2f5252c46579233fa263cfdcd00acb1a4ed0bbe90ce670e95fe778aa1785102d3febd6a85d9f9a3ac5fa102cfce44059ff9e99c
+docfiles size=25
RELOC/doc/luatex/luavlna/README.md details="Readme"
RELOC/doc/luatex/luavlna/luavlna-doc.pdf details="Package documentation"
RELOC/doc/luatex/luavlna/luavlna-doc.tex
@@ -206485,7 +206485,7 @@ catalogue-contact-repository https://github.com/michal-h21/luavlna
catalogue-ctan /macros/luatex/generic/luavlna
catalogue-license lppl1.3
catalogue-topics typesetting czech slovak polish luatex
-catalogue-version 0.1l
+catalogue-version 0.1m
name luaxml
category Package
@@ -267581,7 +267581,7 @@ catalogue-version 0.13c
name ppt-slides
category Package
-revision 69568
+revision 71155
shortdesc Good-looking slide decks a la PowerPoint (PPT)
relocated 1
longdesc This LaTeX package helps you create slide decks as good-looking
@@ -267600,18 +267600,18 @@ depend tikzpagenodes
depend tools
depend varwidth
depend xcolor
-containersize 4116
-containerchecksum 9206d0b59cb501b129ffcca39639593317d2941ba1a982d036296800ce9486bebbf87d0194b43ca811365044a9dc8d27ad59169b2e187d229511db4b08b878f7
-doccontainersize 791428
-doccontainerchecksum 4565f7aadae38518e2e5f68fd9994670a62b492c2e57344cbeaff4a60d601bd95da23f0c5a74c98507f5023d87d24c73199bcda6fbf7cbae6719951debe7ec77
+containersize 4120
+containerchecksum 9abb6f6a878fa10e3a2872248e2e1f83439ceaa44f5e5019629f492bda0b12dac346bd19a3de6c17b545d3eaee7ac5e3106ff3ef1e078b0c7a6e6bccec1267ea
+doccontainersize 791448
+doccontainerchecksum fbc1b0bb51118c3eaafb1344f8803c5409babb2138f5221fc85aa4eea27c98ed71b77fd429a0a291c063dc7f02c9bd1aad33808cb017df53b1a997c41823523c
docfiles size=256
RELOC/doc/latex/ppt-slides/DEPENDS.txt
RELOC/doc/latex/ppt-slides/LICENSE.txt
RELOC/doc/latex/ppt-slides/README.md details="Readme"
RELOC/doc/latex/ppt-slides/ppt-slides.pdf details="Package documentation and example of use"
RELOC/doc/latex/ppt-slides/socrates.jpg
-srccontainersize 6688
-srccontainerchecksum 2a7bf0d2b9229678565ccdce5c8d01fafd07cc5bc3b2000add41e027ecff7a38149bee9bb04d841dfe0e9993e91c0b9456bd5039c2479b775e4710169540bde0
+srccontainersize 6692
+srccontainerchecksum 29051cd8dac11ac45ca5b52d820835ede9ef7473c2a0f620ed00a364a04a89de417e630b5f7812c643c37f676cc552353220f2bded741f921bde44d57905c920
srcfiles size=7
RELOC/source/latex/ppt-slides/ppt-slides.dtx
RELOC/source/latex/ppt-slides/ppt-slides.ins
@@ -267626,7 +267626,7 @@ catalogue-contact-repository https://github.com/yegor256/ppt-slides
catalogue-ctan /macros/latex/contrib/ppt-slides
catalogue-license mit
catalogue-topics presentation
-catalogue-version 0.3.2
+catalogue-version 0.3.3
name pracjourn
category Package
@@ -326444,13 +326444,13 @@ docfiles size=651
name texlive-en
category TLCore
-revision 71042
+revision 71152
shortdesc TeX Live manual (English)
relocated 1
-containersize 272
-containerchecksum 4b4288540e1f445e3798a425a42adca0ba64d3080d6bd3382038ee2f2e45a1b1689ee0c0508ed547b2725d549694363bc5edf07cc67bace5b2a91e487b0676cb
-doccontainersize 1894240
-doccontainerchecksum f58f99d2dc2315629b2a6b1908f31db77394fe7c4757555c2bc0b2a61e75c664759e829fba30a0a8323421ef9375e964d309db91dc72b783751e73ac4d5c1d09
+containersize 276
+containerchecksum ffe4e1677dcb26c104df12d3ebe12a7d1fe810f329d6b5f20c16b865586f1576417cbc8026df061546e6513588b8ec7c907cdcd52e74f05570fda702f3362a03
+doccontainersize 1894416
+doccontainerchecksum 598d8229c0ae50fc4697909b7305ef614e5d3d8a884e5375c87da32b138c071b54dd0766a4a8080fe9863e3793e480c5c89afd8231f795560cbfe718a8bea16b
docfiles size=1634
RELOC/doc/info/tlbuild.info
RELOC/doc/texlive/texlive-en/.dict.pws
@@ -326615,14 +326615,14 @@ docfiles size=748
name texlive-msg-translations
category TLCore
-revision 70662
+revision 71159
shortdesc translations of the TeX Live installer and TeX Live Manager
longdesc This package contains the translated messages of the TeX Live
longdesc installer and TeX Live Manager. For information on creating or
longdesc updating translations, see
longdesc http://tug.org/texlive/doc.html#install-tl-xlate.
-containersize 152076
-containerchecksum 2d2253add2d6b0b333eefabe1d495ff9e5faae21f4d50eefd60402a44d68677fb515ac6bc3ed92755722a712223daac516839bccd2d527e99137e6e3c269b80d
+containersize 152052
+containerchecksum f9e423284208ea71bc3e14138517309b6544cdaefd43cc135b6192ee6db0a435b073bf8dce1103fba641a20b2cf64ef01b482056d48677fa7b3b883f9af1f2d0
runfiles size=377
tlpkg/translations/README
tlpkg/translations/cs.po
@@ -326684,7 +326684,7 @@ docfiles size=376
name texlive-scripts
category TLCore
-revision 71149
+revision 71158
shortdesc TeX Live infrastructure programs
longdesc Includes install-tl, tl-portable, rungs, etc.; not needed for
longdesc tlmgr to run but still ours. Not included in tlcritical.
@@ -326692,10 +326692,10 @@ depend texlive-scripts.ARCH
depend texlive.infra
execute addMap mathpple.map
postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat
-containersize 114152
-containerchecksum 12d7ceb2d4dcd15f1e441c719b801cff9dddd825f4cffdce66b5a7ba1f0d48b02301772bf34af435537c60ddd102eeeef2fe4375d7637610854c25666a84f273
-doccontainersize 434876
-doccontainerchecksum 973555b478538d5dab01f1d84c78b1c11264306637f50a3f67abf5187de4909b6940d88e4725d03efc02055f9bd6d200564e2bb046c1fb6039e6472f9800f011
+containersize 114384
+containerchecksum 6ce30cd588cc15641a0b668e1917d2e59e4e02a99768c1062c555ef632c63f96ea4fa29b8f63aeb7ccae7cc11c1c423d7c2c9b7098c0725c25934477e87b5f02
+doccontainersize 434824
+doccontainerchecksum dd5fa083724294be330aa8c3031c89a2fee04d467a12a8f17f7a158dafe726ce9b021ed4cc873e474ae6267b2f64724c56d7991d49be9d7373c6ba532792b6be
docfiles size=568
doc.html
texmf-dist/doc/man/man1/fmtutil-sys.1
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 8a02a94e76..146568dfa3 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-9488bd9351b0da1e06bf3ecfaedc00e3 texlive.tlpdb
+e4ca8ef6bd70b06c0d2a0248a4cfded1 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 735f1fc875..119f24ae91 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-a9fd2258de11cba5e0af6235cbf9aae98b4ac3cb2a2b3dea5e75604bd8f3e031d3e480be2ac8ece28324461fbeaf5a75ec20a16de553dd3b4e4f7dee37cc088a texlive.tlpdb
+05ca90724b29c79d5c2cc2d96df3bf4479bd858c16469e51e2623f2cfd4dc1a7d8223657c5da291796d8ef59fe1e94f41a1028eb0a63c2e9e39e0b35af0379c9 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index e04fa04cb7..0c84e1e19d 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
@@ -1,11 +1,11 @@
-----BEGIN PGP SIGNATURE-----
-iQEzBAEBCgAdFiEE2PL4YFeoV+QqiBBqTOGHfhlDjHAFAmYy1NMACgkQTOGHfhlD
-jHBkxwgAvt2ZhgOHOVbPX41m4+YP4aAgLns8J/RpMEbXAr3VNWm9Jn0H80JIs5GU
-q4eCpFCTMNTwDQiAo0Ts3rxK43RrcTM+wx3Zg2ZgpIPsBvdPo7QPM0iOZr9br4Vx
-1eHmoHz5RrGW7CCRy8qxWTSMY3PIdhMRQ7SlIuSr2Xu0qrz+thzc0FoTspLWjmXP
-+t06xAorR6YDJT2i07w7hgcPs6bHeR27Y9ZGEZDGmmKP3XEwE4qm2Hc8KEzi/IcD
-hfyPV/Sz4L5jQXTJxFgCdKjrbYsEeUmLV/DAF9Q8sTaQUkZfY6EI3Vqhjr8kjquf
-knYf2iOeMJjJr/snhxSq1GCur37tsA==
-=n2l3
+iQEzBAEBCgAdFiEE2PL4YFeoV+QqiBBqTOGHfhlDjHAFAmY0Jf0ACgkQTOGHfhlD
+jHDBvQf9FZzGb098udfgtKAEOg7FcF7xqDcndsGxrVwnHVZVuMrhIxcyX6cF1/dG
+EiySA1qCMn7pp497eHS+WBtIMt8sxgqvO/uq+MHiPnDcQkg9eNivwfapSW0K0XYs
+btKx+ogknj/jB4OJ8A4ykraw3EHWtILS0/ZSqHWomekGamO33h6MzHQjxNodV3VB
+gmw8onVTxzgyeCHuxehB5FMZQRgrcF7QFHsem6SwUlWdveTeqVjnkdjyEvZbAWPL
+t4+F2wHZqv9TEnfFmlwUs//z71WY41vMcGvMR1ZX0vc4U2LuX/3Wj6FaEabH0jCO
+ooH8PVJ/cmT8/Gm9hNVUfHeqBViUOA==
+=W4ij
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 4c42b217ca..9b25a6d51f 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
Binary files differ
diff --git a/systems/texlive/tlnet/tlpkg/translations/cs.po b/systems/texlive/tlnet/tlpkg/translations/cs.po
index 14fa937c15..dc1a926b60 100644
--- a/systems/texlive/tlnet/tlpkg/translations/cs.po
+++ b/systems/texlive/tlnet/tlpkg/translations/cs.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-03-21 13:54+0100\n"
"Last-Translator: Petr Sojka <sojka@fi.muni.cz>\n"
"Language-Team: Czech <>\n"
@@ -1957,16 +1957,16 @@ msgstr "Podpůrné programy výhradně pro Windows"
msgid "XeTeX and packages"
msgstr "XeTeX a balíky"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Vítejte v TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1975,7 +1975,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/da.po b/systems/texlive/tlnet/tlpkg/translations/da.po
index d2970af6cc..247283cba9 100644
--- a/systems/texlive/tlnet/tlpkg/translations/da.po
+++ b/systems/texlive/tlnet/tlpkg/translations/da.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2021\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2021-05-05 10:13+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -1958,16 +1958,16 @@ msgstr "Programmer, der kun understøttes på Windows"
msgid "XeTeX and packages"
msgstr "XeTeX med pakker"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Velkommen til TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1976,7 +1976,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/de.po b/systems/texlive/tlnet/tlpkg/translations/de.po
index fd44bf0119..52fe74a6c6 100644
--- a/systems/texlive/tlnet/tlpkg/translations/de.po
+++ b/systems/texlive/tlnet/tlpkg/translations/de.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2024-03-16 09:53+0100\n"
"Last-Translator: Uwe Ziegenhagen <ziegenhagen@gmail.com>\n"
"Language-Team: TL German Translation Team <tex-live@tug.org>\n"
@@ -793,8 +793,8 @@ msgstr ""
"Der TeX Live Manager (die Software, die gerade läuft)\n"
"muss aktualisiert werden, bevor weitere Updates eingespielt werden können.\n"
"\n"
-"Bitte tun sie dies durch das Klicken des \"Aktualisiere den TeX Live "
-"Manager\" Buttons,\n"
+"Bitte tun sie dies durch das Klicken des \"Aktualisiere den TeX Live Manager"
+"\" Buttons,\n"
"nachdem Sie diesen Dialog hier geschlossen haben.\n"
"\n"
"Nach dem Update wird der TeX Live Manager beendet.\n"
@@ -1949,16 +1949,16 @@ msgstr "Zusatzprogramme (nur-Windows)"
msgid "XeTeX and packages"
msgstr "XeTeX und XeTeX-Pakete"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Willkommen bei TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr "Siehe %s/index.html für Links zur Dokumentation.\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1973,7 +1973,7 @@ msgstr ""
"beitreten.\n"
"Die Liste der Gruppen finden Sie unter https://tug.org/usergroups.html.\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
@@ -2850,8 +2850,8 @@ msgstr ""
#~ "Then you can restart the program for further updates."
#~ msgstr ""
#~ "Aktualisierungen des TeX Live Managers stehen bereit.\n"
-#~ "Installation und Aktualisierungen anderer Pakete nur mit der "
-#~ "\"erzwingen\" Option möglich.\n"
+#~ "Installation und Aktualisierungen anderer Pakete nur mit der \"erzwingen"
+#~ "\" Option möglich.\n"
#~ "Bitte drücken Sie \"Aktualisieren aller Pakete\".\n"
#~ "Das Programm beendet sich nach der Aktualisierung.\n"
#~ "Danach können Sie das Programm neu starten für weitere Aktualisierungen."
@@ -2960,8 +2960,8 @@ msgstr ""
#~ msgstr ""
#~ "Die Datenbank der aktuellen Installationsquelle wurde nicht geladen.\n"
#~ "\n"
-#~ "Bitte durch betätigen der \"Lade\"- (und gegebenenfalls zuvor der "
-#~ "\"Ändern\"-) Schaltfläche nachholen."
+#~ "Bitte durch betätigen der \"Lade\"- (und gegebenenfalls zuvor der \"Ändern"
+#~ "\"-) Schaltfläche nachholen."
#~ msgid "Updating packages"
#~ msgstr "Aktualisieren von Paketen"
@@ -2989,8 +2989,8 @@ msgstr ""
#~ "Your installation is set up to look on the disk for updates.\n"
#~ "\n"
#~ "If you want to install from the Internet for this one time only, click on "
-#~ "the \"Change\" button above and select \"Default net package "
-#~ "repository\" (or any other package repository you know to be working).\n"
+#~ "the \"Change\" button above and select \"Default net package repository"
+#~ "\" (or any other package repository you know to be working).\n"
#~ "\n"
#~ "If you want to change it permanently, go to the \"Configuration\" Tab and "
#~ "change the default package repository."
@@ -3018,8 +3018,8 @@ msgstr ""
#~ "Then you can restart the program for further updates."
#~ msgstr ""
#~ "Aktualisierungen des TeX Live Managers stehen bereit.\n"
-#~ "Installation und Aktualisierungen anderer Pakete nur mit der "
-#~ "\"erzwingen\" Option möglich.\n"
+#~ "Installation und Aktualisierungen anderer Pakete nur mit der \"erzwingen"
+#~ "\" Option möglich.\n"
#~ "Bitte gehen Sie zur Aktualisierungsseite und drücken Sie \"Aktualisieren "
#~ "aller Pakete\".\n"
#~ "Das Programm beendet sich nach der Aktualisierung.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/es.po b/systems/texlive/tlnet/tlpkg/translations/es.po
index 4af638504a..34669cf935 100644
--- a/systems/texlive/tlnet/tlpkg/translations/es.po
+++ b/systems/texlive/tlnet/tlpkg/translations/es.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2019-03-30 17:58-0400\n"
"Last-Translator: linguafalsa <linguafalsa@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1960,16 +1960,16 @@ msgstr "Programas de respaldo solamente para Windows"
msgid "XeTeX and packages"
msgstr "XeTeX y paquetes"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "¡Bienvenido a Tex Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1978,7 +1978,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/fr.po b/systems/texlive/tlnet/tlpkg/translations/fr.po
index 0e51cada15..764d21fd6a 100644
--- a/systems/texlive/tlnet/tlpkg/translations/fr.po
+++ b/systems/texlive/tlnet/tlpkg/translations/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2024-02-22 22:35+0100\n"
"Last-Translator: Denis Bitouzé <denis.bitouze@univ-littoral.fr>\n"
"Language-Team: French <kde-i18n-doc@kde.org>\n"
@@ -1966,16 +1966,16 @@ msgstr "Programmes pour le support de Windows seulement"
msgid "XeTeX and packages"
msgstr "XeTeX et packages associés"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Bienvenue sous TeX Live !"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr "Voir %s/index.html pour les liens vers la documentation.\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1992,7 +1992,7 @@ msgstr ""
".La liste des groupes est disponible sur le Web à l'adresse https://tug.org/"
"usergroups.html.\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/it.po b/systems/texlive/tlnet/tlpkg/translations/it.po
index c8509ac510..9974a593c6 100644
--- a/systems/texlive/tlnet/tlpkg/translations/it.po
+++ b/systems/texlive/tlnet/tlpkg/translations/it.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tex Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2021-03-22 06:20+0100\n"
"Last-Translator: Marco Pallante\n"
"Language-Team: <>\n"
@@ -1956,16 +1956,16 @@ msgstr "Programmi di supporto solo per Windows"
msgid "XeTeX and packages"
msgstr "XeTeX e pacchetti"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Benvenuto in TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1974,7 +1974,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/ja.po b/systems/texlive/tlnet/tlpkg/translations/ja.po
index d9075366ea..46968c6927 100644
--- a/systems/texlive/tlnet/tlpkg/translations/ja.po
+++ b/systems/texlive/tlnet/tlpkg/translations/ja.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2024-02-04 15:32+0900\n"
"Last-Translator: Takuto Asakura <tkt.asakura@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1955,16 +1955,16 @@ msgstr "Windows専用プログラム"
msgid "XeTeX and packages"
msgstr "XeTeXとパッケージ"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "TeX Liveへようこそ!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr "ドキュメントの一覧は%s/index.htmlをご覧ください。\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1978,7 +1978,7 @@ msgstr ""
"なTeXユーザ会に入会することをご検討ください。TeXユーザ会の一覧はhttps://tug."
"org/usergroups.htmlでご確認いただけます。\n"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/messages.pot b/systems/texlive/tlnet/tlpkg/translations/messages.pot
index 55f7e3ccb4..c5394c16fe 100644
--- a/systems/texlive/tlnet/tlpkg/translations/messages.pot
+++ b/systems/texlive/tlnet/tlpkg/translations/messages.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2024\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1895,16 +1895,16 @@ msgstr ""
msgid "XeTeX and packages"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1913,7 +1913,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/nl.po b/systems/texlive/tlnet/tlpkg/translations/nl.po
index 841eb37442..a45bc061e2 100644
--- a/systems/texlive/tlnet/tlpkg/translations/nl.po
+++ b/systems/texlive/tlnet/tlpkg/translations/nl.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2023-03-10 09:39+0100\n"
"Last-Translator: Siep Kroonenberg <siepo@bitmuis.nl>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1954,16 +1954,16 @@ msgstr "Ondersteunende programma's specifiek voor Windows"
msgid "XeTeX and packages"
msgstr "XeTeX en bijbehorende pakketten"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Welkom bij TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1972,7 +1972,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/pl.po b/systems/texlive/tlnet/tlpkg/translations/pl.po
index 675ed19b65..01462772c6 100644
--- a/systems/texlive/tlnet/tlpkg/translations/pl.po
+++ b/systems/texlive/tlnet/tlpkg/translations/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2023\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2023-03-18 16:47+0100\n"
"Last-Translator: Zofia Walczak <zofia.walczak@wmii.uni.lodz.pl>\n"
"Language-Team: \n"
@@ -1960,16 +1960,16 @@ msgstr "Dodatkowe programy tylko dla Windows"
msgid "XeTeX and packages"
msgstr "XeTeX i pakiety"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Witamy w TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1978,7 +1978,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/pt_BR.po b/systems/texlive/tlnet/tlpkg/translations/pt_BR.po
index c0f259488c..434b59b061 100644
--- a/systems/texlive/tlnet/tlpkg/translations/pt_BR.po
+++ b/systems/texlive/tlnet/tlpkg/translations/pt_BR.po
@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-02-21 07:43-0300\n"
"Last-Translator: Paulo Roberto Massa Cereda <cereda.paulo@gmail.com>\n"
"Language-Team: Paulo Roberto Massa Cereda <cereda.paulo@gmail.com>\n"
@@ -1960,16 +1960,16 @@ msgstr "Programas de suporte exclusivos para Windows"
msgid "XeTeX and packages"
msgstr "XeTeX e pacotes"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Bem-vindo ao TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1978,7 +1978,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/ru.po b/systems/texlive/tlnet/tlpkg/translations/ru.po
index 8da94329e8..b14aa6b9cf 100644
--- a/systems/texlive/tlnet/tlpkg/translations/ru.po
+++ b/systems/texlive/tlnet/tlpkg/translations/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-03-23 09:50+0800\n"
"Last-Translator: Vladimir Lomov <irk.translator@yandex.ru>\n"
"Language-Team: Russian <tldoc@tug.org>\n"
@@ -1959,16 +1959,16 @@ msgstr "Вспомогательные программы, только для W
msgid "XeTeX and packages"
msgstr "XeTeX и пакеты"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Вас приветствует TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1977,7 +1977,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/sk.po b/systems/texlive/tlnet/tlpkg/translations/sk.po
index 676a0d93c3..b85f99f369 100644
--- a/systems/texlive/tlnet/tlpkg/translations/sk.po
+++ b/systems/texlive/tlnet/tlpkg/translations/sk.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-03-21 13:59+0100\n"
"Last-Translator: Ján Buša <jan.busa@tuke.sk>\n"
"Language-Team: tex-live@tug.org\n"
@@ -1958,16 +1958,16 @@ msgstr "Podporné programy len pre Windows"
msgid "XeTeX and packages"
msgstr "XeTeX a balíky"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Vitajte vo svete TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1976,7 +1976,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/sl.po b/systems/texlive/tlnet/tlpkg/translations/sl.po
index a6c96d9516..97388b9500 100644
--- a/systems/texlive/tlnet/tlpkg/translations/sl.po
+++ b/systems/texlive/tlnet/tlpkg/translations/sl.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2022-03-21 13:45+0100\n"
"Last-Translator: Mojca Miklavec <mojca.miklavec.lists@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -2044,16 +2044,16 @@ msgstr "Programi za MS Windows"
msgid "XeTeX and packages"
msgstr "XeTeX s paketi"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Dobrodošli v TeX Live-u!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -2062,7 +2062,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/sr.po b/systems/texlive/tlnet/tlpkg/translations/sr.po
index 3143e71f5a..0d380ee72f 100644
--- a/systems/texlive/tlnet/tlpkg/translations/sr.po
+++ b/systems/texlive/tlnet/tlpkg/translations/sr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2019-10-23 02:13+0300\n"
"Last-Translator: Nikola Lečić <nikola.lecic@anthesphoria.net>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1955,16 +1955,16 @@ msgstr "Помоћни програми за Windows"
msgid "XeTeX and packages"
msgstr "XeTeX и повезани пакети"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Добродошли у TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1973,7 +1973,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/uk.po b/systems/texlive/tlnet/tlpkg/translations/uk.po
index 535f886d30..e63a607430 100644
--- a/systems/texlive/tlnet/tlpkg/translations/uk.po
+++ b/systems/texlive/tlnet/tlpkg/translations/uk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2010\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2019-03-23 09:02+0200\n"
"Last-Translator: Andriy Bandura <andriykopanytsia@gmail.com>\n"
"Language-Team: Ukrainian <andriykopanytsia@gmail.com>\n"
@@ -1939,16 +1939,16 @@ msgstr "Додаткові програми лише під Windows"
msgid "XeTeX and packages"
msgstr "XeTeX та пакунки"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Ласкаво просимо до TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1957,7 +1957,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/vi.po b/systems/texlive/tlnet/tlpkg/translations/vi.po
index 613f27e8f5..c51046abb2 100644
--- a/systems/texlive/tlnet/tlpkg/translations/vi.po
+++ b/systems/texlive/tlnet/tlpkg/translations/vi.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2021-03-13 11:02+0100\n"
"Last-Translator: Anh K. Huỳnh <kyanh@viettug.org>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1950,16 +1950,16 @@ msgstr "Các chương trình chỉ cho Windows"
msgid "XeTeX and packages"
msgstr "XeTeX và các gói của nó"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "Chào mừng đến với TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1968,7 +1968,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/zh_CN.po b/systems/texlive/tlnet/tlpkg/translations/zh_CN.po
index 1ede71214d..982e3acf50 100644
--- a/systems/texlive/tlnet/tlpkg/translations/zh_CN.po
+++ b/systems/texlive/tlnet/tlpkg/translations/zh_CN.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2009-09-22 12:54+0800\n"
"Last-Translator: Jiang Jiang <gzjjgod@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1899,16 +1899,16 @@ msgstr ""
msgid "XeTeX and packages"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "欢迎进入 TeX Live 的世界!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1917,7 +1917,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/zh_TW.po b/systems/texlive/tlnet/tlpkg/translations/zh_TW.po
index 5ea77e84e4..39c679a4b0 100644
--- a/systems/texlive/tlnet/tlpkg/translations/zh_TW.po
+++ b/systems/texlive/tlnet/tlpkg/translations/zh_TW.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live translation\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2024-03-06 01:44+0100\n"
+"POT-Creation-Date: 2024-05-03 01:40+0200\n"
"PO-Revision-Date: 2023-03-02 16:26+0800\n"
"Last-Translator: Kung-chih Jen <kaitul@outlook.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1942,16 +1942,16 @@ msgstr "僅 Windows 支援程式"
msgid "XeTeX and packages"
msgstr "XeTeX 和套件"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2866
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2882
msgid "Welcome to TeX Live!"
msgstr "歡迎使用 TeX Live!"
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2867
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2883
#, perl-format
msgid "See %s/index.html for links to documentation.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2869
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2885
msgid ""
"The TeX Live web site (https://tug.org/texlive/) provides all updates\n"
"and corrections. TeX Live is a joint project of the TeX user groups\n"
@@ -1960,7 +1960,7 @@ msgid ""
"at https://tug.org/usergroups.html.\n"
msgstr ""
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2877
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2893
#, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"