summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-10-19 03:01:18 +0000
committerNorbert Preining <norbert@preining.info>2019-10-19 03:01:18 +0000
commit13a044b932f3f8d72791ca88eda528bdcbadcacc (patch)
treed87487092f80c71150850493e583bfdfe3f80e84 /systems/texlive/tlnet
parent05b01edf56c54f79f4d3bd69677b1946f31ef5b8 (diff)
CTAN sync 201910190301
Diffstat (limited to 'systems/texlive/tlnet')
-rwxr-xr-xsystems/texlive/tlnet/install-tl32
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl10
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb150
-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.asc14
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb.xzbin2127648 -> 2125428 bytes
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/cs.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/de.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/es.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/fr.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/it.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/ja.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/messages.pot8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/nl.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/pl.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/pt_BR.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/ru.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sk.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sl.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/sr.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/uk.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/vi.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/zh_CN.po8
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/zh_TW.po8
25 files changed, 157 insertions, 197 deletions
diff --git a/systems/texlive/tlnet/install-tl b/systems/texlive/tlnet/install-tl
index 74be0fd1b9..fe28bd0e58 100755
--- a/systems/texlive/tlnet/install-tl
+++ b/systems/texlive/tlnet/install-tl
@@ -1,5 +1,5 @@
#!/usr/bin/env perl
-# $Id: install-tl 52423 2019-10-17 22:32:30Z karl $
+# $Id: install-tl 52435 2019-10-18 22:03:53Z karl $
# Copyright 2007-2019
# Reinhard Kotucha, Norbert Preining, Karl Berry, Siep Kroonenberg.
# This file is licensed under the GNU General Public License version 2
@@ -8,7 +8,7 @@
# Be careful when changing wording: *every* normal informational message
# output here must be recognized by the long grep in tl-update-tlnet.
-my $svnrev = '$Revision: 52423 $';
+my $svnrev = '$Revision: 52435 $';
$svnrev =~ m/: ([0-9]+) /;
$::installerrevision = ($1 ? $1 : 'unknown');
@@ -452,12 +452,12 @@ if (defined($::opt_lang)) {
}
if ($opt_profile) { # for now, not allowed if in_place
- if (-r $opt_profile) {
+ if (-r $opt_profile && -f $opt_profile) {
info("Automated TeX Live installation using profile: $opt_profile\n");
} else {
$opt_profile = "";
info(
- "Profile $opt_profile not readable, continuing in interactive mode.\n");
+"Profile $opt_profile not readable or not a file, continuing in interactive mode.\n");
}
}
@@ -2150,19 +2150,23 @@ sub do_install_packages {
$localtlpdb->option ("file_assocs", "0");
$localtlpdb->option ("post_code", "0");
if (!install_packages($tlpdb,$media,$localtlpdb,\@what,
- $vars{'tlpdbopt_install_srcfiles'},$vars{'tlpdbopt_install_docfiles'})) {
+ $vars{'tlpdbopt_install_srcfiles'},
+ $vars{'tlpdbopt_install_docfiles'})) {
my $profile_name = "installation.profile";
create_profile($profile_name);
tlwarn("Installation failed.\n");
tlwarn("Rerunning the installer will try to restart the installation.\n");
- tlwarn("Or you can restart by running the installer with:\n");
- my $repostr = ($opt_location ? " --repository $location" : "");
- if (win32()) {
- tlwarn(" install-tl-windows.bat$repostr --profile $profile_name [EXTRA-ARGS]\n"
- ."or\n"
- ." install-tl-advanced.bat$repostr --profile $profile_name [EXTRA-ARGS]\n");
- } else {
- tlwarn(" install-tl$repostr --profile $profile_name [EXTRA-ARGS]\n");
+ if (-r $profile_name) {
+ # only suggest rerunning with the profile if it exists.
+ tlwarn("Or you can restart by running the installer with:\n");
+ my $repostr = ($opt_location ? " --repository $location" : "");
+ if (win32()) {
+ tlwarn(" install-tl-windows.bat$repostr --profile $profile_name [EXTRA-ARGS]\n"
+ ."or\n"
+ ." install-tl-advanced.bat$repostr --profile $profile_name [EXTRA-ARGS]\n");
+ } else {
+ tlwarn(" install-tl$repostr --profile $profile_name [EXTRA-ARGS]\n");
+ }
}
flushlog();
exit(1);
@@ -3179,7 +3183,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 52423 2019-10-17 22:32:30Z karl $
+$Id: install-tl 52435 2019-10-18 22:03:53Z karl $
=cut
# to remake HTML version: pod2html --cachedir=/tmp install-tl >/tmp/itl.html
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index c282386612..ddc3501824 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -32,6 +32,7 @@ $mirrors = {
'https://mirror.unpad.ac.id/ctan/' => 1
},
'Iran' => {
+ 'http://ctan.asis.ai/' => 1,
'http://ctan.yazd.ac.ir/' => 1
},
'Japan' => {
@@ -42,7 +43,6 @@ $mirrors = {
},
'Korea' => {
'http://ftp.harukasan.org/CTAN/' => 1,
- 'http://ftp.kaist.ac.kr/pub/tex-archive/' => 1,
'http://ftp.ktug.org/tex-archive/' => 1,
'http://mirror.navercorp.com/CTAN/' => 1
},
@@ -126,9 +126,6 @@ $mirrors = {
'http://mirrors.up.pt/pub/CTAN/' => 1,
'https://ftp.eq.uc.pt/software/TeX/' => 1
},
- 'Romania' => {
- 'http://mirrors.nxthost.com/ctan/' => 1
- },
'Russia' => {
'http://ctan.altspu.ru/' => 1,
'http://mirror.macomnet.net/pub/CTAN/' => 1,
@@ -183,5 +180,10 @@ $mirrors = {
'New Zealand' => {
'http://mirror.aut.ac.nz/CTAN/' => 1
}
+ },
+ 'South America' => {
+ 'Brazil' => {
+ 'http://linorg.usp.br/CTAN/' => 1
+ }
}
};
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index 92e9c89007..5ef5765d14 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
@@ -26,11 +26,11 @@ depend container_split_src_files/1
depend frozen/0
depend minrelease/2016
depend release/2019
-depend revision/52423
+depend revision/52435
name 00texlive.image
category TLCore
-revision 52401
+revision 52436
shortdesc TeX Live files only in the source repository
longdesc The files here are not copied by the installer and containers
longdesc are not built for them; they exist only in the source
@@ -4049,7 +4049,7 @@ depend opt_w32_multi_user:1
name 00texlive.installer
category TLCore
-revision 52423
+revision 52435
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
@@ -91234,10 +91234,10 @@ binfiles arch=i386-solaris size=1573
name dvisvgm.win32
category TLCore
-revision 51266
+revision 52432
shortdesc win32 files of dvisvgm
-containersize 1418564
-containerchecksum 31825dfaaf13fa7549d5ba6d939b49be2ac12da1883d60cac876c33940b5dbc6ce4182ccade0c7b83f581f2dfd95e05b4b3e99590db60168d3cf7a2542ec9c8e
+containersize 1417196
+containerchecksum b7d34b230d533534da8fb8566f9e8fd5f5ef3634fc9f294292850c5b882219fc0ac221d52254d93c47f57ae753c81bf4960e06f54662ba0c2b4acda8ac1c8a23
binfiles arch=win32 size=1657
bin/win32/dvisvgm.exe
@@ -163134,17 +163134,17 @@ catalogue-version 0.20
name libertinus-type1
category Package
-revision 51261
+revision 52427
shortdesc Support for using Libertinus fonts with LaTeX/pdfLaTeX
relocated 1
longdesc This package provides support for use of Libertinus fonts with
longdesc traditional processing engines (LaTeX with dvips or dvipdfmx,
longdesc or pdfLaTeX).
execute addMap libertinus.map
-containersize 9422684
-containerchecksum 857c1dbab7e44b6cb97df7441c23e9937022c172362ac188f2b8eebe2a137e31d8f1b8edfd27b0896a2f35b7ec6bcb627c7384934bfb92741854f38079ce1e31
-doccontainersize 371684
-doccontainerchecksum f6bc44139c3ba2ce166fa7bd507b08c8b41897b18d198d97aaea8385d7a3180aaca686260a1000459d00fb42caeee79558c46672e4f5eb8bfadea19b93f8c872
+containersize 9420304
+containerchecksum ef51e05eda0197dfdf1094212ff3b8b25934d3a8b1825b145d17183ebdf96da1ceed2b6eee367e170d698c88342f2483285ea9c6f4733bdbed90a751426f5265
+doccontainersize 371728
+doccontainerchecksum 8c7ce0de040a0012a3a15080817e5df153e30c82d3be504df7dde98fe50082307ff5cdafc35640de56eede72fc1daf55c66c8dff0ed182b1a1e4f89920475fbf
docfiles size=102
RELOC/doc/fonts/libertinus-type1/OFL.txt
RELOC/doc/fonts/libertinus-type1/README details="Readme"
@@ -163152,7 +163152,7 @@ docfiles size=102
RELOC/doc/fonts/libertinus-type1/libertinus-samples.tex
RELOC/doc/fonts/libertinus-type1/libertinus-type1.pdf details="Package documentation"
RELOC/doc/fonts/libertinus-type1/libertinus-type1.tex
-runfiles size=5105
+runfiles size=5061
RELOC/fonts/enc/dvips/libertinus-type1/lbts_2knsmf.enc
RELOC/fonts/enc/dvips/libertinus-type1/lbts_2kou35.enc
RELOC/fonts/enc/dvips/libertinus-type1/lbts_2lyulq.enc
@@ -163508,9 +163508,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ts1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ts1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-lgr--base.tfm
@@ -163520,9 +163517,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-lgr--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-lgr.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1--base.tfm
@@ -163530,9 +163524,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-lgr--base.tfm
@@ -163542,9 +163533,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ts1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ts1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-lgr--base.tfm
@@ -163554,9 +163542,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-lgr--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-lgr.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1--base.tfm
@@ -163564,9 +163549,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-lgr--base.tfm
@@ -163576,9 +163558,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ts1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ts1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-lgr--base.tfm
@@ -163588,9 +163567,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-lgr--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-lgr.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1--base.tfm
@@ -163598,9 +163574,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ts1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ts1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-lf-lgr--base.tfm
@@ -163610,9 +163583,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-lf-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-lf-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-lf-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-lf-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-lf-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-lf-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-lf-ts1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-lf-ts1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-sup-lgr--base.tfm
@@ -163622,9 +163592,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-sup-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-sup-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-sup-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-sup-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-sup-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-sup-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-lgr--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-lgr.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ly1--base.tfm
@@ -163632,9 +163599,6 @@ runfiles size=5105
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ot1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t1.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t2a.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t2b.tfm
- RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-t2c.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ts1--base.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Regular-tlf-ts1.tfm
RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-lgr.tfm
@@ -164977,8 +164941,6 @@ runfiles size=5105
RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-TLF.fd
RELOC/tex/latex/libertinus-type1/T1LibertinusSerifDisplay-TOsF.fd
RELOC/tex/latex/libertinus-type1/T1LibertinusSerifInitials-TLF.fd
- RELOC/tex/latex/libertinus-type1/T2ALibertinusMono-Sup.fd
- RELOC/tex/latex/libertinus-type1/T2ALibertinusMono-TLF.fd
RELOC/tex/latex/libertinus-type1/T2ALibertinusSans-LF.fd
RELOC/tex/latex/libertinus-type1/T2ALibertinusSans-OsF.fd
RELOC/tex/latex/libertinus-type1/T2ALibertinusSans-Sup.fd
@@ -164995,8 +164957,6 @@ runfiles size=5105
RELOC/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-TLF.fd
RELOC/tex/latex/libertinus-type1/T2ALibertinusSerifDisplay-TOsF.fd
RELOC/tex/latex/libertinus-type1/T2ALibertinusSerifInitials-TLF.fd
- RELOC/tex/latex/libertinus-type1/T2BLibertinusMono-Sup.fd
- RELOC/tex/latex/libertinus-type1/T2BLibertinusMono-TLF.fd
RELOC/tex/latex/libertinus-type1/T2BLibertinusSans-LF.fd
RELOC/tex/latex/libertinus-type1/T2BLibertinusSans-OsF.fd
RELOC/tex/latex/libertinus-type1/T2BLibertinusSans-Sup.fd
@@ -165013,8 +164973,6 @@ runfiles size=5105
RELOC/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-TLF.fd
RELOC/tex/latex/libertinus-type1/T2BLibertinusSerifDisplay-TOsF.fd
RELOC/tex/latex/libertinus-type1/T2BLibertinusSerifInitials-TLF.fd
- RELOC/tex/latex/libertinus-type1/T2CLibertinusMono-Sup.fd
- RELOC/tex/latex/libertinus-type1/T2CLibertinusMono-TLF.fd
RELOC/tex/latex/libertinus-type1/T2CLibertinusSans-LF.fd
RELOC/tex/latex/libertinus-type1/T2CLibertinusSans-OsF.fd
RELOC/tex/latex/libertinus-type1/T2CLibertinusSans-Sup.fd
@@ -165048,8 +165006,8 @@ runfiles size=5105
RELOC/tex/latex/libertinus-type1/libertinus-type1.sty
catalogue-also libertinus-fonts libertinus-otf
catalogue-ctan /fonts/libertinus-type1
-catalogue-date 2019-05-29 20:05:20 +0200
-catalogue-license gpl2lpplofl
+catalogue-date 2019-10-18 17:21:29 +0200
+catalogue-license gpl2ofllppl
catalogue-topics font font-body font-type1 font-serif font-sans font-proportional font-mono font-t1enc font-supp
name libertinust1math
@@ -165797,23 +165755,23 @@ catalogue-topics font font-type1 font-otf
name librefranklin
category Package
-revision 52363
+revision 52436
shortdesc LaTeX support for the Libre-Franklin family of fonts
relocated 1
longdesc Libre Franklin is an interpretation and expansion based on the
longdesc 1912 Morris Fuller Benton's classic, designed by Pablo
longdesc Impallari, Rodrigo Fuenzalida and Nhung Nguyen.
execute addMap LibreFranklin.map
-containersize 2997436
-containerchecksum 4a258f30ad74b965b0fef4b4c77dd78e9671a2bc22d06e73d2b27954872a50e0a82547ab8fe81f4bdb0127722eed9f8ce178d7973211454e5cb6dce75ee09dbb
+containersize 2997080
+containerchecksum 565a2a3d05a9f22f5ed1ffdc5d91f6793584317e34b999291210bc87bf7c0b001a7a01458fe95bc69d793bc4fc001e07339df4a46e3ca14311d0fc49ff95805e
doccontainersize 31688
-doccontainerchecksum 553531afe6ecc96b3a2abd24a86b1a0bf21c0f321ca7963ebac8bb2ac9fe6f16b025e129fc592a890bf299093de9e4eff9ad33f213e72475953892706eb14e5a
+doccontainerchecksum 12575264f327a724e157c925e5b66054f7982eb0bd498c1ee50e5eaf0b37e04f8eb497eb9f3ae22ac6c537dcbbbd40133bff80e79709720674b6af3b6fd146aa
docfiles size=13
RELOC/doc/fonts/librefranklin/OFL.txt
RELOC/doc/fonts/librefranklin/README details="Readme"
RELOC/doc/fonts/librefranklin/librefranklin-samples.pdf details="Package documentation"
RELOC/doc/fonts/librefranklin/librefranklin-samples.tex
-runfiles size=1547
+runfiles size=1546
RELOC/fonts/enc/dvips/librefranklin/lbfr_ejn2og.enc
RELOC/fonts/enc/dvips/librefranklin/lbfr_hlvv6p.enc
RELOC/fonts/enc/dvips/librefranklin/lbfr_nb4g6w.enc
@@ -166278,7 +166236,6 @@ runfiles size=1547
RELOC/tex/latex/librefranklin/LGRLibreFranklin-TLF.fd
RELOC/tex/latex/librefranklin/LY1LibreFranklin-Sup.fd
RELOC/tex/latex/librefranklin/LY1LibreFranklin-TLF.fd
- RELOC/tex/latex/librefranklin/LibreFranklin.sty
RELOC/tex/latex/librefranklin/OT1LibreFranklin-Sup.fd
RELOC/tex/latex/librefranklin/OT1LibreFranklin-TLF.fd
RELOC/tex/latex/librefranklin/T1LibreFranklin-Sup.fd
@@ -173366,7 +173323,7 @@ catalogue-topics maths luatex
name luatex
category TLCore
-revision 52360
+revision 52434
shortdesc The LuaTeX engine
longdesc LuaTeX is an extended version of pdfTeX using Lua as an
longdesc embedded scripting language. The LuaTeX project's main
@@ -173390,9 +173347,9 @@ execute AddFormat name=luatex engine=luatex options="luatex.ini" patterns=lang
execute AddFormat name=dviluatex engine=luatex options="dviluatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data
execute AddFormat name=luajittex engine=luajittex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data
containersize 12932
-containerchecksum 56929e4ffaf6a6ae19bed3f1df50f0d31716b1f777cacfc4399abe1a6ebea329d6526a33468e4c047ad2ab2090a828c4b58d3f3b5534dc234144421e5649c0cc
-doccontainersize 1682808
-doccontainerchecksum 7664148b8e871cabf52a336938759ff0246a697632f486bf06ff42ddcaf23a89706907a73c725d69a999a4906d5546a2061d7334b859fa588d7f50ed1a1a5122
+containerchecksum 0b9bdf74c170f6cd902386cf18b96f3cb78b853eacccc3a7c75f4135be0efbab47e36a717307600509b78c9fc4f58b8e62f1cdce52007fdd5e9a47dd2f57d666
+doccontainersize 1682868
+doccontainerchecksum eb387b69cef102386bae65239835f0616cd676bb0dd6b91aac6ab0766cb106fae2e102de8682abcbf42d0937eb78173381fd12ddf3d27a34fc6d200f33e52b5a
docfiles size=590
texmf-dist/doc/luatex/base/luatex-backend.tex
texmf-dist/doc/luatex/base/luatex-callbacks.tex
@@ -229050,7 +229007,7 @@ catalogue-topics font font-display font-body font-serif font-proportional font-o
name plex
category Package
-revision 52393
+revision 52428
shortdesc Support for IBM Plex fonts
relocated 1
longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX
@@ -229059,15 +229016,16 @@ longdesc Mono families are available in eight weights: Regular, Light,
longdesc ExtraLight, Thin, Bold, Text, Medium and SemiBold (with
longdesc corresponding italics).
execute addMap plex.map
-containersize 10307084
-containerchecksum a65794f4496c4486d679f4c2bd6a2c51c151f7e262a7acf855dc5cfcf7993b5f33bdc040ecbfcd6af73b91a0cb55e302036a355e7d705af4d6745f58334ce856
-doccontainersize 69752
-doccontainerchecksum 7ce8b31ac7c3aa917138686108b3751cd1035ee50bd24a5affd8a38ed9e202ac0ddfe4165abe4ebf897f1d9406da53cf87fbe1dc581090ddd2fc6c9542f0bf4b
-docfiles size=20
+containersize 10306556
+containerchecksum e1fc413e26383514c6811ef3eff0263169cfc12881bfa8f2f9e1e60326156bd255bdb63438d0820c6cdf5a4c026afc9f6397598f1c59ebbbdcf3c64223fdf2aa
+doccontainersize 70776
+doccontainerchecksum f1132741d9d0d4961296f36cc17d56f7e32fc4a7d539593fc09a83460b5baa9f76a08b957bbd6dece4b29980420cfab73e05a65a2c4dbbc60308db582ebd2c8a
+docfiles size=21
RELOC/doc/fonts/plex/LICENSE.txt
+ RELOC/doc/fonts/plex/README details="Readme"
RELOC/doc/fonts/plex/plex-samples.pdf details="Font samples"
RELOC/doc/fonts/plex/plex-samples.tex
-runfiles size=6378
+runfiles size=6370
RELOC/fonts/enc/dvips/plex/plx_2hzyxp.enc
RELOC/fonts/enc/dvips/plex/plx_4hck4s.enc
RELOC/fonts/enc/dvips/plex/plx_6tuc4c.enc
@@ -230698,12 +230656,8 @@ runfiles size=6378
RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-ly1.vf
RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-t1.vf
RELOC/fonts/vf/ibm/plex/IBMPlexSerif-tlf-ts1.vf
- RELOC/tex/latex/plex/LGRIBMPlexMono-Sup.fd
- RELOC/tex/latex/plex/LGRIBMPlexMono-TLF.fd
RELOC/tex/latex/plex/LGRIBMPlexSans-Sup.fd
RELOC/tex/latex/plex/LGRIBMPlexSans-TLF.fd
- RELOC/tex/latex/plex/LGRIBMPlexSerif-Sup.fd
- RELOC/tex/latex/plex/LGRIBMPlexSerif-TLF.fd
RELOC/tex/latex/plex/LY1IBMPlexMono-Sup.fd
RELOC/tex/latex/plex/LY1IBMPlexMono-TLF.fd
RELOC/tex/latex/plex/LY1IBMPlexSans-Sup.fd
@@ -230732,7 +230686,7 @@ catalogue-contact-bugs https://github.com/IBM/plex/issues/new
catalogue-contact-home https://github.com/IBM/plex
catalogue-contact-repository https://github.com/IBM/plex
catalogue-ctan /fonts/plex
-catalogue-date 2019-10-14 21:58:11 +0200
+catalogue-date 2019-10-18 15:23:04 +0200
catalogue-license ofllppl
catalogue-topics font font-proportional font-body font-mono font-sans font-type1 font-otf font-t1enc
@@ -267207,7 +267161,7 @@ catalogue-topics shortcut physics
name svg
category Package
-revision 49148
+revision 52430
shortdesc Include and extract SVG pictures in LaTeX documents
relocated 1
longdesc This bundle contains the two packages svg and svg-extract. The
@@ -267222,10 +267176,10 @@ longdesc of the graphicx package. In addition, the package svg-extract
longdesc allows the extraction of these graphics into independent files
longdesc in different graphic formats, exactly as it is rendered within
longdesc the LaTeX document, using either ImageMagick or Ghostscript.
-containersize 13056
-containerchecksum e5d007919b8665cf7907ff112e097439aa946443f8974c8a4a01c34f8426d8e5d1b9d3d41e672ffe650a17c277b65cc6e923f9cbd8b84713171378f763cfb1a3
-doccontainersize 1061324
-doccontainerchecksum 47941d908b12d6ee0d579a8f8c75344afc8806edd7c18998531c401bf0acdd3bc7c33d8adcc9da97f75e8025e5f808c420f8af1ff46567c57116f02f24cd424c
+containersize 13120
+containerchecksum 10edc900be609c7fd4f21b0d4aa70e06edc6bab8ac417635ffa6d8d6b06b64e9802f8f510ad3f288d4351983f4756f013e007d309843a271f88f8f4cbde8e05b
+doccontainersize 1061072
+doccontainerchecksum 53c9d4efe37b1281a143e0f65cad3a559f9e5ad0e92a92d91da3301501a09f4e24f6a3efe6ffb919718cccf5419c66896e5bb50f8e64abf90ac0c5ced0b16df6
docfiles size=434
RELOC/doc/latex/svg/LICENSE.md
RELOC/doc/latex/svg/README.md details="Readme"
@@ -267234,8 +267188,8 @@ docfiles size=434
RELOC/doc/latex/svg/svg-example.svg
RELOC/doc/latex/svg/svg-preamble.tex
RELOC/doc/latex/svg/svg.pdf details="Package documentation"
-srccontainersize 42180
-srccontainerchecksum be03128273dce1422856fd3b7d052a362ed2e5963ae89a0760b4bc1cd308baf1cf7d5ea53600287a5fdef881cb8efd3a68b49f128339ba3fd5913444b8369bbc
+srccontainersize 42260
+srccontainerchecksum 9ebbc53e9edf019322f37e7b95f87bbdd37785c33785840dc66a706c38180a9646048a62e4a5aad9f7aaca9ea175256ee5a304062aefcf4d566a46599b61767f
srcfiles size=54
RELOC/source/latex/svg/svg.dtx
runfiles size=20
@@ -267246,10 +267200,10 @@ catalogue-contact-bugs https://github.com/mrpiggi/svg/issues
catalogue-contact-home https://github.com/mrpiggi/svg
catalogue-contact-repository https://github.com/mrpiggi/svg
catalogue-ctan /graphics/svg
-catalogue-date 2018-11-13 10:20:49 +0100
+catalogue-date 2019-10-10 09:01:10 +0200
catalogue-license lppl1.3c
catalogue-topics graphics-incl graphics-import
-catalogue-version 2.02b
+catalogue-version 2.02c
name svg-inkscape
category Package
@@ -281959,15 +281913,15 @@ docfiles size=572
name texlive-docindex
category TLCore
-revision 52418
+revision 52425
shortdesc top-level TeX Live doc.html, etc.
longdesc These files are regenerated as needed, which is often, so we
longdesc make them a separate package. See the tl-update-auto script
longdesc for the process.
containersize 109876
-containerchecksum 2af1bc021687ebd0318c30a1d726f29d1d1f360fa7e2a3c608ef5a67e61003731dc8bd331d918ac85dc233fbe5c370223dcce6ec8de7f65ac1c634b21010819f
-doccontainersize 155188
-doccontainerchecksum 5a1efa3699898b7f5d759b1207e2b2b34adc7f18069f2de23cad7160d05d906b094c956ac7a3e34c24bd90b7b0432db80b40b06fbc4c6e55defea6577421ca98
+containerchecksum 91e32845cbe87135d4fe6faa66f6cf58c4867131aa6bc73812f9093af4d31997dbc29fa81a1a2bf21d0a90bd1657ea33c5de9c755452ecc83544f34149f0ba5d
+doccontainersize 155216
+doccontainerchecksum f5f9c49dee61ebbb87e14caec5a7be65d821912d7179021d10c24afddc5ae61d13c5efcb6dc9c1491443ad4e6fbe173ac037283eb0f77497d2cf24541e2a72d4
docfiles size=304
doc.html
runfiles size=270
@@ -282116,14 +282070,14 @@ docfiles size=430
name texlive-msg-translations
category TLCore
-revision 52404
+revision 52426
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 140596
-containerchecksum e9917e2267fe355b6b21a6a8fbbba2d5fb5f8dd7dfa4034835c865a7315814fde4168f0ede943c0681dc3b49e87263ae04c288a249284464975eaa730af2e820
+containersize 140576
+containerchecksum aaa3c148d05c6172163ccf2a6b6ef114cb31196bfd00ca7370cdf75fd71620aee5b0efc9fe2ffb625fa2f8fadd624cdfc3f38c4f97db1c07a41a1a4eab50ae0e
runfiles size=391
tlpkg/translations/README
tlpkg/translations/cs.po
@@ -282184,17 +282138,17 @@ docfiles size=503
name texlive-scripts
category TLCore
-revision 52423
+revision 52435
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.
depend texlive.infra
depend texlive-scripts.ARCH
postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat
-containersize 85412
-containerchecksum 3c9ed800604708057b63f2d279a8910af768431608957d7befe15039424a15ae78aa8987d3b6ab2818209e0b7990a11baca8aad626df796027086c351fa2faee
+containersize 85440
+containerchecksum a73dbbd393f2824c5d892249da25437fbec34cd099c3fcae02aea9c0486a5e1fe4ad110467a9424adf77ac34713464a44d668e169e055db999202916970f904a
doccontainersize 51244
-doccontainerchecksum babf780f99669c57ce58ed74d70603549dd9d42f80b67cce387f28dbcf6ed1daf680f4eb09657f4a63013acdb2e0afed4cf950f285276915d0e2198b96a767d1
+doccontainerchecksum 94c227164679b44fac0e50490ca344cfb2301f0092c7ed928cbd2578650cdfcea4910f4c45a3812c7ad75565ef8f3e0330eb94d3e8fd90e6f818c5862976c8a0
docfiles size=20
texmf-dist/doc/man/man1/install-tl.1
texmf-dist/doc/man/man1/install-tl.man1.pdf
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 6e069754a4..4f0e9fc20a 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-81fc6d682bbbf22ae8f20a59f792c30f texlive.tlpdb
+74ab5bcb252dc10a4da29bfa386ff052 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 92ed75732f..9015d5cc06 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-a19380e3f2dda49e34a161c4eba2660e85ac659f778e789ff6f49a8d8b5e60c67fc6c8ca14f95246521e1c981059cd9eab51844b524a5a9249846fd940cbe6d9 texlive.tlpdb
+2c92bd2b7d0c24162e276294fce8284896485ff9c374f27bacf54f98543dca3868efb3b3d829abff0e0992f5d1f7aabb316207bc6ab15c8b750888b16cf41448 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 012705cbbd..e4c933bed9 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
@@ -1,10 +1,10 @@
-----BEGIN PGP SIGNATURE-----
-iQEcBAEBCgAGBQJdqP9aAAoJEEzhh34ZQ4xw87AIAJyLFQ6Rhkx+O2hty0t6ZOmJ
-ClRJcxgWJzXiTLhBIwa8DEXeSKCwVKFFdsSc92bLfJWFkjRkdKWZPzbCbjfVWlmm
-/F9F0STxlpoq/ZqEXmZDfWOwL9RnP0RpADmvujBJsGTcezWIT5FqQZv63VIBFnNs
-JNQY8DTvhZWFinhi2LDvKChKEpDhNZQ1VKX0+zq0/Y+UELN1JIAy2Dyol5/dB3AE
-SKrSu3q8OzR3c1i7WTzsafsh46KJXdSyylAWTECZfv71hUFulCOV6W80p1u/ua6D
-NvF3XHDgsaWiVW7/uwfcqjY4AjAVZrt4M/y15EgAzeu4BNkqqReKyulPMt3+JkI=
-=elF8
+iQEcBAEBCgAGBQJdqlF4AAoJEEzhh34ZQ4xw7vwH/Ap3D6yFcSFr1mcY/Hek7iuX
+Z7kt3zpTDI3Qq7YnCppaJ8qX7he1Yjw8E2caC8uIy8uwlOO/BgPuIZPJ10naKM8R
+5M28jSi5k46qu6+v4t/N09Fs3+zNyYuvxIK83uB/k/scY/Z3XiYgFLe6YuTmK5sz
+4xpGTT1+sUFFrDPYT4JHYe6kLRQU3tbrmjYUTyLRb38S20GLX1r36auUxaP7UfCf
+UQEls1k7xVLYn0a6YbU+CZHQpVewuofV/wwccJFddsLWK9tKeQS6dHt7fKclz/kK
+W1nJc9jJV+0lXhdGIH438o1CnXJ/DC3/Isgb0iF0b55UmoM+FBtJDnMLg48RVpc=
+=DF+i
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index 1d47ce2c54..f8c4e9fc83 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 882dfb5914..cac4eb78b8 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-03-26 17:30+0200\n"
"Last-Translator: Petr Sojka <sojka@fi.muni.cz>\n"
"Language-Team: Czech <>\n"
@@ -1446,12 +1446,12 @@ msgstr ""
"jste si jistí?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Vítejte v TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1467,7 +1467,7 @@ msgstr ""
"Seznam skupin u6ivatel; najdete na webu https://tug.org/usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 80b3402b24..a4f49e7c69 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-03-26 06:10+0100\n"
"Last-Translator: Uwe Ziegenhagen <ziegenhagen@gmail.com>\n"
"Language-Team: TL German Translation Team <tex-live@tug.org>\n"
@@ -1448,12 +1448,12 @@ msgstr ""
"sind Sie sicher?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Willkommen bei TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1469,7 +1469,7 @@ msgstr ""
"Gruppen finden Sie unter https://tug.org/usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"
diff --git a/systems/texlive/tlnet/tlpkg/translations/es.po b/systems/texlive/tlnet/tlpkg/translations/es.po
index 187bea8cf7..59c9e23054 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+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"
@@ -1464,12 +1464,12 @@ msgstr ""
"¿Estás seguro que quieres continuar?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "¡Bienvenido a Tex Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1486,7 +1486,7 @@ msgstr ""
"lista de grupos está disponible en el web en https://tug.org/usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 fee7b3767a..180e6f9ec7 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-05-12 10:49+0100\n"
"Last-Translator: Denis Bitouzé <denis.bitouze@univ-littoral.fr>\n"
"Language-Team: French <kde-i18n-doc@kde.org>\n"
@@ -1460,12 +1460,12 @@ msgstr ""
"Êtes-vous sûr(e) ?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Bienvenue sous TeX Live !"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1483,7 +1483,7 @@ msgstr ""
"html ;la page du groupe francophone est http://www.gutenberg.eu.org/."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 ad8b4ca6bf..c6e4a78fa2 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-04-02 15:06+0200\n"
"Last-Translator: Marco Pallante <marco.pallante@gmail.com>\n"
"Language-Team: <>\n"
@@ -1452,12 +1452,12 @@ msgstr ""
"sei sicuro?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Benvenuto in TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1474,7 +1474,7 @@ msgstr ""
"usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 71c37b0f82..339ecd19e7 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-08-28 12:20+0900\n"
"Last-Translator: Takuto Asakura <tkt.asakura@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1444,12 +1444,12 @@ msgstr ""
"本当に合っていますか?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "TeX Live へようこそ!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1466,7 +1466,7 @@ msgstr ""
"html でご確認いただけます."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 c3df83fcea..b039ed4f81 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 2019\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+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"
@@ -1389,12 +1389,12 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1405,7 +1405,7 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 65a5ed5af7..0f06d94ced 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-08-30 13:52+0200\n"
"Last-Translator: Siep Kroonenberg <siepo@bitmuis.nl>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1447,12 +1447,12 @@ msgstr ""
"weet u het zeker?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Welkom bij TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1468,7 +1468,7 @@ msgstr ""
"lijst van gebruikersgroepen staat op https://tug.org/usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 eca2843808..e0da4761e5 100644
--- a/systems/texlive/tlnet/tlpkg/translations/pl.po
+++ b/systems/texlive/tlnet/tlpkg/translations/pl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TeX Live 2019\n"
"Report-Msgid-Bugs-To: tex-live@tug.org\n"
-"POT-Creation-Date: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-03-27 19:54+0100\n"
"Last-Translator: Zofia Walczak <pelagia48@gmail.com>\n"
"Language-Team: \n"
@@ -1447,12 +1447,12 @@ msgstr ""
"jesteś pewny?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Witamy w TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1469,7 +1469,7 @@ msgstr ""
"Lista grup dostępna jest na stronie http://tug.org/usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 725556519d..dca54911b9 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-03-08 13:16-0300\n"
"Last-Translator: Paulo Roberto Massa Cereda <cereda.paulo@gmail.com>\n"
"Language-Team: Paulo Roberto Massa Cereda <cereda@users.sf.net>\n"
@@ -1451,12 +1451,12 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Bem-vindo ao TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1473,7 +1473,7 @@ msgstr ""
"disponível na web no endereço https://tug.org/usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 1675b5c1a4..b060b662dd 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-03-26 09:17+0800\n"
"Last-Translator: Vladimir Lomov <irk.translator@yandex.ru>\n"
"Language-Team: Russian <tldoc@tug.org>\n"
@@ -1450,12 +1450,12 @@ msgstr ""
"вы уверены?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Вас приветствует TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1472,7 +1472,7 @@ msgstr ""
"usergroups.html"
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 babd509b90..92eec506a5 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-03-22 00:57+0300\n"
"Last-Translator: Ján Buša <jan.busa@tuke.sk>\n"
"Language-Team: tex-live@tug.org\n"
@@ -1450,12 +1450,12 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Vitajte vo svete TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1472,7 +1472,7 @@ msgstr ""
"html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 54afd33b2c..0f3220230a 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-04-08 23:05+0200\n"
"Last-Translator: Mojca Miklavec <mojca.miklavec.lists@gmail.com>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1514,12 +1514,12 @@ msgstr ""
"ste prepričani?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Dobrodošli v TeX Live-u!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1535,7 +1535,7 @@ msgstr ""
"teh je na voljo na strani https://tug.org/usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 860cb18074..ec62a77240 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2018-04-04 23:06+0300\n"
"Last-Translator: Nikola Lečić <nikola.lecic@anthesphoria.net>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1454,12 +1454,12 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Добродошли у TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1470,7 +1470,7 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 e67832b0d7..3b9c6fe4ca 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+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"
@@ -1448,12 +1448,12 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Ласкаво просимо до TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1469,7 +1469,7 @@ msgstr ""
"вас. Список груп доступний на веб-сторінці https://tug.org/usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 05a83b4132..cc84fef26e 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2019-03-28 03:38+0700\n"
"Last-Translator: Anh K. Huỳnh <kyanh@viettug.org>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1448,12 +1448,12 @@ msgstr ""
"bạn chắc sẽ không có rắc rối gì chứ?"
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "Chào mừng đến với TeX Live!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1470,7 +1470,7 @@ msgstr ""
"usergroups.html."
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 8dea2ec91a..b20994818a 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+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"
@@ -1399,12 +1399,12 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "欢迎进入 TeX Live 的世界!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1415,7 +1415,7 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, 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 ff51b1fefd..18afe1704d 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: 2019-10-16 02:05+0200\n"
+"POT-Creation-Date: 2019-10-18 01:54+0200\n"
"PO-Revision-Date: 2009-09-03 12:34+0200\n"
"Last-Translator: Norbert Preining <preining@logic.at>\n"
"Language-Team: TL Translation Team <tex-live@tug.org>\n"
@@ -1422,12 +1422,12 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:179
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2616
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2632
msgid "Welcome to TeX Live!"
msgstr "歡迎進入 TeX Live 的世界!"
#: tlpkg/installer/install-tl-gui.tcl:182
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2619
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2635
#, tcl-format, perl-format
msgid ""
"See %s/index.html for links to documentation.\n"
@@ -1438,7 +1438,7 @@ msgid ""
msgstr ""
#: tlpkg/installer/install-tl-gui.tcl:186
-#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2629
+#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2645
#, tcl-format, perl-format
msgid ""
"Add %s/texmf-dist/doc/man to MANPATH.\n"