text-hyphen 1.4.1 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/.standard.yml +5 -0
  3. data/Code-of-Conduct.md +73 -0
  4. data/Contributing.md +68 -0
  5. data/History.md +139 -0
  6. data/Licence.md +159 -0
  7. data/Manifest.txt +12 -5
  8. data/README.md +81 -0
  9. data/Rakefile +68 -19
  10. data/bin/ruby-hyphen +0 -0
  11. data/lib/text/hyphen/language/1.8/de1.rb +1307 -571
  12. data/lib/text/hyphen/language/1.8/en_us.rb +412 -453
  13. data/lib/text/hyphen/language/1.8/fr.rb +128 -334
  14. data/lib/text/hyphen/language/1.8/la.rb +1 -0
  15. data/lib/text/hyphen/language/1.8/lt.rb +115 -0
  16. data/lib/text/hyphen/language/1.8/pt.rb +2 -1
  17. data/lib/text/hyphen/language/1.8/sk.rb +277 -0
  18. data/lib/text/hyphen/language/1.9/ca.rb +2 -1
  19. data/lib/text/hyphen/language/1.9/cs.rb +2 -1
  20. data/lib/text/hyphen/language/1.9/da.rb +2 -1
  21. data/lib/text/hyphen/language/1.9/de1.rb +1382 -646
  22. data/lib/text/hyphen/language/1.9/de2.rb +110 -109
  23. data/lib/text/hyphen/language/1.9/en_uk.rb +2 -1
  24. data/lib/text/hyphen/language/1.9/en_us.rb +412 -454
  25. data/lib/text/hyphen/language/1.9/es.rb +2 -1
  26. data/lib/text/hyphen/language/1.9/et.rb +6 -5
  27. data/lib/text/hyphen/language/1.9/eu.rb +4 -3
  28. data/lib/text/hyphen/language/1.9/fi.rb +3 -2
  29. data/lib/text/hyphen/language/1.9/fr.rb +136 -343
  30. data/lib/text/hyphen/language/1.9/ga.rb +27 -26
  31. data/lib/text/hyphen/language/1.9/hr.rb +6 -5
  32. data/lib/text/hyphen/language/1.9/hsb.rb +3 -2
  33. data/lib/text/hyphen/language/1.9/hu1.rb +3 -2
  34. data/lib/text/hyphen/language/1.9/hu2.rb +5 -4
  35. data/lib/text/hyphen/language/1.9/ia.rb +2 -1
  36. data/lib/text/hyphen/language/1.9/id.rb +8 -7
  37. data/lib/text/hyphen/language/1.9/is.rb +2 -1
  38. data/lib/text/hyphen/language/1.9/it.rb +74 -74
  39. data/lib/text/hyphen/language/1.9/la.rb +54 -53
  40. data/lib/text/hyphen/language/1.9/lt.rb +116 -0
  41. data/lib/text/hyphen/language/1.9/mn.rb +7 -6
  42. data/lib/text/hyphen/language/1.9/nl.rb +2 -1
  43. data/lib/text/hyphen/language/1.9/no1.rb +3 -2
  44. data/lib/text/hyphen/language/1.9/no2.rb +3 -2
  45. data/lib/text/hyphen/language/1.9/pl.rb +2 -1
  46. data/lib/text/hyphen/language/1.9/pt.rb +3 -2
  47. data/lib/text/hyphen/language/1.9/ru.rb +2 -1
  48. data/lib/text/hyphen/language/1.9/sk.rb +280 -0
  49. data/lib/text/hyphen/language/1.9/sv.rb +4 -3
  50. data/lib/text/hyphen/language/cs.rb +1 -1
  51. data/lib/text/hyphen/language/de.rb +2 -1
  52. data/lib/text/hyphen/language/de1.rb +1 -1
  53. data/lib/text/hyphen/language/de2.rb +1 -1
  54. data/lib/text/hyphen/language/en_us.rb +1 -1
  55. data/lib/text/hyphen/language/eu.rb +1 -1
  56. data/lib/text/hyphen/language/fr.rb +1 -1
  57. data/lib/text/hyphen/language/hu.rb +1 -1
  58. data/lib/text/hyphen/language/hu1.rb +1 -1
  59. data/lib/text/hyphen/language/hu2.rb +1 -1
  60. data/lib/text/hyphen/language/is.rb +1 -1
  61. data/lib/text/hyphen/language/lt.rb +4 -0
  62. data/lib/text/hyphen/language/ms.rb +3 -3
  63. data/lib/text/hyphen/language/nl.rb +1 -1
  64. data/lib/text/hyphen/language/no.rb +1 -1
  65. data/lib/text/hyphen/language/sk.rb +4 -0
  66. data/lib/text/hyphen/language.rb +45 -45
  67. data/lib/text/hyphen.rb +139 -97
  68. data/lib/text-hyphen.rb +1 -1
  69. data/test/data/bug_9807_latin1.rb +2 -2
  70. data/test/data/bug_9807_utf-8.rb +1 -1
  71. data/test/test_bugs.rb +14 -13
  72. data/test/test_text_hyphen.rb +31 -21
  73. metadata +146 -96
  74. data/.autotest +0 -23
  75. data/.gemtest +0 -0
  76. data/History.rdoc +0 -99
  77. data/License.rdoc +0 -159
  78. data/README.rdoc +0 -95
  79. data/text-hyphen.gemspec +0 -51
@@ -1,3 +1,4 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  # Hyphenation patterns for Text::Hyphen in Ruby: French
2
3
  # Converted from the TeX hyphenation/frhyph.tex file, by Jacques
3
4
  # Desarmenien (1984 - 1986), Norman Buckle, Michael Ferguson (1988),
@@ -50,340 +51,133 @@
50
51
  require 'text/hyphen/language'
51
52
 
52
53
  Text::Hyphen::Language::FR = Text::Hyphen::Language.new do |lang|
54
+ lang.encoding "UTF-8"
53
55
  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.
56
+ 2'2 2’2 .a4 'a4 ’a4 .â4 'â4 ’â4 ab2h .ab3réa 'ab3réa ’ab3réa ad2h a1è2dre
57
+ .ae3s4ch 'ae3s4ch ’ae3s4ch 1alcool a2l1algi .amino1a2c 'amino1a2c ’amino1a2c
58
+ .ana3s4tr 'ana3s4tr ’ana3s4tr 1a2nesthési .anti1a2 'anti1a2 ’anti1a2 .anti1e2
59
+ 'anti1e2 ’anti1e2 .anti1é2 .anti2enne 'anti2enne ’anti2enne 'anti1é2 ’anti1é2
60
+ .anti1s2 'anti1s2 ’anti1s2 .apo2s3ta 'apo2s3ta ’apo2s3ta apo2s3tr archi1é2pis
61
+ .as2ta 'as2ta ’as2ta a2s3tro 1ba 1bâ .bai2se3main 1be 1bé 1bè 1bê 4be. 4bes.
62
+ 2bent. 1bi 1bî .bi1a2c .bi1a2t .bi1au .bio1a2 .bi2s1a2 .bi1u2 1b2l 4ble.
63
+ 4bles. 2blent. 1bo 1bô 1b2r 4bre. 4bres. 2brent. 1bu 1bû 1by 1ç 1ca 1câ
64
+ ca3ou3t2 1ce 1cé 1cè 1cê 4ce. 4ces. 2cent. ja3cent. ac3cent. é3cent.
65
+ munifi3cent. réti3cent. privatdo3cent. inno3cent. es3cent. acquies4cent.
66
+ is3cent. immis4cent. .ch4 1c2h 4ch. 2chb 4che. 4ches. 2chent.
67
+ .chè2vre3feuille 2chg ch2l 4chle. 4chles. chlo2r3a2c chlo2r3é2t 2chm 2chn
68
+ 2chp ch2r 4chre. 4chres. 2chs 2cht 2chw 1ci 1cî .ci2s1alp 1c2k 4ck. 2ckb
69
+ 4cke. 4ckes. 2ckent. 2ckf 2ckg 2ck3h 2ckp 2cks 2ckt 1c2l 4cle. 4cles.
70
+ 2clent. 1co 1cô co1acc co1acq co1a2d co1ap co1ar co1assoc co1assur co1au co1ax
71
+ 1cœ co1é2 co1ef co1en co1ex .con4 .cons4 .contre1s2c .contre3maître co2nurb
72
+ .co1o2 .co2o3lie 1c2r 4cre. 4cres. 2crent. 1cu 1cû 1cy .cul4 1d' 1d’ 1da 1dâ
73
+ .dacryo1a2 d1d2h 1de 1dé 1dè 1dê 4de. 4des. 2dent. déca3dent. é3dent.
74
+ cci3dent. inci3dent. confi3dent. tri3dent. dissi3dent. chien3dent.
75
+ .ar3dent. impu3dent. pru3dent. .dé1a2 .dé1io .dé1o2 .dé2s .dé3s2a3cr
76
+ .dés2a3m .dé3s2a3tell .dé3s2astr .dé3s2c .dé2s1é2 .dé3s2é3gr .dé3s2ensib
77
+ .dé3s2ert .dé3s2exu .dé2s1i2 .dé3s2i3d .dé3s2i3gn .dé3s2i3li .dé3s2i3nen
78
+ .dé3s2invo .dé3s2i3r .dé3s2ist .dé3s2o3dé .dé2s1œ .dé3s2o3l .dé3s2o3pil
79
+ .dé3s2orm .dé3s2orp .dé3s2oufr .dé3s2p .dé3s2t .dé2s1u2n 3d2hal 3d2houd 1di 1dî
80
+ di2s3cop .di1a2cé .di1a2cid .di1ald .di1a2mi .di1a2tom .di1e2n .di2s3h 2dlent.
81
+ 1do 1dô 1d2r 4dre. 4dres. 2drent. d1s2 1du 1dû 1dy .dy2s3 .dy2s1a2 .dy2s1i2
82
+ .dy2s1o2 .dy2s1u2 .e4 'e4 ’e4 .ê4 'ê4 ’ê4 .é4 'é4 ’é4 .è4 'è4 ’è4 éd2hi 1é2drie
83
+ 1é2drique 1é2lectr 1é2lément .en1a2 'en1a2 ’en1a2 1é2nerg e2n1i2vr .en1o2
84
+ 'en1o2 ’en1o2 épi2s3cop épi3s4cope e2s3cop .eu2r1a2 'eu2r1a2 ’eu2r1a2 eu1s2tat
85
+ extra1 extra2c extra2i 1fa 1fâ 1fe 1fé 1fè 1fê 4fe. 4fes. 2fent. 1fi 1fî
86
+ 1f2l 4fle. 4fles. 2flent. 1fo 1fô 1f2r 4fre. 4fres. 2frent. f1s2 1fu 1fû
87
+ 1fy 1ga 1gâ 1ge 1gé 1gè 1gê 4ge. 4ges. 2gent. ré3gent. entre3gent.
88
+ indi3gent. dili3gent. intelli3gent. indul3gent. tan3gent. rin3gent.
89
+ contin3gent. .ar3gent. 'ar3gent. ’ar3gent. ser3gent. ter3gent.
90
+ résur3gent. 1g2ha 1g2he 1g2hi 1g2ho 1g2hy 1gi 1gî 1g2l 4gle. 4gles. 2glent.
91
+ 1g2n 'a2g3nat ’a2g3nat .a2g3nat a2g3nos co2g3niti 'i2g3né ’i2g3né .i2g3né
92
+ 'i2g3ni ’i2g3ni .i2g3ni .ma2g3nicide .ma2g3nificat .ma2g3num o2g3nomoni
93
+ o2g3nosi .pro2g3nath pu2g3nable pu2g3nac .sta2g3n .syn2g3nath wa2g3n 4gne.
94
+ 4gnes. 2gnent. 1go 1gô 1g2r 4gre. 4gres. 2grent. 1gu 1gû g1s2 4gue.
95
+ 4gues. 2guent. .on3guent. 'on3guent. ’on3guent. 1gy 1ha 1hâ 1he 1hé 1hè
96
+ 1hê hémi1é hémo1p2t 4he. 4hes. 1hi 1hî 1ho 1hô 1hu 1hû 1hy hypera2 hypere2
97
+ hyperé2 hyperi2 hypero2 hypers2 hype4r1 hyperu2 hypo1a2 hypo1e2 hypo1é2 hypo1i2
98
+ hypo1o2 hypo1s2 hypo1u2 .i4 'i4 ’i4 .î4 'î4 ’î4 i1algi i1arthr i1è2dre il2l
99
+ cil3l rcil4l ucil4l vacil4l gil3l hil3l lil3l l3lion mil3l mil4let émil4l
100
+ semil4l rmil4l armil5l capil3l papil3la papil3le papil3li papil3lom pupil3l
101
+ piril3l thril3l cyril3l ibril3l pusil3l .stil3l distil3l instil3l fritil3l
102
+ boutil3l vanil3lin vanil3lis vil3l avil4l chevil4l uevil4l uvil4l xil3l
103
+ 1informat .in1a2 'in1a2 ’in1a2 .in2a3nit 'in2a3nit ’in2a3nit .in2augur
104
+ 'in2augur ’in2augur .in1e2 'in1e2 ’in1e2 .in1é2 'in1é2 ’in1é2 .in2effab
105
+ 'in2effab ’in2effab .in2é3lucta 'in2é3lucta ’in2é3lucta .in2é3narra 'in2é3narra
106
+ ’in2é3narra .in2ept 'in2ept ’in2ept .in2er 'in2er ’in2er .in2exora 'in2exora
107
+ ’in2exora .in1i2 'in1i2 ’in1i2 .in2i3miti 'in2i3miti ’in2i3miti .in2i3q 'in2i3q
108
+ ’in2i3q .in2i3t 'in2i3t ’in2i3t .in1o2 'in1o2 ’in1o2 .in2o3cul 'in2o3cul
109
+ ’in2o3cul .in2ond 'in2ond ’in2ond .in1s2tab 'in1s2tab ’in1s2tab 'inte4r3
110
+ ’inte4r3 .intera2 'intera2 ’intera2 .intere2 'intere2 ’intere2 .interé2
111
+ 'interé2 ’interé2 .interi2 'interi2 ’interi2 .intero2 'intero2 ’intero2
112
+ .inte4r3 .interu2 'interu2 ’interu2 .inters2 'inters2 ’inters2 .in1u2 'in1u2
113
+ ’in1u2 .in2uit 'in2uit ’in2uit .in2u3l 'in2u3l ’in2u3l io1a2ct i1oxy i1s2tat 1j
114
+ 2jk 4je. 4jes. 2jent. 1ka 1kâ 1ke 1ké 1kè 1kê 4ke. 4kes. 2kent. 1k2h 4kh.
115
+ .kh4 1ki 1kî 1ko 1kô 1k2r 1ku 1kû 1ky 1la 1lâ 1là la2w3re 1le 1lé 1lè 1lê 4le.
116
+ 4les. 2lent. .ta3lent. iva3lent. équiva4lent. monova3lent. polyva3lent.
117
+ re3lent. .do3lent. indo3lent. inso3lent. turbu3lent. succu3lent.
118
+ fécu3lent. trucu3lent. opu3lent. corpu3lent. ru3lent. sporu4lent. 1li 1lî
119
+ 1lo 1lô l1s2t 1lu 1lû 1ly 1ma 1mâ .ma2c3k .macro1s2c .ma2l1a2dres .ma2l1a2dro
120
+ .ma2l1aisé .ma2l1ap .ma2l1a2v .ma2l1en .ma2l1int .ma2l1oc .ma2l1o2d .ma2r1x 1me
121
+ 1mé 1mè 1mê .mé2g1oh .mé2sa .mé3san .mé2s1es .mé2s1i .mé2s1u2s .méta1s2ta 4me.
122
+ 4mes. â2ment. da2ment. fa2ment. amalga2ment. cla2ment. ra2ment.
123
+ tempéra3ment. ta2ment. testa3ment. qua2ment. è2ment. carê2ment.
124
+ diaphrag2ment. ryth2ment. ai2ment. rai3ment. abî2ment. éci2ment.
125
+ vidi2ment. subli2ment. éli2ment. reli2ment. mi2ment. ani2ment. veni2ment.
126
+ ri2ment. détri3ment. nutri3ment. inti2ment. esti2ment. l2ment. flam2ment.
127
+ gram2ment. .gem2ment. om2ment. .com3ment. ô2ment. slalo2ment. chro2ment.
128
+ to2ment. ar2ment. .sar3ment. er2ment. antifer3ment. .ser3ment. fir2ment.
129
+ or2ment. as2ment. au2ment. écu2ment. fu2ment. hu2ment. fichu3ment.
130
+ llu2ment. plu2ment. bou2ment. bru2ment. su2ment. tu2ment. 1mi 1mî
131
+ .milli1am 1m2némo 1m2nès 1m2nési 1mo 1mô 1mœ .mono1a2 .mono1e2 .mono1é2
132
+ .mono1i2 .mono1ï2dé .mono1o2 .mono1u2 .mono1s2 mon2t3réal m1s2 1mu 1mû 1my
133
+ moye2n1â2g 1na 1nâ 1ne 1né 1nè 1nê 4ne. 4nes. 2nent. réma3nent. imma3nent.
134
+ perma3nent. .émi3nent. préémi3nent. proémi3nent. surémi3nent. immi3nent.
135
+ conti3nent. perti3nent. absti3nent. 1ni 1nî 1no 1nô 1nœ .no2n1obs 1nu 1nû
136
+ n3s2at. n3s2ats. n1x 1ny .o4 'o4 ’o4 'ô4 ’ô4 .ô4 o2b3long 1octet o1d2l
137
+ o1è2dre o1ioni ombud2s3 omni1s2 o1s2tas o1s2tat o1s2téro o1s2tim o1s2tom
138
+ o1s2trad o1s2tratu o1s2triction .oua1ou 'oua1ou ’oua1ou .ovi1s2c 'ovi1s2c
139
+ ’ovi1s2c oxy1a2 1pa 1pâ paléo1é2 .pa2n1a2f .pa2n1a2mé .pa2n1a2ra .pa2n1is
140
+ .pa2n1o2ph .pa2n1opt .pa2r1a2che .pa2r1a2chè .para1s2 .pa2r3hé 1pe 1pé 1pè 1pê
141
+ 4pe. 4pes. 2pent. re3pent. .ar3pent. 'ar3pent. ’ar3pent. ser3pent.
142
+ .pen2ta per3h pé2nul .pe4r .per1a2 .per1e2 .per1é2 .per1i2 .per1o2 .per1u2
143
+ pé1r2é2q .péri1os .péri1s2 .péri2s3s .péri2s3ta .péri1u2 1p2h .ph4 4ph.
144
+ .phalan3s2t 4phe. 4phes. 2phent. ph2l 4phle. 4phles. 2phn photo1s2 ph2r
145
+ 4phre. 4phres. 2phs 2pht 3ph2talé 3ph2tis 1pi 1pî 1p2l 4ple. 4ples. 2plent.
146
+ .pluri1a 1p2né 1p2neu 1po 1pô po1astre poly1a2 poly1e2 poly1é2 poly1è2 poly1i2
147
+ poly1o2 poly1s2 poly1u2 .pon2tet .pos2t3h .pos2t1in .pos2t1o2 .pos2t3r .post1s2
148
+ 1p2r 4pre. 4pres. 2prent. .pré1a2 .pré2a3la .pré2au .pré1é2 .pré1e2 .pré1i2
149
+ .pré1o2 .pré1u2 .pré1s2 .pro1é2 .pro1s2cé pro2s3tat .prou3d2h 1p2sych
150
+ .psycho1a2n 1p2tèr 1p2tér 1pu .pud1d2l 1pû 1py 1q 4que. 4ques. 2quent.
151
+ é3quent. élo3quent. grandilo3quent. 1ra 1râ radio1a2 1re 1ré 1rè 1rê .ré1a2
152
+ .ré2a3le .ré2a3lis .ré2a3lit .ré2aux .ré1é2 .ré1e2 .ré2el .ré2er .ré2èr .ré1i2
153
+ .ré2i3fi .ré1o2 .re1s2 .re2s3cap .re2s3cisi .re2s3ciso .re2s3cou .re2s3cri
154
+ .re2s3pect .re2s3pir .re2s3plend .re2s3pons .re2s3quil .re2s3s .re2s3t
155
+ .re3s4tab .re3s4tag .re3s4tand .re3s4tat .re3s4tén .re3s4tér .re3s4tim
156
+ .re3s4tip .re3s4toc .re3s4top .re3s4tr .re4s5trein .re4s5trict .re4s5trin
157
+ .re3s4tu .re3s4ty .réu2 .ré2uss .rétro1a2 4re. 4res. 2rent. .pa3rent.
158
+ appa3rent. transpa3rent. é3rent. tor3rent. cur3rent. 1r2h 4rhe. 4rhes.
159
+ 2r3heur 2r3hydr 1ri 1rî 1ro 1rô 1ru 1rû 1ry 1sa 1sâ .sch4 1s2caph 1s2clér
160
+ 1s2cop 1s2ch e2s3ch i2s3ché i2s3chia i2s3chio 4sch. 4sche. 4sches. 2schs 1se
161
+ 1sé 1sè 1sê sesqui1a2 4se. 4ses. 2sent. ab3sent. pré3sent. .res3sent.
162
+ .seu2le
163
+ .sh4
164
+ 1s2h 4sh. 4she. 4shes. 2shent. 2shm 2s3hom 2shr 2shs 1si 1sî 1s2lav 1s2lov
165
+ 1so 1sô 1sœ 1s2patia 1s2perm 1s2por 1s2phèr 1s2phér 1s2piel 1s2piros 1s2tandard
166
+ 1s2tein stéréo1s2 1s2tigm 1s2tock 1s2tomos 1s2troph 1s2tructu 1s2tyle 1su 1sû
167
+ .su2b1a2 .su3b2alt .su2b1é2 .su3b2é3r .su2b1in .su2b3limin .su2b3lin .su2b3lu
168
+ sub1s2 .su2b1ur supero2 supe4r1 supers2 .su2r1a2 su3r2ah .su3r2a3t .su2r1e2
169
+ .su3r2eau .su3r2ell .su3r2et .su2r1é2 .su2r3h .su2r1i2m .su2r1inf .su2r1int
170
+ .su2r1of .su2r1ox 1sy 1ta 1tâ 1tà tachy1a2 tchin3t2 1te 1té 1tè 1tê télé1e2
171
+ télé1i2 télé1o2b télé1o2p télé1s2 4te. 4tes. 2tent. .la3tent. .pa3tent.
172
+ compé3tent. éni3tent. mécon3tent. omnipo3tent. ventripo3tent. équipo3tent.
173
+ impo3tent. mit3tent. .th4 1t2h 4th. 4the. 4thes. thermo1s2 2t3heur 2thl
174
+ 2thm 2thn th2r 4thre. 4thres. 2ths 1ti 1tî 1to 1tô 1t2r tran2s1a2 tran3s2act
175
+ tran3s2ats tran2s3h tran2s1o2 tran2s3p tran2s1u2 4tre. 4tres. 2trent.
176
+ .tri1a2c .tri1a2n .tri1a2t .tri1o2n t1t2l 1tu 1tû tung2s3 1ty .u4 'u4 ’u4 .û4
177
+ 'û4 ’û4 uni1o2v uni1a2x u2s3tr 1va 1vâ 1ve 1vé 1vè 1vê vélo1s2ki 4ve. 4ves.
178
+ 2vent. conni3vent. .sou3vent. 1vi 1vî 1vo 1vô vol2t1amp 1v2r 4vre. 4vres.
179
+ 2vrent. 1vu 1vû 1vy 1wa 1we 4we. 4wes. 2went. 1wi 1wo 1wu 1w2r 2xent. .y4
180
+ 'y4 ’y4 y1asth y1s2tom y1algi 1za 1ze 1zé 1zè 4ze. 4zes. 2zent.
181
+ privatdo3zent. 1zi 1zo 1zu 1zy
388
182
  PATTERNS
389
183
  end
@@ -1,3 +1,4 @@
1
+ # -*- encoding: iso-8859-1 -*-
1
2
  # Hyphenation patterns for Text::Hyphen in Ruby: Latin
2
3
  # Converted from the TeX hyphenation/lahyph.tex file, by Claudio Beccari
3
4
  # (1999 - 2001).
@@ -0,0 +1,115 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # Origin: TeX hyphenation tables by Sigitas Tolusis and Vytas
3
+ # Statulevicius. The original tables can be found at
4
+ # http://www.vtex.lt/tex/download/zip/texmf.zip as lthyphen.tex.#
5
+ # WARNING: This file is UTF-8 encoded.
6
+ require 'text/hyphen/language'
7
+
8
+ Text::Hyphen::Language::LT = Text::Hyphen::Language.new do |lang|
9
+ lang.encoding "UTF-8"
10
+ lang.patterns <<-PATTERNS
11
+ .ap1 .api1 .ap3r .arbi1 .arti1 .as3p .at1 .ata1 .at3r .aš3v .dina1 .ek3r
12
+ .i2š3 .iši2 .kirti1 .nu1 .nusi1 .pie2č .sam1 .sida1 .sk4 .st4 .su5kr .te3s2
13
+ .uk3 .u2š3 .už1 .įs4 .šven1 a1a2 a1b a1c a2ch a1d a4dra a1e ae2l a1f 2a1g
14
+ a4gr ag3ra a5grio a5gro a1h a5inf ai4sk ai4tr a1j a1k ak2l ak2vi a2kėt a1l
15
+ a3li a5lo1 a3ly a3lė a3lū a1m a1n an3k2l an4sk an4tr a2o a1p ap1a4k ap3ei
16
+ ap3i2m ap3l a3pr ap3s2 a1r ar1eit a4rg ari4s a1s asi1 asi5s a4sk as3kl a3sl
17
+ as2mi as2mu a5s4n a4stu a1t at3aug ate5ist at3i2m ato1 atp4 a4tru at1ė2 atū2ž
18
+ a4u au4kl au4sk au4sl au4t3r a1v a1w a1y a1z a1ą 2a1č a1ę a1ė2 a1į a1š a3šn
19
+ aš4tr aš2v a1ų a1ū2 a1ž až2l ba3c balta1 ba4sl 2b1b 2b1c 4b3d bep4 be3s2
20
+ besi1 be3t2 2b1f 2b1g 2b1h b1j 2b1k 2b1l b2la b2liz 3b2lo b2lu 2b1m 2b1n 2b1p
21
+ 2b2r b3ri 2b1s 2b3t bu4k 2b1v 2b1w 2b1z 2b1č 2b1š 2b1ž car4 2c1b 2c1c 2c1d
22
+ 2c1f 2c1g 3chi 2c1k 2c1l 2c1m 2c1n 2c1p 2c1r 2c1s 2c1t cu4 cuk5 2c1v 2c1w
23
+ 2c1z 2c1č 2c1š 2c1ž da3b4 2d1b 2d1c 2d1d de4k dema1 de4pr de4sp 2d1f 2d1g
24
+ 2d1h di4p di4s dis5k 2d1j 2d3k 4d3l 2d1m 2d1n do3ri 2d1p 2d1r dro1 dro2b d2rė
25
+ 4drų 2d1s 2d1t du2a du4k du5ka du4sl 2d1v d3va dvi3a 2d1w d4z 2d1č 2d1š d4ž
26
+ džio1 e1a2 e2a3l eapi1 eat1 e1b2 ebe1 e3bl eb3r e1c e2ch e3d2 ed3ri e4dro
27
+ ed3rė e1e e1f e1g eg3ra e1h e1ie ei4k3l 1ein ei4sk ei4sl 2eis3t eist2ra ei2š1
28
+ e1j e1k e3kr e1l e1m ema5s4 2e1n en3k2l enk4la eno1 ens4 4enta enu1 e2o e3or
29
+ e3o2š e3p ep4li ep4r epra1 epri1 e1r ere3a4 eri4s ero1 erė2 e1s esi5s es4k
30
+ eska1 e5sko e3s2v e1t e1u4 euž3 e1v e3vi e1w e1y e1z e1ą e1č e1ę e1ė e1į4
31
+ eįp3 eįs3k eįt3r e1š e3šn eš2v ešė3 e1ų e1ū e1ž 2f1b 2f1c 2f1d 2f1f 2f1g 2f1h
32
+ fi4s5 2f1k 2f1l 2f1m 2f1n 2f1p 2f1r fri1 2f1s 2f1t 2f1v 2f1w 2f1z 2f1č 2f1š
33
+ 2f1ž gaš3 2g1b 2g1c 2g1d ge4o1 2g1f 2g1g 2g1h 2g1k 2g1l g2le g2lo 2g1m 2g1n
34
+ 3g2nų 2g1p2 3g2r grai2 g3ran 5g3re g4rei g3ri 4g4rio g3ro. g4rą 5grį 4grų
35
+ 2g1s 4g1t 3gu 2g1v 2g1w gyva1 2g1z 2g1č 2g1š 2g1ž 2h1b 2h1c 2h1d 2h1f 2h1g
36
+ 2h1h hi4b 2h1k 2h2l 2h1m h2me 2h1n 2h1p 2h1r 2h1s 2h1t 2h1v 2h1w 2h1z 2h1č
37
+ 2h1š 2h1ž i2a ia5g4 i3aiš ia3k i3antę i3antė iap4 i3ar i3b2 i1c ice1 i1d id2r
38
+ id3rė i2dėm i2e ie4d3r ie3g i3ei ie3kl i3ent ie4p5r ie4sk i1f 2i1g i3g2l ig3ru
39
+ 2i1h i1i2 i1j i1k i3k2n ik3r i1l ilo1 i1m 1imd 4i1n in4kl 5inv i2o io4g3r iok2
40
+ io4pl i3or i1p i2p1j ip3ru i1r ira3s2 i3ri 4i1s i5sa i5si is4k i3sl is4li i5s4n
41
+ i4ste isto1 2i3t2 i2u i1v i1w i1y i1z i2ą i1č i1ę i1ė2 i1į i1š i3šn iš5t i4šv
42
+ išė2 1išš i2ų i2ū i3ž 3ja. jauna1 2j1b 2j1c 2j1d 2j1f 2j1g 2j1h 2j1j 2j1k 2j1l
43
+ 2j1m 2j1n jot3 jo4tv 2j1p 2j1r 2j1s 2j1t 1ju 2j1v 2j1w 2j1z 2j1č 2j1š 1jū 2j1ž
44
+ 3ka. 5ka3d kak3 ka4kl ka4pr 3kar 3kas 3kati 5kav kavar1 ka3z2 2k1b 2k1c 2k1d
45
+ 3ke ke4b3 keren1 2k1f 2k1g 2k1h k4i 5ki. 5kia 3kib 3kil 5kit 2k1k 2k1l 3k2la
46
+ k4lan 4kle. k2lel 4klo. 4klu. k2ly 4klą 4klų 2k1m 2k1n 3ko 2k1p 2k2r k4rau
47
+ kris2 kri5st k3ro k4rov 4k3ru 5krun k4ry k5rą 2k1s k4sk ks3l k4s3p 4k1t k3ta
48
+ 3ku 4kub ku4k ku4pr 2k1v k2va k3vo k2vė 2k1w 3kyt 2k1z 5ką 2k1č 2k1š kš2ly
49
+ kšė3 2k1ž 3la. lap4s3to 2l1b lb3r 2l1c 2l1d 3le. le3c le4gr 4leč 2l1f 2l1g
50
+ lg3s2t 2l1h 3li. li4a 5li4o 3lių 2l1j 2l1k lko1 2l1l 2l1m 2l1n 3lo. log4 4lop
51
+ 4l1p lpna1 2l1r 4l1s l4sk l4s3p 4l3t 3lu. 2lup 4l1v 2l1w 3lyč 2l1z 3lą 2l1č
52
+ 3lęs 3lėm 3lės 2lėč 3lį4 4l1š 3lų 2l1ž m2a 2m3aid 3mas mas3ki 2m1b mb3r 2m1c
53
+ 2m1d me3c meis1 2m1f 2m1g 2m1h mi4gl mi4gr min4s mi4tr 2m1k 2m1l 2m1m 2m1n m2o
54
+ 2mod 2m1p m4pl m3pr 2m1r 4m1s 2m1t m3ta 3muo 2m1v 2m1w 2m1z 2m1č 2m1š 2m1ž
55
+ na3s2 na3t2 2n1b 2n1c ncen1 2n1d n3drė ne1 neg4 nei2m ne4o3 neor2 nerė3 nesi1
56
+ ne3sl ne3s2t ne3t2 neįs3t 2n1f 4n1g ng3l ng4r 2n1h ni4s 2n1j 2n1k nk3la nk3r
57
+ n3kry 2n1l 2n1m 2n1n 5no 2n1p 2n1r 4n1s ns4ku ns3l n4s3p nst3r 4n1t n3ta nt4pl
58
+ n3tru nt2ruo nua4 nu3b2 nu3g nu1i nuk2 nu4o3 nuos2 nu5s4 2n1v 2n1w 2n1z 4n1č
59
+ 2n1š 2n1ž o1a o1b o1c o1d o3dr o1e o2et o1f o1g o1h o1i o1j o1k o3kr o1l olen1
60
+ o1m om4pr o1n ono1 o1o2 o1p o1r o2rie ori4s or4tr o2rę o1s o3sl os3le os4lo
61
+ o3s2v o3t2 oto1 o1v o1w o1y o1z o1ą o1č o1ę o1ė o1į o1š oš2v o1ų o1ū o1ž pa3
62
+ pad2 pai2l pai2m pai2r 3pan pap4 p2ar parsi1 pa4r1ė2 pas2 pa5sr p2at2 2p1b
63
+ 4p1c 4p3d2 p2e per1 pe2re pe2r3im per3s pe2rė 2p1f 2p1g 2p1h p2i p3ieš 2p3k2
64
+ 3p2l p3le p3li 4plio p4liu p3lo p4loj p4lu p4ly 2p1m 4p1n 3po po4g poli1 2p1p
65
+ 2p2r p3rai prau2si p3raš p3ri pris2 p5ro. p3rom p3ry 4prą p3rė p3rū 4p1s psi1
66
+ p5s4k p4s3ty p3s2v 4p3t2 3p4u pusiau1 pu4sk pu4sl pu4tr 2p1v 2p1w p2y 2p1z
67
+ 2p1č p2ė 4p3š2 4p3ž r2a 3ra. ra3b 3rac ra1im rai4tį ra3kr 3ral 3ram ras4l
68
+ ra3sm rau4ka. 3rav 2r1b rbo1 r3b4r 2r1c 4r1d 2reb 4rein 4reit 3rel re4p5 5res
69
+ res3l 3ret 2r1f 2r1g 2r1h r2i 3ri. ri3d 3rij ri3kr 2ril ri2ma. 2r3imt 3rio
70
+ ri3p risi1 ri3st rivin1 3rią 3rių 2riū 4r1k rk3ly r3k4r 4r1l 2r1m 4r1n r2o
71
+ 3rod2 ro4gr 3roj 3rok 3ron 3rop 2r3org 5ros 2r1p r3p4r 2r1r 4r1s rs4ko. rs4p
72
+ 4r1t rti5k4 rti3s2 r3t2r r3t2v r2u 2ruk 3rul 4run 3ruos 2rup 3rus ru4sk 4ruto
73
+ 4r1v 2r1w 2r1z 3rą 4rąs 4r1č 4r1š r3š2l r3š2m 5rų 2r1ž sala1 2s1amž san5t
74
+ sarka1 2s3b 2s1c 2s3d s2e se4kr senat4 2s1f 2s1g 2s1h si3auk si3a2v si3a2š
75
+ si3d si3k4 si3p4 si3s2 si5š2v 3s2k2 4sk. s5ka. 4ske 5s4ken 5ski 5s4kle 5sk4r
76
+ 5skub sk3va sk3vi 5sky 4ską 5skę 2s2l 3sle s3li s3lo 4s3lu 4s3lū 2s1m 4sme.
77
+ 4smę 4s3n so4dr 3s2p s3pe 4spn 4spu 4s1r s3ri 2s1s 2s1t s2tal s2ten 4stin
78
+ s2tod s2toj 3s2tov st2rai st2v 4stę 4s3tė 4stų s2tū su1 su3bl su3d2 su3g2
79
+ suk2l su3s2 susi1 suž4 2s1v s2ve 3s2vy 2s1w 2s1z są3 4s3č 5sė 2s1š 2s1ž t2a
80
+ 2tab ta3kr ta5s 2tat taura1 2tač 2t1b 2t1c 2t1d 2teb 3tem te4o te3t2 2t1f 4t3g
81
+ 2t1h t2i ti4gr ti4k3l 3tin 2tip 4t3j 4t3k t4kl 4t3l 4t3m 2t1n t2o 3toje 2tolį
82
+ to3s2 2tow 2t3p t4pj tp3lū tp4r 2t1r 4trio t2riš 4tro 4trą 4trų 4t3s4 tsi1
83
+ tskri1 4t1t tua4 3tur 2t1v t2vo 4tvėj 2t1w 3tyd 2t1z 2t1č 3tę t2ėm t3ėmu t3ėmę
84
+ t3ėmė 2t3š2 2t3ž u1a2 u3ai u1b u2bj u1c u1d u1e2 u1f u1g ug4r ug5rio u1h u1i2m
85
+ u5in ui2r u1j u1k u3kl uk2le u3kr u3kv u5kų u1l u1m u1n u2o u3or uo4sl u3p
86
+ up4l up3ro u1r urk2 ur3kl u5ro1 ur3s2 u1s u2s1al u3sl us3la us3le usva1 us3ve
87
+ u3t2 uto1 2utr u1u u1v u1w u1y u1z u1ą u1č u1ę u1ė2 u1į u1š u3š2l u3š2n uš2v
88
+ u1ų u1ū2 u1ž uži2m u3žl už3v už1ė2 3va. vap4 va3t 2v1b 2v1c 2v1d v2e 2vep 3ves
89
+ 2v1f 2v1g 2v1h viesia1 vi4s5k vi4t3r 2v1j 2v1k 2v1l 2v1m 2v1n 2v1p 2v1r 2v4s
90
+ 2v1t 2v1v 2v1w 2vydau 2v1z 3vą 2v1č 3vė 4vėp 2v1š 2v1ž 2w1b 2w1c 2w1d 2w1f
91
+ 2w1g 2w1h 2w1k 2w1l 2w1m 2w1n 2w1p 2w1r 2w1s 2w1t 2w1v 2w1w 2w1z 2w1č 2w1š
92
+ 2w1ž y1a y1b y1c y1d y1e y1f y1g ygia1 y1h y1i y1j y1k y4k3l y1l y1m y1n y1o
93
+ y1p y3r y1s y4sk y1t y1u y1v y1w y1y y1z y1ą y1č y1ę y1ė y1į y1š y1ų y1ū y1ž
94
+ 2z1b 2z1c 2z1d 2z1f 2z1g 2z1h 2z1k 2z1l 2z1m 2z1n 2z1p 2z1r 2z1s 2z1t 2z1v
95
+ 2z1w 2z1z 2z1č 2z1š 2z1ž ą1a ą1b ą1c ą1d ą1e ą1f ą1g ą1h ą1i ą1j ą1k ą1l ą1m
96
+ ą1n ą1o ą1p ą1r ą1s ą1t ą1u ą1v ą1w ą1y ą1z ą1ą ą1č ą1ę ą1ė ą1į ą1š ą1ų ą1ū
97
+ ą1ž 2č1b 2č1c 2č1d čeko1 2č1f 2č1g 2č1h čin1 2č1k 2č1l 2č1m 2č1n 2č1p 2č1r
98
+ 2č1s 2č1t 2č1v 2č1w 2č1z 2č1č 2č1š 2č1ž ę1a ę1b ę1c ę1d ę1e ę1f ę1g ę1h ę1i
99
+ ę1j ę1k ę1l ę1m ę1n ę1o ę1p ę1r ę1s ę1t ę1u ę1v ę1w ę1y ę1z ę1ą ę1č ę1ę ę1ė
100
+ ę1į ę1š ę1ų ę1ū ę1ž ė1a ė1b ė1c ė1d ė1e ė1f ė1g ė1h ė1i ė1j ė1k ė4k3l 2ė3l ė1m
101
+ ė3me ė1n ė1o ė1p ė1r 2ė1s ės3l 2ė3t ė4tr ė1u ė1v ė1w ė1y ė1z ė1ą ė1č ė1ę ė1ė
102
+ ė1į ė1š ė1ų ė1ū ė1ž į1a į1b į1c į1d2 į2e į1f į4g į1h į1i į1j į2k4 į2l į2m į1n
103
+ į1o į4p į2r į1s įsi1 įs3l įs2m įs2r įst2 į2t2 į1u į2v į1w į1y į1z į1ą į1č į1ę
104
+ į1ė2 į1į į1š į1ų į1ū į1ž 2š1b2 2š1c 2š3d2 š1ei še2v 2š1f 2š1g4 2š1h 2š5ist
105
+ šiuk1 2š1k2 2š1l š2lij š2lu 3šly 2š1m 2š1n š2ne šno1 šo2r 2š1p4 2š1r 2š3s4
106
+ šsi1 šsikap1 4š3t2 šu4š 3š1v š2vi š4vyd 2š1w 2š1z 4š3č šė2j 2š1š 2š1ž ų1a ų1b
107
+ ų1c ų1d ų1e ų1f ų1g ų1h ų1i ų1j ų1k ų1l ų1m ų1n ų1o ų1p ų1r ų1s ų1t ų1u ų1v
108
+ ų1w ų1y ų1z ų1ą ų1č ų1ę ų1ė ų1į ų1š ų1ų ų1ū ų1ž ū1a ū1b ū1c ū1d ū1e ū1f ū1g
109
+ ū1h ū1i ū1j ū1k ū4k3l ū1l ū1m ū1n ū1o ū1p ū1r ū1s ū4s3k ūs3l ūs3t ū1t ū1u ū1v
110
+ ū1w ū1y ū1z ū1ą ū1č ū1ę ū1ė ū1į ū1š ū1ų ū1ū ū1ž žant4 žants5 2ž3b2 2ž1c 2ž3d2
111
+ žen1 2ž3f4 2ž3g 2ž1h ži3mu žio3 ž1j 2ž3k2 2ž1l ž2lu 4ž1m 2ž1n 2ž3p 2ž1r 2ž1s
112
+ žsi1 ž4sk ž4s5l žs3t 4ž3t2 ž2u žu3s2 3ž2v ž4vi ž3vo 2ž1w 2ž1z 2ž1č žįs3 2ž1š
113
+ 2ž1ž
114
+ PATTERNS
115
+ end
@@ -1,3 +1,4 @@
1
+ # -*- encoding: iso-8859-1 -*-
1
2
  # Hyphenation patterns for Text::Hyphen in Ruby: Portuguese
2
3
  # Converted from the TeX hyphenation/pthyphen.tex file, by Pedro J. de
3
4
  # Rezende, copyright 1987.
@@ -21,7 +22,7 @@
21
22
  #
22
23
  # Permission is hereby granted to copy and distribute this material provided
23
24
  # that the copies are not made or distributed for commercial or lucrative
24
- # purpose.
25
+ # purpose.
25
26
  #
26
27
  # FURTHERMORE, THE CONTENTS OF THIS TABLE ARE NOT TO BE CHANGED IN ANY WAY!
27
28
  #