fontconfig: Branch 'main' - 2 commits

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



 fc-lang/Makefile.am     |   29 ++++++++++++++++++++++++++++-
 fc-lang/agr.orth        |   31 +++++++++++++++++++++++++++++++
 fc-lang/ayc.orth        |   35 +++++++++++++++++++++++++++++++++++
 fc-lang/bem.orth        |   31 +++++++++++++++++++++++++++++++
 fc-lang/ckb.orth        |   32 ++++++++++++++++++++++++++++++++
 fc-lang/cmn.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/dsb.orth        |   37 +++++++++++++++++++++++++++++++++++++
 fc-lang/fc-lang.py      |    4 ++--
 fc-lang/hak.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/lij.orth        |   38 ++++++++++++++++++++++++++++++++++++++
 fc-lang/lzh.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/meson.build     |   27 +++++++++++++++++++++++++++
 fc-lang/mfe.orth        |   31 +++++++++++++++++++++++++++++++
 fc-lang/mhr.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/miq.orth        |   39 +++++++++++++++++++++++++++++++++++++++
 fc-lang/mjw.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/mnw.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/nan.orth        |   31 +++++++++++++++++++++++++++++++
 fc-lang/nhn.orth        |   31 +++++++++++++++++++++++++++++++
 fc-lang/niu.orth        |   35 +++++++++++++++++++++++++++++++++++
 fc-lang/rif.orth        |   43 +++++++++++++++++++++++++++++++++++++++++++
 fc-lang/sgs.orth        |   36 ++++++++++++++++++++++++++++++++++++
 fc-lang/shn.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/szl.orth        |   42 ++++++++++++++++++++++++++++++++++++++++++
 fc-lang/tcy.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/tpi.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/unm.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/wae.orth        |   29 +++++++++++++++++++++++++++++
 fc-lang/yue.orth        |   30 ++++++++++++++++++++++++++++++
 fc-lang/yuw.orth        |   29 +++++++++++++++++++++++++++++
 fontconfig/fontconfig.h |    2 +-
 31 files changed, 928 insertions(+), 4 deletions(-)

New commits:
commit ce9cbe36d81efaafb9e60b6899665b370e872e81
Author: Mike FABIAN <mfabian@xxxxxxxxxx>
Date:   Mon Dec 5 11:07:59 2022 +0100

    Change index type to 16 bit and bump cache version to 9
    
    The number of .orth files is now > 256, therefore the index type needs to be 16 bit.

diff --git a/fc-lang/fc-lang.py b/fc-lang/fc-lang.py
index cc1dea8..8facea6 100755
--- a/fc-lang/fc-lang.py
+++ b/fc-lang/fc-lang.py
@@ -251,7 +251,7 @@ if __name__=='__main__':
     print('#define fcLangCharSetIndices (fcLangData.langIndices)')
     print('#define fcLangCharSetIndicesInv (fcLangData.langIndicesInv)')
 
-    assert len(sets) < 256 # FIXME: need to change index type to 16-bit below then
+    assert len(sets) < 65536 # FIXME: need to change index type to 32-bit below then
 
     print('''
 static const struct {{
@@ -262,7 +262,7 @@ static const struct {{
     {}       langIndices[{}];
     {}       langIndicesInv[{}];
 }} fcLangData = {{'''.format(len(sets), len(leaves), tn, tn,
-                             'FcChar8 ', len(sets), 'FcChar8 ', len(sets)))
+                             'FcChar16 ', len(sets), 'FcChar16 ', len(sets)))
 
     # Dump sets
     print('{')
diff --git a/fontconfig/fontconfig.h b/fontconfig/fontconfig.h
index ac5a0b0..15c1b95 100644
--- a/fontconfig/fontconfig.h
+++ b/fontconfig/fontconfig.h
@@ -67,7 +67,7 @@ typedef int		FcBool;
  * it means multiple copies of the font information.
  */
 
-#define FC_CACHE_VERSION_NUMBER	8
+#define FC_CACHE_VERSION_NUMBER	9
 #define _FC_STRINGIFY_(s)    	#s
 #define _FC_STRINGIFY(s)    	_FC_STRINGIFY_(s)
 #define FC_CACHE_VERSION    	_FC_STRINGIFY(FC_CACHE_VERSION_NUMBER)
commit 9097ada0ef262e83b9507eebf731e6e47eb9ec96
Author: Mike FABIAN <mfabian@xxxxxxxxxx>
Date:   Fri Dec 2 12:36:55 2022 +0100

    Add {agr,ayc,bem,ckb,cmn,dsb,hak,lij,lzh,mfe,mhr,miq,mjw,mnw,nan,nhn,niu,rif,sgs,shn,szl,tcy,tpi,unm,wae,yue,yuw}.orth
    
    Resolves: https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/341
    
    Also move {anp,bhb,hif,mag,raj,the}.orth which were recently added
    to the proper insert position in fc-lang/{Makefile.am,meson.build}

diff --git a/fc-lang/Makefile.am b/fc-lang/Makefile.am
index bbb9e43..bd099b7 100644
--- a/fc-lang/Makefile.am
+++ b/fc-lang/Makefile.am
@@ -288,7 +288,34 @@ ORTH = \
 	hif.orth \
 	mag.orth \
 	raj.orth \
-	the.orth
+	the.orth \
+	agr.orth \
+	ayc.orth \
+	bem.orth \
+	ckb.orth \
+	cmn.orth \
+	dsb.orth \
+	hak.orth \
+	lij.orth \
+	lzh.orth \
+	mfe.orth \
+	mhr.orth \
+	miq.orth \
+	mjw.orth \
+	mnw.orth \
+	nan.orth \
+	nhn.orth \
+	niu.orth \
+	rif.orth \
+	sgs.orth \
+	shn.orth \
+	szl.orth \
+	tcy.orth \
+	tpi.orth \
+	unm.orth \
+	wae.orth \
+	yue.orth \
+	yuw.orth
 #	^-------------- Add new orth files here
 
 BUILT_SOURCES += $(top_builddir)/conf.d/35-lang-normalize.conf
diff --git a/fc-lang/agr.orth b/fc-lang/agr.orth
new file mode 100644
index 0000000..02427ff
--- /dev/null
+++ b/fc-lang/agr.orth
@@ -0,0 +1,31 @@
+#
+# fontconfig/fc-lang/agr.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Aguaruna (Latin) (anp) Endonym: Awajún
+#
+# See:
+#  https://en.wikipedia.org/wiki/Aguaruna_language
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/agr_PE
+0041-005a
+0061-007a
+00fa # ú LATIN SMALL LETTER U WITH ACUTE
diff --git a/fc-lang/ayc.orth b/fc-lang/ayc.orth
new file mode 100644
index 0000000..03c6a17
--- /dev/null
+++ b/fc-lang/ayc.orth
@@ -0,0 +1,35 @@
+#
+# fontconfig/fc-lang/ayc.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Aymara (Latin) (ayc)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Aymara_language
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/ayc_PE
+0041-005a
+0061-007a
+# Long vowels are indicated in the spelling with a diaeresis in writing: ä, ï, ü
+00e4 # ä LATIN SMALL LETTER A WITH DIAERESIS
+00ef # ï LATIN SMALL LETTER I WITH DIAERESIS
+00fc # ü LATIN SMALL LETTER U WITH DIAERESIS
+00f1 # ñ LATIN SMALL LETTER N WITH TILDE
\ No newline at end of file
diff --git a/fc-lang/bem.orth b/fc-lang/bem.orth
new file mode 100644
index 0000000..225f8b8
--- /dev/null
+++ b/fc-lang/bem.orth
@@ -0,0 +1,31 @@
+#
+# fontconfig/fc-lang/bem.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Bemba (Latin) (bem)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Bemba_language
+#  https://github.com/unicode-org/cldr/blob/main/common/main/bem.xml
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/bem_ZM
+0041-005a
+0061-007a
diff --git a/fc-lang/ckb.orth b/fc-lang/ckb.orth
new file mode 100644
index 0000000..d8b590a
--- /dev/null
+++ b/fc-lang/ckb.orth
@@ -0,0 +1,32 @@
+#
+# fontconfig/fc-lang/ckb.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Central Kurdish (ckb)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Sorani
+#  https://en.wikipedia.org/wiki/Kurdish_alphabets#Sorani_alphabet
+#  https://github.com/unicode-org/cldr/blob/main/common/main/ckb.xml
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/ckb_IQ
+# Assuming central Kurdish uses the same orthography as Iranian Kurdish
+include ku_ir.orth
diff --git a/fc-lang/cmn.orth b/fc-lang/cmn.orth
new file mode 100644
index 0000000..71253fa
--- /dev/null
+++ b/fc-lang/cmn.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/cmn.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Mandarin Chinese (cmn)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Mandarin_Chinese
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/cmn_TW
+include zh_tw.orth
diff --git a/fc-lang/dsb.orth b/fc-lang/dsb.orth
new file mode 100644
index 0000000..08e0c9b
--- /dev/null
+++ b/fc-lang/dsb.orth
@@ -0,0 +1,37 @@
+#
+# fontconfig/fc-lang/dsb.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Lower Sorbian (dsb)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Lower_Sorbian_language
+#  https://en.wikipedia.org/wiki/Sorbian_alphabet
+#
+# “The Sorbian alphabet is based on the ISO basic Latin alphabet but
+#  uses diacritics such as the acute accent and the caron, making it
+#  similar to the Czech and Polish alphabets. (This mixture is also
+#  found in the Belarusian Latin alphabet.) The standard character
+#  encoding for the Sorbian alphabet is ISO 8859-2 (Latin-2).”
+#
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/dsb_DE
+include cs.orth
diff --git a/fc-lang/hak.orth b/fc-lang/hak.orth
new file mode 100644
index 0000000..b38f8b9
--- /dev/null
+++ b/fc-lang/hak.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/hak.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Hakka Chinese (hak)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Hakka_Chinese
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/hak_TW
+include zh_tw.orth
diff --git a/fc-lang/lij.orth b/fc-lang/lij.orth
new file mode 100644
index 0000000..cc9b4e1
--- /dev/null
+++ b/fc-lang/lij.orth
@@ -0,0 +1,38 @@
+#
+# fontconfig/fc-lang/lij.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Ligurian (lij)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Lower_Sorbian_language
+#  https://en.wikipedia.org/wiki/Sorbian_alphabet'
+#  https://github.com/unicode-org/cldr/blob/main/common/main/lij.xml
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/lij_IT
+include it.orth
+00e2 # â LATIN SMALL LETTER A WITH CIRCUMFLEX
+00e4 # ä LATIN SMALL LETTER A WITH DIAERESIS
+00e6 # æ LATIN SMALL LETTER AE
+00e7 # ç LATIN SMALL LETTER C WITH CEDILLA
+00f1 # ñ LATIN SMALL LETTER N WITH TILDE
+
+
diff --git a/fc-lang/lzh.orth b/fc-lang/lzh.orth
new file mode 100644
index 0000000..5cd2bfe
--- /dev/null
+++ b/fc-lang/lzh.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/lzh.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Literary Chinese (lzh)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Classical_Chinese
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/lzh_TW
+include zh_tw.orth
diff --git a/fc-lang/meson.build b/fc-lang/meson.build
index 6b05b3d..42e9969 100644
--- a/fc-lang/meson.build
+++ b/fc-lang/meson.build
@@ -252,6 +252,33 @@ orth_files = [
   'mag.orth',
   'raj.orth',
   'the.orth',
+  'agr.orth',
+  'ayc.orth',
+  'bem.orth',
+  'ckb.orth',
+  'cmn.orth',
+  'dsb.orth',
+  'hak.orth',
+  'lij.orth',
+  'lzh.orth',
+  'mfe.orth',
+  'mhr.orth',
+  'miq.orth',
+  'mjw.orth',
+  'mnw.orth',
+  'nan.orth',
+  'nhn.orth',
+  'niu.orth',
+  'rif.orth',
+  'sgs.orth',
+  'shn.orth',
+  'szl.orth',
+  'tcy.orth',
+  'tpi.orth',
+  'unm.orth',
+  'wae.orth',
+  'yue.orth',
+  'yuw.orth',
 ]
 
 fclang_h = custom_target('fclang.h',
diff --git a/fc-lang/mfe.orth b/fc-lang/mfe.orth
new file mode 100644
index 0000000..50feba6
--- /dev/null
+++ b/fc-lang/mfe.orth
@@ -0,0 +1,31 @@
+#
+# fontconfig/fc-lang/mfe.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Mauritian Creole (mfe)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Mauritian_Creole#Orthography
+#  https://github.com/unicode-org/cldr/blob/main/common/main/mfe.xml
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/mfe_MU
+include fr.orth
+
diff --git a/fc-lang/mhr.orth b/fc-lang/mhr.orth
new file mode 100644
index 0000000..71094da
--- /dev/null
+++ b/fc-lang/mhr.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/mhr.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Meadow Mari (mhr)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Meadow_Mari_language
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/mhr_RU
+include ru.orth
diff --git a/fc-lang/miq.orth b/fc-lang/miq.orth
new file mode 100644
index 0000000..014cd64
--- /dev/null
+++ b/fc-lang/miq.orth
@@ -0,0 +1,39 @@
+#
+# fontconfig/fc-lang/miq.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Miskito (miq)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Miskito_language#Orthography_and_phonology
+#
+# “There is still much controversy about Miskito orthography and it
+#  cannot be considered settled, even with printed Miskito grammars,
+#  Bible translations, and other texts.”
+#
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/miq_NI
+include es.orth
+00e3 # ã LATIN SMALL LETTER A WITH TILDE
+1ebd # ẽ LATIN SMALL LETTER E WITH TILDE
+0129 # ĩ LATIN SMALL LETTER I WITH TILDE
+00f5 # õ LATIN SMALL LETTER O WITH TILDE
+0169 # ũ LATIN SMALL LETTER U WITH TILDE
diff --git a/fc-lang/mjw.orth b/fc-lang/mjw.orth
new file mode 100644
index 0000000..b0d5c3e
--- /dev/null
+++ b/fc-lang/mjw.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/mjw.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Karbi (mjw)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Karbi_language
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/mjw_IN
+include en.orth
diff --git a/fc-lang/mnw.orth b/fc-lang/mnw.orth
new file mode 100644
index 0000000..6d0b270
--- /dev/null
+++ b/fc-lang/mnw.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/mnw.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Mon (mnw)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Mon_language
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/mnw_MM
+include my.orth
diff --git a/fc-lang/nan.orth b/fc-lang/nan.orth
new file mode 100644
index 0000000..e710ae4
--- /dev/null
+++ b/fc-lang/nan.orth
@@ -0,0 +1,31 @@
+#
+# fontconfig/fc-lang/nan.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Min Nan Chinese (nan)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Southern_Min
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/nan_TW
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/nan_TW@latin
+include zh_tw.orth
+include en.orth
diff --git a/fc-lang/nhn.orth b/fc-lang/nhn.orth
new file mode 100644
index 0000000..7cef425
--- /dev/null
+++ b/fc-lang/nhn.orth
@@ -0,0 +1,31 @@
+#
+# fontconfig/fc-lang/nhn.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Tlaxcala-Puebla Nahuatl (nhn) Endonym: Tlahco nāhuatlahtōlli
+#
+# See:
+#  https://en.wikipedia.org/wiki/Tlaxcala%E2%80%93Puebla_Nahuatl
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/nhn_MX
+include es.orth
+0101 # ā LATIN SMALL LETTER A WITH MACRON
+014d # ō LATIN SMALL LETTER O WITH MACRON
diff --git a/fc-lang/niu.orth b/fc-lang/niu.orth
new file mode 100644
index 0000000..9efa546
--- /dev/null
+++ b/fc-lang/niu.orth
@@ -0,0 +1,35 @@
+#
+# fontconfig/fc-lang/niu.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Niuean (niu)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Niuean_language#Orthography
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/niu_NU
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/niu_NZ
+include en.orth
+0101 # ā LATIN SMALL LETTER A WITH MACRON
+0113 # ē LATIN SMALL LETTER E WITH MACRON
+012b # ī LATIN SMALL LETTER I WITH MACRON
+014d # ō LATIN SMALL LETTER O WITH MACRON
+016b # ū LATIN SMALL LETTER U WITH MACRON
diff --git a/fc-lang/rif.orth b/fc-lang/rif.orth
new file mode 100644
index 0000000..42061f7
--- /dev/null
+++ b/fc-lang/rif.orth
@@ -0,0 +1,43 @@
+#
+# fontconfig/fc-lang/rif.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Riffian (rif)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Tarifit
+#  https://en.wikipedia.org/wiki/Berber_Latin_alphabet
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/rif_MA
+include en.orth
+010d # č LATIN SMALL LETTER C WITH CARON
+1e0d # ḍ LATIN SMALL LETTER D WITH DOT BELOW
+025b # ɛ LATIN SMALL LETTER OPEN E
+01e7 # ǧ LATIN SMALL LETTER G WITH CARON
+0263 # ɣ LATIN SMALL LETTER GAMMA
+1e25 # ḥ LATIN SMALL LETTER H WITH DOT BELOW
+0159 # ř LATIN SMALL LETTER R WITH CARON
+1e5b # ṛ LATIN SMALL LETTER R WITH DOT BELOW
+1e63 # ṣ LATIN SMALL LETTER S WITH DOT BELOW
+1e6d # ṭ LATIN SMALL LETTER T WITH DOT BELOW
+1e93 # ẓ LATIN SMALL LETTER Z WITH DOT BELOW
+
+
diff --git a/fc-lang/sgs.orth b/fc-lang/sgs.orth
new file mode 100644
index 0000000..03f73e1
--- /dev/null
+++ b/fc-lang/sgs.orth
@@ -0,0 +1,36 @@
+#
+# fontconfig/fc-lang/sgs.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Samogitian (sgs)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Samogitian_language#Writing_system
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/sgs_LT
+include lt.orth
+0101 # ā LATIN SMALL LETTER A WITH MACRON
+0113 # ē LATIN SMALL LETTER E WITH MACRON
+014d # ō LATIN SMALL LETTER O WITH MACRON
+012b # ī LATIN SMALL LETTER I WITH MACRON
+0117 # ė LATIN SMALL LETTER E WITH DOT ABOVE
+0304 # ̄  COMBINING MACRON
+00f5 # õ LATIN SMALL LETTER O WITH TILDE
diff --git a/fc-lang/shn.orth b/fc-lang/shn.orth
new file mode 100644
index 0000000..1754265
--- /dev/null
+++ b/fc-lang/shn.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/shn.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Shan (shn)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Shan_language
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/shn_MM
+include my.orth
diff --git a/fc-lang/szl.orth b/fc-lang/szl.orth
new file mode 100644
index 0000000..f01fe55
--- /dev/null
+++ b/fc-lang/szl.orth
@@ -0,0 +1,42 @@
+#
+# fontconfig/fc-lang/szl.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Silesian (szl)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Silesian_language
+#  https://en.wikipedia.org/wiki/Silesian_language#Writing_system
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/szl_PL
+include pl.orth
+00c3 # Ã LATIN CAPITAL LETTER A WITH TILDE
+0106 # Ć LATIN CAPITAL LETTER C WITH ACUTE
+0141 # Ł LATIN CAPITAL LETTER L WITH STROKE
+0143 # Ń LATIN CAPITAL LETTER N WITH ACUTE
+014e # Ŏ LATIN CAPITAL LETTER O WITH BREVE
+014c # Ō LATIN CAPITAL LETTER O WITH MACRON
+00d4 # Ô LATIN CAPITAL LETTER O WITH CIRCUMFLEX
+00d5 # Õ LATIN CAPITAL LETTER O WITH TILDE
+015a # Ś LATIN CAPITAL LETTER S WITH ACUTE
+016e # Ů LATIN CAPITAL LETTER U WITH RING ABOVE
+0179 # Ź LATIN CAPITAL LETTER Z WITH ACUTE
+017b # Ż LATIN CAPITAL LETTER Z WITH DOT ABOVE
diff --git a/fc-lang/tcy.orth b/fc-lang/tcy.orth
new file mode 100644
index 0000000..36bc6dc
--- /dev/null
+++ b/fc-lang/tcy.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/tcy.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Tulu (tcy)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Tulu_language#Writing_system
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/tcy_IN
+include kn.orth
diff --git a/fc-lang/tpi.orth b/fc-lang/tpi.orth
new file mode 100644
index 0000000..784c60c
--- /dev/null
+++ b/fc-lang/tpi.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/tpi.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Tok Pisin (tpi)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Tok_Pisin#Alphabet
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/tpi_PG
+include en.orth
diff --git a/fc-lang/unm.orth b/fc-lang/unm.orth
new file mode 100644
index 0000000..5aa4467
--- /dev/null
+++ b/fc-lang/unm.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/unm.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Unami language (unm)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Unami_language
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/unm_US
+include en.orth
diff --git a/fc-lang/wae.orth b/fc-lang/wae.orth
new file mode 100644
index 0000000..29f766f
--- /dev/null
+++ b/fc-lang/wae.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/wae.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Walser German (wae)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Walser_German#Phonology
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/wae_CH
+include de.orth
diff --git a/fc-lang/yue.orth b/fc-lang/yue.orth
new file mode 100644
index 0000000..b4d2468
--- /dev/null
+++ b/fc-lang/yue.orth
@@ -0,0 +1,30 @@
+#
+# fontconfig/fc-lang/yue.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Yue Chinese, Cantonese (yue)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Cantonese
+#  https://en.wikipedia.org/wiki/Yue_Chinese
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/yue_HK
+include zh_hk.orth
diff --git a/fc-lang/yuw.orth b/fc-lang/yuw.orth
new file mode 100644
index 0000000..6b70932
--- /dev/null
+++ b/fc-lang/yuw.orth
@@ -0,0 +1,29 @@
+#
+# fontconfig/fc-lang/yuw.orth
+#
+# Copyright © 2022 Mike FABIAN
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of the author(s) not be used in
+# advertising or publicity pertaining to distribution of the software without
+# specific, written prior permission.  The authors make no
+# representations about the suitability of this software for any purpose.  It
+# is provided "as is" without express or implied warranty.
+#
+# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
+#
+# Yau (yuw)
+#
+# See:
+#  https://en.wikipedia.org/wiki/Yau_language_(Trans%E2%80%93New_Guinea)
+#  https://sourceware.org/git/?p=glibc.git;a=blob_plain;f=localedata/locales/yuw_PG
+include en.orth



[Index of Archives]     [Fedora Fonts]     [Fedora Users]     [Fedora Cloud]     [Kernel]     [Fedora Packaging]     [Fedora Desktop]     [PAM]     [Gimp Graphics Editor]     [Yosemite News]

  Powered by Linux