text-hyphen 1.0.2 → 1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. data/.gemtest +0 -0
  2. data/History.rdoc +54 -0
  3. data/License.rdoc +159 -0
  4. data/Manifest.txt +67 -5
  5. data/README.rdoc +69 -0
  6. data/Rakefile +8 -4
  7. data/bin/{hyphen → ruby-hyphen} +0 -0
  8. data/lib/text-hyphen.rb +1 -0
  9. data/lib/text/hyphen.rb +74 -111
  10. data/lib/text/hyphen/language.rb +90 -26
  11. data/lib/text/hyphen/language/1.8/ca.rb +171 -0
  12. data/lib/text/hyphen/language/1.8/cs.rb +360 -0
  13. data/lib/text/hyphen/language/1.8/da.rb +117 -0
  14. data/lib/text/hyphen/language/1.8/de1.rb +718 -0
  15. data/lib/text/hyphen/language/1.8/de2.rb +680 -0
  16. data/lib/text/hyphen/language/1.8/en_uk.rb +789 -0
  17. data/lib/text/hyphen/language/1.8/en_us.rb +490 -0
  18. data/lib/text/hyphen/language/1.8/es.rb +287 -0
  19. data/lib/text/hyphen/language/1.8/et.rb +335 -0
  20. data/lib/text/hyphen/language/1.8/eu.rb +112 -0
  21. data/lib/text/hyphen/language/1.8/fi.rb +112 -0
  22. data/lib/text/hyphen/language/1.8/fr.rb +389 -0
  23. data/lib/text/hyphen/language/1.8/ga.rb +606 -0
  24. data/lib/text/hyphen/language/1.8/hr.rb +122 -0
  25. data/lib/text/hyphen/language/1.8/hsb.rb +179 -0
  26. data/lib/text/hyphen/language/1.8/hu1.rb +380 -0
  27. data/lib/text/hyphen/language/1.8/hu2.rb +1278 -0
  28. data/lib/text/hyphen/language/1.8/ia.rb +71 -0
  29. data/lib/text/hyphen/language/1.8/id.rb +91 -0
  30. data/lib/text/hyphen/language/1.8/is.rb +387 -0
  31. data/lib/text/hyphen/language/1.8/it.rb +133 -0
  32. data/lib/text/hyphen/language/1.8/la.rb +132 -0
  33. data/lib/text/hyphen/language/1.8/mn.rb +101 -0
  34. data/lib/text/hyphen/language/1.8/nl.rb +1250 -0
  35. data/lib/text/hyphen/language/1.8/no1.rb +299 -0
  36. data/lib/text/hyphen/language/1.8/no2.rb +134 -0
  37. data/lib/text/hyphen/language/1.8/pl.rb +478 -0
  38. data/lib/text/hyphen/language/1.8/pt.rb +54 -0
  39. data/lib/text/hyphen/language/1.8/sv.rb +447 -0
  40. data/lib/text/hyphen/language/1.9/ca.rb +174 -0
  41. data/lib/text/hyphen/language/1.9/cs.rb +361 -0
  42. data/lib/text/hyphen/language/1.9/da.rb +117 -0
  43. data/lib/text/hyphen/language/1.9/de1.rb +719 -0
  44. data/lib/text/hyphen/language/1.9/de2.rb +682 -0
  45. data/lib/text/hyphen/language/1.9/en_uk.rb +791 -0
  46. data/lib/text/hyphen/language/1.9/en_us.rb +492 -0
  47. data/lib/text/hyphen/language/1.9/es.rb +289 -0
  48. data/lib/text/hyphen/language/1.9/et.rb +336 -0
  49. data/lib/text/hyphen/language/1.9/eu.rb +114 -0
  50. data/lib/text/hyphen/language/1.9/fi.rb +113 -0
  51. data/lib/text/hyphen/language/1.9/fr.rb +391 -0
  52. data/lib/text/hyphen/language/1.9/ga.rb +608 -0
  53. data/lib/text/hyphen/language/1.9/hr.rb +123 -0
  54. data/lib/text/hyphen/language/1.9/hsb.rb +180 -0
  55. data/lib/text/hyphen/language/1.9/hu1.rb +382 -0
  56. data/lib/text/hyphen/language/1.9/hu2.rb +1280 -0
  57. data/lib/text/hyphen/language/1.9/ia.rb +73 -0
  58. data/lib/text/hyphen/language/1.9/id.rb +93 -0
  59. data/lib/text/hyphen/language/1.9/is.rb +388 -0
  60. data/lib/text/hyphen/language/1.9/it.rb +134 -0
  61. data/lib/text/hyphen/language/1.9/la.rb +134 -0
  62. data/lib/text/hyphen/language/1.9/mn.rb +102 -0
  63. data/lib/text/hyphen/language/1.9/nl.rb +1252 -0
  64. data/lib/text/hyphen/language/1.9/no1.rb +301 -0
  65. data/lib/text/hyphen/language/1.9/no2.rb +136 -0
  66. data/lib/text/hyphen/language/1.9/pl.rb +479 -0
  67. data/lib/text/hyphen/language/1.9/pt.rb +55 -0
  68. data/lib/text/hyphen/language/1.9/sv.rb +449 -0
  69. data/lib/text/hyphen/language/ca.rb +3 -173
  70. data/lib/text/hyphen/language/cs.rb +3 -362
  71. data/lib/text/hyphen/language/da.rb +3 -117
  72. data/lib/text/hyphen/language/de.rb +1 -0
  73. data/lib/text/hyphen/language/de1.rb +3 -724
  74. data/lib/text/hyphen/language/de2.rb +3 -685
  75. data/lib/text/hyphen/language/en_uk.rb +3 -790
  76. data/lib/text/hyphen/language/en_us.rb +3 -492
  77. data/lib/text/hyphen/language/es.rb +3 -288
  78. data/lib/text/hyphen/language/et.rb +3 -336
  79. data/lib/text/hyphen/language/eu.rb +3 -114
  80. data/lib/text/hyphen/language/fi.rb +3 -112
  81. data/lib/text/hyphen/language/fr.rb +3 -391
  82. data/lib/text/hyphen/language/ga.rb +3 -607
  83. data/lib/text/hyphen/language/hr.rb +3 -123
  84. data/lib/text/hyphen/language/hsb.rb +2 -179
  85. data/lib/text/hyphen/language/hu.rb +1 -0
  86. data/lib/text/hyphen/language/hu1.rb +3 -384
  87. data/lib/text/hyphen/language/hu2.rb +3 -1282
  88. data/lib/text/hyphen/language/ia.rb +3 -72
  89. data/lib/text/hyphen/language/id.rb +3 -96
  90. data/lib/text/hyphen/language/is.rb +3 -389
  91. data/lib/text/hyphen/language/it.rb +3 -134
  92. data/lib/text/hyphen/language/la.rb +3 -133
  93. data/lib/text/hyphen/language/mn.rb +3 -102
  94. data/lib/text/hyphen/language/ms.rb +9 -0
  95. data/lib/text/hyphen/language/nl.rb +3 -1252
  96. data/lib/text/hyphen/language/no.rb +1 -0
  97. data/lib/text/hyphen/language/no1.rb +3 -302
  98. data/lib/text/hyphen/language/no2.rb +3 -137
  99. data/lib/text/hyphen/language/pl.rb +3 -479
  100. data/lib/text/hyphen/language/pt.rb +3 -55
  101. data/lib/text/hyphen/language/sv.rb +3 -448
  102. data/test/data/bug_9807_latin1.rb +10 -0
  103. data/test/data/bug_9807_utf-8.rb +10 -0
  104. data/test/test_bugs.rb +14 -4
  105. data/test/test_text_hyphen.rb +3 -3
  106. data/text-hyphen.gemspec +29 -29
  107. metadata +101 -40
  108. data/COPYING.txt +0 -339
  109. data/History.txt +0 -23
  110. data/LICENCE.txt +0 -47
  111. data/README.txt +0 -82
@@ -0,0 +1,112 @@
1
+ # Hyphenation patterns for Text::Hyphen in Ruby: Basque
2
+ # Converted from the TeX hyphenation/bahyph.tex file, by Juan M.
3
+ # Aguirregabiria (wtpagagj@lg.ehu.es) in 1997 based on work by Julio
4
+ # Sanchez (jsanchez@gmv.es) in 1991.
5
+ #
6
+ # The original copyright holds and is reproduced in the source to this file.
7
+ # The Ruby version of these patterns are copyright 2004 Austin Ziegler.
8
+ #--
9
+ # Hyphenation patterns for Basque.
10
+ # This file has been written by Juan M. Aguirregabiria (wtpagagj@lg.ehu.es)
11
+ # on February 1997 and is based on the shyphen.sh script that generates the
12
+ # Spanish patterns as compiled by Julio Sanchez (jsanchez@gmv.es) on
13
+ # September 1991. The original Copyright follows and applies also to this
14
+ # file whose last version will be always available by anonymous ftp from
15
+ # tp.lc.ehu.es or by poynting your Web browser to
16
+ # http://tp.lc.ehu.es/basque.html
17
+ #
18
+ # Hyphenation patterns for Spanish.
19
+ # Compiled by Julio Sanchez (jsanchez@gmv.es) on September 1991. These
20
+ # patterns have been derived from "On Word Division in Spanish", Jos'e A.
21
+ # Ma~nas, Communications of the ACM, and implemented in his package ftc. You
22
+ # can get ftc and a draft of the abovementioned paper from goya.dit.upm.es
23
+ # in src/text.proc/ftc.Z. FTP access may be available. Otherwise, send help
24
+ # to info@goya.dit.upm.es for details on use of the mail server.
25
+ #
26
+ # Rules mentioned below are those described in that paper. After several
27
+ # unsatisfactory attempts to pretend I knew better, these patterns closely
28
+ # follow that paper. Pattern 'tl' is not considered. It is conflictive and
29
+ # ftc does not use it either.
30
+ #
31
+ # These patterns have been generated by shyphen.sh version 1.0, shyphen.sh
32
+ # is a sh script that allows a number of choices. Full benefit from some of
33
+ # these options can only be obtained if appropriate fonts are available.
34
+ #
35
+ # Follows a copyright notice. This is not in the public domain, but the
36
+ # copyright is essentially a hold-harmless clause. That is, use it at will,
37
+ # but don't sue me if you don't like it.
38
+ #
39
+ # COPYRIGHT NOTICE
40
+ #
41
+ # These patterns and the generating sh script are Copyright (c) GMV 1991
42
+ # These patterns were developed for internal GMV use and are made public in
43
+ # the hope that they will benefit others. Also, spreading these patterns
44
+ # throughout the Spanish-language TeX community is expected to provide
45
+ # back-benefits to GMV in that it can help keeping GMV in the mainstream of
46
+ # spanish users. However, this is given for free and WITHOUT ANY WARRANTY.
47
+ # Under no circumstances can Julio Sanchez, GMV, Jos'e A. Ma~nas or any
48
+ # agents or representatives thereof be held responsible for any errors in
49
+ # this software nor for any damages derived from its use, even in case any
50
+ # of the above has been notified of the possibility of such damages. If any
51
+ # such situation arises, you responsible for repair. Use of this software is
52
+ # an explicit acceptance of these conditions.
53
+ #
54
+ # You can use this software for any purpose. You cannot delete this
55
+ # copyright notice. If you change this software, you must include comments
56
+ # explaining who, when and why. You are kindly requested to send any changes
57
+ # to tex@gmv.es. If you change the generating script, you must include code
58
+ # in it such that any output is clearly labeled as generated by a modified
59
+ # script.
60
+ #
61
+ # Despite the lack of warranty, we would like to hear about any problem you
62
+ # find. Please report problems to tex@gmv.es.
63
+ #
64
+ # END OF COPYRIGHT NOTICE
65
+ #
66
+ # Options included in this set: basic
67
+ # Open vowels: a e o
68
+ # Closed vowels: i u
69
+ # Consonants: b c d f g j k l m n p q r s t v w x y z
70
+ #
71
+ # Some of the patterns below represent combinations that never happen in
72
+ # Basque. Would they happen, they would be hyphenated according to the
73
+ # rules.
74
+ #
75
+ # This keeps {cat|lc}code changes, if any, local. Nice to users of
76
+ # multilingual versions. These are the minimum changes needed to process the
77
+ # patterns. These and other changes will have to be re-enacted when Basque
78
+ # be established as the current language. See the babel docs if you don't
79
+ # understand this.
80
+ #++
81
+ require 'text/hyphen/language'
82
+
83
+ Text::Hyphen::Language::EU = Text::Hyphen::Language.new do |lang|
84
+ lang.patterns <<-PATTERNS
85
+ % Rule SR1
86
+ % Vowels are kept together by the defaults
87
+
88
+ % Rule SR2
89
+ % Attach vowel groups to left consonant
90
+ 1ba 1be 1bo 1bi 1bu 1ca 1ce 1co 1ci 1cu 1da 1de 1do 1di 1du 1fa 1fe 1fo 1fi
91
+ 1fu 1ga 1ge 1go 1gi 1gu 1ja 1je 1jo 1ji 1ju 1ka 1ke 1ko 1ki 1ku 1la 1le 1lo
92
+ 1li 1lu 1ma 1me 1mo 1mi 1mu 1na 1ne 1no 1ni 1nu 1pa 1pe 1po 1pi 1pu 1qa 1qe
93
+ 1qo 1qi 1qu 1ra 1re 1ro 1ri 1ru 1sa 1se 1so 1si 1su 1ta 1te 1to 1ti 1tu 1va
94
+ 1ve 1vo 1vi 1vu 1wa 1we 1wo 1wi 1wu 1xa 1xe 1xo 1xi 1xu 1ya 1ye 1yo 1yi 1yu
95
+ 1za 1ze 1zo 1zi 1zu
96
+
97
+ % Rule SR3
98
+ % Build legal consonant groups, leave other consonants bound to
99
+ % the previous group. This overrides part of the SR2 pattern
100
+ % group.
101
+ 1l2la 1l2le 1l2lo 1l2li 1l2lu 1r2ra 1r2re 1r2ro 1r2ri 1r2ru 1t2sa 1t2se
102
+ 1t2so 1t2si 1t2su 1t2xa 1t2xe 1t2xo 1t2xi 1t2xu 1t2za 1t2ze 1t2zo 1t2zi
103
+ 1t2zu 1b2la 1b2le 1b2lo 1b2li 1b2lu 1b2ra 1b2re 1b2ro 1b2ri 1b2ru 1d2ra
104
+ 1d2re 1d2ro 1d2ri 1d2ru 1f2la 1f2le 1f2lo 1f2li 1f2lu 1f2ra 1f2re 1f2ro
105
+ 1f2ri 1f2ru 1g2la 1g2le 1g2lo 1g2li 1g2lu 1g2ra 1g2re 1g2ro 1g2ri 1g2ru
106
+ 1k2la 1k2le 1k2lo 1k2li 1k2lu 1k2ra 1k2re 1k2ro 1k2ri 1k2ru 1p2la 1p2le
107
+ 1p2lo 1p2li 1p2lu 1p2ra 1p2re 1p2ro 1p2ri 1p2ru 1t2ra 1t2re 1t2ro 1t2ri
108
+ 1t2ru
109
+ % We now avoid some problematic breaks.
110
+ su2b2r su2b2l
111
+ PATTERNS
112
+ end
@@ -0,0 +1,112 @@
1
+ # Hyphenation patterns for Text::Hyphen in Ruby: Finnish
2
+ # Converted from the TeX hyphenation/fihyph.tex file, Kauko Saarinen,
3
+ # Computing Centre, University of Jyvaskyla, Finland, 1986 - 1989.
4
+ #
5
+ # The original copyright holds and is reproduced in the source to this file.
6
+ # The Ruby version of these patterns are copyright 2004 Austin Ziegler.
7
+ #--
8
+ # -----> Finnish hyphenation patterns for MLPCTeX <------
9
+ # First release January -86 by Kauko Saarinen,
10
+ # Computing Centre, University of Jyvaskyla, Finland
11
+ #
12
+ # Completely rewritten January -88. The new patterns make
13
+ # much less mistakes with foreign and compound words.
14
+ # The article "Automatic Hyphenation of Finnish"
15
+ # by Professor Fred Karlsson is also referred
16
+ # ---------------------------------------------------------
17
+ #
18
+ # 8th March -89 (vers. 2.2), some vowel triples by Fred Karlsson added.
19
+ #
20
+ # ********* Patterns may be freely distributed **********
21
+ #++
22
+ require 'text/hyphen/language'
23
+
24
+ Text::Hyphen::Language::FI = Text::Hyphen::Language.new do |lang|
25
+ lang.patterns <<-PATTERNS
26
+ 1ba 1be 1bi 1bo 1bu 1by 1da 1de 1di 1do 1du 1dy 1d� 1d� 1fa 1fe 1fi 1fo 1fu
27
+ 1fy 1ga 1ge 1gi 1go 1gu 1gy 1g� 1g� 1ha 1he 1hi 1ho 1hu 1hy 1h� 1h� 1ja 1je
28
+ 1ji 1jo 1ju 1jy 1j� 1j� 1ka 1ke 1ki 1ko 1ku 1ky 1k� 1k� 1la 1le 1li 1lo 1lu
29
+ 1ly 1l� 1l� 1ma 1me 1mi 1mo 1mu 1my 1m� 1m� 1na 1ne 1ni 1no 1nu 1ny 1n� 1n�
30
+ 1pa 1pe 1pi 1po 1pu 1py 1p� 1p� 1ra 1re 1ri 1ro 1ru 1ry 1r� 1r� 1sa 1se 1si
31
+ 1so 1su 1sy 1s� 1s� 1ta 1te 1ti 1to 1tu 1ty 1t� 1t� 1va 1ve 1vi 1vo 1vu 1vy
32
+ 1v� 1v�
33
+
34
+ % ------- Some common words borrowed from other languages -------
35
+ % ------- This part could be updated from time to time -------
36
+ 1st2r % -stressi, -strategia etc.
37
+
38
+ % ------ Some special cases occuring with compound words only ----
39
+ % ------ There still remains well known problem as 'kaivos\-aukko' etc.
40
+ %a1y (common in borrowed words)
41
+ �2y y1a2 y1o2 o1y �2y u1y2 y1u2 �3a2 �3o2 �3a2 �3o2 �1u2 �1u2
42
+ a1� % (a1�2 ei mahdollinen!)
43
+ a1� o1� o1� u1�2 u1�2 �2� �2� �2� �2�
44
+ % lyhyt/pitka -vokaalipareja, tavallisesti sanarajalla
45
+ aa1i2 % maa-ikkuna
46
+ aa1e2 aa1o2 % maa-ottelu
47
+ aa1u2 % uraa-uurtava
48
+ ee1a2 % tee-astia
49
+ ee1i2 % tee-istutus
50
+ ee1u2 % varietee-uusinta
51
+ ee1y2 ii1a2 ii1e2 ii1o2 uu1a2 uu1e2 % puu-esine
52
+ uu1o2 % puu-osa
53
+ uu1i2 % puu-istutus
54
+ e1aa i1aa o1aa u1aa u1ee a1uu % kala-uuni
55
+ i1uu % ravi-uutiset
56
+ e1uu % virhe-uutinen
57
+ o1uu % radio-uutiset
58
+ ��1i ��1e ��3y i1�� e1�� y1�� i1�� % yhti-��n etc.
59
+ %i1eu % keski-eurooppalainen
60
+
61
+ % vokaalikolmikkoja etc. yhdyssanojen rajoissa
62
+ % -------- vowel triples by Fred Karlsson
63
+ a1ei a1oi e1ai % e1oi % ambiguous for ex. video-ilme (8.3.89)
64
+ i1au % u1oi % ambiguous (8.3.89)
65
+ y1ei ai1a ai1e ai1o ai1u au1a au1e eu1a ie1a ie1o %ie1u % ambiguous
66
+ ie1y io1a2 io1e2 iu1a iu1e iu1o oi1a oi1e oi1o oi1u
67
+ o1ui % veto-uistin, himo-uimari, etc.
68
+ ou1e ou1o ue1a ui1e uo1a % uo1i % ambiguous
69
+ uo1u
70
+ % ---------------- End of vowel triples --------------------
71
+ e1�2 �1e2 .�2 % don't hyphenate �-lyllinen etc.
72
+
73
+ % The following patterns contain no general scientific rule. They are
74
+ % selected more or less intuitively to solve problems with common and
75
+ % frequently appearing compound words. However, every pattern resolves more
76
+ % than only one hyphenation problem.
77
+ u2s % estaa virheita yhdyssanojen yhteydessa
78
+ yli1o2p % yli-opisto etc.
79
+ ali1a2v % ali-avaruus etc.
80
+ 1sp2li % kuutio-splini etc.
81
+ alous1 keus1 % oikeus-oppinut etc.
82
+ rtaus1 2s1ohje % -sohjelma etc.
83
+ 2s1a2sia % nais-asianainen etc.
84
+ 1a2sian % neuvottelu-asian etc.
85
+ 1a2siat % koti-asian (ei kotia-sian)
86
+ 1a2sioi % talous-asioita etc.
87
+ r2as l2as % tikku-rasia etc
88
+ 2s1o2pisk % xs-opiskelija etc
89
+ 2n1o2pet 2s1a2loi 2n1o2pist % kansan-opisto etc.
90
+ 2s1o2pist 2s1o2sa % xxs-osakas etc.
91
+ 2n1o2sa % asian-osainen etc.
92
+ alkei2s1 perus1 2s1i2dea. 2s1i2dean 2s1e2sity % xs-esitys etc
93
+ 2n1e2dus % kansan-edustaja etc.
94
+ 2s1ajatu % -ajatus etc.
95
+ 2s1ase 2s1apu 2s1y2rit % yhteis-yritys etc.
96
+ .ydi2n1 .suu2r1a2 % suur-ajot etc.
97
+ 2s1y2hti 2n1otto 2n1oton 2n1anto 2n1anno 2n1a2jan 2n1aika 2n1o2mai 2n1y2lit
98
+ 2s1a2len 2n1a2len 1a2siaka2s1 ulo2s1 % ulos-ajo
99
+ 2n1a2jo % kiven-ajo
100
+ 2s1a2jo
101
+
102
+ % *** The following rules may be used on user's responsibility ***
103
+ % *** for example, may be needed with narrow columns ***
104
+ % >>>>>>>>>>> a1e a1o e1o o1a u1a <<<<<<<<<<<
105
+
106
+ % ----- Some districting rules by Professor Fred Karlsson's ideas ------
107
+ b2l 1b2lo bib3li b2r 1b2ri 1b2ro 1b2ru d2r 1d2ra f2l 1f2la f2r 1f2ra 1f2re
108
+ g2l 1g2lo g2r 1g2ra k2l 1k2ra 1k2re 1k2ri 1k2v 1k2va p2l p2r 1p2ro c2l q2v
109
+ 1q2vi sc2h ts2h ch2r
110
+ PATTERNS
111
+ end
112
+ Text::Hyphen::Language::FIN = Text::Hyphen::Language::FI
@@ -0,0 +1,389 @@
1
+ # Hyphenation patterns for Text::Hyphen in Ruby: French
2
+ # Converted from the TeX hyphenation/frhyph.tex file, by Jacques
3
+ # Desarmenien (1984 - 1986), Norman Buckle, Michael Ferguson (1988),
4
+ # Justin Bur, and others.
5
+ #
6
+ # The original copyright holds and is reproduced in the source to this file.
7
+ # The Ruby version of these patterns are copyright 2004 Austin Ziegler.
8
+ #--
9
+ # frhyph.tex % French hyphenation patterns
10
+ #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
+ # This file is available for free and can used and redistributed
12
+ # asis for free. Modified versions should have another name.
13
+ #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14
+ #message{frhyph.tex - French hyphenation patterns (V2.11) <2002/01/16>}
15
+ #
16
+ #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17
+ # *BEFORE* using this file *PLEASE* run checksum on it:
18
+ # checksum -v frhyph.tex
19
+ # to make sure that it hasn't been damaged.
20
+ # Then if you notice anything wrong in french hyphenation please report to
21
+ # D. Flipo and B. Gaulle at the email address: cesure-l@gutenberg.eu.org
22
+ #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
23
+ #% checksum = "37094 1457 3075 34744"
24
+ #%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
25
+ #%%%%%%% The most famous good guys who worked hard to obtain something usable.
26
+ # Jacques Desarmenien, Universite de Strasbourg :
27
+ # - << how to run TeX in a French environment: hyphenation, fonts,
28
+ # typography. >> in Tugboat, 5 (1984) 91-102. and TeX85 conference
29
+ # - << La division par ordinateur des mots francais :
30
+ # application a TeX >> in TSI vol. 5 No 4, 1986 (C) AFCET-
31
+ # Gauthier-Villars
32
+ # Norman Buckle, UQAH (nb; many additions)
33
+ # Michael Ferguson, INRS-Telecommunications (mjf) June 1988
34
+ # Justin Bur, Universite de Montreal (jbb; checked against original list)
35
+ # all patterns including apostrophe missing from nb list
36
+ # after that, GUTenberg and specially Daniel Flipo and Bernard Gaulle
37
+ # did their best effort to improve the list of patterns.
38
+ #
39
+ # -----------------------------------------------------------------
40
+ #
41
+ # Adaption of these patterns for
42
+ # - TeX Version 3.x and MLTeX 3.x (2.x)
43
+ # and
44
+ # - all fonts in T1/`Cork' and/or CM/OT1 encoding
45
+ # by Bernd Raichle 1996/08/28 (using ideas from `ghyph31.tex'
46
+ # as of 1994-02-13 maintained by Bernd Raichle).
47
+ # (An adaption for the old MLTeX 2.x exists but can not be
48
+ # tested in lack of an executable.)
49
+ #++
50
+ require 'text/hyphen/language'
51
+
52
+ Text::Hyphen::Language::FR = Text::Hyphen::Language.new do |lang|
53
+ lang.patterns <<-PATTERNS
54
+ % *, phonetic
55
+ 2'2
56
+
57
+ % a, phonetic
58
+ .a4 'a4 .�4 '�4
59
+ ab2h % df-bg 1998/02/07 for abhorrer
60
+ ad2h % df-bg 1998/02/07 for adh�sion & co
61
+ % a, etymological
62
+ .ab3r�a 'ab3r�a a1�2dre .ae3s4ch 'ae3s4ch 1alcool a2l1algi .amino1a2c
63
+ 'amino1a2c .ana3s4tr 'ana3s4tr 1a2nesth�si .anti1a2 'anti1a2 .anti1e2
64
+ 'anti1e2 .anti1�2 .anti2enne 'anti2enne 'anti1�2 .anti1s2 'anti1s2 .apo2s3ta
65
+ 'apo2s3ta apo2s3tr archi1�2pis .as2ta 'as2ta a2s3tro
66
+
67
+ % b, phonetic
68
+ 1ba 1b� 1be 1b� 1b� 1b� 4be. 4bes.
69
+ 2bent. % mute syllable: tombent (df) 22/02/94
70
+ 1bi 1b� 1b2l 4ble. 4bles.
71
+ 2blent. % mute syllable: troublent (df) 28/02/94
72
+ 1bo 1b� 1b2r 4bre. 4bres.
73
+ 2brent. % mute syllable: palabrent (df) 28/02/94
74
+ 1bu 1b� 1by
75
+ % b, etymological
76
+ .bai2se3main % hyphen disappeared from french 5/2/94
77
+ .bi1a2c .bi1a2t % like .tri1a2t for tri-athlon bg 12/27/93
78
+ .bi1au .bio1a2 .bi2s1a2 .bi1u2
79
+
80
+ % c, phonetic
81
+ 1� 1ca 1c� 1ce 1c� 1c� 1c� 4ce. 4ces.
82
+ % words ending with -cent (df) 22/02/94
83
+ 2cent. ja3cent. ac3cent. �3cent. munifi3cent. r�ti3cent. privatdo3cent.
84
+ inno3cent. es3cent. acquies4cent. is3cent. immis4cent. .ch4 1c2h 4ch. 2chb
85
+ 4che. 4ches. 2chent. % mute syllable: touchent (df) 22/02/94
86
+ ca3ou3t2 % for caoutchou... added 3/1/94 df-bg
87
+ 2chg ch2l 4chle. 4chles. 2chm 2chn 2chp ch2r 4chre. 4chres. 2chs 2cht 2chw
88
+ 1ci 1c� 1c2k 4ck. 2ckb 4cke. 4ckes.
89
+ 2ckent. % mute syllable: stockent (df) 22/02/94
90
+ 2ckf 2ckg 2ck3h 2ckp 2cks 2ckt 1c2l 4cle. 4cles.
91
+ 2clent. % mute syllable: encerclent (df) 28/02/94
92
+ 1co 1c� 1c�0 % final zero essential to terminate cs
93
+ 1c2r 4cre. 4cres. 2crent. % mute syllable: massacrent (df) 28/02/94
94
+ 1cu 1c� 1cy .cul4 % -- as .con4 .cons4 (march 92)
95
+ % c, etymological
96
+ .ch�2vre3feuille % hyphen disappeared from french 5/2/94
97
+ chlo2r3a2c chlo2r3�2t .ci2s1alp co1acc co1acq co1a2d co1ap co1ar co1assoc
98
+ co1assur co1au co1ax co1�2 co1ef co1en co1ex .con4 % missing from nb list
99
+ .cons4 % missing from nb list
100
+ .contre1s2c .contre3ma�tre % hyphen disappeared from french 5/2/94
101
+ co2nurb .co1o2 .co2o3lie
102
+
103
+ % d, phonetic
104
+ 1d' 1da 1d� d1d2h 1de 1d� 1d� 1d� 4de. 4des. 1di 1d�
105
+ 2dlent. % mute syllable: jodlent (df) 28/02/94
106
+ 1do 1d� 1d2r 4dre. 4dres.
107
+ 2drent. % mute syllable: engendrent (df) 28/02/94
108
+ d1s2 1du 1d� 1dy
109
+ % d, etymological
110
+ .dacryo1a2 .d�1a2 .d�1io .d�1o2
111
+ .d�2s % originaly in JD file
112
+ %.d�2s1a2 removed 09/17/92 because wrong for the original JD 500 words test
113
+ .d�3s2a3cr .d�s2a3m % .d�s2a2mi introduced 09/17/92 bec. i can't see why
114
+ % d�samidonner ran in JD. Moved to .d�s2a3m df 12/27/93.
115
+ .d�3s2a3tell .d�3s2astr .d�3s2c % 1 moved 3 due to .d�2s 09/17/92
116
+ %.d�2s1e2 removed 09/17/92 because wrong for the original JD 500 words test
117
+ .d�2s1�2 .d�3s2�3gr .d�3s2ensib .d�3s2ert .d�3s2exu
118
+ %.d�2s3h removed 09/17/92 because wrong for the original JD 500 words test
119
+ .d�2s1i2 .d�3s2i3d .d�3s2i3gn .d�3s2i3li .d�3s2i3nen .d�3s2invo .d�3s2i3r
120
+ .d�3s2ist
121
+ %.d�2s1o2 removed 09/17/92 because wrong for the original JD 500 words test
122
+ .d�3s2o3d� .d�2s1�0 % final zero essential to terminate cs
123
+ .d�3s2o3l .d�3s2o3pil .d�3s2orm .d�3s2orp .d�3s2oufr
124
+ .d�3s2p % 1 moved 3 due to .d�2s 09/17/92
125
+ .d�3s2t % 1 moved 3 due to .d�2s 09/17/92
126
+ .d�2s1u2n 3d2hal 3d2houd di2s3cop .di1a2c� .di1a2cid .di1ald .di1a2mi
127
+ .di1a2tom .di1e2n .di2s3h .dy2s3 .dy2s1a2 .dy2s1i2
128
+ .dy2s1o2 % missing from nb list
129
+ .dy2s1u2
130
+ % words ending with -dent (df) 22/02/94
131
+ 2dent. d�ca3dent. �3dent. cci3dent. inci3dent. confi3dent. tri3dent.
132
+ dissi3dent. chien3dent. .ar3dent. impu3dent. pru3dent.
133
+
134
+ % e, phonetic
135
+ .e4 'e4 .�4 '�4 .�4 '�4 .�4 '�4
136
+ % e, etymological
137
+ �d2hi % df-bg 1998/02/07 for r�dhibitoire
138
+ 1�2drie 1�2drique 1�2lectr 1�2l�ment .en1a2 'en1a2 1�2nerg e2n1i2vr .en1o2
139
+ 'en1o2 �pi2s3cop �pi3s4cope e2s3cop .eu2r1a2 'eu2r1a2 eu1s2tat extra1
140
+ extra2c extra2i
141
+
142
+ % f, phonetic
143
+ 1fa 1f� 1fe 1f� 1f� 1f� 4fe. 4fes.
144
+ 2fent. % mute syllable: agrafent chauffent (df) 22/02/94
145
+ 1fi 1f� 1f2l 4fle. 4fles.
146
+ 2flent. % mute syllable: gonflent (df) 28/02/94
147
+ 1fo 1f� 1f2r 4fre. 4fres.
148
+ 2frent. % mute syllable: balafrent (df) 28/02/94
149
+ f1s2 1fu 1f� 1fy
150
+ % g, phonetic
151
+ 1ga 1g� 1ge 1g� 1g� 1g� 4ge. 4ges. 1g2ha 1g2he 1g2hi 1g2ho 1g2hy 1gi 1g�
152
+ 1g2l 4gle. 4gles. 2glent. % mute syllable: meuglent (df) 28/02/94
153
+ 1g2n 'a2g3nat % (df) 16/01/02
154
+ .a2g3nat % (df) 16/01/02
155
+ a2g3nos % (df) 16/01/02 (pattern dia2g3n deleted)
156
+ co2g3niti % (df) 16/01/02
157
+ 'i2g3n� % (df) 16/01/02
158
+ .i2g3n� % (df) 16/01/02
159
+ 'i2g3ni % (df) 16/01/02
160
+ .i2g3ni % (df) 16/01/02
161
+ .ma2g3nicide % (df) 16/01/02
162
+ .ma2g3nificat % (df) 16/01/02
163
+ .ma2g3num % (df) 16/01/02
164
+ o2g3nomoni % (df) 16/01/02
165
+ o2g3nosi % (df) 16/01/02
166
+ .pro2g3nath % (df) 16/01/02
167
+ pu2g3nable % (df) 16/01/02
168
+ pu2g3nac % (df) 16/01/02
169
+ .sta2g3n .syn2g3nath % (df) 16/01/02
170
+ wa2g3n 4gne. 4gnes. 2gnent. % mute syllable: accompagnent (df) 28/02/94
171
+ 1go 1g� 1g2r 4gre. 4gres. 2grent. % mute syllable: immigrent (df) 28/02/94
172
+ 1gu 1g� g1s2 4gue. 4gues. 1gy
173
+ % words ending with -guent (df) 22/02/94
174
+ 2guent. .on3guent. 'on3guent.
175
+ % g, etymological
176
+ % words ending with -gent (df) 22/02/94
177
+ 2gent. r�3gent. entre3gent. indi3gent. dili3gent. intelli3gent. indul3gent.
178
+ tan3gent. rin3gent. contin3gent. .ar3gent. 'ar3gent. ser3gent. ter3gent.
179
+ r�sur3gent.
180
+
181
+ % h, phonetic
182
+ 1ha 1h� 1he 1h� 1h� 1h� 4he. 4hes. 1hi 1h� 1ho 1h� 1hu 1h� 1hy
183
+ % h, etymological
184
+ h�mi1� h�mo1p2t hypera2 hypere2 hyper�2 hyperi2 hypero2 hypers2 hype4r1
185
+ hyperu2 hypo1a2 hypo1e2 % missing from nb list
186
+ hypo1�2 hypo1i2 hypo1o2 hypo1s2 hypo1u2
187
+
188
+ % i, phonetic
189
+ .i4 'i4 .�4 '�4
190
+ % ill patterns missing from nb list
191
+ il2l cil3l rcil4l ucil4l vacil4l gil3l hil3l lil3l l3lion mil3l mil4let
192
+ �mil4l semil4l rmil4l armil5l capil3l papil3la papil3le papil3li papil3lom
193
+ pupil3l piril3l thril3l cyril3l ibril3l pusil3l .stil3l distil3l instil3l
194
+ fritil3l boutil3l vanil3lin vanil3lis vil3l avil4l chevil4l uevil4l uvil4l
195
+ xil3l
196
+ % end of ill patterns
197
+
198
+ % i, etymological
199
+ i1algi i1arthr i1�2dre 1informat % missing from nb list
200
+ .in1a2 'in1a2 .in2a3nit 'in2a3nit .in2augur 'in2augur .in1e2 'in1e2 .in1�2
201
+ 'in1�2 .in2effab % missing from nb list
202
+ 'in2effab .in2�3lucta 'in2�3lucta .in2�3narra 'in2�3narra .in2ept 'in2ept
203
+ .in2er 'in2er .in2exora % missing from nb list
204
+ 'in2exora .in1i2 'in1i2 .in2i3miti 'in2i3miti .in2i3q 'in2i3q .in2i3t
205
+ 'in2i3t .in1o2 'in1o2 .in2o3cul 'in2o3cul .in2ond 'in2ond .in1s2tab
206
+ 'in1s2tab 'inte4r3 .intera2 'intera2 .intere2 'intere2 .inter�2 'inter�2
207
+ .interi2 'interi2 .intero2 'intero2 .inte4r3 .interu2 'interu2 .inters2
208
+ 'inters2 .in1u2 'in1u2 .in2uit 'in2uit .in2u3l 'in2u3l io1a2ct i1oxy i1s2tat
209
+
210
+ % j, phonetic
211
+ 1j 2jk 4je. 4jes. 2jent. % mute syllable: gal�jent (df) 22/02/94
212
+
213
+ % k, phonetic
214
+ 1ka 1k� 1ke 1k� 1k� 1k� 4ke. 4kes.
215
+ 2kent. % mute syllable: jerkent (df) 22/02/94
216
+ 1k2h 4kh. .kh4 1ki 1k� 1ko 1k� 1k2r 1ku 1k� 1ky
217
+
218
+ % l, phonetic
219
+ 1la 1l� 1l� 1le 1l� 1l� 1l� 4le. 4les. 1li 1l� 1lo 1l� l1s2t 1lu 1l� 1ly
220
+
221
+ % l, etymological
222
+ la2w3re
223
+ % words ending with -lent (df) 22/02/94
224
+ 2lent. .ta3lent. iva3lent. �quiva4lent. monova3lent. polyva3lent. re3lent.
225
+ .do3lent. indo3lent. inso3lent. turbu3lent. succu3lent. f�cu3lent.
226
+ trucu3lent. opu3lent. corpu3lent. ru3lent. sporu4lent.
227
+
228
+ % m, phonetic
229
+ 1ma 1m� 1me 1m� 1m� 1m� 4me. 4mes. 1mi 1m� 1mo 1m�
230
+ 1m�0 % final zero essential to terminate cs
231
+ m1s2 1mu 1m� 1my
232
+ % m, etymological
233
+ .ma2c3k .macro1s2c .ma2l1a2dres .ma2l1a2dro .ma2l1ais� .ma2l1ap .ma2l1a2v
234
+ .ma2l1en .ma2l1int .ma2l1oc .ma2l1o2d .ma2r1x % nb (jbb: ?)
235
+ .m�2g1oh .m�2sa % missing from nb list
236
+ .m�3san % missing from nb list
237
+ .m�2s1es .m�2s1i .m�2s1u2s .m�ta1s2ta
238
+ % words ending with -ment (df) 22/02/94
239
+ �2ment. da2ment. fa2ment. amalga2ment. cla2ment. ra2ment. temp�ra3ment.
240
+ ta2ment. testa3ment. qua2ment. �2ment. car�2ment. diaphrag2ment. ryth2ment.
241
+ ai2ment. rai3ment. ab�2ment. �ci2ment. vidi2ment. subli2ment. �li2ment.
242
+ reli2ment. mi2ment. ani2ment. veni2ment. ri2ment. d�tri3ment. nutri3ment.
243
+ inti2ment. esti2ment. l2ment. flam2ment. gram2ment. .gem2ment. om2ment.
244
+ .com3ment. �2ment. slalo2ment. chro2ment. to2ment. ar2ment. .sar3ment.
245
+ er2ment. antifer3ment. .ser3ment. fir2ment. or2ment. as2ment. au2ment.
246
+ �cu2ment. fu2ment. hu2ment. fichu3ment. llu2ment. plu2ment. bou2ment.
247
+ bru2ment. su2ment. tu2ment. .milli1am 1m2n�mo 1m2n�s 1m2n�si .mono1a2
248
+ .mono1e2 .mono1�2 .mono1i2 .mono1�2d� .mono1o2 .mono1u2 .mono1s2
249
+ mon2t3r�al % missing from nb list
250
+ moye2n1�2g
251
+
252
+ % n, phonetic
253
+ 1na 1n� 1ne 1n� 1n� 1n� 4ne. 4nes. 1ni 1n� 1no 1n�
254
+ 1n�0 % final zero essential to terminate cs
255
+ 1nu 1n� n1x 1ny
256
+ % n, etymological
257
+ % words ending with -nent (df) 22/02/94
258
+ 2nent. % fric-tionnent - syllable muette - bg 27/12/93
259
+ r�ma3nent. imma3nent. perma3nent. .�mi3nent. pr��mi3nent. pro�mi3nent.
260
+ sur�mi3nent. immi3nent. conti3nent. perti3nent. absti3nent. .no2n1obs
261
+ n3s2at. n3s2ats.
262
+
263
+ % o, phonetic
264
+ .o4 'o4 '�4 .�4 %'�2 % mjf % deleted 3/1/94 df-bg
265
+ % o, etymological
266
+ o2b3long 1octet % missing from nb list
267
+ o1d2l o1�2dre o1ioni ombud2s3 omni1s2 o1s2tas o1s2tat o1s2t�ro o1s2tim
268
+ o1s2tom o1s2trad o1s2tratu o1s2triction .oua1ou 'oua1ou .ovi1s2c 'ovi1s2c
269
+ oxy1a2
270
+
271
+ % p, phonetic
272
+ 1pa 1p� 1pe 1p� 1p� 1p� 4pe. 4pes. 1p2h .ph4 4ph. 4phe. 4phes.
273
+ 2phent. % mute syllable: triomphent (df) 22/02/94
274
+ ph2l 4phle. 4phles. 2phn ph2r 4phre. 4phres. 2phs 2pht 1pi 1p� 1p2l 4ple.
275
+ 4ples. 2plent. % mute syllable: accouplent (df) 28/02/94
276
+ 1po 1p� 1p2r 4pre. 4pres. 2prent. % mute syllable: empourprent (df) 28/02/94
277
+ 1pu 1p� 1py
278
+ % p, etymological
279
+ pal�o1�2 .pa2n1a2f .pa2n1a2m� .pa2n1a2ra .pa2n1is .pa2n1o2ph .pa2n1opt
280
+ .pa2r1a2che .pa2r1a2ch� .para1s2 .pa2r3h�
281
+ % words ending with -pent (df) 22/02/94
282
+ 2pent. re3pent. .ar3pent. 'ar3pent. ser3pent.
283
+ .pen2ta % pent- or penta- but never pen-ta bg 12/27/93
284
+ per3h p�2nul % p�2n1ul moved back 09/17/92 to JD def.
285
+ .pe4r .per1a2 .per1e2 .per1�2 .per1i2 .per1o2 .per1u2
286
+ p�1r2�2q % 2r1 moved 09/17/92 to 1r2(it was a typo)
287
+ .p�ri1os .p�ri1s2 .p�ri2s3s .p�ri2s3ta .p�ri1u2 .phalan3s2t photo1s2
288
+ 3ph2tal� 3ph2tis
289
+ % Here is an example of a pb involving phonetic and etymologic patterns 5/94
290
+ % .phyto3ph2 % originaly, but wrong for phy-toph-thora 9/92
291
+ % .phy2topha % for -pharmacie but wrong for phyto-biol.. 5/94
292
+ .pluri1a 1p2n� 1p2neu po1astre poly1a2 poly1e2 poly1�2 poly1�2 poly1i2
293
+ poly1o2 poly1s2 poly1u2 .pon2tet % JD hypenated it asis 09/17/92, exception
294
+ .pos2t3h .pos2t1in .pos2t1o2 .pos2t3r .post1s2 .pr�1a2
295
+ .pr�2a3la % missing from nb list
296
+ .pr�2au .pr�1�2 .pr�1e2 .pr�1i2 .pr�1o2 .pr�1u2 .pr�1s2 .pro1�2 .pro1s2c�
297
+ pro2s3tat .prou3d2h 1p2sych .psycho1a2n 1p2t�r 1p2t�r .pud1d2l
298
+
299
+ % q
300
+ 1q 4que. 4ques.
301
+ % words ending with -quent (df) 22/02/94
302
+ 2quent. �3quent. �lo3quent. grandilo3quent.
303
+
304
+ % r, phonetic
305
+ 1ra 1r� 1re 1r� 1r� 1r� 1r2h 4rhe. 4rhes. 1ri 1r� 1ro 1r� 1ru 1r� 1ry
306
+ % r, etymological
307
+ radio1a2 % missing from nb list
308
+ .r�1a2 .r�2a3le .r�2a3lis .r�2a3lit .r�2aux .r�1�2 .r�1e2 .r�2el .r�2er
309
+ .r�2�r .r�1i2 .r�2i3fi .r�1o2 .re1s2 .re2s3cap
310
+ .re2s3cisi % for res-cision 09/17/92 (missing from nb)
311
+ .re2s3ciso % for res-cisoire 09/17/92(missing from nb)
312
+ .re2s3cou .re2s3cri .re2s3pect .re2s3pir .re2s3plend .re2s3pons .re2s3quil
313
+ .re2s3s .re2s3t .re3s4tab .re3s4tag .re3s4tand .re3s4tat .re3s4t�n .re3s4t�r
314
+ .re3s4tim .re3s4tip .re3s4toc .re3s4top .re3s4tr .re4s5trein .re4s5trict
315
+ .re4s5trin .re3s4tu .re3s4ty
316
+ .r�u2 %.r�1u2 % pattern rejected 12/2/92
317
+ % (don't hyphenate as r�-union nor r�u-nion)
318
+ .r�2uss .r�tro1a2 4re. 4res.
319
+ % words ending with -rent (df) 22/02/94
320
+ 2rent. % es-p�rent - syllable muette - bg 27/12/93
321
+ .pa3rent. appa3rent. transpa3rent. �3rent. tor3rent. cur3rent. 2r3heur
322
+ 2r3hydr
323
+
324
+ % s, phonetic
325
+ 1sa 1s� .sch4 1s2ch e2s3ch i2s3ch� i2s3chia i2s3chio 4sch. 4sche. 4sches.
326
+ 2schs 1se 1s� 1s� 1s� 4se. 4ses. .seu2le % jbb
327
+ .sh4 1s2h 4sh. 4she. 4shes. 2shent. % mute syllable: smashent (df) 22/02/94
328
+ 2shm 2shr 2shs 1si 1s� 1so 1s� 1s�0 % final zero essential to terminate cs
329
+ 1su 1s� 1sy
330
+ % s, etymological
331
+ 1s2caph 1s2cl�r 1s2cop sesqui1a2
332
+ % words ending with -sent (df) 22/02/94
333
+ 2sent. % massent - syllable muette - bg 27/12/93
334
+ ab3sent. pr�3sent. .res3sent. 2s3hom 1s2lav 1s2lov 1s2patia 1s2perm 1s2por
335
+ 1s2ph�r 1s2ph�r 1s2piel 1s2piros 1s2tandard 1s2tein st�r�o1s2 1s2tigm
336
+ 1s2tock 1s2tomos 1s2troph 1s2tructu 1s2tyle .su2b1a2 .su3b2alt .su2b1�2
337
+ .su3b2�3r .su2b1in .su2b3limin .su2b3lin .su2b3lu sub1s2 .su2b1ur supero2
338
+ supe4r1 supers2 .su2r1a2 su3r2ah .su3r2a3t .su2r1e2 .su3r2eau .su3r2ell
339
+ .su3r2et .su2r1�2 .su2r3h .su2r1i2m .su2r1inf .su2r1int .su2r1of .su2r1ox
340
+
341
+ % t, phonetic
342
+ 1ta 1t� 1t� 1te 1t� 1t� 1t� 4te. 4tes. .th4 1t2h 4th. 4the. 4thes.
343
+ 2thl % th2l was wrong for ...ath-lon (jd said 2thl) df 12/27/93
344
+ 2thm 2thn th2r 4thre. 4thres. 2ths 1ti 1t� 1to 1t� 1t2r 4tre. 4tres.
345
+ 2trent. % mute syllable: infiltrent (df) 28/02/94
346
+ 1tu 1t� tung2s3 1ty
347
+ % t, etymological
348
+ tachy1a2 tchin3t2 t�l�1e2 t�l�1i2 t�l�1o2b t�l�1o2p t�l�1s2
349
+ % words ending with -tent (df) 22/02/94
350
+ 2tent. % mentent - syllable muette - bg 27/12/93
351
+ .la3tent. .pa3tent. comp�3tent. �ni3tent. m�con3tent. omnipo3tent.
352
+ ventripo3tent. �quipo3tent. impo3tent. mit3tent.
353
+ thermo1s2 2t3heur tran2s1a2 tran3s2act tran3s2ats tran2s3h tran2s1o2
354
+ tran2s3p tran2s1u2 .tri1a2c .tri1a2n .tri1a2t .tri1o2n t1t2l
355
+
356
+ % u, phonetic
357
+ .u4 'u4 .�4 '�4
358
+ % u, etymological
359
+ uni1o2v uni1a2x u2s3tr
360
+
361
+ % v, phonetic
362
+ 1va 1v� 1ve 1v� 1v� 1v� 4ve. 4ves. 1vi 1v� 1vo 1v� 1v2r 4vre. 4vres.
363
+ 2vrent. % mute syllable: recouvrent (df) 28/02/94
364
+ 1vu 1v� 1vy
365
+
366
+ % v, etymological
367
+ v�lo1s2ki
368
+ % words ending with -vent (df) 22/02/94
369
+ 2vent. conni3vent. .sou3vent. vol2t1amp
370
+
371
+ % w, phonetic
372
+ 1wa 1we 4we. 4wes. 2went. % mute syllable: interviewent (df) 22/02/94
373
+ 1wi 1wo 1wu 1w2r
374
+
375
+ % x
376
+ 2xent. % mute syllable: malaxent (df) 22/02/94
377
+
378
+ % y, phonetic
379
+ .y4 'y4
380
+ % y, etymological
381
+ y1asth y1s2tom y1algi
382
+
383
+ % z, phonetic
384
+ 1za 1ze 1z� 1z� 4ze. 4zes. 1zi 1zo 1zu 1zy
385
+ % z, etymological
386
+ % words ending with -zent (df) 22/02/94
387
+ 2zent. privatdo3zent.
388
+ PATTERNS
389
+ end