summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
Diffstat (limited to 'systems')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm47
-rw-r--r--systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl11
-rw-r--r--systems/texlive/tlnet/tlpkg/texlive.tlpdb480
-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.xzbin2437872 -> 2439132 bytes
-rw-r--r--systems/texlive/tlnet/tlpkg/translations/es.po108
8 files changed, 528 insertions, 136 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm
index b199afded4..e5a2e65c79 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPaper.pm
@@ -1,4 +1,4 @@
-# $Id: TLPaper.pm 66757 2023-04-04 14:00:33Z preining $
+# $Id: TLPaper.pm 66798 2023-04-08 00:15:21Z preining $
# TeXLive::TLPaper.pm - query/modify paper sizes for our various programs
# Copyright 2008-2023 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -8,7 +8,7 @@ use strict; use warnings;
package TeXLive::TLPaper;
-my $svnrev = '$Revision: 66757 $';
+my $svnrev = '$Revision: 66798 $';
my $_modulerevision;
if ($svnrev =~ m/: ([0-9]+) /) {
$_modulerevision = $1;
@@ -83,14 +83,8 @@ our %paper = (
"context" => {
sub => \&paper_context,
default_component => "tex/context/user",
- default_file => "cont-sys.mkxl",
+ default_file => "context-papersize.tex",
pkg => "context",
- variant => {
- sub => \&paper_context,
- default_component => "tex/context/user",
- default_file => "cont-sys.mkiv",
- pkg => "context",
- }
},
"psutils" => {
sub => \&paper_psutils,
@@ -292,11 +286,10 @@ sub find_paper_file {
sub setup_names {
my $prog = shift;
- my $variant = shift || "";
my $outcomp = $paper_config_path_component{$prog}
- || ($variant eq "variant" ? $paper{$prog}{'variant'}{'default_component'} : $paper{$prog}{'default_component'});
+ || $paper{$prog}{'default_component'};
my $filecomp = $paper_config_name{$prog}
- || ($variant eq "variant" ? $paper{$prog}{'variant'}{'default_file'} : $paper{$prog}{'default_file'});
+ || $paper{$prog}{'default_file'};
return ($outcomp, $filecomp);
}
@@ -681,7 +674,7 @@ sub paper_dvipdfmx {
# context format:
-# /--- cont-sys.mkxl and cont-sys.mkiv // formerly {tex,rme}
+# /--- context-papersize.tex // formerly cont-sys.{tex,rme}
# |...
# |\setuppapersize[letter][letter]
# |...
@@ -696,21 +689,8 @@ sub paper_context {
if ($newpaper && $newpaper eq "a4") {
$newpaper = "A4";
}
- return (__paper_context($outtree, $newpaper, "context") | __paper_context($outtree, $newpaper, "variant"));
-}
-
-sub __paper_context {
- my $outtree = shift;
- my $newpaper = shift;
- my $what = shift;
- my $prog = $what;
- my $prog_long = $what;
- if ($what eq "variant") {
- $prog = "context";
- $prog_long = "context (MkIV)";
- }
- my ($outcomp, $filecomp) = setup_names($prog, $what);
- my $dftfile = ($what eq 'variant' ? $paper{$prog}{'variant'}{'default_file'} : $paper{$prog}{'default_file'});
+ my ($outcomp, $filecomp) = setup_names('context');
+ my $dftfile = $paper{'context'}{'default_file'};
my $outfile = "$outtree/$outcomp/$filecomp";
my $inp = &find_paper_file("context", "tex", $filecomp, $dftfile);
@@ -749,7 +729,6 @@ sub __paper_context {
}
} else {
@lines = []
- # TODO ???
}
# if we haven't found a paper line, assume a4
$currentpaper || ($currentpaper = "A4");
@@ -768,7 +747,7 @@ sub __paper_context {
push @ret, $p unless ($p eq $currentpaper);
}
my %foo;
- $foo{'program'} = $prog;
+ $foo{'program'} = 'context';
$foo{'file'} = $inp;
$foo{'options'} = \@ret;
return \%foo;
@@ -803,14 +782,14 @@ sub __paper_context {
$lines[$#lines] = $addlines;
}
}
- info("$prg: setting paper size for $prog_long to $newpaper: $outfile\n");
+ info("$prg: setting paper size for context to $newpaper: $outfile\n");
mkdirhier(dirname($outfile));
# if we create the outfile we have to call mktexlsr
TeXLive::TLUtils::announce_execute_actions("files-changed")
unless (-r $outfile);
if (!open(TMP, ">$outfile")) {
tlwarn("$prg: Cannot write to $outfile: $!\n");
- tlwarn("Not setting paper size for $prog_long.\n");
+ tlwarn("Not setting paper size for context.\n");
return($F_ERROR);
}
for (@lines) { print TMP; }
@@ -819,12 +798,12 @@ sub __paper_context {
# TODO should we return the value of announce_execute action?
return($F_OK);
} else {
- tlwarn("$prg: Not a valid paper size for $prog_long: $newpaper\n");
+ tlwarn("$prg: Not a valid paper size for context: $newpaper\n");
return($F_WARNING);
}
}
} else {
- info("Current $prog_long paper size (from $inp): $currentpaper\n");
+ info("Current context paper size (from $inp): $currentpaper\n");
}
return($F_OK);
}
diff --git a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
index a8fbc0944d..0bea7b78ea 100644
--- a/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
+++ b/systems/texlive/tlnet/tlpkg/installer/ctan-mirrors.pl
@@ -1,5 +1,8 @@
$mirrors = {
'Africa' => {
+ 'Morocco' => {
+ 'https://mirror.marwan.ma/ctan/' => 1,
+ },
'South Africa' => {
'http://ftp.sun.ac.za/ftp/CTAN/' => 1,
'https://mirror.ufs.ac.za/ctan/' => 1,
@@ -7,6 +10,7 @@ $mirrors = {
},
'Asia' => {
'China' => {
+ 'https://mirror.bjtu.edu.cn/CTAN/' => 1,
'https://mirrors.aliyun.com/CTAN/' => 1,
'https://mirrors.bfsu.edu.cn/CTAN/' => 1,
'https://mirrors.cloud.tencent.com/CTAN/' => 1,
@@ -17,8 +21,12 @@ $mirrors = {
'https://mirrors.sjtug.sjtu.edu.cn/ctan/' => 1,
'https://mirrors.sustech.edu.cn/CTAN/' => 1,
'https://mirrors.tuna.tsinghua.edu.cn/CTAN/' => 1,
+ 'https://mirrors.ustc.edu.cn/CTAN/' => 1,
'https://mirrors.zju.edu.cn/CTAN/' => 1,
},
+ 'Hong Kong' => {
+ 'https://mirror-hk.koddos.net/CTAN/' => 1,
+ },
'India' => {
'https://mirror.niser.ac.in/ctan/' => 1,
},
@@ -38,10 +46,8 @@ $mirrors = {
},
'Korea' => {
'http://ftp.ktug.org/tex-archive/' => 1,
- 'https://cran.asia/tex/' => 1,
'https://ftp.kaist.ac.kr/pub/tex-archive/' => 1,
'https://lab.uklee.pe.kr/tex-archive/' => 1,
- 'https://mirror.kakao.com/CTAN/' => 1,
'https://mirror.navercorp.com/CTAN/' => 1,
},
'Singapore' => {
@@ -137,6 +143,7 @@ $mirrors = {
'Russia' => {
'https://ctan.altspu.ru/' => 1,
'https://mirror.macomnet.net/pub/CTAN/' => 1,
+ 'https://mirror.truenetwork.ru/CTAN/' => 1,
'https://mirrors.mi-ras.ru/CTAN/' => 1,
},
'Slovenia' => {
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb b/systems/texlive/tlnet/tlpkg/texlive.tlpdb
index dcb18113d5..17e40a40d5 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/2023
-depend revision/66794
+depend revision/66808
name 00texlive.image
category TLCore
-revision 66795
+revision 66805
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
@@ -40,7 +40,7 @@ longdesc IgnorePatterns in the check_files routine in tlmgr.pl augment
longdesc this list. Those are not included in the source/ tarball. For
longdesc information on the 00texlive prefix see
longdesc 00texlive.installation(.tlpsrc)
-runfiles size=12969
+runfiles size=12971
.mkisofsrc
autorun.inf
texmf-dist/README
@@ -1242,6 +1242,7 @@ runfiles size=12969
tlpkg/tlpsrc/context-ruby.tlpsrc
tlpkg/tlpsrc/context-simplefonts.tlpsrc
tlpkg/tlpsrc/context-simpleslides.tlpsrc
+ tlpkg/tlpsrc/context-texlive.tlpsrc
tlpkg/tlpsrc/context-title.tlpsrc
tlpkg/tlpsrc/context-transliterator.tlpsrc
tlpkg/tlpsrc/context-typearea.tlpsrc
@@ -1948,6 +1949,7 @@ runfiles size=12969
tlpkg/tlpsrc/gchords.tlpsrc
tlpkg/tlpsrc/gcite.tlpsrc
tlpkg/tlpsrc/gckanbun.tlpsrc
+ tlpkg/tlpsrc/gelasio.tlpsrc
tlpkg/tlpsrc/gender.tlpsrc
tlpkg/tlpsrc/gene-logic.tlpsrc
tlpkg/tlpsrc/genealogy.tlpsrc
@@ -4722,7 +4724,7 @@ depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd
name 00texlive.installer
category TLCore
-revision 66788
+revision 66797
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
@@ -68801,7 +68803,7 @@ containerchecksum 595821a44d10775d5fd38e292d4cd0135daf1e2a59131afd9d6fb600f319be
name collection-context
category Collection
-revision 66706
+revision 66802
shortdesc ConTeXt and packages
relocated 1
longdesc Hans Hagen's powerful ConTeXt system, http://pragma-ade.com.
@@ -68835,6 +68837,7 @@ depend context-rst
depend context-ruby
depend context-simplefonts
depend context-simpleslides
+depend context-texlive
depend context-title
depend context-transliterator
depend context-typearea
@@ -68842,12 +68845,12 @@ depend context-typescripts
depend context-vim
depend context-visualcounter
depend jmn
-containersize 584
-containerchecksum efb2407595105d0545e381e8f16c508b91d714ecc16da03ea5ae8458fc36f26313910d1edae0373bb194936d4e20fd46ff20c3787bbac28c1cb3be1a10cfb9ea
+containersize 588
+containerchecksum 69207bc0e107fd9ee86fd734740a5555cad4b24e98fc711e69d894291dd1195a1bcb42cb13bcdc867a409ec5f4056d5f7d5922de3b99f2b04aa66c7ec14dec66
name collection-fontsextra
category Collection
-revision 64952
+revision 66805
shortdesc Additional fonts
relocated 1
depend aboensis
@@ -69010,6 +69013,7 @@ depend frederika2016
depend frimurer
depend garamond-libre
depend garamond-math
+depend gelasio
depend genealogy
depend gentium-tug
depend gfsartemisia
@@ -69200,7 +69204,7 @@ depend yfonts-t1
depend yinit-otf
depend zlmtt
containersize 1996
-containerchecksum e0c3a3142ca8dcdcdc0d7c5328e1624736f20bfe9e3757bad95d0e361b73ecdf3bc53e9d19f42ef5d91b74cbdf4fca1ee62b79f53d4d5a5f8aed47f51553d77e
+containerchecksum c85acc6781a63167a7a1b5c2288bf1fd1d054cbe4fef9e896cb259ce5601331d4c1b40af4fbf2fa6830b84f2d466b762d13cd3595a82516fb7611f3367800508
name collection-fontsrecommended
category Collection
@@ -75121,7 +75125,7 @@ catalogue-version 0.1.1
name context
category Package
-revision 66691
+revision 66802
shortdesc The ConTeXt macro package
longdesc A full featured, parameter driven macro package, which fully
longdesc supports advanced interactive documents. See the ConTeXt garden
@@ -75135,10 +75139,10 @@ depend manfnt-font
depend mflogo-font
depend stmaryrd
execute addMap original-context-symbol.map
-containersize 9982588
-containerchecksum f83b4227ac05b222aee91e7042d9c7800a19686098f03c3909ba4c3bde5714387011dccdb86bcf8fc1e705734fc725ecbd8158bc7b3c01e3b321fbdf80d0b5f3
+containersize 9982680
+containerchecksum f8513c5ca37d315bd22eb1edd7637a98a554b1975b82cb4e9a1e88fdbb130980f2d5a3869a77e0bbab26eda779a077c580f875393d69e3a683daaf68bef136a1
doccontainersize 84245980
-doccontainerchecksum bf9c3e468761987fed8c9231721c52dee9debac28d09408b2b7656ddb4899a21db0624c374d50f03c88fb04da650616e176dcb54afab96ff1677f1dfcc1ac6bf
+doccontainerchecksum 4892a6e123fb023c7b04536886316daac247ce30f5a26caeba2160b6f8bd5fec0d87c7a6e002d1e3b69987598ab91facd2da0af7711acf984ad1cafdc4ea8839
docfiles size=26800
texmf-dist/doc/context/documents/general/leaflets/leaflet-context.pdf
texmf-dist/doc/context/documents/general/leaflets/leaflet-luametatex.pdf
@@ -80335,6 +80339,16 @@ catalogue-ctan /macros/context/contrib/context-simpleslides
catalogue-license gpl
catalogue-topics context
+name context-texlive
+category Package
+revision 66802
+relocated 1
+containersize 756
+containerchecksum bdb8100da78a27f7b1154fc564ee83bed51b61ec94a4f536a0c1a2db6a02688a3168aad41713a5404c3246f65d471800e714781a860548ef2153da0466779cf3
+runfiles size=2
+ RELOC/tex/context/texlive/cont-sys.mkiv
+ RELOC/tex/context/texlive/cont-sys.mkxl
+
name context-title
category ConTeXt
revision 47085
@@ -131063,6 +131077,384 @@ catalogue-license mit
catalogue-topics japanese chinese
catalogue-version 1.2
+name gelasio
+category Package
+revision 66805
+shortdesc LaTeX support for the Gelasio family of fonts
+relocated 1
+longdesc This package provides (pdf)LaTeX, XeLaTeX and LuaLaTeX support
+longdesc for the Gelasio family of fonts designed by Eben Sorkin to be
+longdesc metric-compatible with Georgia in its Regular and Bold weights.
+longdesc Medium and SemiBold weights have been added.
+execute addMap gelasio.map
+containersize 1565056
+containerchecksum d5ef910eee7b3e26a180c88ae104da77becb4bed3a955938486d6763c2a0dc51e71ab6f9351304894d5e531fab714cf75f6a0cc421d074b3ac86931698582274
+doccontainersize 34616
+doccontainerchecksum aa49c6e0bebb4c097b78ba11781f7027b783c6280a5fa0e3077f9c1eb20f6b372b3910f5c78b0103afa2429938a94b277bdcacd210afb8bad2bac92f5022ed8a
+docfiles size=14
+ RELOC/doc/fonts/gelasio/OFL.txt
+ RELOC/doc/fonts/gelasio/README details="Readme"
+ RELOC/doc/fonts/gelasio/gelasio-samples.pdf details="Font samples"
+ RELOC/doc/fonts/gelasio/gelasio-samples.tex
+runfiles size=803
+ RELOC/fonts/enc/dvips/gelasio/gls_5xld5w.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_6qeh6o.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_7npxgm.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_7rleul.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_ags7qn.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_cy3ufi.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_gldhmf.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_gww56v.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_jgoly6.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_k4bbiq.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_mx2b4h.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_ocoxw4.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_qndjqi.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_ro7vi7.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_ttjzpe.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_u2frii.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_uw7g7y.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_vgwtwr.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_wlsyn3.enc
+ RELOC/fonts/enc/dvips/gelasio/gls_yyujwf.enc
+ RELOC/fonts/map/dvips/gelasio/gelasio.map
+ RELOC/fonts/opentype/sorkin/gelasio/Gelasio-Bold.otf
+ RELOC/fonts/opentype/sorkin/gelasio/Gelasio-BoldItalic.otf
+ RELOC/fonts/opentype/sorkin/gelasio/Gelasio-Italic.otf
+ RELOC/fonts/opentype/sorkin/gelasio/Gelasio-Medium.otf
+ RELOC/fonts/opentype/sorkin/gelasio/Gelasio-MediumItalic.otf
+ RELOC/fonts/opentype/sorkin/gelasio/Gelasio-Regular.otf
+ RELOC/fonts/opentype/sorkin/gelasio/Gelasio-SemiBold.otf
+ RELOC/fonts/opentype/sorkin/gelasio/Gelasio-SemiBoldItalic.otf
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-lf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-lf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-lf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-lf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-lf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-lf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-osf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-osf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-osf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-osf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-osf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-osf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-sup-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-sup-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-sup-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-sup-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tlf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tlf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tlf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tlf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tlf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tosf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tosf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tosf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tosf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tosf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Bold-tosf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-lf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-lf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-lf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-lf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-lf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-lf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-osf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-osf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-osf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-osf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-osf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-osf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-sup-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-sup-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-sup-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-sup-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tlf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tlf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tlf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tlf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tosf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tosf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tosf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tosf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tosf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-BoldItalic-tosf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-lf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-lf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-lf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-lf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-lf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-lf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-osf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-osf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-osf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-osf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-osf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-osf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-sup-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-sup-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-sup-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-sup-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tlf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tlf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tlf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tlf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tosf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tosf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tosf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tosf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tosf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Italic-tosf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-lf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-lf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-lf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-lf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-lf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-lf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-osf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-osf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-osf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-osf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-osf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-osf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-sup-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-sup-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-sup-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-sup-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tlf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tlf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tlf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tlf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tlf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tosf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tosf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tosf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tosf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tosf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Medium-tosf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-lf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-lf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-lf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-lf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-lf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-lf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-osf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-osf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-osf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-osf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-osf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-osf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-sup-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-sup-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-sup-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-sup-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tlf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tlf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tlf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tlf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tosf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tosf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tosf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tosf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tosf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-MediumItalic-tosf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-lf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-lf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-lf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-lf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-lf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-lf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-osf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-osf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-osf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-osf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-osf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-osf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-sup-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-sup-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-sup-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-sup-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tlf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tlf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tlf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tlf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tlf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tosf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tosf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tosf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tosf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tosf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-Regular-tosf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-lf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-lf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-lf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-lf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-lf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-lf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-osf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-osf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-osf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-osf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-osf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-osf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-sup-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-sup-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-sup-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-sup-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tlf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tlf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tlf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tlf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tlf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tosf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tosf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tosf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tosf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tosf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBold-tosf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-lf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-lf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-lf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-lf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-lf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-lf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-osf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-osf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-osf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-osf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-osf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-osf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-sup-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-sup-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-sup-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-sup-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tlf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tlf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tlf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tlf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tlf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tlf-ts1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tosf-ly1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tosf-ot1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tosf-t1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tosf-t1.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tosf-ts1--base.tfm
+ RELOC/fonts/tfm/sorkin/gelasio/Gelasio-SemiBoldItalic-tosf-ts1.tfm
+ RELOC/fonts/type1/sorkin/gelasio/Gelasio-Bold.pfb
+ RELOC/fonts/type1/sorkin/gelasio/Gelasio-BoldItalic.pfb
+ RELOC/fonts/type1/sorkin/gelasio/Gelasio-Italic.pfb
+ RELOC/fonts/type1/sorkin/gelasio/Gelasio-Medium.pfb
+ RELOC/fonts/type1/sorkin/gelasio/Gelasio-MediumItalic.pfb
+ RELOC/fonts/type1/sorkin/gelasio/Gelasio-Regular.pfb
+ RELOC/fonts/type1/sorkin/gelasio/Gelasio-SemiBold.pfb
+ RELOC/fonts/type1/sorkin/gelasio/Gelasio-SemiBoldItalic.pfb
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Bold-lf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Bold-lf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Bold-osf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Bold-osf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Bold-sup-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Bold-tlf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Bold-tlf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Bold-tosf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Bold-tosf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-BoldItalic-lf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-BoldItalic-lf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-BoldItalic-osf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-BoldItalic-osf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-BoldItalic-sup-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-BoldItalic-tlf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-BoldItalic-tlf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-BoldItalic-tosf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-BoldItalic-tosf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Italic-lf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Italic-lf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Italic-osf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Italic-osf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Italic-sup-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Italic-tlf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Italic-tlf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Italic-tosf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Italic-tosf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Medium-lf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Medium-lf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Medium-osf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Medium-osf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Medium-sup-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Medium-tlf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Medium-tlf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Medium-tosf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Medium-tosf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-MediumItalic-lf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-MediumItalic-lf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-MediumItalic-osf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-MediumItalic-osf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-MediumItalic-sup-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-MediumItalic-tlf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-MediumItalic-tlf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-MediumItalic-tosf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-MediumItalic-tosf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Regular-lf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Regular-lf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Regular-osf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Regular-osf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Regular-sup-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Regular-tlf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Regular-tlf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Regular-tosf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-Regular-tosf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBold-lf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBold-lf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBold-osf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBold-osf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBold-sup-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBold-tlf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBold-tlf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBold-tosf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBold-tosf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBoldItalic-lf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBoldItalic-lf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBoldItalic-osf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBoldItalic-osf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBoldItalic-sup-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBoldItalic-tlf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBoldItalic-tlf-ts1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBoldItalic-tosf-t1.vf
+ RELOC/fonts/vf/sorkin/gelasio/Gelasio-SemiBoldItalic-tosf-ts1.vf
+ RELOC/tex/latex/gelasio/LY1Gelasio-LF.fd
+ RELOC/tex/latex/gelasio/LY1Gelasio-OsF.fd
+ RELOC/tex/latex/gelasio/LY1Gelasio-Sup.fd
+ RELOC/tex/latex/gelasio/LY1Gelasio-TLF.fd
+ RELOC/tex/latex/gelasio/LY1Gelasio-TOsF.fd
+ RELOC/tex/latex/gelasio/OT1Gelasio-LF.fd
+ RELOC/tex/latex/gelasio/OT1Gelasio-OsF.fd
+ RELOC/tex/latex/gelasio/OT1Gelasio-Sup.fd
+ RELOC/tex/latex/gelasio/OT1Gelasio-TLF.fd
+ RELOC/tex/latex/gelasio/OT1Gelasio-TOsF.fd
+ RELOC/tex/latex/gelasio/T1Gelasio-LF.fd
+ RELOC/tex/latex/gelasio/T1Gelasio-OsF.fd
+ RELOC/tex/latex/gelasio/T1Gelasio-Sup.fd
+ RELOC/tex/latex/gelasio/T1Gelasio-TLF.fd
+ RELOC/tex/latex/gelasio/T1Gelasio-TOsF.fd
+ RELOC/tex/latex/gelasio/TS1Gelasio-LF.fd
+ RELOC/tex/latex/gelasio/TS1Gelasio-OsF.fd
+ RELOC/tex/latex/gelasio/TS1Gelasio-TLF.fd
+ RELOC/tex/latex/gelasio/TS1Gelasio-TOsF.fd
+ RELOC/tex/latex/gelasio/gelasio.sty
+catalogue-contact-development https://github.com/SorkinType/Gelasio
+catalogue-ctan /fonts/gelasio
+catalogue-license ofl lppl
+catalogue-topics font font-body font-proportional font-serif font-otf font-type1
+
name gender
category Package
revision 36464
@@ -147453,17 +147845,17 @@ catalogue-version 0.4a
name ifptex
category Package
-revision 62982
+revision 66803
shortdesc Check if the engine is pTeX or one of its derivatives
relocated 1
longdesc The ifptex package is a counterpart of ifxetex, ifluatex, etc.
longdesc for the ptex engine. The ifuptex package is an alias to ifptex
longdesc provided for backward compatibility.
-containersize 4016
-containerchecksum 54f4e4a1077a5f394811a4b0b08818fb17060496c7915c85dc69b55d2adcc7793f4047069b1bd067229bdd945c2e2a35f19b59d048cf242d489ab652813f5cf0
-doccontainersize 3640
-doccontainerchecksum 7e30eb1014032cd8c322ffeab692f1abb325f1890e66b1136da1e88ccfa24aa80b003f785dd899ebe7951123bb7661b6f44ff382a7b296abfac129ea55eca226
-docfiles size=4
+containersize 4212
+containerchecksum 9b0588af312fc3627687703f030f40ae421d9949d696891e9a60aca3c7582f0a534099685e8b8d5535df0d2f9dcd452f4219092d70c285d0fa65af6d140b7afa
+doccontainersize 4076
+doccontainerchecksum a65a583b033509fc0a41fb65c6ec17357c0e095cf09d6f5d2b9b1f8e5fa323f368cd381941e8850bc1fe81a213dd2bbcc3d9877c08d50a5a78efedca05a7897e
+docfiles size=5
RELOC/doc/generic/ifptex/LICENSE
RELOC/doc/generic/ifptex/README-ja.md details="Readme (Japanese)" language="ja"
RELOC/doc/generic/ifptex/README.md details="Readme"
@@ -147474,7 +147866,7 @@ catalogue-contact-repository https://github.com/zr-tex8r/ifptex
catalogue-ctan /macros/generic/ifptex
catalogue-license mit
catalogue-topics env-query japanese
-catalogue-version 2.2
+catalogue-version 2.2c
name ifsym
category Package
@@ -299523,7 +299915,7 @@ binfiles arch=x86_64-solaris size=1
name tex4ht
category Package
-revision 66786
+revision 66806
shortdesc Convert (La)TeX to HTML/XML
longdesc A converter from TeX and LaTeX to SGML-based formats such as
longdesc (X)HTML, MathML, OpenDocument, and Docbook, providing a
@@ -299544,10 +299936,10 @@ longdesc files from them is nontrivial, and generally done with the
longdesc Makefile in development, from which the TeX4ht package in TeX
longdesc Live is updated.
depend tex4ht.ARCH
-containersize 1133940
-containerchecksum f08568801b7016fac9a7ae0334bdfa7fab63ae6e3004225707119fb568231a360286c0b4ac52b244594cb2fade35f93ca181e84ff2d77a6298e2a6c7d391e0bd
+containersize 1133944
+containerchecksum d1847563d56dd5c248fd6296ee82e65c932e18e48fdab751b1585e83901857ad2c37db6d11fdc462c56dbd35f8e664ab1b7075bf2a75099eca8ffc74b4b2f8d2
doccontainersize 136384
-doccontainerchecksum 34ef5845755ea3615072065ed93a4761cfff02f9d1903009cd69824d7bce20d65f618958fd3febfdec605d36038c912163b4d343260194a169c59331432403b4
+doccontainerchecksum 244a715d57bc528c87f3cea56b9cd41c0e7267b0a4b04f0acd553c4103ac8c8fd5703b327fa8ab7d845c998cf06680187d6084dacd53026d8ba76fe2fe207227
docfiles size=260
texmf-dist/doc/generic/tex4ht/Makefile
texmf-dist/doc/generic/tex4ht/README details="Readme"
@@ -299619,9 +300011,9 @@ docfiles size=260
texmf-dist/doc/generic/tex4ht/mn56.html
texmf-dist/doc/generic/tex4ht/mn5x.png
texmf-dist/doc/generic/tex4ht/mn6x.png
-srccontainersize 1445728
-srccontainerchecksum 27734ec0bd9c7b0abcf4c5c8e2e0252cac3c5ee49430e2589cf7c02afb36dccd49dfba1f6988d2271177d8c747756dbc2ca3b23ac50131fab5f8f3f59417c477
-srcfiles size=4379
+srccontainersize 1443208
+srccontainerchecksum ca528a7821d0b3789df8c0f05b726a39df361b12510649b45d12b22ea0d4c7372ec5928064bd32e2a8189cf0e3b1764763f442ffc55b4e5592e4031badbc431c
+srcfiles size=4380
texmf-dist/source/generic/tex4ht/ChangeLog
texmf-dist/source/generic/tex4ht/Makefile
texmf-dist/source/generic/tex4ht/README
@@ -311039,14 +311431,14 @@ docfiles size=558
name texlive-msg-translations
category TLCore
-revision 66783
+revision 66808
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 151320
-containerchecksum 32e1697ffb3e7c0579c3021c602ed5143f67ab8ffba2c5cad9447839861772f233096c521f72d979635ffb4d19c9a67974011987fb5ade92690e3683473397a8
+containersize 151736
+containerchecksum d0007983bf572c411609ecdf64a52ab8cb4071b482a164d35ec6a985876fb228df84fcad7efcd3fcb028d373d5689b459a7386b86de564fb5c3591517d458387
runfiles size=375
tlpkg/translations/README
tlpkg/translations/cs.po
@@ -311108,7 +311500,7 @@ docfiles size=376
name texlive-scripts
category TLCore
-revision 66788
+revision 66797
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.
@@ -311116,10 +311508,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 113968
-containerchecksum a10c3e971656bcdffe1da32575eff9dc3c708d2e7a66c395e5842a4f57850cf940b090c58835b692c81e7fdf4ff8adf717b745abf3ced676ec89fa382c7da85c
-doccontainersize 423636
-doccontainerchecksum 0f452ad816d6f64cfc094fc99773afb85b4c0d48c5db9a10dc5ffc7f4450adcaaee9756cc3eeb1db758b06acf353a1d0ba0c621e60c451299063094663f76049
+containersize 113996
+containerchecksum e4efb1759347fdc7f13fa3a081261d46fa4dbe8dfc4bc5dfb9605afbafbbc2e5875607cacc027f93ef57b6dee855efc4863ce9d7de47e06861186716fd0a8a50
+doccontainersize 423472
+doccontainerchecksum e23a6eaee62a46c8640e87b2ee6e2615c54eaac0b97c6f534a97b696da067090d2099c6c77860f9d456937e3ce50e6b4fd5b862b5d9542ea725dc8447041bde8
docfiles size=537
doc.html
texmf-dist/doc/man/man1/fmtutil-sys.1
@@ -316324,18 +316716,18 @@ catalogue-version 0.1
name thuthesis
category Package
-revision 64628
+revision 66804
shortdesc Thesis template for Tsinghua University
relocated 1
longdesc This package establishes a simple and easy-to-use LaTeX
longdesc template for Tsinghua dissertations, including general
longdesc undergraduate research papers, masters theses, doctoral
longdesc dissertations, and postdoctoral reports.
-containersize 43556
-containerchecksum 1e3874a1b6e2e7f465244d1a7249b233ecb2d85f72a52719c6986a9a7a744563094c552718483f1508bd6cd67ca602b821f0e071427db790b43af92e6d369efe
-doccontainersize 1599328
-doccontainerchecksum 20936d1dc56b506b66f3ec35d91654637a9468a777c9830afaae97e07cd98e7df16f83ea806f2651cd374939e9cd8af57d96e0c1b5d92700d8d034be26f6ab24
-docfiles size=434
+containersize 43548
+containerchecksum c96d45f4482761640d8e93f3fe709c0be24cd9140a850b040e3fd27f69201dcfa6ab0d0fabde614889cb478f9704e984841a880f24611cb04e35f16f0fcfe671
+doccontainersize 1646024
+doccontainerchecksum 6a8209fa55ce8c09b96d976851084814ccadaba51466dbec5d740e448c00f3b04061572f8a8cda016fc56a18f0c3fae146f7420d8185d3a6ed008fac7779e524
+docfiles size=446
RELOC/doc/latex/thuthesis/CHANGELOG.md
RELOC/doc/latex/thuthesis/LICENSE
RELOC/doc/latex/thuthesis/Makefile
@@ -316363,8 +316755,8 @@ docfiles size=434
RELOC/doc/latex/thuthesis/thuthesis-example.pdf details="Example of use (Chinese)" language="zh"
RELOC/doc/latex/thuthesis/thuthesis-example.tex
RELOC/doc/latex/thuthesis/thuthesis.pdf details="Package documentation (Chinese)" language="zh"
-srccontainersize 47824
-srccontainerchecksum 0b6939673f935662e9337cd43349eeb575c50003b104569d119bccb58c242e6e7c134e8b6ac5b4cc08508cf948ee6001af9b675ec633a6df085acc19eab26222
+srccontainersize 47872
+srccontainerchecksum 09e216bd280207899c05499a4ccafe985956ec8f88740b14b51ff3d985b1a94dcb2172df75c8752bfbbea24c45493bd496058b08859b0bfe522b0d0b923e770c
srcfiles size=53
RELOC/source/latex/thuthesis/thuthesis.dtx
RELOC/source/latex/thuthesis/thuthesis.ins
@@ -316387,7 +316779,7 @@ catalogue-contact-repository https://github.com/tuna/thuthesis
catalogue-ctan /macros/latex/contrib/thuthesis
catalogue-license lppl1.3c
catalogue-topics dissertation class doc-templ std-conform chinese
-catalogue-version 7.3.1
+catalogue-version 7.3.2
name ticket
category Package
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
index 11112c4637..a754d2c2ba 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.md5
@@ -1 +1 @@
-104b5217452c89dcb8b3fe3197d711db texlive.tlpdb
+52d8d9725b37104cb8289b190191df4c texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512 b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
index 5064c56aa2..a0ebddc487 100644
--- a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
+++ b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512
@@ -1 +1 @@
-350741cd63e7dd0b1b582bc897d5f3234204ab4f5ab830edb0f48bd9bb78e0bed7456dd12e84b81639865a686ddbf963aab5d038a596a27c28c9438f3e2f1bb7 texlive.tlpdb
+7a07a053074fa9bb102bf348648c54c9a9b9ca687cc582c83d69edafb2ca7c49b57fd9680378548caef368e7a3848cf50ac96339a564989938fa08141e5e4947 texlive.tlpdb
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.sha512.asc
index 270e54c71e..e0d871c848 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-----
-iQEcBAEBCgAGBQJkMK1bAAoJEEzhh34ZQ4xwcOYH/RrvFiO1nx0XAdfyUSVQ3uIt
-egcZ/nPx8ShpVIviCts6bN8kn40Rkp2Fe1iIIOZb2O92OMKFtBQuHU95OFLJHNIL
-bFWHsGOQHrvA4rP57H88/1yCrKWjsNatPGGonF8XLNGeNU3wa3b7NuNJ9h8bMQKV
-oJI778OIs2PDbIyzhR141f3dtxjEut+GFOqvdBE6J7NjsyVqBH8yuK6pH6fe+Z37
-YfT9JEB13U7x8ShVTpHENmrxJ0/HPuzkSzPzUiL79CgyoTcPixqi3atYHCCPQFa+
-aQFkDkzCSZUyOkF79GbPiTCb8obuW1C5man06vGl3grjIWZWO8JWTwDd6/Pgv/c=
-=6j24
+iQEcBAEBCgAGBQJkMf71AAoJEEzhh34ZQ4xwoioH/33EjGcWoSwfkzEcGyhpwCA8
+6fxm+p+d1T/DzBYGRdd8jUsHewwhBfKn68i+mUXA9H+F6osN9o5coByPz/I5PzQH
+FAgm469DTkaGM07KMQMG4Mww0tNq7Zh9tlM4B1cIf0gxYwL40bTG/K5dqjFHCI4Y
+dApYoeww38jN5mrz5OV8WA75S2HnIXi9MwGBMHiVJ5+UADqsfuLGSch3q3knvBn7
+oDzkkC88dgH6OT7dX/BY2maainPc6b+Bm2kig6d++0Il/ylKwt97RTQvak1KKfDk
+96v9IfRVRZLTjXcuiUYg19wBDM8G3HY4SUTiG3yH4ZNBDV/k5l+VDn3IWv6MVik=
+=SJSN
-----END PGP SIGNATURE-----
diff --git a/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz b/systems/texlive/tlnet/tlpkg/texlive.tlpdb.xz
index db039c4d7a..bdf3577108 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/es.po b/systems/texlive/tlnet/tlpkg/translations/es.po
index 836f6bd0c2..31b448a6cf 100644
--- a/systems/texlive/tlnet/tlpkg/translations/es.po
+++ b/systems/texlive/tlnet/tlpkg/translations/es.po
@@ -327,7 +327,7 @@ msgstr "Plataformas ..."
#: texmf-dist/scripts/texlive/tlmgrgui.pl:553
msgid "GUI language ..."
-msgstr ""
+msgstr "Idioma de Interfaz Gráfico de Usuario..."
#: texmf-dist/scripts/texlive/tlmgrgui.pl:557
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1458
@@ -673,7 +673,7 @@ msgstr "A4"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1352
msgid "Letter"
-msgstr "carta"
+msgstr "Formato de tamaño 8½x11"
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1364
#: texmf-dist/scripts/texlive/tlmgrgui.pl:1769
@@ -926,11 +926,11 @@ msgstr ""
#: tlpkg/installer/install-menu-text.pl:42
msgid "Menu shortcuts"
-msgstr ""
+msgstr "Acceso rápido del menú"
#: tlpkg/installer/install-menu-text.pl:43
msgid "Launcher"
-msgstr ""
+msgstr "Inicializador"
#: tlpkg/installer/install-tl-gui.tcl:107
#, tcl-format
@@ -956,7 +956,7 @@ msgstr "Realmente quieres abortar?"
#: tlpkg/installer/install-tl-gui.tcl:312
msgid "Local repository"
-msgstr ""
+msgstr "Repositorio local"
#: tlpkg/installer/install-tl-gui.tcl:348
#: tlpkg/installer/install-tl-gui.tcl:365
@@ -979,6 +979,10 @@ msgid ""
"\n"
"If this takes too long, press Abort or choose another repository."
msgstr ""
+"Intentando cargar %s.\n"
+"\n"
+"Si este proceso dura mucho tiempo, presione Abortar"
+"o escoja otro repositorio."
#: tlpkg/installer/install-tl-gui.tcl:458
msgid "Cannot be created or cannot be written to"
@@ -1021,16 +1025,15 @@ msgstr "Raíz de instalación"
#: tlpkg/installer/install-tl-gui.tcl:598
msgid "Prefix"
-msgstr ""
+msgstr "Prefijo"
#: tlpkg/installer/install-tl-gui.tcl:608
msgid "Prefix must exist"
-msgstr ""
+msgstr "Prefijo tiene que existir"
#: tlpkg/installer/install-tl-gui.tcl:616
msgid "Localized directory names will be replaced by their real names"
-msgstr ""
-"Nombres de directorios localizados serán reemplazados por sus nombres reales"
+msgstr "Nombres de directorios localizados serán reemplazados por sus nombres reales"
#: tlpkg/installer/install-tl-gui.tcl:699
#, tcl-format
@@ -1068,8 +1071,7 @@ msgstr "Otras colecciones"
#: tlpkg/installer/install-tl-gui.tcl:1194
msgid "Warning. Not all configured directories are writable!"
-msgstr ""
-"Advertencia: ¡No todos los directorios configurados se pueden escribir!"
+msgstr "Advertencia: ¡No todos los directorios configurados se pueden escribir!"
#: tlpkg/installer/install-tl-gui.tcl:1214
msgid "Symlinks"
@@ -1089,16 +1091,16 @@ msgstr "Páginas de información"
#: tlpkg/installer/install-tl-gui.tcl:1315
msgid "Not enough room"
-msgstr ""
+msgstr "No hay suficiente espacio"
#: tlpkg/installer/install-tl-gui.tcl:1356
#: texmf-dist/scripts/tlshell/tlshell.tcl:2735
msgid "GUI language"
-msgstr ""
+msgstr "Idioma del Interfaz Gráfico de Usuario"
#: tlpkg/installer/install-tl-gui.tcl:1368
msgid "Font scaling"
-msgstr ""
+msgstr "Ajustes para la fuente"
#: tlpkg/installer/install-tl-gui.tcl:1370
#: texmf-dist/scripts/tlshell/tlshell.tcl:1327
@@ -1182,7 +1184,7 @@ msgstr "Espacio requerido (en MB):"
#: tlpkg/installer/install-tl-gui.tcl:1600
msgid "Disk space available (in MB):"
-msgstr ""
+msgstr "Espacio disponible en el disco (in MB):"
#: tlpkg/installer/install-tl-gui.tcl:1630
msgid "Default paper size"
@@ -1245,7 +1247,7 @@ msgstr "Especifica directorios"
#: tlpkg/installer/install-tl-gui.tcl:1754
msgid "After install, set CTAN as source for package updates"
msgstr ""
-"Después de instalar, seleccione a CTAN para actualizar todos los paquetes"
+"Después de instalar, seleccione CTAN para actualizar todos los paquetes"
#: tlpkg/installer/install-tl-gui.tcl:1805
msgid "Custom scheme"
@@ -1254,12 +1256,12 @@ msgstr "Esquema personalizado"
#: tlpkg/installer/install-tl-gui.tcl:1982
#, tcl-format
msgid "%s not a local or remote repository"
-msgstr ""
+msgstr "%s no es un repositorio remoto o local"
#: tlpkg/installer/install-tl-gui.tcl:1986
#, tcl-format
msgid "%s requires an argument"
-msgstr ""
+msgstr "%s requiere un argumento"
#: tlpkg/tltcl/tltcl.tcl:135
msgid "Specific mirror..."
@@ -1267,7 +1269,7 @@ msgstr "Espejo específico..."
#: tlpkg/tltcl/tltcl.tcl:152
msgid "No mirror list available"
-msgstr ""
+msgstr "No list de espejos disponibles"
#: tlpkg/tltcl/tltcl.tcl:765
msgid "Select or type"
@@ -1301,11 +1303,13 @@ msgstr "Desconocido"
#: texmf-dist/scripts/tlshell/tlshell.tcl:873
msgid "Loading"
-msgstr ""
+msgstr "Cargando"
#: texmf-dist/scripts/tlshell/tlshell.tcl:879
msgid "If loading takes too long, press Abort and choose another repository."
msgstr ""
+"Si la carga toma mucho tiempo, presione Abortar\n"
+"y escoja otro repositorio."
#: texmf-dist/scripts/tlshell/tlshell.tcl:880
#: texmf-dist/scripts/tlshell/tlshell.tcl:2329
@@ -1315,7 +1319,7 @@ msgstr "Repositorios"
#: texmf-dist/scripts/tlshell/tlshell.tcl:918
msgid "Done loading"
-msgstr ""
+msgstr "La carga se completó"
#: texmf-dist/scripts/tlshell/tlshell.tcl:944
msgid "A configured repository is unavailable."
@@ -1336,11 +1340,11 @@ msgstr "%s no es un repositorio"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1189
msgid "No repositories"
-msgstr ""
+msgstr "No repositorios"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1194
msgid "Multiple repositories"
-msgstr ""
+msgstr "Múltiple repositorios"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1197
msgid "Not loaded"
@@ -1348,7 +1352,7 @@ msgstr "No está cargado"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1233
msgid "Actual repository"
-msgstr ""
+msgstr "Repositorio actual"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1316
msgid "Main Repository"
@@ -1403,7 +1407,7 @@ msgstr "Aplicar y cerrar"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1492
#: texmf-dist/scripts/tlshell/tlshell.tcl:1689
msgid "Changed entries are bold"
-msgstr ""
+msgstr "Los ingresos modificados están en negritas"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1505
msgid "platform"
@@ -1412,15 +1416,15 @@ msgstr "plataforma"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1624
#: texmf-dist/scripts/tlshell/tlshell.tcl:2330
msgid "Error"
-msgstr ""
+msgstr "Error"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1624
msgid "No paper sizes available"
-msgstr ""
+msgstr "No tamaños de papel disponibles"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1638
msgid "Paper sizes"
-msgstr ""
+msgstr "Tamaños del papel"
#: texmf-dist/scripts/tlshell/tlshell.tcl:1738
#, tcl-format
@@ -1540,10 +1544,14 @@ msgstr ""
#: texmf-dist/scripts/tlshell/tlshell.tcl:2293
msgid ""
"This TeX Live Manager front-end should be pretty self-explanatory.\n"
-"Note that it does not cover the full functionality of tlmgr. Notably, it "
+"Note that it does not cover the full functionality of tlmgr. Notably, it\n"
"does not cover user mode or backup and restore.\n"
"Consult the 'Tlmgr Help' menu for full documentation on tlmgr itself."
msgstr ""
+"Esta Interfaz Administrativa de TeX Live debe ser bastante explícito\n"
+"Note que no abarca toda la funcionalidad de tlmgr, principalmente, \n"
+"no cubre el material de Modo de Usuario o reservas de copias y restauración.\n"
+"Consulte el menú 'Tlmgr Help' para una completa documentación de tlmgr como tal."
#: texmf-dist/scripts/tlshell/tlshell.tcl:2327
#, tcl-format
@@ -1551,6 +1559,8 @@ msgid ""
"%s is not a local or remote repository.\n"
"Please configure a valid repository"
msgstr ""
+"%s no es un repositorio local o remoto.\n"
+"Por favor, configure un repositorio válido"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2647
#: texmf-dist/scripts/tlshell/tlshell.tcl:2669
@@ -1559,7 +1569,7 @@ msgstr "Archivo"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2671
msgid "Load repository"
-msgstr ""
+msgstr "Cargue repositorio"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2673
msgid "Exit"
@@ -1591,31 +1601,31 @@ msgstr "Reedificando archivos de los mapas de las fuentes..."
#: texmf-dist/scripts/tlshell/tlshell.tcl:2719
msgid "Add/replace 64-bit binaries"
-msgstr ""
+msgstr "Añádir/reemplazar binarios de 64-bit"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2722
msgid "Add/replace from local file"
-msgstr ""
+msgstr "Añada/reemplace de archivo local"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2726
msgid "Resynchronize with 32-bit"
-msgstr ""
+msgstr "Resincronizar con 32-bit"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2730
msgid "Remove 64-bit binaries"
-msgstr ""
+msgstr "Remueva binarios de 64-bit"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2749
msgid "GUI font scaling"
-msgstr ""
+msgstr "Ajustes de fuente de GUI"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2775
msgid "TLShell Help"
-msgstr ""
+msgstr "TLShell Help"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2776
msgid "Tlmgr Help"
-msgstr ""
+msgstr "Tlmgr Help"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2795
msgid "Restart self"
@@ -1640,7 +1650,7 @@ msgstr "Último comando de tlmgr:"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2839
#, tcl-format
msgid "Root at %s"
-msgstr ""
+msgstr "Raíz en %s"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2852
msgid "Package list"
@@ -1652,7 +1662,7 @@ msgstr "Instalado"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2872
msgid "Not installed"
-msgstr ""
+msgstr "No instalado"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2882
msgid "Updatable"
@@ -1704,15 +1714,15 @@ msgstr "Actualizar todo"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2948
msgid "Mark all displayed"
-msgstr ""
+msgstr "Seleccione todos los que se muestra"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2950
msgid "Mark none"
-msgstr "Marcar ninguno"
+msgstr "Seleccione ninguno"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2953
msgid "Only packages for installed platforms are displayed"
-msgstr ""
+msgstr "Solamente paquetes para plataformas instaladas se muestran"
#: texmf-dist/scripts/tlshell/tlshell.tcl:2963
msgid "Name"
@@ -1724,11 +1734,11 @@ msgstr "Descripción"
#: texmf-dist/scripts/tlshell/tlshell.tcl:3001
msgid "Multi-user"
-msgstr ""
+msgstr "Multi-usuario"
#: texmf-dist/scripts/tlshell/tlshell.tcl:3001
msgid "Single-user"
-msgstr ""
+msgstr "Único-usuario"
#: texmf-dist/scripts/tlshell/tlshell.tcl:3086
#, tcl-format
@@ -1736,10 +1746,12 @@ msgid ""
"%s is not writable. You can probably not do much.\n"
" Are you sure you want to continue?"
msgstr ""
+"%s no es grabable. Posiblemente no pueda hacer mucho.\n"
+" Está seguro que desea continuar?"
#: texmf-dist/scripts/tlshell/tlshell.tcl:3098
msgid "See internal help"
-msgstr ""
+msgstr "Ver ayuda interna"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:1
msgid "basic scheme (plain and latex)"
@@ -1748,6 +1760,8 @@ msgstr "esquema básico (TeX básico y LaTeX)"
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:2
msgid "book publishing scheme (core LaTeX and add-ons)"
msgstr ""
+"esquema de publicación de libros (core-LaTeX y otros programas\n"
+"complementarios."
#: /home/texlive/karl/Master/tlpkg/translations/shortdesc.pl:3
msgid "ConTeXt scheme"
@@ -2396,7 +2410,7 @@ msgstr ""
#~ "Añada %s/texmf/doc/man a MANPATH.\n"
#~ "Añada %s/texmf/doc/info a INFOPATH.\n"
#~ "Y en especial,añada %s/bin/%s\n"
-#~ "a su ruta (PATH) para sus sesiones actual y futuras."
+#~ "a su ruta (PATH) para sus sesiones actuales y futuras."
#~ msgid "Create shortcuts in menu and on desktop"
#~ msgstr "Crear enlaces en el menú y en el escritorio"
@@ -2478,7 +2492,7 @@ msgstr ""
#~ "Entonces podrá reiniciar el programa para otras actualizaciones."
#~ msgid "Use letter size instead of A4 by default"
-#~ msgstr "Usar tamaño de carta en vez de A4 por defecto"
+#~ msgstr "Usar tamaño de 8½x11 en vez de A4 estándar"
#~ msgid "%s collections out of %s "
#~ msgstr "%s colecciones de %s"