зеркало из https://github.com/mozilla/gecko-dev.git
Merge the last green changeset on mozilla-inbound to mozilla-central
This commit is contained in:
Коммит
c5929cd7c7
|
@ -214,7 +214,7 @@ nsHyphenationManager::LoadPatternListFromDir(nsIFile *aDir)
|
|||
locale.Replace(i, 1, '-');
|
||||
}
|
||||
}
|
||||
#ifdef DEBUG
|
||||
#ifdef DEBUG_hyph
|
||||
printf("adding hyphenation patterns for %s: %s\n", locale.get(),
|
||||
NS_ConvertUTF16toUTF8(dictName).get());
|
||||
#endif
|
||||
|
|
|
@ -85,8 +85,19 @@ nsHyphenator::Hyphenate(const nsAString& aString,
|
|||
|
||||
PRBool inWord = PR_FALSE;
|
||||
PRUint32 wordStart = 0, wordLimit = 0;
|
||||
for (PRUint32 i = 0; i < aString.Length(); i++) {
|
||||
PRUnichar ch = aString[i];
|
||||
PRUint32 chLen;
|
||||
for (PRUint32 i = 0; i < aString.Length(); i += chLen) {
|
||||
PRUint32 ch = aString[i];
|
||||
chLen = 1;
|
||||
|
||||
if (NS_IS_HIGH_SURROGATE(ch)) {
|
||||
if (i + 1 < aString.Length() && NS_IS_LOW_SURROGATE(aString[i+1])) {
|
||||
ch = SURROGATE_TO_UCS4(ch, aString[i+1]);
|
||||
chLen = 2;
|
||||
} else {
|
||||
NS_WARNING("unpaired surrogate found during hyphenation");
|
||||
}
|
||||
}
|
||||
|
||||
nsIUGenCategory::nsUGenCategory cat = mCategories->Get(ch);
|
||||
if (cat == nsIUGenCategory::kLetter || cat == nsIUGenCategory::kMark) {
|
||||
|
@ -94,14 +105,15 @@ nsHyphenator::Hyphenate(const nsAString& aString,
|
|||
inWord = PR_TRUE;
|
||||
wordStart = i;
|
||||
}
|
||||
wordLimit = i + 1;
|
||||
if (i < aString.Length() - 1) {
|
||||
wordLimit = i + chLen;
|
||||
if (i + chLen < aString.Length()) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
if (inWord) {
|
||||
NS_ConvertUTF16toUTF8 utf8(aString.BeginReading() + wordStart,
|
||||
const PRUnichar *begin = aString.BeginReading();
|
||||
NS_ConvertUTF16toUTF8 utf8(begin + wordStart,
|
||||
wordLimit - wordStart);
|
||||
nsAutoTArray<char,200> utf8hyphens;
|
||||
utf8hyphens.SetLength(utf8.Length() + 5);
|
||||
|
@ -113,29 +125,24 @@ nsHyphenator::Hyphenate(const nsAString& aString,
|
|||
utf8hyphens.Elements(), nsnull,
|
||||
&rep, &pos, &cut);
|
||||
if (!err) {
|
||||
PRUint32 utf16offset = wordStart;
|
||||
const char *cp = utf8.BeginReading();
|
||||
while (cp < utf8.EndReading()) {
|
||||
if (UTF8traits::isASCII(*cp)) { // single-byte utf8 char
|
||||
cp++;
|
||||
utf16offset++;
|
||||
} else if (UTF8traits::is2byte(*cp)) { // 2-byte sequence
|
||||
cp += 2;
|
||||
utf16offset++;
|
||||
} else if (UTF8traits::is3byte(*cp)) { // 3-byte sequence
|
||||
cp += 3;
|
||||
utf16offset++;
|
||||
} else { // must be a 4-byte sequence (no need to check validity,
|
||||
// as this was just created with NS_ConvertUTF16toUTF8)
|
||||
NS_ASSERTION(UTF8traits::is4byte(*cp), "unexpected utf8 byte");
|
||||
cp += 4;
|
||||
utf16offset += 2;
|
||||
// Surprisingly, hnj_hyphen_hyphenate2 converts the 'hyphens' buffer
|
||||
// from utf8 code unit indexing (which would match the utf8 input
|
||||
// string directly) to Unicode character indexing.
|
||||
// We then need to convert this to utf16 code unit offsets for Gecko.
|
||||
const char *hyphPtr = utf8hyphens.Elements();
|
||||
const PRUnichar *cur = begin + wordStart;
|
||||
const PRUnichar *end = begin + wordLimit;
|
||||
while (cur < end) {
|
||||
if (*hyphPtr & 0x01) {
|
||||
aHyphens[cur - begin] = PR_TRUE;
|
||||
}
|
||||
NS_ASSERTION(cp <= utf8.EndReading(), "incomplete utf8 string?");
|
||||
NS_ASSERTION(utf16offset <= aString.Length(), "length mismatch?");
|
||||
if (utf8hyphens[cp - utf8.BeginReading() - 1] & 0x01) {
|
||||
aHyphens[utf16offset - 1] = PR_TRUE;
|
||||
cur++;
|
||||
if (cur < end && NS_IS_LOW_SURROGATE(*cur) &&
|
||||
NS_IS_HIGH_SURROGATE(*(cur-1)))
|
||||
{
|
||||
cur++;
|
||||
}
|
||||
hyphPtr++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,10 +47,7 @@ DEFINES += -DAB_CD=$(AB_CD)
|
|||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
PATTERN_FILES = $(strip $(wildcard $(LOCALE_SRCDIR)/hyphenation/*.dic))
|
||||
ifneq ($(AB_CD),en-US)
|
||||
PATTERN_FILES += $(strip $(wildcard $(srcdir)/en-US/hyphenation/*.dic))
|
||||
endif
|
||||
PATTERN_FILES = $(strip $(wildcard $(srcdir)/*/hyphenation/*.dic))
|
||||
|
||||
ifneq (,$(PATTERN_FILES))
|
||||
libs::
|
||||
|
|
|
@ -0,0 +1,79 @@
|
|||
License information for hyph_af.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-af.lic.txt in the original work):
|
||||
|
||||
Afrikaans hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% Hyphenation patterns for Afrikaans
|
||||
%
|
||||
% This work may be distributed and/or modified under the
|
||||
% conditions of the LaTeX Project Public License, either version 1.3
|
||||
% of this license or (at your option) any later version.
|
||||
% The latest version of this license is in
|
||||
% http://www.latex-project.org/lppl.txt
|
||||
% and version 1.3 or later is part of all distributions of LaTeX
|
||||
% version 2005/12/01 or later.
|
||||
% -----------------------------------------------------------------
|
||||
% VERSION: 0.9 (October 2010)
|
||||
%
|
||||
% AUTHORS: Tilla Fick and Chris Swanepoel
|
||||
% hyphen at rekenaar dot net
|
||||
% -----------------------------------------------------------------
|
||||
%
|
||||
% Define lefthyphenmin to one and righthyphenmin to two
|
||||
% (although righthyphenmin could technically be made one,
|
||||
% in allmost all cases a value of two gives better results):
|
||||
% \lefthyphenmin=1 \righthyphenmin=2
|
||||
%
|
||||
% -----------------------------------------------------------------
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,98 @@
|
|||
License information for hyph_bg.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-bg.lic.txt in the original work):
|
||||
|
||||
Bulgarian hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% Bulgarian hyphenation patterns, version 1.7, July 2008
|
||||
% Copyright 1994-2008 Georgi Boshnakov
|
||||
% Georgi dot Boshnakov at manchester dot ac dot uk
|
||||
%
|
||||
% This file can be redistributed and/or modified under the terms
|
||||
% of the LaTeX Project Public License distributed from CTAN
|
||||
% archives in directory macros/latex/base/lppl.txt; either
|
||||
% version 1 of the License, or any later version.
|
||||
%
|
||||
%
|
||||
% First version: 1994
|
||||
% Modified: June 2000 (minor changes)
|
||||
% Modified: May 2006 (added copyright notice)
|
||||
% Modified: June 2008 (changed encoding to utf-8)
|
||||
%
|
||||
% Please send wrongly hyphenated words and suggestions for
|
||||
% corrections to the address given towards the beginning of this
|
||||
% file.
|
||||
%
|
||||
%
|
||||
% Note: The original name of this file was 'bghyphsi.tex' which is
|
||||
% part of the package 'bghyphen'. The package 'bghyphen' is now
|
||||
% obsolete but it is still available on CTAN and currently (June 2008)
|
||||
% gives the same hyphenation results.
|
||||
%
|
||||
%
|
||||
%
|
||||
% To make TeX use these patterns:
|
||||
%
|
||||
% (1) Make sure that the hyph-utf8 package is present in your TeX
|
||||
% system.
|
||||
%
|
||||
% (2) generate the necessary formats (TeX, LaTeX, pdfLaTeX, etc),
|
||||
% instructing TeX to load 'loadhyph-bg.tex' for Bulgarian
|
||||
% hyphenation.
|
||||
%
|
||||
% The LaTeX babel package sets \lefthyphenmin and \righthyphenmin to 2
|
||||
% when the language is switched to Bulgarian. Developers who write
|
||||
% support for Bulgarian outside LaTeX and/or babel need to take care
|
||||
% of this.
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,180 @@
|
|||
License information for hyph_ca.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-ca.lic.txt in the original work):
|
||||
|
||||
Catalan hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: cahyph.tex (2003-09-08)
|
||||
% Author: Gonçal Badenes <g.badenes at ieee.org>
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% Hyphenation patterns for Catalan.
|
||||
% This is version 1.11
|
||||
% Compiled by Gonçal Badenes and Francina Turon,
|
||||
% December 1991-January 1995.
|
||||
%
|
||||
% Copyright (C) 1991-2003 Gonçal Badenes
|
||||
%
|
||||
% -----------------------------------------------------------------
|
||||
% IMPORTANT NOTICE:
|
||||
%
|
||||
% This program can be redistributed and/or modified under the terms
|
||||
% of the LaTeX Project Public License Distributed from CTAN
|
||||
% archives in directory macros/latex/base/lppl.txt; either
|
||||
% version 1 of the License, or any later version.
|
||||
% -----------------------------------------------------------------
|
||||
%
|
||||
%%% ====================================================================
|
||||
%%% @TeX-hyphen-file{
|
||||
%%% author = "Gonçal Badenes",
|
||||
%%% version = "1.11",
|
||||
%%% date = "15 July 2003",
|
||||
%%% time = "15:08:12 CET",
|
||||
%%% filename = "cahyph.tex",
|
||||
%%% email = "g.badenes@ieee.org",
|
||||
%%% codetable = "UTF-8",
|
||||
%%% keywords = "TeX, hyphen, catalan",
|
||||
%%% supported = "yes",
|
||||
%%% abstract = "Catalan hyphenation patterns",
|
||||
%%% docstring = "This file contains the hyphenation patterns
|
||||
%%% for the catalan language",
|
||||
%%% }
|
||||
%%% ====================================================================
|
||||
%
|
||||
% NOTICE: Version 1.11 is identical to version 1.10 (issued on January 17,
|
||||
% 1995) except for the updated copyright notice above.
|
||||
%
|
||||
% The macros used were created for ghyph31.tex by Bernd Raichle (see the
|
||||
% German hyphenation pattern files for further details)
|
||||
%
|
||||
% This patterns have been created using standard, conservative
|
||||
% hyphenation rules for catalan. The results have refined running them
|
||||
% through patgen. In that way, the number of hits has been increased.
|
||||
%
|
||||
% These rules produce no wrong patterns (Results checked against the
|
||||
% ``Diccionari Ortogr\`afic i de Pron\'uncia'', Enciclop\`edia
|
||||
% Catalana. The percentage of valid hyphen misses is lower than 1%
|
||||
%
|
||||
% Some of the patterns below represent combinations that never
|
||||
% happen in Catalan. We have tried to keep them to a minimum.
|
||||
%
|
||||
% *** IMPORTANT ***
|
||||
% \lefthyphenmin and \righthyphenmin should be set to 2 and 2
|
||||
% respectively. If you set them below these values incorrect breaks
|
||||
% will happen (specially at the beginning of foreign words and words
|
||||
% which begin with some prefixes).
|
||||
% *** IMPORTANT ***
|
||||
%
|
||||
% Please report any problem you might have to the authors!!!
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% \message{Catalan Hyphenation Patterns `cahyphen' Version 1.11 <2003/07/15>}
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
|
@ -0,0 +1,959 @@
|
|||
UTF-8
|
||||
LEFTHYPHENMIN 2
|
||||
RIGHTHYPHENMIN 2
|
||||
1ba
|
||||
1be
|
||||
1bi
|
||||
1bo
|
||||
1bu
|
||||
1ca
|
||||
1ce
|
||||
1ci
|
||||
1co
|
||||
1cu
|
||||
1da
|
||||
1de
|
||||
1di
|
||||
1do
|
||||
3du
|
||||
1fa
|
||||
1fe
|
||||
1fi
|
||||
1fo
|
||||
1fu
|
||||
1ga
|
||||
1ge
|
||||
1gi
|
||||
1go
|
||||
1gu
|
||||
1ha
|
||||
1he
|
||||
1hi
|
||||
1ho
|
||||
1hu
|
||||
1ja
|
||||
1je
|
||||
1ji
|
||||
1jo
|
||||
1ju
|
||||
1la
|
||||
1le
|
||||
1li
|
||||
1lo
|
||||
1lu
|
||||
1ma
|
||||
1me
|
||||
1mi
|
||||
1mo
|
||||
1mu
|
||||
1na
|
||||
1ne
|
||||
3ni
|
||||
1no
|
||||
1nu
|
||||
1pa
|
||||
3pe
|
||||
3pi
|
||||
3po
|
||||
1pu
|
||||
1qu
|
||||
1ra
|
||||
1re
|
||||
1ri
|
||||
1ro
|
||||
1ru
|
||||
1sa
|
||||
1se
|
||||
1si
|
||||
1so
|
||||
1su
|
||||
1ta
|
||||
1te
|
||||
1ti
|
||||
1to
|
||||
1tu
|
||||
1va
|
||||
1ve
|
||||
1vi
|
||||
1vo
|
||||
1vu
|
||||
1xa
|
||||
1xe
|
||||
1xi
|
||||
1xo
|
||||
1xu
|
||||
1za
|
||||
1ze
|
||||
1zi
|
||||
1zo
|
||||
1zu
|
||||
1bé
|
||||
1bí
|
||||
1bó
|
||||
1bú
|
||||
1bà
|
||||
1bè
|
||||
1bò
|
||||
1cé
|
||||
1cí
|
||||
1có
|
||||
1cú
|
||||
1cà
|
||||
1cè
|
||||
1cò
|
||||
1ço
|
||||
1ça
|
||||
1çu
|
||||
1çó
|
||||
1çú
|
||||
1çà
|
||||
1çò
|
||||
1dé
|
||||
1dí
|
||||
1dó
|
||||
1dú
|
||||
1dà
|
||||
1dè
|
||||
1dò
|
||||
1fé
|
||||
1fí
|
||||
1fó
|
||||
1fú
|
||||
1fà
|
||||
1fè
|
||||
1fò
|
||||
1gé
|
||||
1gí
|
||||
1gó
|
||||
1gú
|
||||
1gà
|
||||
1gè
|
||||
1gò
|
||||
1gü
|
||||
1hé
|
||||
1hí
|
||||
1hó
|
||||
1hú
|
||||
1hà
|
||||
1hè
|
||||
1hò
|
||||
1jé
|
||||
1jí
|
||||
1jó
|
||||
1jú
|
||||
1jà
|
||||
1jè
|
||||
1jò
|
||||
1lé
|
||||
1lí
|
||||
1ló
|
||||
1lú
|
||||
1là
|
||||
1lè
|
||||
1lò
|
||||
1mé
|
||||
1mí
|
||||
1mó
|
||||
1mú
|
||||
1mà
|
||||
1mè
|
||||
1mò
|
||||
1né
|
||||
1ní
|
||||
1nó
|
||||
1nú
|
||||
1nà
|
||||
1nè
|
||||
1nò
|
||||
1pé
|
||||
1pí
|
||||
1pó
|
||||
1pú
|
||||
1pà
|
||||
1pè
|
||||
1pò
|
||||
1qü
|
||||
1ré
|
||||
1rí
|
||||
1ró
|
||||
1rú
|
||||
1rà
|
||||
1rè
|
||||
1rò
|
||||
1sé
|
||||
1sí
|
||||
1só
|
||||
1sú
|
||||
1sà
|
||||
1sè
|
||||
1sò
|
||||
1té
|
||||
1tí
|
||||
1tó
|
||||
1tú
|
||||
1tà
|
||||
1tè
|
||||
1tò
|
||||
1vé
|
||||
1ví
|
||||
1vó
|
||||
1vú
|
||||
1và
|
||||
1vè
|
||||
1vò
|
||||
1xé
|
||||
1xí
|
||||
1xó
|
||||
1xú
|
||||
1xà
|
||||
1xè
|
||||
1xò
|
||||
1zé
|
||||
1zí
|
||||
1zó
|
||||
1zú
|
||||
1zà
|
||||
1zè
|
||||
1zò
|
||||
3l2la
|
||||
1l2le
|
||||
1l2li
|
||||
3l2lo
|
||||
1l2lu
|
||||
1b2la
|
||||
1b2le
|
||||
1b2li
|
||||
1b2lo
|
||||
1b2lu
|
||||
1b2ra
|
||||
1b2re
|
||||
1b2ri
|
||||
1b2ro
|
||||
1b2ru
|
||||
1c2la
|
||||
1c2le
|
||||
1c2li
|
||||
1c2lo
|
||||
1c2lu
|
||||
1c2ra
|
||||
1c2re
|
||||
1c2ri
|
||||
1c2ro
|
||||
1c2ru
|
||||
1d2ra
|
||||
1d2re
|
||||
1d2ri
|
||||
1d2ro
|
||||
1d2ru
|
||||
1f2la
|
||||
1f2le
|
||||
1f2li
|
||||
1f2lo
|
||||
1f2lu
|
||||
1f2ra
|
||||
1f2re
|
||||
1f2ri
|
||||
1f2ro
|
||||
1f2ru
|
||||
1g2la
|
||||
1g2le
|
||||
1g2li
|
||||
1g2lo
|
||||
1g2lu
|
||||
1g2ra
|
||||
1g2re
|
||||
1g2ri
|
||||
1g2ro
|
||||
1g2ru
|
||||
1p2la
|
||||
1p2le
|
||||
1p2li
|
||||
1p2lo
|
||||
1p2lu
|
||||
3pr
|
||||
1p2ra
|
||||
1p2re
|
||||
1p2ri
|
||||
1p2ro
|
||||
1p2ru
|
||||
1t2ra
|
||||
1t2re
|
||||
1t2ri
|
||||
1t2ro
|
||||
1t2ru
|
||||
1n2ya
|
||||
1n2ye
|
||||
1n2yi
|
||||
1n2yo
|
||||
1n2yu
|
||||
1l2lé
|
||||
1l2lí
|
||||
1l2ló
|
||||
1l2lú
|
||||
1l2là
|
||||
1l2lè
|
||||
1l2lò
|
||||
1b2lé
|
||||
1b2lí
|
||||
1b2ló
|
||||
1b2lú
|
||||
1b2là
|
||||
1b2lè
|
||||
1b2lò
|
||||
1b2ré
|
||||
1b2rí
|
||||
1b2ró
|
||||
1b2rú
|
||||
1b2rà
|
||||
1b2rè
|
||||
1b2rò
|
||||
1c2lé
|
||||
1c2lí
|
||||
1c2ló
|
||||
1c2lú
|
||||
1c2là
|
||||
1c2lè
|
||||
1c2lò
|
||||
1c2ré
|
||||
1c2rí
|
||||
1c2ró
|
||||
1c2rú
|
||||
1c2rà
|
||||
1c2rè
|
||||
1c2rò
|
||||
1d2ré
|
||||
1d2rí
|
||||
1d2ró
|
||||
1d2rú
|
||||
1d2rà
|
||||
1d2rè
|
||||
1d2rò
|
||||
1f2lé
|
||||
1f2lí
|
||||
1f2ló
|
||||
1f2lú
|
||||
1f2là
|
||||
1f2lè
|
||||
1f2lò
|
||||
1f2ré
|
||||
1f2rí
|
||||
1f2ró
|
||||
1f2rú
|
||||
1f2rà
|
||||
1f2rè
|
||||
1f2rò
|
||||
1g2lé
|
||||
1g2lí
|
||||
1g2ló
|
||||
1g2lú
|
||||
1g2là
|
||||
1g2lè
|
||||
1g2lò
|
||||
1g2ré
|
||||
1g2rí
|
||||
1g2ró
|
||||
1g2rú
|
||||
1g2rà
|
||||
1g2rè
|
||||
1g2rò
|
||||
1p2lé
|
||||
1p2lí
|
||||
1p2ló
|
||||
1p2lú
|
||||
1p2là
|
||||
1p2lè
|
||||
1p2lò
|
||||
1p2ré
|
||||
1p2rí
|
||||
1p2ró
|
||||
1p2rú
|
||||
1p2rà
|
||||
1p2rè
|
||||
1p2rò
|
||||
1t2ré
|
||||
1t2rí
|
||||
1t2ró
|
||||
1t2rú
|
||||
1t2rà
|
||||
1t2rè
|
||||
1t2rò
|
||||
1n2yé
|
||||
1n2yí
|
||||
1n2yó
|
||||
1n2yú
|
||||
1n2yà
|
||||
1n2yè
|
||||
1n2yò
|
||||
a1a
|
||||
a1e
|
||||
a1o
|
||||
e1a
|
||||
e1e
|
||||
e1o
|
||||
i1a
|
||||
i1e
|
||||
i1o
|
||||
o1a
|
||||
o1e
|
||||
o1o
|
||||
u1a
|
||||
u1e
|
||||
u1o
|
||||
a1é
|
||||
a1í
|
||||
a1ó
|
||||
a1ú
|
||||
a1à
|
||||
a1è
|
||||
a1ò
|
||||
a1ï
|
||||
a1ü
|
||||
e1é
|
||||
e1í
|
||||
e1ó
|
||||
e1ú
|
||||
e1à
|
||||
e1è
|
||||
e1ò
|
||||
e1ï
|
||||
e1ü
|
||||
i1é
|
||||
i1í
|
||||
i1ó
|
||||
i1ú
|
||||
i1à
|
||||
i1è
|
||||
i1ò
|
||||
i1ï
|
||||
i1ü
|
||||
o1é
|
||||
o1í
|
||||
o1ó
|
||||
o1ú
|
||||
o1à
|
||||
o1è
|
||||
o1ò
|
||||
o1ï
|
||||
o1ü
|
||||
u1é
|
||||
u1í
|
||||
u1ó
|
||||
u1ú
|
||||
u1à
|
||||
u1è
|
||||
u1ò
|
||||
u1ï
|
||||
u1ü
|
||||
é1a
|
||||
é1e
|
||||
é1o
|
||||
é1ï
|
||||
é1ü
|
||||
í1a
|
||||
í1e
|
||||
í1o
|
||||
í1ï
|
||||
í1ü
|
||||
ó1a
|
||||
ó1e
|
||||
ó1o
|
||||
ó1ï
|
||||
ó1ü
|
||||
ú1a
|
||||
ú1e
|
||||
ú1o
|
||||
ú1ï
|
||||
ú1ü
|
||||
à1a
|
||||
à1e
|
||||
à1o
|
||||
à1ï
|
||||
à1ü
|
||||
è1a
|
||||
è1e
|
||||
è1o
|
||||
è1ï
|
||||
è1ü
|
||||
ò1a
|
||||
ò1e
|
||||
ò1o
|
||||
ò1ï
|
||||
ò1ü
|
||||
ï1a
|
||||
ï1e
|
||||
ï1o
|
||||
ï1é
|
||||
ï1í
|
||||
ï1ó
|
||||
ï1ú
|
||||
ï1à
|
||||
ï1è
|
||||
ï1ò
|
||||
ï1i
|
||||
ü1a
|
||||
ü1e
|
||||
ü1o
|
||||
ü1é
|
||||
ü1í
|
||||
ü1ó
|
||||
ü1ú
|
||||
ü1à
|
||||
ü1è
|
||||
ü1ò
|
||||
a1i2a
|
||||
a1i2e
|
||||
a1i2o
|
||||
a1i2u
|
||||
a1u2a
|
||||
a1u2e
|
||||
a1u2i
|
||||
a1u2o
|
||||
a1u2u
|
||||
e1i2a
|
||||
e1i2e
|
||||
e1i2o
|
||||
e1i2u
|
||||
e1u2a
|
||||
e1u2e
|
||||
e1u2i
|
||||
e1u2o
|
||||
e1u2u
|
||||
i1i2a
|
||||
i1i2e
|
||||
i1i2o
|
||||
i1i2u
|
||||
i1u2a
|
||||
i1u2e
|
||||
i1u2i
|
||||
i1u2o
|
||||
i1u2u
|
||||
o1i2a
|
||||
o1i2e
|
||||
o1i2o
|
||||
o1i2u
|
||||
o1u2a
|
||||
o1u2e
|
||||
o1u2o
|
||||
o1u2i
|
||||
o1u2u
|
||||
u1i2a
|
||||
u1i2e
|
||||
u1i2o
|
||||
u1i2u
|
||||
u1u2a
|
||||
u1u2e
|
||||
u1u2i
|
||||
u1u2o
|
||||
u1u2u
|
||||
a1i2é
|
||||
a1i2í
|
||||
a1i2ó
|
||||
a1i2ú
|
||||
a1i2à
|
||||
a1i2è
|
||||
a1i2ò
|
||||
a1u2é
|
||||
a1u2í
|
||||
a1u2ó
|
||||
a1u2ú
|
||||
a1u2à
|
||||
a1u2è
|
||||
a1u2ò
|
||||
e1i2é
|
||||
e1i2í
|
||||
e1i2ó
|
||||
e1i2ú
|
||||
e1i2à
|
||||
e1i2è
|
||||
e1i2ò
|
||||
e1u2é
|
||||
e1u2í
|
||||
e1u2ó
|
||||
e1u2ú
|
||||
e1u2à
|
||||
e1u2è
|
||||
e1u2ò
|
||||
i1i2é
|
||||
i1i2í
|
||||
i1i2ó
|
||||
i1i2ú
|
||||
i1i2à
|
||||
i1i2è
|
||||
i1i2ò
|
||||
i1u2é
|
||||
i1u2í
|
||||
i1u2ó
|
||||
i1u2ú
|
||||
i1u2à
|
||||
i1u2è
|
||||
i1u2ò
|
||||
o1i2é
|
||||
o1i2í
|
||||
o1i2ó
|
||||
o1i2ú
|
||||
o1i2à
|
||||
o1i2è
|
||||
o1i2ò
|
||||
o1u2é
|
||||
o1u2í
|
||||
o1u2ó
|
||||
o1u2ú
|
||||
o1u2à
|
||||
o1u2è
|
||||
o1u2ò
|
||||
u1i2é
|
||||
u1i2í
|
||||
u1i2ó
|
||||
u1i2ú
|
||||
u1i2à
|
||||
u1i2è
|
||||
u1i2ò
|
||||
u1u2é
|
||||
u1u2í
|
||||
u1u2ó
|
||||
u1u2ú
|
||||
u1u2à
|
||||
u1u2è
|
||||
u1u2ò
|
||||
é1i2a
|
||||
é1i2e
|
||||
é1i2o
|
||||
é1i2u
|
||||
é1u2a
|
||||
é1u2e
|
||||
é1u2o
|
||||
é1u2i
|
||||
é1u2u
|
||||
í1i2a
|
||||
í1i2e
|
||||
í1i2o
|
||||
í1i2u
|
||||
í1u2a
|
||||
í1u2e
|
||||
í1u2o
|
||||
í1u2i
|
||||
í1u2u
|
||||
ó1i2a
|
||||
ó1i2e
|
||||
ó1i2o
|
||||
ó1i2u
|
||||
ó1u2a
|
||||
ó1u2e
|
||||
ó1u2o
|
||||
ó1u2i
|
||||
ó1u2u
|
||||
ú1i2a
|
||||
ú1i2e
|
||||
ú1i2o
|
||||
ú1i2u
|
||||
ú1u2a
|
||||
ú1u2e
|
||||
ú1u2o
|
||||
ú1u2i
|
||||
ú1u2u
|
||||
à1i2a
|
||||
à1i2e
|
||||
à1i2o
|
||||
à1i2u
|
||||
à1u2a
|
||||
à1u2e
|
||||
à1u2o
|
||||
à1u2i
|
||||
à1u2u
|
||||
è1i2a
|
||||
è1i2e
|
||||
è1i2o
|
||||
è1i2u
|
||||
è1u2a
|
||||
è1u2e
|
||||
è1u2o
|
||||
è1u2i
|
||||
è1u2u
|
||||
ò1i2a
|
||||
ò1i2e
|
||||
ò1i2o
|
||||
ò1i2u
|
||||
ò1u2a
|
||||
ò1u2e
|
||||
ò1u2o
|
||||
ò1u2i
|
||||
ò1u2u
|
||||
ï1i2a
|
||||
ï1i2e
|
||||
ï1i2o
|
||||
ï1i2é
|
||||
ï1i2í
|
||||
ï1i2ó
|
||||
ï1i2ú
|
||||
ï1i2à
|
||||
ï1i2è
|
||||
ï1i2ò
|
||||
ï1i2u
|
||||
ï1u2a
|
||||
ï1u2e
|
||||
ï1u2o
|
||||
ï1u2é
|
||||
ï1u2í
|
||||
ï1u2ó
|
||||
ï1u2ú
|
||||
ï1u2à
|
||||
ï1u2è
|
||||
ï1u2ò
|
||||
ï1u2i
|
||||
ï1u2u
|
||||
ü1i2a
|
||||
ü1i2e
|
||||
ü1i2o
|
||||
ü1i2é
|
||||
ü1i2í
|
||||
ü1i2ó
|
||||
ü1i2ú
|
||||
ü1i2à
|
||||
ü1i2è
|
||||
ü1i2ò
|
||||
ü1i2u
|
||||
ü1u2a
|
||||
ü1u2e
|
||||
ü1u2o
|
||||
ü1u2é
|
||||
ü1u2í
|
||||
ü1u2ó
|
||||
ü1u2ú
|
||||
ü1u2à
|
||||
ü1u2è
|
||||
ü1u2ò
|
||||
ü1u2i
|
||||
ü1u2u
|
||||
.hi2a
|
||||
.hi2e
|
||||
.hi2o
|
||||
.hi2u
|
||||
.hu2a
|
||||
.hu2e
|
||||
.hu2i
|
||||
.hu2o
|
||||
.i2è
|
||||
.i2ò
|
||||
.u2è
|
||||
.u2ò
|
||||
.hi2é
|
||||
.hi2ó
|
||||
.hi2ú
|
||||
.hi2à
|
||||
.hi2è
|
||||
.hi2ò
|
||||
.hu2é
|
||||
.hu2í
|
||||
.hu2ó
|
||||
.hu2à
|
||||
.hu2è
|
||||
.hu2ò
|
||||
gu2a
|
||||
gu2e
|
||||
gu2i
|
||||
gu2o
|
||||
qu2a
|
||||
qu2e
|
||||
qu2i
|
||||
qu2o
|
||||
gu2é
|
||||
gu2í
|
||||
gu2ó
|
||||
gu2à
|
||||
gu2è
|
||||
gu2ò
|
||||
qu2é
|
||||
qu2í
|
||||
qu2ó
|
||||
qu2à
|
||||
qu2è
|
||||
qu2ò
|
||||
gü2e
|
||||
gü2é
|
||||
gü2í
|
||||
gü2è
|
||||
gü2i
|
||||
qü2e
|
||||
qü2é
|
||||
qü2í
|
||||
qü2è
|
||||
qü2i
|
||||
a1isme.
|
||||
ais1me
|
||||
e3ism
|
||||
e1isme.
|
||||
eis1me
|
||||
i1isme.
|
||||
iis1me
|
||||
o1isme.
|
||||
ois1me
|
||||
u1isme.
|
||||
uis1me
|
||||
a1ista.
|
||||
ais1ta
|
||||
e1ista.
|
||||
eis1ta
|
||||
i1ista.
|
||||
iis1ta
|
||||
o1ista.
|
||||
ois1ta
|
||||
u1ista.
|
||||
uis1ta
|
||||
a1um.
|
||||
e1um.
|
||||
i1um.
|
||||
o1um.
|
||||
u1um.
|
||||
.anti1hi2
|
||||
.an1ti
|
||||
.be2n
|
||||
.be2s
|
||||
.bi2s
|
||||
.ca2p
|
||||
.ce2l
|
||||
.cla2r
|
||||
.c2la
|
||||
.co2ll
|
||||
.co2n
|
||||
.co2r
|
||||
.de2s
|
||||
.di2s
|
||||
.e1n3a
|
||||
.hipe2r
|
||||
.hi3pe
|
||||
.hiperm2n
|
||||
.in3ac
|
||||
.i1na
|
||||
.in3ad
|
||||
.in3ap
|
||||
.in3es
|
||||
.i1ne
|
||||
.i1n3o
|
||||
.inte2r
|
||||
.in1te
|
||||
.ma2l
|
||||
.mal1t2hus
|
||||
.malt1hu
|
||||
.pa2n
|
||||
.pe2r
|
||||
.pe3ri
|
||||
.pos2t
|
||||
.psa2l
|
||||
.p1sa
|
||||
.rebe2s
|
||||
.re1be
|
||||
.re2d
|
||||
.su2b
|
||||
.su1b3o
|
||||
.subde2s
|
||||
.sub1de
|
||||
.supe2r
|
||||
.su3pe
|
||||
.tran2s
|
||||
.t2ra
|
||||
g2no
|
||||
p2si
|
||||
p2se
|
||||
p2neu
|
||||
p1ne
|
||||
g2nò
|
||||
p2sí
|
||||
.ch2
|
||||
.th2
|
||||
ein1s2tein
|
||||
eins1te
|
||||
ru1t2herford
|
||||
rut1he
|
||||
ruther1fo
|
||||
ni2etz1sc2he
|
||||
ni1e
|
||||
3exp
|
||||
3nef
|
||||
3nei
|
||||
3ser
|
||||
a3ne
|
||||
a3ri
|
||||
bi3se
|
||||
des3ag
|
||||
de1sa
|
||||
des3ar
|
||||
des3av
|
||||
des3enc
|
||||
de1se
|
||||
e3le
|
||||
e3ri1o
|
||||
e1ri
|
||||
e3ris
|
||||
es3a1co
|
||||
e1sa
|
||||
es3af
|
||||
es3ap
|
||||
es3arr
|
||||
es3as
|
||||
es3int
|
||||
e1si
|
||||
ig3n
|
||||
in3ex
|
||||
i1ne
|
||||
n3si
|
||||
o3ro
|
||||
qu1i3e
|
||||
s3emp
|
||||
s3esp
|
||||
su1b3a
|
||||
ui3et
|
||||
o3g2nò
|
||||
.c8u9r8i8e.
|
||||
.cu1ri
|
||||
.curi1e
|
||||
.c8u9r8i8e8s.
|
||||
.g8e8i9s8h8a.
|
||||
.geis1ha
|
||||
.g8e8i9s8h8e8s.
|
||||
.geis1he
|
||||
.g8o8u8a9c8h8e.
|
||||
.go1u2a
|
||||
.gouac1he
|
||||
.g8o8u8a9c8h8e8s.
|
||||
.h8i8p9p8y.
|
||||
.h8i8p9p8i8e8s.
|
||||
.hip3pi
|
||||
.hippi1e
|
||||
.h8o8b9b8y.
|
||||
.h8o8b9b8i8e8s.
|
||||
.hob1bi
|
||||
.hobbi1e
|
||||
.j8e8e8p.
|
||||
.je1e
|
||||
.j8e8e8p8s.
|
||||
.j8o8u8l8e.
|
||||
.jou1le
|
||||
.j8o8u8l8e8s.
|
||||
.k8l8e8e9n8e8x.
|
||||
.k1le
|
||||
.kle1e
|
||||
.klee1ne
|
||||
.k8l8e8e9n8e8x8s.
|
||||
.l8a8r9g8h8e8t9t8i.
|
||||
.larg1he
|
||||
.larghet1ti
|
||||
.l8a8r9g8h8e8t9t8o.
|
||||
.larghet1to
|
||||
.l8i8e8d.
|
||||
.li1e
|
||||
.l8i8e8d8e8r.
|
||||
.lie1de
|
||||
.n8o8s9a8l9t8r8e8s.
|
||||
.no1sa
|
||||
.nosal1t2re
|
||||
.r8o9y8a8l9t8i8e8s.
|
||||
.royal1ti
|
||||
.royalti1e
|
||||
.r8o9y8a8l9t8y.
|
||||
.v8o8s9a8l9t8r8e8s.
|
||||
.vo1sa
|
||||
.vosal1t2re
|
||||
.w8h8i8s9k8y.
|
||||
.w1hi
|
||||
.w8h8i8s9k8i8e8s.
|
||||
.whiski1e
|
|
@ -0,0 +1,82 @@
|
|||
License information for hyph_cy.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-cy.lic.txt in the original work):
|
||||
|
||||
Welsh hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
%% hyph-cy.tex, Welsh hyphenation patterns
|
||||
%% Copyright 1996 Yannis Haralambous
|
||||
%% <yannis dat haralambous at telecom-bretagne dot eu>
|
||||
%
|
||||
% This work may be distributed and/or modified under the
|
||||
% conditions of the LaTeX Project Public License, either version 1.0
|
||||
% of this license or (at your option) any later version.
|
||||
% The latest version of this license is in
|
||||
% http://www.latex-project.org/lppl.txt
|
||||
%
|
||||
% This work has the LPPL maintenance status `maintained'.
|
||||
%
|
||||
% The Current Maintainer of this work (patterns) is Yannis Haralambous.
|
||||
%
|
||||
% This work consists of the file hyph-cy.tex and is part of hyph-utf8
|
||||
% maintained by tex-hyphen team which also contains derived files.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
% CHANGES:
|
||||
% - 1996 - last change to patterns
|
||||
% - 2008 - inclusion into hyph-utf8 and file rename (cyhyph.tex -> hyph-cy.tex)
|
||||
% - June 2011 - added LPPL licence
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,132 @@
|
|||
License information for hyph_da.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-da.lic.txt in the original work):
|
||||
|
||||
Danish hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: dkcommon.tex (yyyy-mm-dd), dkspecial.tex (yyyy-mm-dd)
|
||||
% Author: Frank Jensen <frank.jensen at hugin.com>
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% This file contains the hyphenation patterns for Danish.
|
||||
%
|
||||
%% Copyright 1994 Frank Jensen (Frank.Jensen@hugin.com)
|
||||
%
|
||||
% This work may be distributed and/or modified under the
|
||||
% conditions of the LaTeX Project Public License, either version 1.3
|
||||
% of this license or (at your option) any later version.
|
||||
% The latest version of this license is in
|
||||
% http://www.latex-project.org/lppl.txt
|
||||
% and version 1.3 or later is part of all distributions of LaTeX
|
||||
% version 2003/12/01 or later.
|
||||
%
|
||||
% Changes:
|
||||
% - 2011-01-11 - remove support for OT1 encoding
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,88 @@
|
|||
License information for hyph_eo.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-eo.lic.txt in the original work):
|
||||
|
||||
Esperanto hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% See http://tug.org/tex-hyphen and other files in the package
|
||||
%
|
||||
% However, this file does not comply with rules of other patterns
|
||||
% as it still uses TeX macros, and a dedicated converter would be needed
|
||||
% to convert patterns into OponOffice-friendly form for example.
|
||||
%
|
||||
% But it should work OK with both 8-bit engines (TeX, pdfTeX, ...)
|
||||
% as well as with native UTF-8 ones (XeTeX, LuaTeX, ...)
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% \message{Esperanto Hyphenation Patterns `eohyph', 1999-08-10}
|
||||
%
|
||||
% Copyright (C) 1999 Sergei B. Pokrovsky <pok@iis.nsk.su>
|
||||
%
|
||||
% This program can be redistributed and/or modified under the terms
|
||||
% of the LaTeX Project Public License Distributed from CTAN
|
||||
% archives in directory macros/latex/base/lppl.txt; either
|
||||
% version 1 of the License, or any later version.
|
||||
%
|
||||
% More documentation can be found near the end of this file.
|
||||
%
|
||||
\begingroup
|
||||
% Makrooj por la finaĵoj:
|
||||
\def\adj#1{#1a. #1aj. #1ajn. #1an. #1e.}
|
||||
\edef\nom#1{\adj{#1} #1o. #1oj. #1ojn. #1on.}
|
||||
\def\ver#1{#1as. #1i. #1is. #1os. #1u. #1us.}
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,81 @@
|
|||
License information for hyph_es.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-es.lic.txt in the original work):
|
||||
|
||||
Spanish hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% DIVISI'ON DE PALABRAS
|
||||
% ~~~~~~~~~~~~~~~~~~~~~
|
||||
% hyph-es.tex 4.6
|
||||
% This files corresponds to eshyph.tex 4.6.
|
||||
%
|
||||
% (c) Javier Bezos 1993 1997.
|
||||
% (c) Javier Bezos and CervanTeX 2001-2010
|
||||
% Some parts, (c) by Francesc Carmona
|
||||
% Licence: LPPL
|
||||
%
|
||||
% For further info, bug reports and comments:
|
||||
%
|
||||
% http://www.tex-tipografia.com/spanish_hyphen.html
|
||||
%
|
||||
% I would like to thanks Francesc Carmona for his permission
|
||||
% to steal parts of his work without restrictions.
|
||||
%
|
||||
% 2010-05-18
|
||||
%
|
||||
% _____________________________________________________________
|
||||
% Javier Bezos | http://www.cervantex.es/
|
||||
% .............................................................
|
||||
% TeX y tipografia | http://www.tex-tipografia.com/
|
||||
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,135 @@
|
|||
License information for hyph_et.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-et.lic.txt in the original work):
|
||||
|
||||
Estonian hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: eehyph.tex (2004-04-13)
|
||||
% Author: Een Saar <saar at aai dot ee>
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% Estonian hyphenation patterns
|
||||
% Copyright 2003 Een Saar
|
||||
%
|
||||
% This work may be distributed and/or modified under the conditions
|
||||
% of the LaTeX Project Public License, either version 1.3 of this
|
||||
% license or (at your option) any later version. The latest version
|
||||
% of this license is in http://www.latex-project.org/lppl.txt and
|
||||
% version 1.3 or later is part of all distributions of LaTeX
|
||||
% version 2003/12/01 or later.
|
||||
%
|
||||
% This work has the LPPL maintenance status "author-maintained".
|
||||
% This work consists of this file only (eehyph.tex).
|
||||
%
|
||||
% The patterns were generated long ago by applying patgen to
|
||||
% an Estonian dictionary; a few patterns were added later manually
|
||||
% to prohibit aa-bits type cases.
|
||||
% Declare the special characters
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,76 @@
|
|||
License information for hyph_gl.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-gl.lic.txt in the original work):
|
||||
|
||||
Galician hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This is the file hyph-gl.tex, version 2.4
|
||||
% Hyphenation patterns for Galician, written in the utf8 encoding.
|
||||
%
|
||||
% Generated with the mkpattern utility (v. 1.2), on 2010/04/23
|
||||
% The original source file were glpatter-utf8.tex
|
||||
% This is a generated file
|
||||
%
|
||||
% (c) Javier A. Múgica; 2006, 2007, 2008, 2010
|
||||
% License: LPPL version 1.3
|
||||
%
|
||||
% LPPL maintenance status: maintained
|
||||
% Current Maintainer: Javier A. Múgica
|
||||
%
|
||||
% For bug reports and comments:
|
||||
%
|
||||
% Javier Múgica, javier at digi21.eu
|
||||
%
|
||||
% Note that there is no 'j' nor 'y' in Galician
|
||||
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,75 @@
|
|||
License information for hyph_hr.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-hr.lic.txt in the original work):
|
||||
|
||||
Croatian hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
%
|
||||
% Hyphenation patterns for Croatian language
|
||||
%
|
||||
% Copyright (C) 1994, 1996, 2011 Igor Marinović <marinowski at gmail.com>
|
||||
%
|
||||
% This program can be redistributed and/or modified under the terms
|
||||
% of the LaTeX Project Public License Distributed from CTAN
|
||||
% archives in directory macros/latex/base/lppl.txt; either
|
||||
% version 1 of the License, or any later version.
|
||||
%
|
||||
% Changes:
|
||||
% - The first version was realised in late 1994.
|
||||
% - Second, much more improved version was realised in the beginning of 1996.
|
||||
% (Date of the last change: 19.03.1996).
|
||||
% - In summer 2008 the patterns have been incorporated into hyph-utf8
|
||||
% and renamed from hrhyph.tex to hyph-hr.tex.
|
||||
% - LPPL licence added on 06.06.2011.
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,139 @@
|
|||
License information for hyph_hsb.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-hsb.lic.txt in the original work):
|
||||
|
||||
Upper Sorbian hyphenation patterns (E. Werner)
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: sorhyph.tex (1997-05-07)
|
||||
% Author: E. Werner
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% Copyright 1997 by E.Werner
|
||||
% This work may be distributed and/or modified under the
|
||||
% conditions of the LaTeX Project Public License, either version 1.3a
|
||||
% of this license or (at your option) any later version.
|
||||
% The latest version of this license is in
|
||||
% http://www.latex-project.org/lppl.txt
|
||||
% and version 1.3 or later is part of all distributions of LaTeX
|
||||
% version 2005/12/01 or later.
|
||||
% \message{Hyphenation patterns for Upper Sorbian, E. Werner}
|
||||
% \message{Completely new revision 1997, March 22}
|
||||
%
|
||||
% č - ccaron
|
||||
% ć - cacute
|
||||
% ě - ecaron
|
||||
% ł - lslash
|
||||
% ń - nacute
|
||||
% ó - oacute
|
||||
% ř - rcaron
|
||||
% š - scaron
|
||||
% ž - zcaron
|
||||
% ź - zacute
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,148 @@
|
|||
License information for hyph_ia.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-ia.lic.txt in the original work):
|
||||
|
||||
Hyphenation patterns for Interlingua
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: iahyphen.tex (2005-06-28)
|
||||
% Author: Peter Kleiweg <p.c.j.kleiweg at rug.nl>
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% File: iahyphen.tex
|
||||
% TeX hyphenation patterns for Interlingua.
|
||||
% Version 0.2b. Released 3 July 2001.
|
||||
% version 0.2c Released 28 June 2005 (added LPPL header)
|
||||
% Created by Peter Kleiweg, p.c.j.kleiweg at rug.nl
|
||||
% About Interlingua: http://www.interlingua.com/
|
||||
%
|
||||
% \iffalse meta-comment
|
||||
%
|
||||
% Copyright 1989-2005 Peter Kleiweg. All rights reserved.
|
||||
%
|
||||
% This file is distributed as part of the Babel system.
|
||||
% -----------------------------------------------------
|
||||
%
|
||||
% It may be distributed and/or modified under the
|
||||
% conditions of the LaTeX Project Public License, either version 1.3
|
||||
% of this license or (at your option) any later version.
|
||||
% The latest version of this license is in
|
||||
% http://www.latex-project.org/lppl.txt
|
||||
% and version 1.3 or later is part of all distributions of LaTeX
|
||||
% version 2003/12/01 or later.
|
||||
%
|
||||
% This work has the LPPL maintenance status "maintained".
|
||||
%
|
||||
% The Current Maintainer of this work is Peter Kleiweg.
|
||||
%
|
||||
% The list of all files belonging to the Babel system is
|
||||
% given in the file `manifest.bbl. See also `legal.bbl' for additional
|
||||
% information.
|
||||
%
|
||||
% \fi
|
|
@ -0,0 +1,734 @@
|
|||
UTF-8
|
||||
LEFTHYPHENMIN 2
|
||||
RIGHTHYPHENMIN 2
|
||||
.ch2
|
||||
.de4s
|
||||
.in1
|
||||
.se4i
|
||||
a1a
|
||||
a1b
|
||||
a2b1l
|
||||
a3b4lo
|
||||
a1ca
|
||||
a1ce
|
||||
a1ch
|
||||
a4ch2r
|
||||
a1co
|
||||
a1c2r
|
||||
a1cu
|
||||
a1d
|
||||
1a2d1m
|
||||
1a2d1v
|
||||
ae1
|
||||
a1el
|
||||
ae1ro3
|
||||
a1g
|
||||
a4g3e1d
|
||||
a1ge
|
||||
1a2g1g
|
||||
a1h
|
||||
a1i1c
|
||||
a1is
|
||||
a1i1v
|
||||
a1j
|
||||
a1k
|
||||
a1la
|
||||
a1le
|
||||
al3e1i
|
||||
a1lo
|
||||
a1lu
|
||||
a1m
|
||||
3ani1m
|
||||
a1ni
|
||||
an4s1p
|
||||
an1s
|
||||
a1o
|
||||
a1p
|
||||
a1q
|
||||
a1ra
|
||||
a1ri
|
||||
a1ro
|
||||
a1ru
|
||||
a1ry
|
||||
a1s2h
|
||||
3asth
|
||||
as1t
|
||||
a1t
|
||||
aty1r4
|
||||
aty1
|
||||
a1v
|
||||
a1w
|
||||
a1z
|
||||
1ba
|
||||
2b1b
|
||||
b3bo
|
||||
b1c
|
||||
2b1d
|
||||
1be
|
||||
b1h
|
||||
1bi
|
||||
bi4s3a
|
||||
b1j
|
||||
b1lu
|
||||
b2ly
|
||||
b1m
|
||||
b1n
|
||||
1bo
|
||||
b1p
|
||||
1b2r
|
||||
2b1s2
|
||||
b1t
|
||||
1bu
|
||||
bu1e
|
||||
bu1i
|
||||
b1v
|
||||
ca1i
|
||||
2c1c
|
||||
c1d
|
||||
4c3en1n2
|
||||
1ch2r
|
||||
2ch1s
|
||||
2ch1t
|
||||
1chu
|
||||
1ci
|
||||
2c1k
|
||||
1c2l
|
||||
2c1m
|
||||
co4c2l
|
||||
co1c
|
||||
co3p2
|
||||
c1q
|
||||
c2r
|
||||
c1s2
|
||||
2c1t
|
||||
ctro3
|
||||
ct2r
|
||||
cu1a
|
||||
cu1e
|
||||
cu1i
|
||||
1cy
|
||||
cy4ne
|
||||
cy1r2
|
||||
c1z
|
||||
1da
|
||||
2d1d
|
||||
1de
|
||||
de4ru
|
||||
de1s3e
|
||||
de4s3o
|
||||
de4su
|
||||
2d1g
|
||||
d1h2e
|
||||
dia3s4
|
||||
di1a
|
||||
di3p4t
|
||||
di1p
|
||||
di4sa
|
||||
di4s3e
|
||||
di4si
|
||||
di4so
|
||||
di4s3u
|
||||
2d1j
|
||||
2d1m
|
||||
1do
|
||||
do4l3a
|
||||
do1l
|
||||
4d3o2s1m
|
||||
d2r
|
||||
dro3s4
|
||||
du1a
|
||||
du1e
|
||||
du1i
|
||||
2d1v
|
||||
dy2s
|
||||
e1a
|
||||
e2au
|
||||
e1b
|
||||
e1ca
|
||||
e1ce
|
||||
e3ch2e
|
||||
e3chi
|
||||
e1co
|
||||
e1c2r
|
||||
e1cu
|
||||
e1d
|
||||
e1e
|
||||
e1f
|
||||
1e2f1f
|
||||
e1g
|
||||
e1h
|
||||
e1i
|
||||
e1j
|
||||
e1k
|
||||
e1la
|
||||
e1le
|
||||
e1lo
|
||||
e2l3o1d
|
||||
e4l3om
|
||||
e1lu
|
||||
e1m
|
||||
e4m3a1g
|
||||
e1ma
|
||||
2en1l
|
||||
eno3p4
|
||||
e1no
|
||||
e1o
|
||||
eo3g2
|
||||
eo3p2
|
||||
e1q
|
||||
e1ra
|
||||
e1ri
|
||||
e1ro
|
||||
4ero1g
|
||||
ero3p4
|
||||
e1ru
|
||||
er3ur
|
||||
e1ry
|
||||
es4e1m
|
||||
e1se
|
||||
e2s1t
|
||||
es3u1e
|
||||
e1su
|
||||
e1t
|
||||
eu1
|
||||
eu4ce
|
||||
e1un
|
||||
e1v
|
||||
e1w
|
||||
1fa
|
||||
2f1f
|
||||
2f1h
|
||||
1fi
|
||||
1f2l
|
||||
1fo
|
||||
1f2r
|
||||
f1t
|
||||
1fu
|
||||
1ga
|
||||
2g1d
|
||||
1ge
|
||||
4g3evi
|
||||
ge1v
|
||||
2g1g
|
||||
1gi
|
||||
4g3i1ma
|
||||
gi1m
|
||||
g2l
|
||||
2g1m
|
||||
2g1n
|
||||
1go
|
||||
1g2r
|
||||
2g1s2
|
||||
1gu1
|
||||
gym2
|
||||
gy2m1n3
|
||||
gy4na
|
||||
gy4r3a
|
||||
gy1r
|
||||
2g1z
|
||||
h2e
|
||||
hec2
|
||||
he2c1t3
|
||||
he3ur
|
||||
heu1
|
||||
h3lo1c
|
||||
2h1m
|
||||
h1n
|
||||
ho3g2
|
||||
ho3p2
|
||||
ho3rh
|
||||
h2r
|
||||
h1s
|
||||
h1t
|
||||
i1a
|
||||
ia4l3a
|
||||
i1b2
|
||||
i1c
|
||||
i1d
|
||||
i1do3
|
||||
ido1p4
|
||||
i1e
|
||||
i1f
|
||||
i1g
|
||||
i1h
|
||||
i1i
|
||||
i1k
|
||||
i1l
|
||||
i1m
|
||||
i4ma1d
|
||||
i1ma
|
||||
1i2m1b
|
||||
1in1f
|
||||
1in1r
|
||||
in1s2
|
||||
1in1v
|
||||
i1o1
|
||||
io3g2
|
||||
ios2
|
||||
io2x
|
||||
i1p
|
||||
i1q
|
||||
i1ra
|
||||
i1ri
|
||||
i1ro
|
||||
iro3p4
|
||||
ir3ur
|
||||
is3ac
|
||||
i1sa
|
||||
is3as
|
||||
is3au
|
||||
is3e1q
|
||||
i1se
|
||||
is3es
|
||||
is3i1l
|
||||
i1si
|
||||
is3in
|
||||
i3s4ph
|
||||
is1p
|
||||
i1t
|
||||
i1u
|
||||
i1v
|
||||
i1z
|
||||
ka4le
|
||||
ke1
|
||||
kra1
|
||||
4l3al1g
|
||||
4l3ar1c
|
||||
l1b
|
||||
2l1c
|
||||
2l1d
|
||||
le3ch
|
||||
le4i1d
|
||||
le1i
|
||||
2l1f
|
||||
l1g
|
||||
2l1h
|
||||
1li
|
||||
2l1k
|
||||
2l1l
|
||||
l2l3ur
|
||||
2l1m
|
||||
l4m3o1d
|
||||
l1mo
|
||||
l1n
|
||||
2lo1d
|
||||
l3o1do
|
||||
4lo1pi
|
||||
lo1p
|
||||
2l1p
|
||||
l1q
|
||||
2l1s2
|
||||
2l1t
|
||||
l4t3un
|
||||
lu1e
|
||||
lu1i
|
||||
2lur
|
||||
2l1v
|
||||
1ly
|
||||
ly3ch1
|
||||
1ma
|
||||
2m1b
|
||||
m1c
|
||||
1me
|
||||
me3ch
|
||||
me4s3e
|
||||
m1f
|
||||
1mi
|
||||
mi3p2
|
||||
mi1s4i
|
||||
m1j
|
||||
m1l
|
||||
2m1m
|
||||
mme4n3
|
||||
m1me
|
||||
2m1n
|
||||
mn3a1m
|
||||
m1na
|
||||
mn3as
|
||||
m1no1
|
||||
mn3o1b
|
||||
mn3o1p
|
||||
1mo
|
||||
4m3o1ny
|
||||
mo3p2
|
||||
mo3r1r
|
||||
mos4p
|
||||
mo3s4t
|
||||
2m1p
|
||||
m3p1s
|
||||
m1s2
|
||||
1mu
|
||||
2m1v
|
||||
1my
|
||||
my4r1r
|
||||
my1r
|
||||
1na
|
||||
n1ae1
|
||||
n3al1g
|
||||
n3a1ni
|
||||
n1a2p
|
||||
n1au
|
||||
n1b
|
||||
n1c
|
||||
2n1d
|
||||
1ne
|
||||
n1e1q
|
||||
n1ex
|
||||
n1f
|
||||
n1g
|
||||
n1h
|
||||
1ni
|
||||
n1i1q
|
||||
ni3s1p
|
||||
n2i1t
|
||||
n1j
|
||||
n1l
|
||||
n1m
|
||||
n1n2
|
||||
1no
|
||||
nob4l
|
||||
no1b
|
||||
n3o3s4p
|
||||
n1ox
|
||||
n1q
|
||||
n1r
|
||||
n1s
|
||||
n4s3i1e
|
||||
n1si
|
||||
n4sir
|
||||
n2s1l
|
||||
ns2t
|
||||
n1t
|
||||
n4t3a1h
|
||||
n4t3a1p
|
||||
1nu
|
||||
nu1a
|
||||
nu1e
|
||||
nu1i
|
||||
n1v
|
||||
1ny
|
||||
n1z
|
||||
o1a
|
||||
o1b
|
||||
ob3lo
|
||||
1o2b1s2
|
||||
o1c
|
||||
oc3le
|
||||
o1c2l
|
||||
o1d
|
||||
o1e
|
||||
o1f
|
||||
o1g
|
||||
o1h
|
||||
o1i
|
||||
o1j
|
||||
o1l
|
||||
om4na
|
||||
o2m1n
|
||||
o1n2a
|
||||
o1no1
|
||||
onos4
|
||||
on1s2
|
||||
o1o
|
||||
o1p
|
||||
o1q
|
||||
o1ra
|
||||
o1ri
|
||||
o1ro
|
||||
or4rh
|
||||
or1r
|
||||
o1ru
|
||||
o1s2l
|
||||
o2s4po
|
||||
os1p
|
||||
o1t
|
||||
o4t3ac
|
||||
oto3s4
|
||||
ou1
|
||||
o1ug
|
||||
o1v
|
||||
oy1
|
||||
o1z
|
||||
1pa
|
||||
pan3s
|
||||
1pe
|
||||
1ph
|
||||
1pi
|
||||
1p2l
|
||||
pl4a
|
||||
4pl3o1p
|
||||
p1n
|
||||
p2n1a
|
||||
p2ne
|
||||
1po
|
||||
2p1p
|
||||
p4p3i1a
|
||||
p1pi
|
||||
1p2r
|
||||
2p1s
|
||||
p4s3o1d
|
||||
p1so
|
||||
3p2sy
|
||||
2p1t
|
||||
1pu
|
||||
pu1b2
|
||||
2pu1e
|
||||
pu1i
|
||||
p2yl1
|
||||
py4lo
|
||||
qu2
|
||||
qua4n
|
||||
4r3al1g
|
||||
2ra1q
|
||||
4r3ar1c
|
||||
r1b
|
||||
r1c
|
||||
2r1d
|
||||
1re
|
||||
re3ch
|
||||
re1gi3
|
||||
re1g
|
||||
4r3en1n2
|
||||
re3u1t
|
||||
reu1
|
||||
r1f
|
||||
2r1g
|
||||
1rhi
|
||||
r1hu
|
||||
r3hyd
|
||||
r1j
|
||||
r1l
|
||||
2r1m
|
||||
r1n
|
||||
r1p
|
||||
r1q
|
||||
r1r
|
||||
r2r3a1q
|
||||
r1s2
|
||||
2r1t
|
||||
ru1a
|
||||
ru1e
|
||||
ru1i
|
||||
r1v
|
||||
r1w
|
||||
ry4s1e
|
||||
r1z
|
||||
1sa
|
||||
s3a1bu
|
||||
sa1b
|
||||
4s3a2c1t
|
||||
2s1af
|
||||
s3a1g2r
|
||||
sa1g
|
||||
s3an1n2
|
||||
2s1a1p
|
||||
2s1a1q
|
||||
s3a2r1g
|
||||
s3a2r1m
|
||||
s3a2r1t
|
||||
2s1b
|
||||
1s2c
|
||||
scle4
|
||||
s1c2l
|
||||
s1d
|
||||
1se
|
||||
2s1f
|
||||
2s1g
|
||||
s1h
|
||||
1si
|
||||
4s3i1ge
|
||||
si1g
|
||||
s3i1ro
|
||||
s1j
|
||||
1sk
|
||||
s1l
|
||||
s4la1v
|
||||
2s1m
|
||||
s1n
|
||||
1so
|
||||
so1b2
|
||||
s3o1be
|
||||
s3obl
|
||||
s3o2c1c
|
||||
so1c
|
||||
s3o1do
|
||||
so1d
|
||||
s3o2r1d
|
||||
s3o2r1g
|
||||
s3o2s1s2
|
||||
2s1ox
|
||||
s1p
|
||||
2s1pa
|
||||
spa4i
|
||||
2s1p2l
|
||||
2s1po
|
||||
s1q
|
||||
s1r
|
||||
2s1s2
|
||||
s3sa
|
||||
s1t
|
||||
1su
|
||||
su1a
|
||||
su4ba
|
||||
su4b2r
|
||||
su1e
|
||||
su1i
|
||||
2s1un
|
||||
2s1v
|
||||
1sy
|
||||
4t3al1g
|
||||
4t3a2m1b
|
||||
ta1m
|
||||
4t3a2r1t
|
||||
2t1d
|
||||
4t3e1co
|
||||
2t1f
|
||||
2t1g
|
||||
th1l
|
||||
2t2h1m
|
||||
ti3s4p
|
||||
t1l
|
||||
2t1m
|
||||
t1mo1
|
||||
to3s4p
|
||||
4t3ox1y1
|
||||
2t1p
|
||||
t2r
|
||||
4tr3or
|
||||
2t1s
|
||||
2t1t
|
||||
tu1a
|
||||
tu1e
|
||||
tu1i
|
||||
tu4s3a
|
||||
ty1
|
||||
2t1z
|
||||
u3a1ni
|
||||
u1as
|
||||
u1a1v
|
||||
ub3al
|
||||
u1ba
|
||||
ub1l
|
||||
ub3ro
|
||||
u1b2r
|
||||
u1ca
|
||||
u1ce
|
||||
uc3e1m
|
||||
u1ch
|
||||
u1co
|
||||
u1c2r
|
||||
u1cu
|
||||
u1d
|
||||
u1el
|
||||
u1i1b2
|
||||
u1i1c
|
||||
u1la
|
||||
u1le
|
||||
u1lo
|
||||
u1o1
|
||||
u1ra
|
||||
3ur1go
|
||||
u2r1g
|
||||
u1ri
|
||||
u1ro
|
||||
u1ru
|
||||
u2s1t
|
||||
u1t
|
||||
u1u
|
||||
u1v
|
||||
va1i
|
||||
vi3ru
|
||||
2vn
|
||||
v2r
|
||||
w2n1
|
||||
x1a
|
||||
x1c
|
||||
x1e
|
||||
x1h
|
||||
x1i
|
||||
x1o
|
||||
x1p
|
||||
x1q
|
||||
x1s2
|
||||
x1t
|
||||
x1u
|
||||
xu1a
|
||||
x1y1
|
||||
1x2yl
|
||||
y1a
|
||||
y1b
|
||||
yc1a
|
||||
y1ce
|
||||
ych1
|
||||
y1co
|
||||
yc4t3a
|
||||
y2c1t
|
||||
yd2r1
|
||||
y1e
|
||||
y1g
|
||||
y1h
|
||||
y1i
|
||||
2yl
|
||||
y3lac
|
||||
yl3a1m
|
||||
y1le
|
||||
y1lo
|
||||
yn3an
|
||||
y1na
|
||||
yn3e1g
|
||||
y1ne
|
||||
y1o
|
||||
y1po1
|
||||
ypos4
|
||||
y1r
|
||||
yro1
|
||||
yros4
|
||||
y1s1e
|
||||
y1t
|
||||
y1u
|
||||
y1z
|
||||
ze1
|
||||
1zi
|
||||
1zu1
|
||||
2z1z
|
||||
.a8l8c9u8n.
|
||||
.a2l1c
|
||||
.a8l8c9u9n8i8s9s8i9m8e.
|
||||
.alcu1ni
|
||||
.alcuni2s1s2
|
||||
.alcunis1si
|
||||
.alcunissi1m
|
||||
.alcunissi1me
|
||||
.a8l8c9u8n9m8e8n9t8e.
|
||||
.alcun1m
|
||||
.alcun1me
|
||||
.alcunmen1t
|
||||
.a9l8i8c9u8n.
|
||||
.a1li
|
||||
.ali1c
|
||||
.a9l8i8c9u9n8i8s9s8i9m8e.
|
||||
.alicu1ni
|
||||
.alicuni2s1s2
|
||||
.alicunis1si
|
||||
.alicunissi1m
|
||||
.alicunissi1me
|
||||
.a9l8i8c9u8n9m8e8n9t8e.
|
||||
.alicun1m
|
||||
.alicun1me
|
||||
.alicunmen1t
|
||||
.m8o8s9l8e8m.
|
||||
.mo1s2l
|
||||
.mosle1m
|
||||
.q8u8a8l8c9u8n.
|
||||
.qu2
|
||||
.qua2l1c
|
||||
.q8u8a8l8c9u9n8i8s9s8i9m8e.
|
||||
.qualcu1ni
|
||||
.qualcuni2s1s2
|
||||
.qualcunis1si
|
||||
.qualcunissi1m
|
||||
.qualcunissi1me
|
||||
.q8u8a8l8c9u8n9m8e8n9t8e.
|
||||
.qualcun1m
|
||||
.qualcun1me
|
||||
.qualcunmen1t
|
|
@ -0,0 +1,134 @@
|
|||
License information for hyph_is.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-is.lic.txt in the original work):
|
||||
|
||||
Icelandic hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: icehyph.tex (2004-03-08)
|
||||
% Author: Jorgen Pind <jorgen at lexis.hi.is>
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% The Icelandic Plain TeX hyphenation tables
|
||||
% as of Nov 2 1988.
|
||||
% Jorgen Pind, Institute of Lexicography, Univ. of Iceland
|
||||
% jorgen@lexis.hi.is (Internet)
|
||||
%
|
||||
% Mar 2 2004: Uploaded a new version to CTAN, with a clarified license
|
||||
% statement, at the request of the author, Jorgen Pind.
|
||||
% Kristinn Gylfason (kristgy@ieee.org)
|
||||
|
||||
% This file may be distributed and/or modified under the
|
||||
% conditions of the LaTeX Project Public License, either version 1.2
|
||||
% of this license or (at your option) any later version.
|
||||
% The latest version of this license is in
|
||||
% http://www.latex-project.org/lppl.txt
|
||||
% and version 1.2 or later is part of all distributions of LaTeX
|
||||
% version 1999/12/01 or later.
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,87 @@
|
|||
License information for hyph_kmr.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-kmr.lic.txt in the original work):
|
||||
|
||||
Kurmanji hyphenation patterns (v. 1.0 2009/06/29 JKn and MSh)
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% hyph-kmr.tex
|
||||
%
|
||||
% Hyphenation patterns for Kurmanji (Northern Kurdish)
|
||||
%
|
||||
% (as spoken in Turkey and by the Kurdish diaspora in Europe).
|
||||
% The patterns are generated by patgen from a word list of approx. 2500
|
||||
% hyphenated words provided by Medeni Shemdê
|
||||
%
|
||||
% Copyright 2009 Jörg Knappen and Medeni Shemdê
|
||||
%
|
||||
% These patterns are free software under the LaTeX Project Public Licence
|
||||
% (LPPL) version 1.3
|
||||
%
|
||||
% This work has the LPPL maintenance status `maintained'.
|
||||
%
|
||||
% The Current Maintainer of patterns is Jörg Knappen,
|
||||
% maintaners of UTF-8 version are authors of hyph-utf8 package.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
% The patterns were generated by Jörg Knappen with patgen using
|
||||
% a list of 2.5k hyphenated Kurmanji words provided by Medeni Shemdê.
|
||||
%
|
||||
% For 8-bit engines the T1 (Cork) encoding is needed
|
||||
% for the special letters occurring in the Kurmanji alphabet.
|
||||
%
|
||||
% \message{Kurmanji hyphenation patterns kmrhyph v. 1.0 2009/06/29 JKn and MSh}
|
||||
%
|
|
@ -0,0 +1,370 @@
|
|||
UTF-8
|
||||
LEFTHYPHENMIN 2
|
||||
RIGHTHYPHENMIN 2
|
||||
.ka6r4a1
|
||||
.ka1
|
||||
.ka1r
|
||||
a1
|
||||
a1l4a1
|
||||
a1l
|
||||
6amît.
|
||||
a1m
|
||||
amî1
|
||||
amî1t
|
||||
4a1n
|
||||
ar5a6nî1
|
||||
a1r
|
||||
a1r4a1
|
||||
ar4a1n
|
||||
3a1v
|
||||
4av2a1y
|
||||
ava1
|
||||
2a1y
|
||||
1b
|
||||
b4a1
|
||||
2b1b
|
||||
2b1l
|
||||
2b1r
|
||||
2b1s
|
||||
2b1x
|
||||
1c
|
||||
2c1b
|
||||
2c2k
|
||||
2c1l
|
||||
1ç
|
||||
2ç1k
|
||||
1d
|
||||
da6vêji1
|
||||
da1
|
||||
d3a1v
|
||||
davê1
|
||||
davê1j
|
||||
2d1b
|
||||
dbû6n4a1
|
||||
dbû1n
|
||||
2d1d
|
||||
dda4
|
||||
2d1g
|
||||
2d1r
|
||||
2d1t
|
||||
d4y2o
|
||||
d1y
|
||||
4dyû
|
||||
e1
|
||||
ea2
|
||||
e4d1y
|
||||
e1d
|
||||
e1e2
|
||||
eê2
|
||||
e4f1r
|
||||
e1f
|
||||
el4a1
|
||||
e1l
|
||||
erde1s6
|
||||
e1r
|
||||
e2r1d
|
||||
e1rde1
|
||||
er6desta1
|
||||
erde2s1t
|
||||
e4t1r
|
||||
e1t
|
||||
2e1z
|
||||
ê1
|
||||
ê2a1
|
||||
êl3a4v
|
||||
ê1l
|
||||
êla1
|
||||
1f
|
||||
f1l4
|
||||
f4lî1
|
||||
4flû
|
||||
f4r2o
|
||||
f1r
|
||||
2f1s
|
||||
2f1ş
|
||||
2f1t
|
||||
2f1x
|
||||
1g
|
||||
2g1b
|
||||
2g1h
|
||||
2g1k
|
||||
g2l
|
||||
2g1n
|
||||
2g1r
|
||||
2g1s
|
||||
2g1t
|
||||
1h
|
||||
2h1b
|
||||
2h1d
|
||||
2h1k
|
||||
2h1m
|
||||
2h1n
|
||||
2h1r
|
||||
2h1s
|
||||
2h1t
|
||||
i1
|
||||
i1i2
|
||||
il4a1
|
||||
i1l
|
||||
i4nê1r
|
||||
i1n
|
||||
inê1
|
||||
ire4h
|
||||
i1r
|
||||
ire1
|
||||
i2s
|
||||
î1
|
||||
î2a1
|
||||
2î1d
|
||||
îe4t
|
||||
îe1
|
||||
î2j
|
||||
î1l3
|
||||
î4p1l
|
||||
î1p
|
||||
îsti6ye1
|
||||
î1s
|
||||
î2s1t
|
||||
îsti1
|
||||
îsti1y
|
||||
1j
|
||||
6ja6va.
|
||||
ja1
|
||||
j3a1v
|
||||
java1
|
||||
2j1h
|
||||
2j1k
|
||||
2j1m
|
||||
2j1n
|
||||
2j1t
|
||||
1k
|
||||
2k1b
|
||||
2k1ç
|
||||
2k1k
|
||||
2k1l
|
||||
2k1m
|
||||
2k1n
|
||||
2k1r
|
||||
2k1s
|
||||
2k1t
|
||||
2k1v
|
||||
2k1w
|
||||
2k1x
|
||||
2k1y
|
||||
1l
|
||||
6la4mîtê1
|
||||
la1
|
||||
la1m
|
||||
lamî1
|
||||
lamî1t
|
||||
2l1b
|
||||
2l1c
|
||||
2l1ç
|
||||
2l1d
|
||||
l4e1
|
||||
2l1f
|
||||
2l1g
|
||||
2l1h
|
||||
2l1k
|
||||
2l1l
|
||||
2l1m
|
||||
2l1n
|
||||
2l1p
|
||||
2l1q
|
||||
2l1s
|
||||
2l1t
|
||||
2l1v
|
||||
2l1w
|
||||
2l1x
|
||||
2l1y
|
||||
2l1z
|
||||
1m
|
||||
ma4î1
|
||||
ma1
|
||||
2m1b
|
||||
2m1d
|
||||
2m1f
|
||||
4mîtê1
|
||||
mî1
|
||||
mî1t
|
||||
2m1m
|
||||
2m1p2
|
||||
2m1r
|
||||
2m1s
|
||||
2m1w
|
||||
2m1y
|
||||
2m1z
|
||||
1n
|
||||
n4a1
|
||||
2n1b
|
||||
2n1c
|
||||
2n1ç
|
||||
2n1d
|
||||
nê4re1
|
||||
nê1
|
||||
nê1r
|
||||
2n1f
|
||||
2n1g
|
||||
2n1h
|
||||
2n1k
|
||||
nki4
|
||||
2n1n
|
||||
2n1p
|
||||
2n1s
|
||||
2n1ş
|
||||
2n1t
|
||||
2n1v
|
||||
2n1x
|
||||
2n1y
|
||||
2n2z
|
||||
2o
|
||||
o1f2
|
||||
o2h
|
||||
o2s
|
||||
o2w
|
||||
1p
|
||||
2p1s
|
||||
2p1t
|
||||
1q
|
||||
2q1p
|
||||
2q1ş
|
||||
1r
|
||||
r4a1
|
||||
raî4
|
||||
2r1b
|
||||
2r1c
|
||||
2r1ç
|
||||
2r1d
|
||||
2r1f
|
||||
r4fi4
|
||||
2r1g
|
||||
2r1h
|
||||
2r1j
|
||||
2r1k
|
||||
2r1l
|
||||
2r1m
|
||||
2r1n
|
||||
2r1p
|
||||
2r1q
|
||||
2r1r
|
||||
2r1s
|
||||
2r1t
|
||||
2r1v
|
||||
2r1w
|
||||
2r1x
|
||||
2r1y
|
||||
2r1z
|
||||
1s
|
||||
3sa1
|
||||
2s1b
|
||||
3se1
|
||||
2s1g
|
||||
3sî1
|
||||
2s1k
|
||||
2s1p
|
||||
2s1r
|
||||
2s1s
|
||||
2s1t
|
||||
s4t3a4v
|
||||
sta1
|
||||
st4r
|
||||
3su1
|
||||
3sû
|
||||
2s1y
|
||||
1ş
|
||||
4ş3a4v
|
||||
şa1
|
||||
2ş1b
|
||||
2ş1d
|
||||
şê4l
|
||||
şê1
|
||||
2ş1g
|
||||
2ş1h
|
||||
2ş1k
|
||||
2ş1m
|
||||
2ş1n
|
||||
2ş1p
|
||||
2ş1t2
|
||||
2ş1v
|
||||
2ş1x
|
||||
1t
|
||||
4t3a1v
|
||||
ta1
|
||||
2t1g
|
||||
tge4
|
||||
2t1k
|
||||
2t1l
|
||||
2t1m
|
||||
2t1n
|
||||
tnî4
|
||||
2t1p
|
||||
t4r4a1
|
||||
t1r
|
||||
t4rû
|
||||
2t3s2
|
||||
2t1t
|
||||
2t1x
|
||||
2t1y
|
||||
u1
|
||||
ue2
|
||||
u2i1
|
||||
u2k
|
||||
urandi6
|
||||
u1r
|
||||
ur4a1
|
||||
ur4a1n
|
||||
ura2n1d
|
||||
u2ş
|
||||
1v
|
||||
2v1b
|
||||
2v1ç
|
||||
2v1d
|
||||
2v1g
|
||||
2v1h
|
||||
2v1k
|
||||
2v1n
|
||||
2v1r
|
||||
2v1s
|
||||
2v1ş
|
||||
2v1y
|
||||
1w
|
||||
2w1c
|
||||
2w1d
|
||||
2w1h
|
||||
2w1k
|
||||
2w1l
|
||||
2w1n
|
||||
2w1r
|
||||
2w1s
|
||||
2w1ş
|
||||
2w1t
|
||||
1x
|
||||
x4a1
|
||||
2x1ç
|
||||
2x1l
|
||||
2x1n
|
||||
2x1t
|
||||
x4t1r
|
||||
x2w
|
||||
1y
|
||||
2y1b
|
||||
2y1d
|
||||
yda4
|
||||
2y1l
|
||||
2y1n
|
||||
2y1r
|
||||
2y1s
|
||||
2y1t
|
||||
2y1v
|
||||
2y1w
|
||||
1z
|
||||
2z1b
|
||||
2z1d
|
||||
1z3e4z
|
||||
ze1
|
||||
2z1k
|
||||
2z1m
|
||||
2z1r
|
||||
2z1t
|
||||
2z1y
|
||||
2z1z
|
|
@ -0,0 +1,161 @@
|
|||
License information for hyph_la.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-la.lic.txt in the original work):
|
||||
|
||||
Latin hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: lahyph.tex (2007-09-03)
|
||||
% Author: Claudio Beccari <claudio.beccari at polito.it>
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% ********** lahyph.tex *************
|
||||
%
|
||||
% Copyright 1999- 2001 Claudio Beccari
|
||||
% [latin hyphenation patterns]
|
||||
%
|
||||
% -----------------------------------------------------------------
|
||||
% IMPORTANT NOTICE:
|
||||
%
|
||||
% This program can be redistributed and/or modified under the terms
|
||||
% of the LaTeX Project Public License Distributed from CTAN
|
||||
% archives in directory macros/latex/base/lppl.txt; either
|
||||
% version 1 of the License, or any later version.
|
||||
% -----------------------------------------------------------------
|
||||
%
|
||||
% Patterns for the latin language mainly in modern spelling
|
||||
% (u when u is needed and v when v is needed); medieval spelling
|
||||
% with the ligatures \ae and \oe and the (uncial) lowercase `v'
|
||||
% written as a `u' is also supported; apparently there is no conflict
|
||||
% between the patterns of modern Latin and those of medieval Latin.
|
||||
%
|
||||
% Support for font encoding T1 with a 256-character set.
|
||||
%
|
||||
% Prepared by Claudio Beccari
|
||||
% Politecnico di Torino
|
||||
% Torino, Italy
|
||||
% e-mail beccari@polito.it
|
||||
%
|
||||
% 1999/03/10 Integration of `lahyph7.tex' and `lahyph8.tex' into
|
||||
% one file `lahyph.tex' supporting fonts in OT1 and T1 encoding by
|
||||
% Bernd Raichle using the macro code from `dehypht.tex' (this code
|
||||
% is Copyright 1993,1994,1998,1999 Bernd Raichle/DANTE e.V.).
|
||||
%
|
||||
% 2010/05/31 Removal of OT1 support
|
||||
% 2010/06/01 Removal of pattern 2'2 (probably a leftover from Italian)
|
||||
%
|
||||
% \versionnumber{3.2} \versiondate{2010/06/01}
|
||||
%
|
||||
% Information after \endinput.
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%
|
||||
% \message{Latin Hyphenation Patterns `lahyph' Version 3.2 <2010/06/01>}
|
||||
%
|
||||
%
|
|
@ -0,0 +1,377 @@
|
|||
UTF-8
|
||||
LEFTHYPHENMIN 2
|
||||
RIGHTHYPHENMIN 2
|
||||
.a2b3l
|
||||
.a1b
|
||||
.anti1
|
||||
.a1n
|
||||
.a2n1t
|
||||
.a1nti3m2n
|
||||
.anti1m
|
||||
.circu2m1
|
||||
.ci1r
|
||||
.ci2r1c
|
||||
.co2n1iu1n
|
||||
.co1n
|
||||
.di2s3cine
|
||||
.di1s2
|
||||
.dis1c
|
||||
.disci1n
|
||||
.e2x1
|
||||
.o2b3
|
||||
.para1i
|
||||
.pa1r
|
||||
.para1u
|
||||
.su2b3lu
|
||||
.s2
|
||||
.su1b
|
||||
.sub2l
|
||||
.su2b3r
|
||||
1s2
|
||||
2s3que.
|
||||
s1qu2
|
||||
2s3de2m.
|
||||
s1d
|
||||
sde1m
|
||||
1p
|
||||
2p1s2
|
||||
3p2si1c
|
||||
2p1n
|
||||
3p2neu
|
||||
æ1
|
||||
œ1
|
||||
a1ia
|
||||
a1ie
|
||||
a1io
|
||||
a1iu
|
||||
ae1a
|
||||
ae1o
|
||||
ae1u
|
||||
e1iu
|
||||
io1i
|
||||
o1ia
|
||||
o1ie
|
||||
o1io
|
||||
o1iu
|
||||
uo3u
|
||||
1b
|
||||
2b1b
|
||||
2b1d
|
||||
b2l
|
||||
2b1m
|
||||
2b1n
|
||||
b2r
|
||||
2b1t
|
||||
2b1s2
|
||||
2b.
|
||||
1c
|
||||
2c1c
|
||||
c2h2
|
||||
c2l
|
||||
2c1m
|
||||
2c1n
|
||||
2cq
|
||||
c2r
|
||||
2c1s2
|
||||
2c1t
|
||||
2c1z
|
||||
2c.
|
||||
1d
|
||||
2d1d
|
||||
2d1g
|
||||
2d1m
|
||||
d2r
|
||||
2d1s2
|
||||
2d1v
|
||||
2d.
|
||||
1f
|
||||
2f1f
|
||||
f2l
|
||||
2f1n
|
||||
f2r
|
||||
2f1t
|
||||
2f.
|
||||
1g
|
||||
2g1g
|
||||
2g1d
|
||||
2g1f
|
||||
g2l
|
||||
2g1m
|
||||
g2n
|
||||
g2r
|
||||
2g1s2
|
||||
2g1v
|
||||
2g.
|
||||
1h
|
||||
2h1p
|
||||
2h1t
|
||||
2h.
|
||||
1j
|
||||
1k
|
||||
2k1k
|
||||
k2h2
|
||||
1l
|
||||
2l1b
|
||||
2l1c
|
||||
2l1d
|
||||
2l1f
|
||||
l3f2t
|
||||
2l1g
|
||||
2l1k
|
||||
2l1l
|
||||
2l1m
|
||||
2l1n
|
||||
2l1p
|
||||
2lq
|
||||
2l1r
|
||||
2l1s2
|
||||
2l1t
|
||||
2l1v
|
||||
2l.
|
||||
1m
|
||||
2m1m
|
||||
2m1b
|
||||
2m1p
|
||||
2m1l
|
||||
2m1n
|
||||
2mq
|
||||
2m1r
|
||||
2m1v
|
||||
2m.
|
||||
1n
|
||||
2n1b
|
||||
2n1c
|
||||
2n1d
|
||||
2n1f
|
||||
2n1g
|
||||
2n1l
|
||||
2n1m
|
||||
2n1n
|
||||
2n1p
|
||||
2nq
|
||||
2n1r
|
||||
2n1s2
|
||||
n2s3m
|
||||
n2s3f
|
||||
2n1t
|
||||
2n1v
|
||||
2n1x
|
||||
2n.
|
||||
p2h
|
||||
p2l
|
||||
2p1p
|
||||
p2r
|
||||
2p1t
|
||||
2p1z
|
||||
2p2h1p
|
||||
2p2h1t
|
||||
2p.
|
||||
1qu2
|
||||
1r
|
||||
2r1b
|
||||
2r1c
|
||||
2r1d
|
||||
2r1f
|
||||
2r1g
|
||||
r2h
|
||||
2r1l
|
||||
2r1m
|
||||
2r1n
|
||||
2r1p
|
||||
2rq
|
||||
2r1r
|
||||
2r1s2
|
||||
2r1t
|
||||
2r1v
|
||||
2r1z
|
||||
2r.
|
||||
2s3p2h
|
||||
s1p
|
||||
2s3s2
|
||||
2s2t1b
|
||||
s1t
|
||||
2s2t1c
|
||||
2s2t1d
|
||||
2s2t1f
|
||||
2s2t1g
|
||||
2st3l
|
||||
2s2t1m
|
||||
2s2t1n
|
||||
2s2t1p
|
||||
2s2tq
|
||||
2s2t1s2
|
||||
2s2t1t
|
||||
2s2t1v
|
||||
2s.
|
||||
2s2t.
|
||||
1t
|
||||
2t1b
|
||||
2t1c
|
||||
2t1d
|
||||
2t1f
|
||||
2t1g
|
||||
t2h
|
||||
t2l
|
||||
t2r
|
||||
2t1m
|
||||
2t1n
|
||||
2t1p
|
||||
2tq
|
||||
2t1t
|
||||
2t1v
|
||||
2t.
|
||||
1v
|
||||
v2l
|
||||
v2r
|
||||
2v1v
|
||||
1x
|
||||
2x1t
|
||||
2x1x
|
||||
2x.
|
||||
1z
|
||||
2z.
|
||||
a1ua
|
||||
a1ue
|
||||
a1ui
|
||||
a1uo
|
||||
a1uu
|
||||
e1ua
|
||||
e1ue
|
||||
e1ui
|
||||
e1uo
|
||||
e1uu
|
||||
i1ua
|
||||
i1ue
|
||||
i1ui
|
||||
i1uo
|
||||
i1uu
|
||||
o1ua
|
||||
o1ue
|
||||
o1ui
|
||||
o1uo
|
||||
o1uu
|
||||
u1ua
|
||||
u1ue
|
||||
u1ui
|
||||
u1uo
|
||||
u1uu
|
||||
a2l1ua
|
||||
a1l
|
||||
a2l1ue
|
||||
a2l1ui
|
||||
a2l1uo
|
||||
a2l1uu
|
||||
e2l1ua
|
||||
e1l
|
||||
e2l1ue
|
||||
e2l1ui
|
||||
e2l1uo
|
||||
e2l1uu
|
||||
i2l1ua
|
||||
i1l
|
||||
i2l1ue
|
||||
i2l1ui
|
||||
i2l1uo
|
||||
i2l1uu
|
||||
o2l1ua
|
||||
o1l
|
||||
o2l1ue
|
||||
o2l1ui
|
||||
o2l1uo
|
||||
o2l1uu
|
||||
u2l1ua
|
||||
u1l
|
||||
u2l1ue
|
||||
u2l1ui
|
||||
u2l1uo
|
||||
u2l1uu
|
||||
a2m1ua
|
||||
a1m
|
||||
a2m1ue
|
||||
a2m1ui
|
||||
a2m1uo
|
||||
a2m1uu
|
||||
e2m1ua
|
||||
e1m
|
||||
e2m1ue
|
||||
e2m1ui
|
||||
e2m1uo
|
||||
e2m1uu
|
||||
i2m1ua
|
||||
i1m
|
||||
i2m1ue
|
||||
i2m1ui
|
||||
i2m1uo
|
||||
i2m1uu
|
||||
o2m1ua
|
||||
o1m
|
||||
o2m1ue
|
||||
o2m1ui
|
||||
o2m1uo
|
||||
o2m1uu
|
||||
u2m1ua
|
||||
u1m
|
||||
u2m1ue
|
||||
u2m1ui
|
||||
u2m1uo
|
||||
u2m1uu
|
||||
a2n1ua
|
||||
a1n
|
||||
a2n1ue
|
||||
a2n1ui
|
||||
a2n1uo
|
||||
a2n1uu
|
||||
e2n1ua
|
||||
e1n
|
||||
e2n1ue
|
||||
e2n1ui
|
||||
e2n1uo
|
||||
e2n1uu
|
||||
i2n1ua
|
||||
i1n
|
||||
i2n1ue
|
||||
i2n1ui
|
||||
i2n1uo
|
||||
i2n1uu
|
||||
o2n1ua
|
||||
o1n
|
||||
o2n1ue
|
||||
o2n1ui
|
||||
o2n1uo
|
||||
o2n1uu
|
||||
u2n1ua
|
||||
u1n
|
||||
u2n1ue
|
||||
u2n1ui
|
||||
u2n1uo
|
||||
u2n1uu
|
||||
a2r1ua
|
||||
a1r
|
||||
a2r1ue
|
||||
a2r1ui
|
||||
a2r1uo
|
||||
a2r1uu
|
||||
e2r1ua
|
||||
e1r
|
||||
e2r1ue
|
||||
e2r1ui
|
||||
e2r1uo
|
||||
e2r1uu
|
||||
i2r1ua
|
||||
i1r
|
||||
i2r1ue
|
||||
i2r1ui
|
||||
i2r1uo
|
||||
i2r1uu
|
||||
o2r1ua
|
||||
o1r
|
||||
o2r1ue
|
||||
o2r1ui
|
||||
o2r1uo
|
||||
o2r1uu
|
||||
u2r1ua
|
||||
u1r
|
||||
u2r1ue
|
||||
u2r1ui
|
||||
u2r1uo
|
||||
u2r1uu
|
|
@ -0,0 +1,153 @@
|
|||
License information for hyph_nl.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-nl.lic.txt in the original work):
|
||||
|
||||
Dutch hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: nehyph96.tex (yyyy-mm-dd)
|
||||
% Author: Piet Tutelaers
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% PURPOSE: 8-bit hyphenation patterns for TeX based upon the new Dutch
|
||||
% spelling, officially since 1 August 1996. These patterns follow
|
||||
% the new hyphenation rules in the `Woordenlijst Nederlandse
|
||||
% Taal, SDU Uitgevers, Den Haag 1995' (the so called `Groene
|
||||
% Boekje') described in section 5.2 (Het afbreekteken).
|
||||
%
|
||||
% The main differences with our earlier patterns based upon the
|
||||
% CELEX dictionary are:
|
||||
% (1) provide 8-bit patterns based upon the T1 character encoding
|
||||
% (the encoding for DC/EC compatible TeX fonts)
|
||||
% (2) don't hyphenate if this results in a syllable of one letter
|
||||
% before or after the hyphen (hence hyphens in a-drenaline,
|
||||
% studi-o, mensa-pen and vide-oachtig are invalid)
|
||||
% (3) handle words derived from other languages (`bastaard
|
||||
% woorden') according to the new rules
|
||||
%
|
||||
% Like the CELEX patterns these patterns don't hyphenate:
|
||||
% (4) in a changing syllable (menuutje can not be hyphenated as
|
||||
% menu-tje)
|
||||
% (5) in words that have different hyphenations according to
|
||||
% there meaning (buur-tje/buurt-je)
|
||||
%
|
||||
% COPYRIGHT (C) 1996: Piet Tutelaers
|
||||
%
|
||||
% -----------------------------------------------------------------
|
||||
% IMPORTANT NOTICE:
|
||||
%
|
||||
% This program can be redistributed and/or modified under the terms
|
||||
% of the LaTeX Project Public License Distributed from CTAN
|
||||
% archives in directory macros/latex/base/lppl.txt; either
|
||||
% version 1 of the License, or any later version.
|
||||
% -----------------------------------------------------------------
|
||||
% VERSION: 1.1 (November 1996) Copyright changed March 2000
|
||||
%
|
||||
% AUTHOR: Piet Tutelaers P.T.H.Tutelaers@tue.nl
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,141 @@
|
|||
License information for hyph_pt.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-pt.lic.txt in the original work):
|
||||
|
||||
Portuguese hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: pthyph.tex (1994-10-13 - date on CTAN) or (1996-07-21 - date in file) - no idea
|
||||
% Author: Pedro J. de Rezende <rezende at dcc.unicamp.br>, J.Joao Dias Almeida <jj at di.uminho.pt>
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% The Portuguese TeX hyphenation table.
|
||||
% (C) 1996 by Pedro J. de Rezende (rezende@dcc.unicamp.br)
|
||||
% and J.Joao Dias Almeida (jj@di.uminho.pt)
|
||||
% Version: 1.2 Release date: 21/07/96
|
||||
%
|
||||
% (C) 1994 by Pedro J. de Rezende (rezende@dcc.unicamp.br)
|
||||
% Version: 1.1 Release date: 04/12/94
|
||||
%
|
||||
% (C) 1987 by Pedro J. de Rezende
|
||||
% Version: 1.0 Release date: 02/13/87
|
||||
%
|
||||
% -----------------------------------------------------------------
|
||||
% IMPORTANT NOTICE:
|
||||
%
|
||||
% This program can be redistributed and/or modified under the terms
|
||||
% of the LaTeX Project Public License Distributed from CTAN
|
||||
% archives in directory macros/latex/base/lppl.txt; either
|
||||
% version 1 of the License, or any later version.
|
||||
% -----------------------------------------------------------------
|
||||
% Remember! If you *must* change it, then call the resulting file
|
||||
% something else and attach your name to your *documented* changes.
|
||||
% ======================================================================
|
||||
%
|
|
@ -0,0 +1,314 @@
|
|||
UTF-8
|
||||
LEFTHYPHENMIN 2
|
||||
RIGHTHYPHENMIN 2
|
||||
1b2l
|
||||
1b2r
|
||||
1ba
|
||||
1be
|
||||
1bi
|
||||
1bo
|
||||
1bu
|
||||
1bá
|
||||
1bâ
|
||||
1bã
|
||||
1bé
|
||||
1bí
|
||||
1bó
|
||||
1bú
|
||||
1bê
|
||||
1bõ
|
||||
1c2h
|
||||
1c2l
|
||||
1c2r
|
||||
1ca
|
||||
1ce
|
||||
1ci
|
||||
1co
|
||||
1cu
|
||||
1cá
|
||||
1câ
|
||||
1cã
|
||||
1cé
|
||||
1cí
|
||||
1có
|
||||
1cú
|
||||
1cê
|
||||
1cõ
|
||||
1ça
|
||||
1çe
|
||||
1çi
|
||||
1ço
|
||||
1çu
|
||||
1çá
|
||||
1çâ
|
||||
1çã
|
||||
1çé
|
||||
1çí
|
||||
1çó
|
||||
1çú
|
||||
1çê
|
||||
1çõ
|
||||
1d2l
|
||||
1d2r
|
||||
1da
|
||||
1de
|
||||
1di
|
||||
1do
|
||||
1du
|
||||
1dá
|
||||
1dâ
|
||||
1dã
|
||||
1dé
|
||||
1dí
|
||||
1dó
|
||||
1dú
|
||||
1dê
|
||||
1dõ
|
||||
1f2l
|
||||
1f2r
|
||||
1fa
|
||||
1fe
|
||||
1fi
|
||||
1fo
|
||||
1fu
|
||||
1fá
|
||||
1fâ
|
||||
1fã
|
||||
1fé
|
||||
1fí
|
||||
1fó
|
||||
1fú
|
||||
1fê
|
||||
1fõ
|
||||
1g2l
|
||||
1g2r
|
||||
1ga
|
||||
1ge
|
||||
1gi
|
||||
1go
|
||||
1gu
|
||||
1gu4a
|
||||
1gu4e
|
||||
1gu4i
|
||||
1gu4o
|
||||
1gá
|
||||
1gâ
|
||||
1gã
|
||||
1gé
|
||||
1gí
|
||||
1gó
|
||||
1gú
|
||||
1gê
|
||||
1gõ
|
||||
1ja
|
||||
1je
|
||||
1ji
|
||||
1jo
|
||||
1ju
|
||||
1já
|
||||
1jâ
|
||||
1jã
|
||||
1jé
|
||||
1jí
|
||||
1jó
|
||||
1jú
|
||||
1jê
|
||||
1jõ
|
||||
1k2l
|
||||
1k2r
|
||||
1ka
|
||||
1ke
|
||||
1ki
|
||||
1ko
|
||||
1ku
|
||||
1ká
|
||||
1kâ
|
||||
1kã
|
||||
1ké
|
||||
1kí
|
||||
1kó
|
||||
1kú
|
||||
1kê
|
||||
1kõ
|
||||
1l2h
|
||||
1la
|
||||
1le
|
||||
1li
|
||||
1lo
|
||||
1lu
|
||||
1lá
|
||||
1lâ
|
||||
1lã
|
||||
1lé
|
||||
1lí
|
||||
1ló
|
||||
1lú
|
||||
1lê
|
||||
1lõ
|
||||
1ma
|
||||
1me
|
||||
1mi
|
||||
1mo
|
||||
1mu
|
||||
1má
|
||||
1mâ
|
||||
1mã
|
||||
1mé
|
||||
1mí
|
||||
1mó
|
||||
1mú
|
||||
1mê
|
||||
1mõ
|
||||
1n2h
|
||||
1na
|
||||
1ne
|
||||
1ni
|
||||
1no
|
||||
1nu
|
||||
1ná
|
||||
1nâ
|
||||
1nã
|
||||
1né
|
||||
1ní
|
||||
1nó
|
||||
1nú
|
||||
1nê
|
||||
1nõ
|
||||
1p2l
|
||||
1p2r
|
||||
1pa
|
||||
1pe
|
||||
1pi
|
||||
1po
|
||||
1pu
|
||||
1pá
|
||||
1pâ
|
||||
1pã
|
||||
1pé
|
||||
1pí
|
||||
1pó
|
||||
1pú
|
||||
1pê
|
||||
1põ
|
||||
1qu4a
|
||||
1qu4e
|
||||
1qu4i
|
||||
1qu4o
|
||||
1ra
|
||||
1re
|
||||
1ri
|
||||
1ro
|
||||
1ru
|
||||
1rá
|
||||
1râ
|
||||
1rã
|
||||
1ré
|
||||
1rí
|
||||
1ró
|
||||
1rú
|
||||
1rê
|
||||
1rõ
|
||||
1sa
|
||||
1se
|
||||
1si
|
||||
1so
|
||||
1su
|
||||
1sá
|
||||
1sâ
|
||||
1sã
|
||||
1sé
|
||||
1sí
|
||||
1só
|
||||
1sú
|
||||
1sê
|
||||
1sõ
|
||||
1t2l
|
||||
1t2r
|
||||
1ta
|
||||
1te
|
||||
1ti
|
||||
1to
|
||||
1tu
|
||||
1tá
|
||||
1tâ
|
||||
1tã
|
||||
1té
|
||||
1tí
|
||||
1tó
|
||||
1tú
|
||||
1tê
|
||||
1tõ
|
||||
1v2l
|
||||
1v2r
|
||||
1va
|
||||
1ve
|
||||
1vi
|
||||
1vo
|
||||
1vu
|
||||
1vá
|
||||
1vâ
|
||||
1vã
|
||||
1vé
|
||||
1ví
|
||||
1vó
|
||||
1vú
|
||||
1vê
|
||||
1võ
|
||||
1w2l
|
||||
1w2r
|
||||
1xa
|
||||
1xe
|
||||
1xi
|
||||
1xo
|
||||
1xu
|
||||
1xá
|
||||
1xâ
|
||||
1xã
|
||||
1xé
|
||||
1xí
|
||||
1xó
|
||||
1xú
|
||||
1xê
|
||||
1xõ
|
||||
1za
|
||||
1ze
|
||||
1zi
|
||||
1zo
|
||||
1zu
|
||||
1zá
|
||||
1zâ
|
||||
1zã
|
||||
1zé
|
||||
1zí
|
||||
1zó
|
||||
1zú
|
||||
1zê
|
||||
1zõ
|
||||
a3a
|
||||
a3e
|
||||
a3o
|
||||
c3c
|
||||
e3a
|
||||
e3e
|
||||
e3o
|
||||
i3a
|
||||
i3e
|
||||
i3i
|
||||
i3o
|
||||
i3â
|
||||
i3ê
|
||||
i3ô
|
||||
o3a
|
||||
o3e
|
||||
o3o
|
||||
r3r
|
||||
s3s
|
||||
u3a
|
||||
u3e
|
||||
u3o
|
||||
u3u
|
||||
1-
|
||||
.h8a8r8d9w8a8r8e.
|
||||
.hardwa1re
|
||||
.s8o8f8t9w8a8r8e.
|
||||
.softwa1re
|
|
@ -0,0 +1,149 @@
|
|||
License information for hyph_sl.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-sl.lic.txt in the original work):
|
||||
|
||||
Slovenian hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: slhyph.tex (2007-01-29)
|
||||
% Author: Matjaž Vrečko <matjaz at mg-soft.si>
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% This is `slhyph.tex' as of 15. 4. 97.
|
||||
%
|
||||
% Copyright (C) 1990 Matjaž Vrečko, TeXCeX (SLO)
|
||||
% [slovenian hyphenation patterns]
|
||||
%
|
||||
% This program can be redistributed and/or modified under the terms
|
||||
% of the LaTeX Project Public License Distributed from CTAN
|
||||
% archives in directory macros/latex/base/lppl.txt; either
|
||||
% version 1 of the License, or any later version.
|
||||
%
|
||||
% This file contains slovene hyphen patterns with čšž
|
||||
%
|
||||
% Generation of hyphen patterns for TeX
|
||||
%
|
||||
% Matjaž Vrečko, TeXCeH (SLO), 1990
|
||||
% Email: matjaz@mg-soft.si
|
||||
%
|
||||
% Changes:
|
||||
% 1990 First version of `hyphen.si' (Matjaž Vrečko, TeXCeX)
|
||||
%
|
||||
% Some cosmetic changes done later on, but none of these apply any more;
|
||||
% the patterns are still the same as they were originally:
|
||||
%
|
||||
% 1994-05-17 Use of code page 852 in patterns (Leon Žlajpah)
|
||||
% 1995-04-06 Release of `sihyph21.tex'
|
||||
% 1995-06-20 Added \slovenehyphenmins
|
||||
% Release of `sihyph22.tex'
|
||||
% 1997-15-04 Some changes concerning "c, "s, "z and ...
|
||||
% Release of `sihyph23.tex'
|
||||
% 2007-01-20 `sihyph23.tex' renamed to `slhyph.tex'
|
||||
% (sl is the proper language code for Slovenian)
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,167 @@
|
|||
License information for hyph_sv.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-sv.lic.txt in the original work):
|
||||
|
||||
Swedish hyphenation patterns (Jan Michael Rynning, 1994-03-03)
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: sehyph.tex (2003-09-08)
|
||||
% Author: Jan Michael Rynning
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% Swedish hyphenation patterns.
|
||||
%
|
||||
% Copyright 1994 by Jan Michael Rynning. All rights reserved.
|
||||
% This program may be distributed and/or modified under the conditions of
|
||||
% the LaTeX Project Public License, either version 1.2 of this license or
|
||||
% (at your option) any later version. The latest version of this license
|
||||
% is in http://www.latex-project.org/lppl.txt and version 1.2 or later is
|
||||
% part of all distributions of LaTeX version 1999/12/01 or later.
|
||||
%
|
||||
% Last update: 1994-03-03 (March 3, 1994).
|
||||
% Revision history:
|
||||
% 1991-01-08: First version available for anonymous FTP.
|
||||
% 1991-08-08: Changed \aa to \aa0 at end of line, to stop TeX from
|
||||
% concatenating the patterns.
|
||||
% 1991-09-03: Cleaned up lots of inconsistencies in the dictionary.
|
||||
% As a consequence, the patterns shrunk a lot. Also
|
||||
% added some 4000 one-syllable words, some of which were
|
||||
% hyphenated by the old patterns, and some 1500 compound
|
||||
% words, about half of which were incorrectly hyphenated
|
||||
% by the old patterns.
|
||||
% 1991-11-01: Added another some 6200 compound words, all of which were
|
||||
% incorrectly hyphenated by the old patterns.
|
||||
% 1991-11-13: Added another some 6500 compound words, all of which were
|
||||
% incorrectly hyphenated by the old patterns.
|
||||
% 1992-01-30: Changed macros to ^^, for use with LaTeX and dc fonts.
|
||||
% 1994-03-03: The hyphenated dictionary now contains about 118,000 words.
|
||||
% The hyphenation now works much better for compound words.
|
||||
% Patgen parameters: 1 2 20, 2 1 8, 1 4 7, 3 2 1, 1 10000 4.
|
||||
%
|
||||
% This file contains Swedish hyphenation patterns for TeX. It assumes
|
||||
% that you have fonts with the Swedish letters in the positions where
|
||||
% they occur in ISO Latin 1 (ISO 8859/1):
|
||||
% Letter: \AA \"A \"O \'E \aa \"a \"o \'e
|
||||
% Position: "C5 "C4 "D6 "C9 "E5 "E4 "F6 "E9
|
||||
%
|
||||
% Load this file into initex after plain.tex (or lplain.tex, splain.tex,
|
||||
% or whatever).
|
||||
%
|
||||
% The patterns were generated in such a way that they will hyphenate
|
||||
% correctly if \lefthyphenmin>=1 and \righthyphenmin>=2.
|
||||
%
|
||||
% These hyphenation patterns work quite well for simple words, but not
|
||||
% quite as well for compound words. I'm working on improving the quality,
|
||||
% by adding more words. If you know any Swedish words which are not
|
||||
% correctly hypheneted using these patterns, or if you have questions or
|
||||
% comments, please contact me:
|
||||
%
|
||||
% Jan Michael Rynning <jmr@incolumitas.se>
|
||||
% --------------------------------------------------------------------------
|
||||
%
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,125 @@
|
|||
License information for hyph_uk.dic:
|
||||
|
||||
This file is based on the TeX hyphenation patterns distributed under the
|
||||
LaTeX Project Public License (LPPL) as part of the hyph-utf8 package.
|
||||
|
||||
***** BEGIN LICENSE BLOCK *****
|
||||
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
|
||||
The contents of this file are subject to the Mozilla Public License Version
|
||||
1.1 (the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
http://www.mozilla.org/MPL/
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis,
|
||||
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
for the specific language governing rights and limitations under the
|
||||
License.
|
||||
|
||||
The Original Code is Mozilla hyphenation service.
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mozilla Foundation.
|
||||
Portions created by the Initial Developer are Copyright (C) 2011
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
Jonathan Kew <jfkthame@gmail.com>
|
||||
|
||||
Alternatively, the contents of this file may be used under the terms of
|
||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
of those above. If you wish to allow use of your version of this file only
|
||||
under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
use your version of this file under the terms of the MPL, indicate your
|
||||
decision by deleting the provisions above and replace them with the notice
|
||||
and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
the provisions above, a recipient may use your version of this file under
|
||||
the terms of any one of the MPL, the GPL or the LGPL.
|
||||
|
||||
***** END LICENSE BLOCK *****
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
At the time this file was first modified, a complete, unmodified copy of
|
||||
the LPPL Work was available from:
|
||||
http://tug.org/svn/texhyphen/trunk/hyph-utf8/tex/generic/hyph-utf8/patterns/?pathrev=580
|
||||
|
||||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
Portions of this file were originally made available under the following license
|
||||
(copied verbatim from hyph-uk.lic.txt in the original work):
|
||||
|
||||
Ukrainian hyphenation patterns
|
||||
|
||||
(more info about the licence to be added later)
|
||||
|
||||
% This file is part of hyph-utf8 package and resulted from
|
||||
% semi-manual conversions of hyphenation patterns into UTF-8 in June 2008.
|
||||
%
|
||||
% Source: TODO:WRITEME (yyyy-mm-dd)
|
||||
% Author: Maksym Polyakov <polyama at auburn.edu>, <mpoliak at i.com.ua>
|
||||
%
|
||||
% The above mentioned file should become obsolete,
|
||||
% and the author of the original file should preferaby modify this file instead.
|
||||
%
|
||||
% Modificatios were needed in order to support native UTF-8 engines,
|
||||
% but functionality (hopefully) didn't change in any way, at least not intentionally.
|
||||
% This file is no longer stand-alone; at least for 8-bit engines
|
||||
% you probably want to use loadhyph-foo.tex (which will load this file) instead.
|
||||
%
|
||||
% Modifications were done by Jonathan Kew, Mojca Miklavec & Arthur Reutenauer
|
||||
% with help & support from:
|
||||
% - Karl Berry, who gave us free hands and all resources
|
||||
% - Taco Hoekwater, with useful macros
|
||||
% - Hans Hagen, who did the unicodifisation of patterns already long before
|
||||
% and helped with testing, suggestions and bug reports
|
||||
% - Norbert Preining, who tested & integrated patterns into TeX Live
|
||||
%
|
||||
% However, the "copyright/copyleft" owner of patterns remains the original author.
|
||||
%
|
||||
% The copyright statement of this file is thus:
|
||||
%
|
||||
% Do with this file whatever needs to be done in future for the sake of
|
||||
% "a better world" as long as you respect the copyright of original file.
|
||||
% If you're the original author of patterns or taking over a new revolution,
|
||||
% plese remove all of the TUG comments & credits that we added here -
|
||||
% you are the Queen / the King, we are only the servants.
|
||||
%
|
||||
% If you want to change this file, rather than uploading directly to CTAN,
|
||||
% we would be grateful if you could send it to us (http://tug.org/tex-hyphen)
|
||||
% or ask for credentials for SVN repository and commit it yourself;
|
||||
% we will then upload the whole "package" to CTAN.
|
||||
%
|
||||
% Before a new "pattern-revolution" starts,
|
||||
% please try to follow some guidelines if possible:
|
||||
%
|
||||
% - \lccode is *forbidden*, and I really mean it
|
||||
% - all the patterns should be in UTF-8
|
||||
% - the only "allowed" TeX commands in this file are: \patterns, \hyphenation,
|
||||
% and if you really cannot do without, also \input and \message
|
||||
% - in particular, please no \catcode or \lccode changes,
|
||||
% they belong to loadhyph-foo.tex,
|
||||
% and no \lefthyphenmin and \righthyphenmin,
|
||||
% they have no influence here and belong elsewhere
|
||||
% - \begingroup and/or \endinput is not needed
|
||||
% - feel free to do whatever you want inside comments
|
||||
%
|
||||
% We know that TeX is extremely powerful, but give a stupid parser
|
||||
% at least a chance to read your patterns.
|
||||
%
|
||||
% For more unformation see
|
||||
%
|
||||
% http://tug.org/tex-hyphen
|
||||
%
|
||||
%------------------------------------------------------------------------------
|
||||
%
|
||||
% Ukrainian hyphenation patterns in LCY (cp866nav) encoding.
|
||||
% Copyright 1998-2001 Maksym Polyakov.
|
||||
% Released 2001/05/10.
|
||||
% This file can be redistributed and/or modified
|
||||
% under the terms of the LaTeX Project Public License (lppl).
|
||||
% Please, send bug reports via e-mail:
|
||||
% polyama@auburn.edu
|
||||
% mpoliak@i.com.ua
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -105,8 +105,7 @@ AtomDecls::lookupMulti(JSAtom *atom)
|
|||
DefnOrHeader &doh = p.value();
|
||||
if (doh.isHeader())
|
||||
return MultiDeclRange(doh.header());
|
||||
else
|
||||
return MultiDeclRange(doh.defn());
|
||||
return MultiDeclRange(doh.defn());
|
||||
}
|
||||
|
||||
inline bool
|
||||
|
|
|
@ -1903,23 +1903,20 @@ struct BindData {
|
|||
};
|
||||
|
||||
static bool
|
||||
BindLocalVariable(JSContext *cx, JSTreeContext *tc, JSAtom *atom, BindingKind kind, bool isArg)
|
||||
BindLocalVariable(JSContext *cx, JSTreeContext *tc, JSParseNode *pn, BindingKind kind)
|
||||
{
|
||||
JS_ASSERT(kind == VARIABLE || kind == CONSTANT);
|
||||
|
||||
/*
|
||||
* Don't bind a variable with the hidden name 'arguments', per ECMA-262.
|
||||
* Instead 'var arguments' always restates the predefined property of the
|
||||
* activation objects whose name is 'arguments'. Assignment to such a
|
||||
* variable must be handled specially.
|
||||
*
|
||||
* Special case: an argument named 'arguments' *does* shadow the predefined
|
||||
* arguments property.
|
||||
*/
|
||||
if (atom == cx->runtime->atomState.argumentsAtom && !isArg)
|
||||
return true;
|
||||
/* 'arguments' can be bound as a local only via a destructuring formal parameter. */
|
||||
JS_ASSERT_IF(pn->pn_atom == cx->runtime->atomState.argumentsAtom, kind == VARIABLE);
|
||||
|
||||
return tc->bindings.add(cx, atom, kind);
|
||||
uintN index = tc->bindings.countVars();
|
||||
if (!tc->bindings.add(cx, pn->pn_atom, kind))
|
||||
return false;
|
||||
|
||||
pn->pn_cookie.set(tc->staticLevel, index);
|
||||
pn->pn_dflags |= PND_BOUND;
|
||||
return true;
|
||||
}
|
||||
|
||||
#if JS_HAS_DESTRUCTURING
|
||||
|
@ -3190,10 +3187,8 @@ Parser::functionDef(JSAtom *funAtom, FunctionType type, FunctionSyntaxKind kind)
|
|||
if (apn->pn_op != JSOP_SETLOCAL)
|
||||
continue;
|
||||
|
||||
uint16 index = funtc.bindings.countVars();
|
||||
if (!BindLocalVariable(context, &funtc, apn->pn_atom, VARIABLE, true))
|
||||
if (!BindLocalVariable(context, &funtc, apn, VARIABLE))
|
||||
return NULL;
|
||||
apn->pn_cookie.set(funtc.staticLevel, index);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
@ -3788,7 +3783,7 @@ DefineGlobal(JSParseNode *pn, JSCodeGenerator *cg, JSAtom *atom)
|
|||
}
|
||||
|
||||
static bool
|
||||
BindTopLevelVar(JSContext *cx, BindData *data, JSParseNode *pn, JSAtom *varname, JSTreeContext *tc)
|
||||
BindTopLevelVar(JSContext *cx, BindData *data, JSParseNode *pn, JSTreeContext *tc)
|
||||
{
|
||||
JS_ASSERT(pn->pn_op == JSOP_NAME);
|
||||
JS_ASSERT(!tc->inFunction());
|
||||
|
@ -3841,11 +3836,19 @@ BindTopLevelVar(JSContext *cx, BindData *data, JSParseNode *pn, JSAtom *varname,
|
|||
}
|
||||
|
||||
static bool
|
||||
BindFunctionLocal(JSContext *cx, BindData *data, MultiDeclRange &mdl, JSParseNode *pn,
|
||||
JSAtom *name, JSTreeContext *tc)
|
||||
BindFunctionLocal(JSContext *cx, BindData *data, MultiDeclRange &mdl, JSTreeContext *tc)
|
||||
{
|
||||
JS_ASSERT(tc->inFunction());
|
||||
|
||||
JSParseNode *pn = data->pn;
|
||||
JSAtom *name = pn->pn_atom;
|
||||
|
||||
/*
|
||||
* Don't create a local variable with the name 'arguments', per ECMA-262.
|
||||
* Instead, 'var arguments' always restates that predefined binding of the
|
||||
* lexical environment for function activations. Assignments to arguments
|
||||
* must be handled specially -- see NoteLValue.
|
||||
*/
|
||||
if (name == cx->runtime->atomState.argumentsAtom) {
|
||||
pn->pn_op = JSOP_ARGUMENTS;
|
||||
pn->pn_dflags |= PND_BOUND;
|
||||
|
@ -3863,12 +3866,9 @@ BindFunctionLocal(JSContext *cx, BindData *data, MultiDeclRange &mdl, JSParseNod
|
|||
*/
|
||||
kind = (data->op == JSOP_DEFCONST) ? CONSTANT : VARIABLE;
|
||||
|
||||
uintN index = tc->bindings.countVars();
|
||||
if (!BindLocalVariable(cx, tc, name, kind, false))
|
||||
if (!BindLocalVariable(cx, tc, pn, kind))
|
||||
return false;
|
||||
pn->pn_op = JSOP_GETLOCAL;
|
||||
pn->pn_cookie.set(tc->staticLevel, index);
|
||||
pn->pn_dflags |= PND_BOUND;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -4027,9 +4027,9 @@ BindVarOrConst(JSContext *cx, BindData *data, JSAtom *atom, JSTreeContext *tc)
|
|||
pn->pn_dflags |= PND_CONST;
|
||||
|
||||
if (tc->inFunction())
|
||||
return BindFunctionLocal(cx, data, mdl, pn, atom, tc);
|
||||
return BindFunctionLocal(cx, data, mdl, tc);
|
||||
|
||||
return BindTopLevelVar(cx, data, pn, atom, tc);
|
||||
return BindTopLevelVar(cx, data, pn, tc);
|
||||
}
|
||||
|
||||
static bool
|
||||
|
@ -7199,8 +7199,9 @@ Parser::comprehensionTail(JSParseNode *kid, uintN blockid, bool isGenexp,
|
|||
if (isGenexp) {
|
||||
if (!guard.checkValidBody(pn2))
|
||||
return NULL;
|
||||
} else if (!guard.maybeNoteGenerator()) {
|
||||
return NULL;
|
||||
} else {
|
||||
if (!guard.maybeNoteGenerator())
|
||||
return NULL;
|
||||
}
|
||||
|
||||
switch (tt) {
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="af">
|
||||
Al­le mens­li­ke we­sens word vry, met ge­ly­ke waar­dig­heid en reg­te, ge­bo­re.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="af">
|
||||
Alle menslike wesens word vry, met gelyke waardigheid en regte, gebore.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="bg">
|
||||
Всич­ки хо­ра се раж­дат сво­бод­ни и рав­ни по дос­тойн­с­т­во и пра­ва.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="bg">
|
||||
Всички хора се раждат свободни и равни по достойнство и права.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="ca">
|
||||
Tots els és­sers hu­mans nei­xen lliu­res i iguals en dig­ni­tat i en drets.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="ca">
|
||||
Tots els éssers humans neixen lliures i iguals en dignitat i en drets.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="cy">
|
||||
Gen­ir pawb yn rhydd ac yn gyd­radd â'i gil­ydd mewn urdd­as a hawl­iau.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="cy">
|
||||
Genir pawb yn rhydd ac yn gydradd â'i gilydd mewn urddas a hawliau.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="da">
|
||||
Al­le men­ne­sker er født frie og li­ge i vær­dig­hed og ret­tig­he­der.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="da">
|
||||
Alle mennesker er født frie og lige i værdighed og rettigheder.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="eo">
|
||||
Ĉi­uj ho­moj es­tas de­na­s­ke li­be­raj kaj ega­laj laŭ di­g­no kaj raj­toj.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="eo">
|
||||
Ĉiuj homoj estas denaske liberaj kaj egalaj laŭ digno kaj rajtoj.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="es">
|
||||
To­dos los se­res hu­ma­nos na­cen li­bres e igua­les en dig­ni­dad y de­re­chos
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="es">
|
||||
Todos los seres humanos nacen libres e iguales en dignidad y derechos
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="et">
|
||||
Kõik ini­me­sed sün­nivad va­ba­de­na ja võrds­ete­na oma vää­ri­ku­selt ja õi­gus­telt
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="et">
|
||||
Kõik inimesed sünnivad vabadena ja võrdsetena oma väärikuselt ja õigustelt
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="gl">
|
||||
Tó­do­los se­res hu­ma­nos na­cen li­bres e iguais en dig­ni­da­de e de­rei­tos
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="gl">
|
||||
Tódolos seres humanos nacen libres e iguais en dignidade e dereitos
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="hr">
|
||||
Sva ljud­ska bi­ća ra­ća­ju se slo­bod­na i jed­na­ka u dos­to­jans­tvu i pra­vi­ma
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="hr">
|
||||
Sva ljudska bića raćaju se slobodna i jednaka u dostojanstvu i pravima
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="hsb">
|
||||
Wšitcy čło­wje­ko­jo su wot na­ro­da swo­bod­ni a su je­na­cy po do­stoj­nos­ći a pra­wach
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="hsb">
|
||||
Wšitcy čłowjekojo su wot naroda swobodni a su jenacy po dostojnosći a prawach
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="ia">
|
||||
To­te le es­se­res hu­man na­sce li­be­re e equal in dig­ni­ta­te e in de­rec­tos
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="ia">
|
||||
Tote le esseres human nasce libere e equal in dignitate e in derectos
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="is">
|
||||
Hver mað­ur er bor­inn frjáls og jafn öðr­um að virð­ingu og rétt­ind­um
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="is">
|
||||
Hver maður er borinn frjáls og jafn öðrum að virðingu og réttindum
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="kmr">
|
||||
He­mû mi­rov azad û di we­qar û ma­fan de we­k­hev tên din­ya­yê
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="kmr">
|
||||
Hemû mirov azad û di weqar û mafan de wekhev tên dinyayê
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="la">
|
||||
Om­nes ho­mi­nes di­gni­ta­te et iu­re li­be­ri et pa­res na­scun­tur
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="la">
|
||||
Omnes homines dignitate et iure liberi et pares nascuntur
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="nl">
|
||||
Al­le men­sen wor­den vrij en ge­lijk in waar­dig­heid en rech­ten ge­bo­ren
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="nl">
|
||||
Alle mensen worden vrij en gelijk in waardigheid en rechten geboren
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="pt">
|
||||
To­dos os se­res hu­ma­nos nas­cem li­vres e iguais em dig­ni­da­de e em di­rei­tos
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="pt">
|
||||
Todos os seres humanos nascem livres e iguais em dignidade e em direitos
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="sl">
|
||||
Vsi lju­dje se ro­di­jo svo­bo­dni in ima­jo ena­ko do­sto­jan­stvo in ena­ke pra­vi­ce
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="sl">
|
||||
Vsi ljudje se rodijo svobodni in imajo enako dostojanstvo in enake pravice
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="en-US">
|
||||
Alla människor äro födda fria och lika i värde och rättigheter
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="sv">
|
||||
Al­la män­ni­skor äro föd­da fria och li­ka i vär­de och rät­tig­he­ter
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="sv">
|
||||
Alla människor äro födda fria och lika i värde och rättigheter
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:manual;" lang="uk">
|
||||
Всі лю­ди на­ро­джу­ю­ться віль­ни­ми і рів­ни­ми у сво­їй гі­дно­сті та пра­вах
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<div style="width:1em; -moz-hyphens:auto;" lang="uk">
|
||||
Всі люди народжуються вільними і рівними у своїй гідності та правах
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -98,3 +98,24 @@ random-if(!winWidget) == arial-bold-lam-alef-1.html arial-bold-lam-alef-1-ref.ht
|
|||
== auto-hyphenation-5.html auto-hyphenation-5-ref.html
|
||||
== auto-hyphenation-6.html auto-hyphenation-6-ref.html
|
||||
== auto-hyphenation-7.html auto-hyphenation-7-ref.html
|
||||
== auto-hyphenation-sv-1.html auto-hyphenation-sv-1-ref.html # test swedish patterns
|
||||
!= auto-hyphenation-sv-1.html auto-hyphenation-sv-1-notref.html # verify swedish != english
|
||||
== auto-hyphenation-af-1.html auto-hyphenation-af-1-ref.html
|
||||
== auto-hyphenation-bg-1.html auto-hyphenation-bg-1-ref.html
|
||||
== auto-hyphenation-ca-1.html auto-hyphenation-ca-1-ref.html
|
||||
== auto-hyphenation-cy-1.html auto-hyphenation-cy-1-ref.html
|
||||
== auto-hyphenation-da-1.html auto-hyphenation-da-1-ref.html
|
||||
== auto-hyphenation-eo-1.html auto-hyphenation-eo-1-ref.html
|
||||
== auto-hyphenation-es-1.html auto-hyphenation-es-1-ref.html
|
||||
== auto-hyphenation-et-1.html auto-hyphenation-et-1-ref.html
|
||||
== auto-hyphenation-gl-1.html auto-hyphenation-gl-1-ref.html
|
||||
== auto-hyphenation-hr-1.html auto-hyphenation-hr-1-ref.html
|
||||
== auto-hyphenation-hsb-1.html auto-hyphenation-hsb-1-ref.html
|
||||
== auto-hyphenation-ia-1.html auto-hyphenation-ia-1-ref.html
|
||||
== auto-hyphenation-is-1.html auto-hyphenation-is-1-ref.html
|
||||
== auto-hyphenation-kmr-1.html auto-hyphenation-kmr-1-ref.html
|
||||
== auto-hyphenation-la-1.html auto-hyphenation-la-1-ref.html
|
||||
== auto-hyphenation-nl-1.html auto-hyphenation-nl-1-ref.html
|
||||
== auto-hyphenation-pt-1.html auto-hyphenation-pt-1-ref.html
|
||||
== auto-hyphenation-sl-1.html auto-hyphenation-sl-1-ref.html
|
||||
== auto-hyphenation-uk-1.html auto-hyphenation-uk-1-ref.html
|
||||
|
|
Загрузка…
Ссылка в новой задаче