diff options
author | Karl Berry <karl@freefriends.org> | 2015-11-20 23:15:41 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-11-20 23:15:41 +0000 |
commit | ac00a0f196d83884f1543e50de7864b4078a3ba1 (patch) | |
tree | 0514fd472754fd27e653804438a2636a90c93423 /Master/texmf-dist/source/generic | |
parent | fc76887bf99e40ed1678e3250be897896776579b (diff) |
hyph-utf8 (20nov15)
git-svn-id: svn://tug.org/texlive/trunk@38905 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/generic')
6 files changed, 314 insertions, 203 deletions
diff --git a/Master/texmf-dist/source/generic/hyph-utf8/generate-converters.rb b/Master/texmf-dist/source/generic/hyph-utf8/generate-converters.rb index 0d71f6b410f..008e63e5ad5 100644 --- a/Master/texmf-dist/source/generic/hyph-utf8/generate-converters.rb +++ b/Master/texmf-dist/source/generic/hyph-utf8/generate-converters.rb @@ -25,7 +25,7 @@ $encodings.each do |encoding| file_out.puts "% This file is part of hyph-utf8 package and autogenerated." file_out.puts "% See http://tug.org/tex-hyphen" file_out.puts "%" - file_out.puts "% Copyright 2008-2014 TeX Users Group." + file_out.puts "% Copyright 2008-2015 TeX Users Group." file_out.puts "% You may freely use, modify and/or distribute this file." file_out.puts "% (But consider adapting the scripts if you need modifications.)" file_out.puts @@ -113,7 +113,7 @@ $encodings.each do |encoding| file_out.puts "% This file is part of hyph-utf8 package and autogenerated." file_out.puts "% See http://tug.org/tex-hyphen" file_out.puts "%" - file_out.puts "% Copyright 2008-2014 TeX Users Group." + file_out.puts "% Copyright 2008-2015 TeX Users Group." file_out.puts "% You may freely use, modify and/or distribute this file." file_out.puts "% (But consider adapting the scripts if you need modifications.)" file_out.puts "%" diff --git a/Master/texmf-dist/source/generic/hyph-utf8/generate-pattern-loaders.rb b/Master/texmf-dist/source/generic/hyph-utf8/generate-pattern-loaders.rb index 5cf5933e803..f861cec1464 100644 --- a/Master/texmf-dist/source/generic/hyph-utf8/generate-pattern-loaders.rb +++ b/Master/texmf-dist/source/generic/hyph-utf8/generate-pattern-loaders.rb @@ -35,7 +35,7 @@ text_header = % source/generic/hyph-utf8/generate-pattern-loaders.rb % See also http://tug.org/tex-hyphen % -% Copyright 2008-2014 TeX Users Group. +% Copyright 2008-2015 TeX Users Group. % You may freely use, modify and/or distribute this file. % (But consider adapting the scripts if you need modifications.) % diff --git a/Master/texmf-dist/source/generic/hyph-utf8/languages.rb b/Master/texmf-dist/source/generic/hyph-utf8/languages.rb index e67605cdd8c..c5db306161f 100644 --- a/Master/texmf-dist/source/generic/hyph-utf8/languages.rb +++ b/Master/texmf-dist/source/generic/hyph-utf8/languages.rb @@ -784,11 +784,11 @@ class Languages < Hash "exceptions" => false, "message" => "Spanish hyphenation patterns", - "version" => "4.6", - "last_modified" => "2010-05-18", + "version" => "4.7", + "last_modified" => "2015-11-12", "type" => "dictionary", "authors" => [ "javier_bezos" ], - "licence" => "LPPL", + "licence" => "MIT/X11", "description_s" => "Spanish hyphenation patterns", "description_l" => [ #......................................................................# diff --git a/Master/texmf-dist/source/generic/hyph-utf8/languages/es/eshyph-make.lua b/Master/texmf-dist/source/generic/hyph-utf8/languages/es/eshyph-make.lua index 4fd01932953..17ccdf2dc33 100644 --- a/Master/texmf-dist/source/generic/hyph-utf8/languages/es/eshyph-make.lua +++ b/Master/texmf-dist/source/generic/hyph-utf8/languages/es/eshyph-make.lua @@ -1,7 +1,39 @@ -- (encoding:utf-8) --- (c) Javier Bezos 2009 --- License: LPPL. v. 4.5 +-- GUIONIZADO DE PALABRAS +-- ~~~~~~~~~~~~~~~~~~~~~ +-- v 4.7 +-- +-- License: MIT/X11 +-- +-- Copyright (c) 1993, 1997 Javier Bezos +-- Copyright (c) 2001-2015 Javier Bezos and CervanTeX +-- +-- Permission is hereby granted, free of charge, to any person obtaining a copy +-- of this software and associated documentation files (the "Software"), to deal +-- in the Software without restriction, including without limitation the rights +-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +-- copies of the Software, and to permit persons to whom the Software is +-- furnished to do so, subject to the following conditions: +-- +-- The above copyright notice and this permission notice shall be included in +-- all copies or substantial portions of the Software. +-- +-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +-- SOFTWARE. +-- +-- For further info, bug reports and comments: +-- +-- http://www.tex-tipografia.com/spanish_hyphen.html + +---------- + +-- ethymologic, trailing no, bad words, prefixes, consonant + h, tl patfile = io.open('eshyph.tex', 'w') patfile:write('\\patterns{\n') @@ -11,24 +43,25 @@ patfile:write('\\patterns{\n') digraphs = 'ch ll' liquids = 'bl cl fl gl kl pl vl br cr dr fr gr kr pr rr tr vr' -avoid = 'tl' +avoid = 'tl ts tx tz' silent = 'h' +chrl = 'chr chl' letters = 'bcdfghjklmnpqrstvwxyz' for n in letters:gmatch('.') do if silent:find(n) then - patfile:write('2' .. n .. '.') + patfile:write(' 4' .. n .. '.') else - patfile:write('1' .. n .. ' 2' .. n .. '.') + patfile:write('1' .. n .. ' 4' .. n .. '. .' .. n .. '2') end for m in letters:gmatch('.') do pat = n .. m if digraphs:find(pat) then - patfile:write(' ' .. n .. '4'.. m .. ' 2' .. pat .. '.') + patfile:write(' ') elseif liquids:find(pat) then - patfile:write(' ' .. n .. '2'.. m .. ' 2' .. pat .. '.') + patfile:write(' ') elseif avoid:find(pat) then - patfile:write(' 2' .. n .. '2'.. m) + patfile:write(' ') elseif silent:find(m) then patfile:write(' 2' .. n .. '1' .. m) else @@ -38,7 +71,28 @@ for n in letters:gmatch('.') do patfile:write('\n') end -patfile:write('1ñ 2ñ.\n') +patfile:write('1ñ 4ñ.\n') + +for n in digraphs:gmatch('%S+') do + patfile:write(n:sub(1,1) .. '4' .. n:sub(2,2) .. ' 4' .. n .. '.') + for m in letters:gmatch('.') do + pat = n .. m + if chrl:find(pat) then + patfile:write(' ' .. n .. '2' .. m) + else + patfile:write(' 2' .. pat) + end + end + patfile:write('\n') +end + +for n in liquids:gmatch('%S+') do + patfile:write(n:sub(1,1) .. '2' .. n:sub(2,2) .. ' 4' .. n .. '.') + for m in letters:gmatch('.') do + patfile:write(' 2' .. n .. '2' .. m) + end + patfile:write('\n') +end letters = 'bcdlmnrstxy' etim = 'pt ct cn ps mn gn ft pn cz tz ts' diff --git a/Master/texmf-dist/source/generic/hyph-utf8/languages/es/eshyph.src b/Master/texmf-dist/source/generic/hyph-utf8/languages/es/eshyph.src index 912f287322c..bf78e9ec712 100644 --- a/Master/texmf-dist/source/generic/hyph-utf8/languages/es/eshyph.src +++ b/Master/texmf-dist/source/generic/hyph-utf8/languages/es/eshyph.src @@ -1,10 +1,21 @@ -% 4.5 +% v 4.7 License MIT/X11. See eshyph-make.lua san4c5t plan4c5t % +o1eu2 +a1ae2 +a1aó2 +eo1á2 +eo1e2 +o1ae2 +o1eó2 +% 2no. -%.no2 -%.ano4 % ano-dino +2t2l +2t2s +2t2x +2t2z +tz3s4ch 4caca4 % caca-huete 4cago4 4caga4 4cagas. % Chi-cago 4teta. 4tetas. % es-teta @@ -14,7 +25,7 @@ plan4c5t 4meable. 4meables. % imper-meable 4pedo4 % bÃ-pedo % tubér-culo % 4culo4 -3mente. +5mente. % -aer aero deca % ieron etc. no en aer. % iera iese no en aer @@ -157,6 +168,7 @@ e5r4a3do. e5r4a3da. e5r4a3dos. e5r4a3das. e5r4a3dor. e5r4a3dora. e5r4a3dores. e5r4a3doras. % /acto/ % (gal)acto, (l)acto +/aero/ /afro/ .a2 % a, an (prevent) .an2a2 .an2e2 .an2i2 .an2o2 .an2u2 @@ -190,7 +202,6 @@ ana3là .anu3da .anu3l asu3b2 -/aero/ /anfi/ /anglo/ /ante/ @@ -198,14 +209,30 @@ asu3b2 acante2 4Ãsmo. 4Ãsmos. 4Ãsta. 4Ãstas. 4Ãstico. 4Ãsticos. 4Ãstica. 4Ãsticas. -t4eo3nes. +pante4o3n +.anteo3nes mante4a -e4a3miento +e4a3miento +e4ándo +tras3antea /.anti/ ti2o3qu ti2o3co /archi/ /auto/ +.bi1anual +.bi1aur +.bi1ox +.bi1ó2x +.bi1un /biblio/ +bien2 bien3h bien3v bien3q bien3m bien3t +b4ien3do. .su3b4ien b4ien3das. +.bie4n3and +.bie4n3a4pa +.bie4n3a4ve +.bie4n3est +.bie4n3int +.bie4n3o4lie /bio/ bi1u2nà /cardio/ @@ -217,47 +244,42 @@ o4i3dea. o4i3deas. o4i3dal. o4i3dales. 4o2i3de. 4o2i3des. 4i2dal. 4i2dales. 4i3deo. 4i3deos. /cito/ -3c2neor /cnico/ % (té)cnico %?.co? .co2a2 .co2e2 .co2i2 .co3o4 .co2u2 % Note coo -.co2á2 .co2é2 .co2Ã2 .co2ó2 .co2ú2 -co4á3gul -co4acci -co4acti -co4adju -co4a3dun -co4adyu -co3agen -co4a3gul -co4a3lic -co4aptac -co4art -co4árt -co4e3fic -co4erc -co4erz -co4e3tá -co3exis -co4imbr -co4inci -co4i3to -co3n4imbri -co4o3per -co4o3pér -co4opt -co4ord -con1imbr -con1urb +.co2á2 .co2é2 .co2Ã2 .co2ó2 .co2ú2 +.co3acree +.coá3gul +.co3agen +.coa3gul +.coa3lic +.co3arrend +.co3auto +.co3edic +.co3edit +.co3educ +.co3efici +.coe3tá +.co3exis +.co3imput +.coi3to +.co4o3per +.co4o3pér +.co4orden +.co4ordin +.co4ordÃn +.co4opt +.co4ópt +.co2nurb /cripto/ /crono/ /contra/ % -aer = -/deca/ % deca, (en)deca, -aer +/deca/ % deca, (en)deca, (do)deca, -aer 4e3dro. 4e3dros. 4é3drico. 4é3dricos. 4é3drica. -4é3dricas. +4é3dricas. +4Ã3ble. 4Ã3bles. /.de2s/ deca2i3mient -decimo1 3sa. 3sas. *órde *orde @@ -265,7 +287,7 @@ decimo1 *aboll *aboto *abr -desa3brid +des4a3brid *abroch *aceit *aceler @@ -294,6 +316,7 @@ desa3craliz *afil *afin *afor +*agu desa3gú desa3garr *agraci @@ -301,8 +324,7 @@ desa3garr *agravi *agreg *agrup -*agu -desa3guisado +des4a3guis *aherr *ahij *ajust @@ -310,10 +332,10 @@ desa3guisado *alent *alfom *alfor -*aliñ -desa3lin *alien -*aline +*a4line +*a4liné +*aliñ desa3liv *alm *almid @@ -367,8 +389,8 @@ desa3rroll *asent *asist *asn -desa3soseg -desa3sosieg +% desa3soseg +% desa3sosieg *atenc *atend *atiend @@ -480,7 +502,6 @@ de3s4ért *espa de3sesperac *esperanz -de3sesper *estabil *estim de3sider @@ -493,7 +514,7 @@ de3silusi *imagin *iman *impon -*impresX +*impres *incent *inclin *incorp @@ -507,11 +528,12 @@ de3su3dar de3su3das de3su3dan *inhib *insect *instal +ini3ci +inÃ3ci de3s4integr de3s4inter *intox *inver -*impres de3sisten de3isti *obedec @@ -539,27 +561,64 @@ de3s4oseg *unir *unier *unim -.dieci1o2 -/dodeca/ +.diecio2 /ecano/ % (m)ecano /eco/ /ectro/ % (esp)ectro, (el)ectro -/.en2/ -%.en2a2 .en2e2 .en2i2 .en2o2 .en2u2 -%.en2á2 .en2é2 .en2Ã2 .en2ó2 .en2ú2 +/.e2n2/ .ene3mist .ene3mÃst .eno3jar .enu3mera .enu3merá .enu3mere +.en3aceit +.en3arb +4emboca 4o3lógico. 4o3lógica. 4o3lógicos. 4o3lógicas. 4o3lógicamente. 4o3logÃa. 4o3logÃas. 4ó3logo. 4ó3loga. 4ó3logos. 4ó3logas. /endo/ /ento/ % (ci)ento -4emboca /entre/ /euco/ % (l)euco /euro/ % euro, (n)euro +/.e2x2/ +3gono. 3gonos. 3gonal. 3gonales. +exá3men +exá3ri +exé3ge +exó3ti +exa3cerb +exa3ger +exa3min +exe3cr +exe3géti +exe3quia +exi3ja exi3já exÃ3ja +exi3ge exÃ3ge +exi3gi exi3gà +exi3jo exÃ3jo +3gua. 3guas. 3guo. 3guos. +exi3lia exi3liá exÃ3lia +exi3lie exi3lié exÃ3lie +exi3lio exi3lió exÃ3lio +exi3ma exi3má exÃ3ma +exi3mi exi3mà exÃ3mi +exi3me exi3mé exÃ3me +exi3mo exi3mó exÃ3mo +exi3tos +exi3lar +exo3ner +exo3crin +exo3tér +exo3tic +exo3tiq +exo3tism +exo3gami +exo3gámi +exu3ber +exu3dar +exu3dat +exu3dac /extra/ u4teri .cau5t @@ -567,23 +626,32 @@ u4teri /fono/ /foto/ /gastro/ -/geo/ +/geo/ +/giga/ /gluco/ /hecto/ /helio/ /hemato/ /hemi/ /hemo/ -2al. 2ales. +2al. 2ales. +.hepta1e /hexa/ /hidro/ /hiper/ -pe3r4e3mia +pe3r4e3mia +hipe3r4i3cÃne +hipe3r4o3nimi +hipe3r4o3nÃmi +hipe3r4ó3nimo +hipe3r4o3xia +/hipo/ +/spano/ % (hi)spano /histo/ -/homo/ -/icono/ -.i2n2a2 .i2n2e2 .i2n2i2 .i2n2o2 .i2n2u2 -.i2n2á2 .i2n2é2 .i2n2Ã2 .i2n2ó2 .i2n2ú2 +/homo/ +/ibero/ +/icono/ +/.i2n2/ .in3abord .in3abarc .in3acent @@ -605,7 +673,10 @@ pe3r4e3mia .in3efici .in3eludi .ine3narr -.ini3cia .ini3ciá .ini3cie +ini3cia inÃ3cia ini3ciá ini3cie +.rei3na +re3ini3cia re3inÃ3cia re3ini3ciá re3ini3cie +.ini3cuo .ini3cua .ino3cuo .ino3cua .ino3cula .ino3culá .ino3cule .inú3til @@ -616,26 +687,40 @@ pe3r4e3mia .in3ter2e3sá .in3ter2e3sé .in3ter2e3só .de3s4in3ter2e3sa .de3s4in3ter2e3se .de3s4in3ter2e3so .de3s4in3ter2e3sá .de3s4in3ter2e3sé .de3s4in3ter2e3só -3te3ri3n 4te4r5i4nsu +4n3te3ri3n 4n4te4r5i4nsu .in3te3r4rog -.in3te3r4rupc .in3te3r4rupt .in3te3r4rump -/intra/ +.in3te3r4rupc .in3te3r4rupt .in3te3r4rump +inter4és +inte3r4esar +inte4r4i4n4 +inter5ins5t +inte5r4regno +inte3r4ior4 +4i4ano. 4i4ana. 4i4anos. 4i4anas. +/intra/ /iso/ /kilo/ /macro/ mal2 ma4l3h .ma4l3e4du mal3b mal3c mal3d mal3f mal3g mal3m mal3p mal3q mal3s mal3t mal3v -bien2 bien3h bien3v bien3q bien3m bien3t -b4ien3do. .su3b4ien b4ien3das. +.mal1acon +.mal1acos +.mala1e +.mal1andant +.mal1andanz +.mal1est +.mal1int /maxi/ /megalo/ /mega/ /melano/ /micro/ -/mili/ +/.mili/ familia3ri ia5res. -amili6a a3rio -li5área +amili6a +a3rio a3ria +li5área +mili4ar /mini/ 2os. 2o3so. 2o3sos. 2o3sa. 2o3sas. 2o3samente. mini4a5tur @@ -645,7 +730,8 @@ mini4a5tur 2i3co. 2i3cos. 2i3ca. 2i3cas. /namo/ % (di)namo /necro/ -/neo/ +/neo/ % (cra)neo +3c2neor /neto/ % (mag)neto /norte/ /octo/ @@ -654,8 +740,15 @@ mini4a5tur /omni/ i2o. i2os. /paleo/ +.pa4n1a4meri +.pa4n1europ +.pa4n1afri +.pa4n1hisp +.pa4n1ópti /para/ -para2is. aÃ5so. aÃ5sos. +para2is. aÃ5so. aÃ5sos. +para4Ãso +para4ulata /penta/ /piezo/ /pluri/ @@ -666,13 +759,14 @@ poli4arq poli4árq poli4éste poli4andr poli4antea +poli4arca expoli4 -.pos2t2a2 .pos2t2e2 .pos2t2i2 .pos2t2o2 .pos2t2u2 -.pos2t2á2 .pos2t2é2 .pos2t2Ã2 .pos2t2ó2 .pos2t2ú2 +/.pos2t2/ .pos3tin .pos3tÃn pos3ta. pos3tas. s3te. s3tes. s3tal. s3ta3les. s3ti3lla. s3ti3llas. s3ti3llón. s3ti3llones. +s3tor. s3tora. s3toras. s3tores. .pos3tó3ni .pos3terg .pos3te3ri @@ -681,24 +775,29 @@ s3ti3lla. s3ti3llas. s3ti3llón. s3ti3llones. .pos3ti3ne .pos3ti3za .pos3ti3zo .pos3tu3ra -s3tor. s3tora. s3toras. s3tores. .pos3tu3la .pos3tu3lá .pos3tu3le .pos3tu3lé .post3elec .post3impr .post3ind .post3ope -.post3rev -.pre2a2 .pre2e2 .pre2i2 .pre2o2 .pre2u2 .pre2h2 +.pos2t3rev +.pos2t3rom +.pre2a2 .pre2e2 .pre2i2 .pre2o2 .pre2u2 .pre2á2 .pre2é2 .pre2Ã2 .pre2ó2 .pre2ú2 +.pre1h2 pre3elij pre3elig pre3exis pre3emin preo3cup preo2cúp pre3olà pre3opin -.pro2a2 .pro2e2 .pro2i2 .pro2o2 .pro2u2 .pro2h2 -.pro2á2 .pro2é2 .pro2Ã2 .pro2ó2 .pro2ú2 +/.pro2/ +.pro3abort /proto/ +/psico/ +3p2sic +3p2siq +/quete/ % (re)quete /radio/ /ranco/ % (f)ranco .re2a2 .re3e4 .re2i2 .re2o2 .re2u2 @@ -716,17 +815,31 @@ ea3cio. ea3cios. ea3cia. ea3cias. .reu3mati .reu3máti .re3unir .re3unÃr .re3usar .re3usár -.re3utiliz .re3utilÃz +.re3utiliz .re3utilÃz +.re3a2eg +.re3a2q +.re3a2z +.re3a2grup +.re3i2m +.re3inc +.re3ing +.re3ins +.re3int +.re3o2b +.re3oc +.re3oj +.re3orga +.re3unt /rmano/ % (ge)rmano -/retro/ +/retro/ /romo/ % (c)romo -/sobre/ /semi/ i2a. i2as. 2ótic emi2o2 -/seudo/ % (p)seudo +/2seudo/ % (p)seudo o2os. -.so3a4s +.so3a4s % soasar +/sobre/ /socio/ a3rio. a3rios. 3logÃa @@ -757,125 +870,69 @@ a3rio. a3rios. .sub3esta .su3burbi .su4b5rein +.su2d1a2fr +.su2d1a2me +.su2d1este +su4d3oes +.su2r1a2me +.su2r1est +.su2r1oes /super/ % -ar +ra5ra ra5rá ra5re ra5ré ra5rà ra5ro supe3r4a4r supe3r4á4r supe3r4á3vit. supe3r4á3vits. +super4ior 4a3ción. 4a3ciones. 4e3rior. 4e3riores. 4e3riora. 4e3rioras. 4e3riormente. 4e3rioridad. 4e3rioridades. -4e3ra3ble. 4e3ra3bles. 4e3ra3blemente. +4e3r4a3ble. 4e3r4a3bles. 4e3r4a3blemente. pe5r4ante perpon5d6r /supra/ -sup6ra +sup6ra % /talmo/ % (of)talmo /tele/ -4ósteo. 4ósteos. +4ósteo. 4ósteos. +.tele1imp +.tele1obj +.tele4o3lót /termo/ /tetra/ /topo/ +/.tra2s/ +% .tra2s1a2 +% .tra2s1o2 +.tra3s2o3ñ +/tran2s/ +tran2s1alp +tran2s1and +tran2s1atl +tran2s1oce +tran2s1ur +tran3sacci +tran3seún +tran3se3xu +tran3si3cion tran3si3ción +tran3si3gi tran3si3gà tran3si3ge +tran3si3ja tran3si3já tran3si3jo +tran3sisto +tran3si3ta tran3si3tá tran3si3te tran3si3té tran3si3to tran3si3tó +tran3si3tiv +tran3si3tori +tran3subst tran3sust +.tri1ó2x /tropo/ % (ant)ropo -poi3de. poi3des. -/ultra/ +/ultra/ +/vice/ +/video/ /xeno/ -inter4és -inter4esar -inter4in -inter4ino -inter4ior -mili4ar -mili4ario -para4Ãso -para4ulata -super4able -super4ación -super4ior -tran4sacc -trans4ar -trans4eúnte -trans4iber -trans4ición -trans4ido -trans4igen -trans4igir -trans4istor -trans4itab -trans4it -trans4itorio -trans4ubsta -ultra4Ãsmo -wa3s4h -.bi1anual -.bi1aur -.bien1and -.bien1apa -.bien1ave -.bien1est -.bien1int -.bi1ox -.bi1ó2x -.bi1un -.en1aceit -.en1aciy -.en1aguach -.en1aguaz -.en1anch -.en1apa -.en1arb -.en1art -.en2artr -.en1ej -.hepta1e -.intra1o -.intra1u -.mal1acon -.mal1acos -.mala1e -.mal1andant -.mal1andanz -.mal1est -.mal1int -.pa4n1a4meri +/zoo/ +wa3s4h +3hablante +3habiente +3aficionad %.pan1esl -.pa4n1europ -.pa4n1afri %.pan1isl -.pa4n1ópti -3p2sic -3p2siq -.re3a2eg -.re3a2q -.re3a2z -.re3a2grup -.re3i2m -.re3inc -.re3ing -.re3ins -.re3int -.re3o2b -.re1oc -.re1oj -.re3orga -.re1unt -.retro1a -.su2d1a2fr -.su2d1a2me -.su2d1est -su4d3oes -.sur1a2me -.sur1est -.sur1oes -.tele1imp -.tele1obj -.tra2s1a -.tra2s1o -.tra2s2oñ -.tran2s1alp -.tran2s1and -.tran2s1atl -.tran2s1oce -.tran2s1ur -.tri1ó2x % pos (impedir) = % tri = (faltan ex) % uni = (faltan excep) diff --git a/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/README b/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/README index 6154587b019..418910cbd5c 100644 --- a/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/README +++ b/Master/texmf-dist/source/generic/hyph-utf8/languages/gl/README @@ -22,4 +22,4 @@ glhybiox.tex, glhymed.tex, glhyquim.tex, glhytec.tex & glhyxeog.tex: The files for specific patterns are very incomplete and feedback is welcome. ---Javier A. Múgica +--Javier A. Múgica |