├── NEWS ├── AUTHORS ├── test ├── 4x6.pcf ├── 8x16.pcf ├── fonts.conf.in ├── out.expected └── Makefile.am ├── fc-lang ├── iso-3166.txt ├── he.orth ├── chr.orth ├── co.orth ├── yi.orth ├── fclang.tmpl.h ├── hy.orth ├── nb.orth ├── bh.orth ├── kok.orth ├── mr.orth ├── ne.orth ├── pes.orth ├── sa.orth ├── bho.orth ├── mai.orth ├── dz.orth ├── zh_sg.orth ├── sid.orth ├── byn.orth ├── ts.orth ├── ber_dz.orth ├── la.orth ├── sm.orth ├── to.orth ├── wal.orth ├── ny.orth ├── tl.orth ├── io.orth ├── th.orth ├── id.orth ├── eo.orth ├── ie.orth ├── zu.orth ├── el.orth ├── xh.orth ├── ia.orth ├── ku_iq.orth ├── sr.orth ├── gv.orth ├── sco.orth ├── ch.orth ├── ig.orth ├── kwm.orth ├── ng.orth ├── sq.orth ├── syr.orth ├── vo.orth ├── rw.orth ├── so.orth ├── yap.orth ├── om.orth ├── pap_aw.orth ├── ve.orth ├── bm.orth ├── hne.orth ├── sma.orth ├── smj.orth ├── haw.orth ├── bs.orth ├── ff.orth ├── rn.orth ├── sw.orth ├── ha.orth ├── ug.orth ├── kw.orth ├── mi.orth ├── su.orth ├── ms.orth ├── se.orth ├── hz.orth ├── ak.orth ├── en.orth ├── fat.orth ├── fur.orth ├── wo.orth ├── mg.orth ├── smn.orth ├── ti_et.orth ├── tn.orth ├── ml.orth ├── mo.orth ├── pl.orth ├── pa_pk.orth ├── vot.orth ├── am.orth ├── ht.orth ├── ss.orth ├── te.orth ├── az_ir.orth ├── lg.orth ├── af.orth ├── nr.orth ├── prs.orth ├── rm.orth ├── ro.orth ├── st.orth ├── kn.orth ├── my.orth ├── gu.orth ├── na.orth ├── qu.orth ├── uk.orth ├── ast.orth ├── mn_cn.orth ├── cu.orth ├── kj.orth ├── lv.orth ├── kab.orth ├── ki.orth ├── or.orth ├── wen.orth ├── jv.orth ├── kk.orth ├── ks.orth ├── nn.orth ├── lo.orth ├── mn_mn.orth ├── nso.orth ├── sc.orth ├── zh_mo.orth ├── bo.orth ├── gl.orth ├── gn.orth ├── lt.orth ├── hi.orth └── ho.orth ├── fontconfig └── Makefile.am ├── conf.d ├── 51-local.conf ├── 10-unhinted.conf ├── 10-autohint.conf ├── 10-no-sub-pixel.conf ├── 10-sub-pixel-bgr.conf ├── 10-sub-pixel-rgb.conf ├── 10-sub-pixel-vbgr.conf ├── 10-sub-pixel-vrgb.conf ├── 50-user.conf ├── 70-no-bitmaps.conf ├── 70-yes-bitmaps.conf ├── 65-khmer.conf ├── 80-delicious.conf ├── 49-sansserif.conf ├── 69-unifont.conf ├── 20-fix-globaladvance.conf ├── README ├── 30-urw-aliases.conf └── 20-unhint-small-vera.conf ├── config └── config-subst ├── fontconfig.pc.in ├── doc ├── check-missing-doc ├── version.sgml.in └── confdir.sgml.in ├── fontconfig-zip.in ├── src ├── makealias ├── fcftalias.h └── fcftaliastail.h ├── local.conf ├── Android.mk ├── COPYING ├── INSTALL ├── fc-arch └── fcarch.h ├── fc-case └── fccase.tmpl.h └── fc-glyphname └── fcglyphname.tmpl.h /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Keith Packard 2 | Patrick Lam 3 | 4 | -------------------------------------------------------------------------------- /test/4x6.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault/fontconfig/androidbuild/test/4x6.pcf -------------------------------------------------------------------------------- /test/8x16.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault/fontconfig/androidbuild/test/8x16.pcf -------------------------------------------------------------------------------- /fc-lang/iso-3166.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault/fontconfig/androidbuild/fc-lang/iso-3166.txt -------------------------------------------------------------------------------- /test/fonts.conf.in: -------------------------------------------------------------------------------- 1 | 2 | @FONTDIR@ 3 | @CACHEDIR@ 4 | 5 | -------------------------------------------------------------------------------- /test/out.expected: -------------------------------------------------------------------------------- 1 | Fixed:pixelsize=16 2 | Fixed:pixelsize=6 3 | = 4 | Fixed:pixelsize=16 5 | Fixed:pixelsize=6 6 | = 7 | Fixed:pixelsize=16 8 | Fixed:pixelsize=6 9 | -------------------------------------------------------------------------------- /fontconfig/Makefile.am: -------------------------------------------------------------------------------- 1 | fontconfigincludedir=$(includedir)/fontconfig 2 | 3 | fontconfig_headers= \ 4 | fontconfig.h \ 5 | fcfreetype.h \ 6 | fcprivate.h 7 | 8 | fontconfiginclude_HEADERS = $(fontconfig_headers) 9 | -------------------------------------------------------------------------------- /conf.d/51-local.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | local.conf 6 | 7 | -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- 1 | check_SCRIPTS=run-test.sh 2 | TESTS_ENVIRONMENT=src=${srcdir} sh 3 | TESTS=run-test.sh 4 | 5 | TESTDATA=4x6.pcf 8x16.pcf out.expected fonts.conf.in 6 | 7 | EXTRA_DIST=$(check_SCRIPTS) $(TESTDATA) 8 | 9 | CLEANFILES= 10 | -------------------------------------------------------------------------------- /conf.d/10-unhinted.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | false 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf.d/10-autohint.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | true 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf.d/10-no-sub-pixel.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | none 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf.d/10-sub-pixel-bgr.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | bgr 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf.d/10-sub-pixel-rgb.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | rgb 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf.d/10-sub-pixel-vbgr.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | vbgr 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf.d/10-sub-pixel-vrgb.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | vrgb 7 | 8 | 9 | -------------------------------------------------------------------------------- /conf.d/50-user.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ~/.fonts.conf.d 6 | ~/.fonts.conf 7 | 8 | -------------------------------------------------------------------------------- /config/config-subst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | script=config-subst.$$ 3 | trap "rm $script" 0 4 | rm -f $script 5 | for i in ${1+"$@"}; do 6 | var="`echo "$i" | sed 's/=.*$//'`" 7 | val="`echo "$i" | sed 's/^[^=]*=//'`" 8 | echo "s;@$var@;$val;" >> $script 9 | done 10 | sed -f $script 11 | -------------------------------------------------------------------------------- /conf.d/70-no-bitmaps.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | false 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /conf.d/70-yes-bitmaps.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | false 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /fontconfig.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: Fontconfig 7 | Description: Font configuration and customization library 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -lfontconfig 10 | Libs.private: @LIBXML2_LIBS@ @EXPAT_LIBS@ @FREETYPE_LIBS@ @ICONV_LIBS@ 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /conf.d/65-khmer.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | serif 6 | 7 | Khmer OS" 8 | 9 | 10 | 11 | sans-serif 12 | 13 | Khmer OS" 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /conf.d/80-delicious.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Delicious 10 | 11 | 12 | Heavy 13 | 14 | 15 | heavy 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /doc/check-missing-doc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | header=fontconfig-header 3 | doc=fontconfig-doc 4 | trap "rm $header $doc" 0 1 15 5 | top_srcdir=${top_srcdir-".."} 6 | ( 7 | cat $top_srcdir/fontconfig/*.h | grep '^Fc' | 8 | grep -v FcPublic | sed 's/[^a-zA-Z0-9].*//'; 9 | cat $top_srcdir/fontconfig/*.h | 10 | sed -n 's/#define \(Fc[a-zA-Z]*\)(.*$/\1/p') | 11 | sort -u > $header 12 | 13 | grep '@FUNC[+]*@' $top_srcdir/doc/*.fncs | 14 | awk '{print $2}' | 15 | sort -u > $doc 16 | 17 | if cmp $doc $header > /dev/null; then 18 | exit 0 19 | fi 20 | 21 | echo \ 22 | 'Library Export Documentation' 23 | diff -y $header $doc | grep '[<>]' 24 | exit 1 25 | -------------------------------------------------------------------------------- /conf.d/49-sansserif.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | sans-serif 10 | 11 | 12 | serif 13 | 14 | 15 | monospace 16 | 17 | 18 | sans-serif 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /fontconfig-zip.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Build distribution zipfiles for fontconfig on Win32. (This script 4 | # obviously needs to be run in Cygwin or similar.) Separate runtime 5 | # and developer zipfiles. 6 | 7 | ZIP=/tmp/fontconfig-@VERSION@.zip 8 | DEVZIP=/tmp/fontconfig-dev-@VERSION@.zip 9 | 10 | cd @prefix@ 11 | rm -f $ZIP 12 | zip $ZIP -@ < 2 | 3 | 4 | 5 | serif 6 | 7 | FreeSerif 8 | Code2000 9 | Code2001 10 | 11 | 12 | 13 | sans-serif 14 | 15 | FreeSans 16 | Arial Unicode MS 17 | Arial Unicode 18 | Code2000 19 | Code2001 20 | 21 | 22 | 23 | monospace 24 | 25 | FreeMono 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/makealias: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | SRCDIR=$1 3 | shift 4 | HEAD=$1 5 | shift 6 | TAIL=$1 7 | shift 8 | rm -f $HEAD $TAIL 9 | echo "#if HAVE_GNUC_ATTRIBUTE" >> $TAIL 10 | cat "$@" | grep '^Fc[^ ]* *(' | sed -e 's/ *(.*$//' | 11 | while read name; do 12 | case $name in 13 | FcCacheDir|FcCacheSubdir) 14 | ;; 15 | *) 16 | alias="IA__$name" 17 | hattr='__attribute((visibility("hidden")))' 18 | echo "extern __typeof ($name) $alias $hattr;" >> $HEAD 19 | echo "#define $name $alias" >> $HEAD 20 | grep -l '^'$name'[ (]' "$SRCDIR"/*.c | sed -n 1p | sed -e 's/^.*\/\([^.]*\)\.c/#ifdef __\1__/' >> $TAIL 21 | echo "#undef $name" >> $TAIL 22 | cattr='__attribute((alias("'$alias'"), visibility("default")))' 23 | echo "extern __typeof ($name) $name $cattr;" >> $TAIL 24 | echo "#endif" >> $TAIL 25 | ;; 26 | esac 27 | done 28 | echo "#endif" >> $TAIL 29 | -------------------------------------------------------------------------------- /local.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 14 | 17 | 18 | 19 | 20 | 21 | false 22 | 23 | 24 | 25 | 26 | 37 | 38 | -------------------------------------------------------------------------------- /src/fcftalias.h: -------------------------------------------------------------------------------- 1 | extern __typeof (FcFreeTypeCharIndex) IA__FcFreeTypeCharIndex __attribute((visibility("hidden"))); 2 | #define FcFreeTypeCharIndex IA__FcFreeTypeCharIndex 3 | extern __typeof (FcFreeTypeCharSetAndSpacing) IA__FcFreeTypeCharSetAndSpacing __attribute((visibility("hidden"))); 4 | #define FcFreeTypeCharSetAndSpacing IA__FcFreeTypeCharSetAndSpacing 5 | extern __typeof (FcFreeTypeCharSet) IA__FcFreeTypeCharSet __attribute((visibility("hidden"))); 6 | #define FcFreeTypeCharSet IA__FcFreeTypeCharSet 7 | extern __typeof (FcPatternGetFTFace) IA__FcPatternGetFTFace __attribute((visibility("hidden"))); 8 | #define FcPatternGetFTFace IA__FcPatternGetFTFace 9 | extern __typeof (FcPatternAddFTFace) IA__FcPatternAddFTFace __attribute((visibility("hidden"))); 10 | #define FcPatternAddFTFace IA__FcPatternAddFTFace 11 | extern __typeof (FcFreeTypeQueryFace) IA__FcFreeTypeQueryFace __attribute((visibility("hidden"))); 12 | #define FcFreeTypeQueryFace IA__FcFreeTypeQueryFace 13 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | 2 | LOCAL_PATH := $(call my-dir) 3 | 4 | include $(CLEAR_VARS) 5 | 6 | LOCAL_MODULE := fontconfig 7 | LOCAL_CFLAGS := -DFONTCONFIG_PATH=\"/sdcard/.fcconfig\" 8 | LOCAL_CFLAGS += -DFC_CACHEDIR=\"/sdcard/.fccache\" 9 | LOCAL_CFLAGS += -DFC_DEFAULT_FONTS=\"/system/fonts\" 10 | #LOCAL_STATIC_LIBRARIES := ft2 expat 11 | #LOCAL_LDLIBS := -lft2 -lexpat 12 | 13 | LOCAL_C_INCLUDES := \ 14 | $(LOCAL_PATH)/fontconfig \ 15 | $(LOCAL_PATH)/../freetype/include \ 16 | $(LOCAL_PATH)/../expat/lib 17 | 18 | LOCAL_SRC_FILES := \ 19 | src/fcatomic.c \ 20 | src/fcblanks.c \ 21 | src/fccache.c \ 22 | src/fccfg.c \ 23 | src/fccharset.c \ 24 | src/fcdbg.c \ 25 | src/fcdefault.c \ 26 | src/fcdir.c \ 27 | src/fcformat.c \ 28 | src/fcfreetype.c \ 29 | src/fcfs.c \ 30 | src/fcinit.c \ 31 | src/fclang.c \ 32 | src/fclist.c \ 33 | src/fcmatch.c \ 34 | src/fcmatrix.c \ 35 | src/fcname.c \ 36 | src/fcpat.c \ 37 | src/fcserialize.c \ 38 | src/fcstr.c \ 39 | src/fcxml.c \ 40 | src/ftglue.c 41 | 42 | -------------------------------------------------------------------------------- /conf.d/20-fix-globaladvance.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | GulimChe 11 | false 12 | 13 | 14 | 15 | DotumChe 16 | false 17 | 18 | 19 | 20 | BatangChe 21 | false 22 | 23 | 24 | 25 | GungsuhChe 26 | false 27 | 28 | 29 | -------------------------------------------------------------------------------- /conf.d/README: -------------------------------------------------------------------------------- 1 | conf.d/README 2 | 3 | Each file in this directory is a fontconfig configuration file. Fontconfig 4 | scans this directory, loading all files of the form [0-9][0-9]*.conf. 5 | These files are normally installed in ../conf.avail and then symlinked here, 6 | allowing them to be easily installed and then enabled/disabled by adjusting 7 | the symlinks. 8 | 9 | The files are loaded in numeric order, the structure of the configuration 10 | has led to the following conventions in usage: 11 | 12 | Files begining with: Contain: 13 | 14 | 00 through 09 Font directories 15 | 10 through 19 system rendering defaults (AA, etc) 16 | 20 through 29 font rendering options 17 | 30 through 39 family substitution 18 | 40 through 49 generic identification, map family->generic 19 | 50 through 59 alternate config file loading 20 | 60 through 69 generic aliases, map generic->family 21 | 70 through 79 select font (adjust which fonts are available) 22 | 80 through 89 match target="scan" (modify scanned patterns) 23 | 90 through 99 font synthesis 24 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | fontconfig/COPYING 2 | 3 | Copyright © 2001,2003 Keith Packard 4 | 5 | Permission to use, copy, modify, distribute, and sell this software and its 6 | documentation for any purpose is hereby granted without fee, provided that 7 | the above copyright notice appear in all copies and that both that 8 | copyright notice and this permission notice appear in supporting 9 | documentation, and that the name of Keith Packard not be used in 10 | advertising or publicity pertaining to distribution of the software without 11 | specific, written prior permission. Keith Packard makes no 12 | representations about the suitability of this software for any purpose. It 13 | is provided "as is" without express or implied warranty. 14 | 15 | THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 16 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 17 | EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 18 | CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 19 | DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 20 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 21 | PERFORMANCE OF THIS SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | Fontconfig is built with the traditional configure script: 2 | 3 | $ ./configure --sysconfdir=/etc --prefix=/usr --mandir=/usr/share/man 4 | 5 | This should generate valid Makefiles, then: 6 | 7 | $ make 8 | $ make install 9 | 10 | If you're going to package fontconfig for release, there are several 11 | important steps: 12 | 13 | 1. Create new version 14 | sh new-version.sh 2.xx.xx 15 | 16 | 2. rebuild the configuration files with autogen.sh 17 | sh autogen.sh --sysconfdir=/etc --prefix=/usr --mandir=/usr/share/man --localstatedir=/var 18 | 19 | 3. make distcheck (NB: won't work without docbook-utils -PL) 20 | 21 | 4. Copy ChangeLog-2.x.y and fontconfig-2.x.y.tar.gz to 22 | 23 | freedesktop.org:/srv/fontconfig.freedesktop.org/www/release 24 | 25 | 5. Update the Fontconfig Devel wiki page 26 | http://fontconfig.org/wiki/Devel 27 | 28 | 6. Update the fontconfig documentation 29 | 30 | scp -rp doc/fontconfig-user.html doc/fontconfig-devel fontconfig.org:/srv/fontconfig.freedesktop.org/www 31 | 32 | 7. Compute md5sums for release files: 33 | md5sum fontconfig-2.4.x.tar.gz ChangeLog-2.4.x 34 | 35 | 8. Post a note to fontconfig@fontconfig.org. Include the md5sums. 36 | gpg sign the message. 37 | 38 | -------------------------------------------------------------------------------- /src/fcftaliastail.h: -------------------------------------------------------------------------------- 1 | #if HAVE_GNUC_ATTRIBUTE 2 | #ifdef __fcfreetype__ 3 | #undef FcFreeTypeCharIndex 4 | extern __typeof (FcFreeTypeCharIndex) FcFreeTypeCharIndex __attribute((alias("IA__FcFreeTypeCharIndex"), visibility("default"))); 5 | #endif 6 | #ifdef __fcfreetype__ 7 | #undef FcFreeTypeCharSetAndSpacing 8 | extern __typeof (FcFreeTypeCharSetAndSpacing) FcFreeTypeCharSetAndSpacing __attribute((alias("IA__FcFreeTypeCharSetAndSpacing"), visibility("default"))); 9 | #endif 10 | #ifdef __fcfreetype__ 11 | #undef FcFreeTypeCharSet 12 | extern __typeof (FcFreeTypeCharSet) FcFreeTypeCharSet __attribute((alias("IA__FcFreeTypeCharSet"), visibility("default"))); 13 | #endif 14 | #ifdef __fcpat__ 15 | #undef FcPatternGetFTFace 16 | extern __typeof (FcPatternGetFTFace) FcPatternGetFTFace __attribute((alias("IA__FcPatternGetFTFace"), visibility("default"))); 17 | #endif 18 | #ifdef __fcpat__ 19 | #undef FcPatternAddFTFace 20 | extern __typeof (FcPatternAddFTFace) FcPatternAddFTFace __attribute((alias("IA__FcPatternAddFTFace"), visibility("default"))); 21 | #endif 22 | #ifdef __fcfreetype__ 23 | #undef FcFreeTypeQueryFace 24 | extern __typeof (FcFreeTypeQueryFace) FcFreeTypeQueryFace __attribute((alias("IA__FcFreeTypeQueryFace"), visibility("default"))); 25 | #endif 26 | #endif 27 | -------------------------------------------------------------------------------- /fc-arch/fcarch.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2006 Keith Packard 3 | * 4 | * Permission to use, copy, modify, distribute, and sell this software and its 5 | * documentation for any purpose is hereby granted without fee, provided that 6 | * the above copyright notice appear in all copies and that both that 7 | * copyright notice and this permission notice appear in supporting 8 | * documentation, and that the name of Keith Packard not be used in 9 | * advertising or publicity pertaining to distribution of the software without 10 | * specific, written prior permission. Keith Packard makes no 11 | * representations about the suitability of this software for any purpose. It 12 | * is provided "as is" without express or implied warranty. 13 | * 14 | * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 16 | * EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 18 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 19 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 20 | * PERFORMANCE OF THIS SOFTWARE. 21 | */ 22 | 23 | #define FC_ARCHITECTURE "arm" 24 | -------------------------------------------------------------------------------- /fc-lang/he.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/he.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Hebrew (HE) 25 | 05d0-05ea 26 | -------------------------------------------------------------------------------- /fc-lang/chr.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/chr.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Cherokee (chr) 25 | 13a0-13f4 26 | -------------------------------------------------------------------------------- /fc-lang/co.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/co.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Corsican (CO) 25 | include fr.orth 26 | -------------------------------------------------------------------------------- /fc-lang/yi.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/yi.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Yiddish (YI) 25 | include he.orth 26 | -------------------------------------------------------------------------------- /doc/version.sgml.in: -------------------------------------------------------------------------------- 1 | 24 | @VERSION@ 25 | -------------------------------------------------------------------------------- /fc-case/fccase.tmpl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * fontconfig/fc-case/fccase.tmpl.h 3 | * 4 | * Copyright © 2003 Keith Packard 5 | * 6 | * Permission to use, copy, modify, distribute, and sell this software and its 7 | * documentation for any purpose is hereby granted without fee, provided that 8 | * the above copyright notice appear in all copies and that both that 9 | * copyright notice and this permission notice appear in supporting 10 | * documentation, and that the name of Keith Packard not be used in 11 | * advertising or publicity pertaining to distribution of the software without 12 | * specific, written prior permission. Keith Packard makes no 13 | * representations about the suitability of this software for any purpose. It 14 | * is provided "as is" without express or implied warranty. 15 | * 16 | * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | * EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | * PERFORMANCE OF THIS SOFTWARE. 23 | */ 24 | 25 | @@@ 26 | -------------------------------------------------------------------------------- /fc-lang/fclang.tmpl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * fontconfig/fc-lang/fclang.tmpl.h 3 | * 4 | * Copyright © 2002 Keith Packard 5 | * 6 | * Permission to use, copy, modify, distribute, and sell this software and its 7 | * documentation for any purpose is hereby granted without fee, provided that 8 | * the above copyright notice appear in all copies and that both that 9 | * copyright notice and this permission notice appear in supporting 10 | * documentation, and that the name of Keith Packard not be used in 11 | * advertising or publicity pertaining to distribution of the software without 12 | * specific, written prior permission. Keith Packard makes no 13 | * representations about the suitability of this software for any purpose. It 14 | * is provided "as is" without express or implied warranty. 15 | * 16 | * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | * EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | * PERFORMANCE OF THIS SOFTWARE. 23 | */ 24 | 25 | @@@ 26 | -------------------------------------------------------------------------------- /fc-lang/hy.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/hy.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Armenian (HY) 25 | 0531-0556 26 | 0561-0587 27 | -------------------------------------------------------------------------------- /fc-lang/nb.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/nb.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Norwegian Bokmål (nb) 25 | include no.orth 26 | -------------------------------------------------------------------------------- /fc-lang/bh.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/bh.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Bihari (Devanagari script) (BH) 25 | include hi.orth 26 | -------------------------------------------------------------------------------- /fc-lang/kok.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/kok.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kokani (Devanagari script) (KOK) 25 | include hi.orth 26 | -------------------------------------------------------------------------------- /fc-lang/mr.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/mr.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Marathi (Devanagari script) (MR) 25 | include hi.orth 26 | -------------------------------------------------------------------------------- /fc-lang/ne.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ne.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Nepali (Devanagari script) (NE) 25 | include hi.orth 26 | -------------------------------------------------------------------------------- /fc-lang/pes.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/pes.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Western Farsi (pes) 25 | # 26 | include fa.orth 27 | -------------------------------------------------------------------------------- /fc-lang/sa.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/sa.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Sanskrit (Devanagari script) (SA) 25 | include hi.orth 26 | -------------------------------------------------------------------------------- /fc-lang/bho.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/bho.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Bhojpuri (Devanagari script) (BHO) 25 | include hi.orth 26 | -------------------------------------------------------------------------------- /fc-lang/mai.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/mai.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Maithili (Devanagari script) (MAI) 25 | include hi.orth 26 | -------------------------------------------------------------------------------- /fc-glyphname/fcglyphname.tmpl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * fontconfig/fc-glyphname/fcglyphname.tmpl.h 3 | * 4 | * Copyright © 2003 Keith Packard 5 | * 6 | * Permission to use, copy, modify, distribute, and sell this software and its 7 | * documentation for any purpose is hereby granted without fee, provided that 8 | * the above copyright notice appear in all copies and that both that 9 | * copyright notice and this permission notice appear in supporting 10 | * documentation, and that the name of Keith Packard not be used in 11 | * advertising or publicity pertaining to distribution of the software without 12 | * specific, written prior permission. Keith Packard makes no 13 | * representations about the suitability of this software for any purpose. It 14 | * is provided "as is" without express or implied warranty. 15 | * 16 | * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | * EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | * PERFORMANCE OF THIS SOFTWARE. 23 | */ 24 | 25 | @@@ 26 | -------------------------------------------------------------------------------- /fc-lang/dz.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/dz.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Dzongkha (DZ) 25 | # 26 | # Uses Tibetan script 27 | # 28 | include bo.orth 29 | -------------------------------------------------------------------------------- /conf.d/30-urw-aliases.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | Avant Garde 10 | URW Gothic L 11 | 12 | 13 | Bookman 14 | URW Bookman L 15 | 16 | 17 | New Century Schoolbook 18 | Century Schoolbook L 19 | 20 | 21 | Palatino 22 | URW Palladio L 23 | 24 | 25 | Zapf Chancery 26 | URW Chancery L 27 | 28 | 29 | Zapf Dingbats 30 | Dingbats 31 | 32 | 33 | 34 | Symbol 35 | 36 | 37 | Standard Symbols L 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /fc-lang/zh_sg.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/zh_sg.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Chinese in Singapore (ZH-SG) 25 | # 26 | # Just use GB2312 as for ZH-CN 27 | include zh_cn.orth 28 | -------------------------------------------------------------------------------- /fc-lang/sid.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/sid.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Sidamo (sid) 25 | # 26 | # Copying Tigrinya of Ethiopia, as does glibc 27 | include ti_et.orth 28 | -------------------------------------------------------------------------------- /doc/confdir.sgml.in: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | /etc/fonts 27 | -------------------------------------------------------------------------------- /fc-lang/byn.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/byn.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Blin/Bilin (byn) 25 | # 26 | # Copying Tigrinya of Eritrea, as does glibc 27 | include ti_er.orth 28 | -------------------------------------------------------------------------------- /fc-lang/ts.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ts.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Tsonga (TS) 25 | # 26 | # Orthography taken from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/ber_dz.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ber_dz.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Berber in Algeria (ber-DZ) 25 | # 26 | # Algerian Berber is usually Kabyle 27 | include kab.orth 28 | -------------------------------------------------------------------------------- /fc-lang/la.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/la.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Latin (LA) 25 | 0041-005a 26 | 0061-007a 27 | 0100-0101 28 | 0112-0113 29 | 012a-012d 30 | 014c-014f 31 | 016a-016d 32 | -------------------------------------------------------------------------------- /fc-lang/sm.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/sm.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Samoan (AF) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 02bb 31 | -------------------------------------------------------------------------------- /fc-lang/to.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/to.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Tonga (TO) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 02bb 31 | -------------------------------------------------------------------------------- /fc-lang/wal.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/wal.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Wolaitta/Wolaytta (wal) 25 | # 26 | # Copying Tigrinya of Ethiopia, as does glibc 27 | include ti_et.orth 28 | -------------------------------------------------------------------------------- /fc-lang/ny.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ny.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Chichewa (NY) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0174-0175 31 | -------------------------------------------------------------------------------- /fc-lang/tl.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/tl.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Tagalog (tl) 25 | # 26 | # Since Filipino is standardized Tagalog, we just include that 27 | include fil.orth 28 | -------------------------------------------------------------------------------- /conf.d/20-unhint-small-vera.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 13 | 14 | Bitstream Vera Sans 15 | 16 | 17 | 7.5 18 | 19 | 20 | false 21 | 22 | 23 | 24 | 25 | 26 | Bitstream Vera Serif 27 | 28 | 29 | 7.5 30 | 31 | 32 | false 33 | 34 | 35 | 36 | 37 | 38 | Bitstream Vera Sans Mono 39 | 40 | 41 | 7.5 42 | 43 | 44 | false 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /fc-lang/io.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/io.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Ido (IO) 25 | # 26 | # Orthography taken from http://www.homunculus.com/babel/aido.html 27 | # 28 | 0041-005a 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/th.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/th.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Thai (th) 25 | # 26 | 0e01-0e3a 27 | 0e3f-0e4e 28 | #0e4f # Punctuation 29 | #0e50-0e59 # Digits 30 | #0e5a-0e5b # Punctuation 31 | -------------------------------------------------------------------------------- /fc-lang/id.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/id.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Indonesian (ID) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c9 31 | 00e9 32 | -------------------------------------------------------------------------------- /fc-lang/eo.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/eo.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Esperanto (EO) 25 | 0041-005a 26 | 0061-007a 27 | 0108-0109 28 | 011c-011d 29 | 0124-0125 30 | 0134-0135 31 | 015c-015d 32 | 016c-016d 33 | -------------------------------------------------------------------------------- /fc-lang/ie.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ie.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Interlingue (IE) 25 | # 26 | # Orthography taken from http://www.kolumbus.fi/allkiv/itgr/itgrix.htm 27 | # 28 | 0041-005a 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/zu.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/zu.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Zulu (zu) 25 | # 26 | # Orthography taken from http://www.ideography.co.uk/library/pdf/charsets.pdf 27 | # 28 | 0041-005a 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/el.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/el.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Greek (EL) 25 | # 26 | # From vvas@hal.csd.auth.gr (Vasilis Vasaitis) 27 | # 28 | 0386 29 | 0388-038a 30 | 038c 31 | 038e-03a1 32 | 03a3-03ce 33 | -------------------------------------------------------------------------------- /fc-lang/xh.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/xh.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Xhosa (XH) 25 | # 26 | # Orthography taken from http://www.ideography.co.uk/library/pdf/charsets.pdf 27 | # 28 | 0041-005a 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/ia.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ia.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Interlingua (IA) 25 | # 26 | # Orthography taken from http://www.geocities.com/linguablau/spelling_main.html 27 | # 28 | 0041-005a 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/ku_iq.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ku_iq.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kurdish in Iraq (ku-IQ) 25 | # 26 | # Assuming Iraqi Kurdish uses the same orthography as Iranian Kurdish 27 | include ku_ir.orth 28 | -------------------------------------------------------------------------------- /fc-lang/sr.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/sr.orth 3 | # 4 | # Copyright © 2008 Danilo Šegan 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Serbian (SR) 25 | # 26 | 0402 27 | 0408-040b 28 | 040f 29 | 0410-0418 30 | 041a-0428 31 | 0430-0438 32 | 043a-0448 33 | 0452 34 | 0458-045b 35 | 045f 36 | -------------------------------------------------------------------------------- /fc-lang/gv.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/gv.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Manx Gaelic (GV) 25 | # 26 | # Orthography from http://www.evertype.com/alphabets/manx-gaelic.pdf 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c7 31 | 00e7 32 | -------------------------------------------------------------------------------- /fc-lang/sco.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/sco.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Scots (CU) 25 | # 26 | # Orthography from http://www.evertype.com/alphabets/scots.pdf 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 01b7 31 | 021c-021d 32 | 0292 33 | -------------------------------------------------------------------------------- /fc-lang/ch.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ch.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Chamorro (CH) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c2 31 | 00e2 32 | 00d1 33 | 00f1 34 | 00dc 35 | 00fc 36 | -------------------------------------------------------------------------------- /fc-lang/ig.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ig.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Igbo (ig) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 1eca 31 | 1ecb 32 | 1ecc 33 | 1ecd 34 | 1ee4 35 | 1ee5 36 | -------------------------------------------------------------------------------- /fc-lang/kwm.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/kwm.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kwambi (kwm) 25 | # 26 | # Considered a sister language/dialect to Kuanyama (kj) and Ndonga (ng). 27 | # We'll include Kuanyama. 28 | # 29 | include kj.orth 30 | -------------------------------------------------------------------------------- /fc-lang/ng.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ng.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Ndonga (ng) 25 | # 26 | # Considered a sister language/dialect to Kuanyama (kj) and Kwambi (kwm). 27 | # We'll include Kuanyama. 28 | # 29 | include kj.orth 30 | -------------------------------------------------------------------------------- /fc-lang/sq.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/sq.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Albanian (SQ) 25 | # 26 | # Sources: 27 | # www.evertype.com 28 | # www.eki.ee/letter 29 | # 30 | 0041-005a 31 | 0061-007a 32 | 00c7 33 | 00cb 34 | 00e7 35 | 00eb 36 | -------------------------------------------------------------------------------- /fc-lang/syr.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/syr.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Syriac (SYR) 25 | # 26 | # Coverage given by Emil Soleyman-Zomalan 27 | # 28 | 0710-072c # Syriac letters 29 | 0730-073f # Syriac points (vowels) 30 | -------------------------------------------------------------------------------- /fc-lang/vo.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/vo.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Volapük (VO) 25 | 0041-0050 26 | 0052-0056 27 | 0058-005a 28 | 0061-0070 29 | 0072-0076 30 | 0078-007a 31 | 00c4 32 | 00d6 33 | 00dc 34 | 00e4 35 | 00f6 36 | 00fc 37 | -------------------------------------------------------------------------------- /fc-lang/rw.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/rw.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kinyarwanda (rw) 25 | # 26 | # Sources: 27 | # http://www.omniglot.com/writing/kinyarwanda.htm 28 | # 29 | # Q and X are not used 30 | 0041-005A 31 | 0061-007A 32 | -------------------------------------------------------------------------------- /fc-lang/so.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/so.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Somali (SO) 25 | # 26 | # Orthography taken from http://www.ideography.co.uk/library/pdf/charsets.pdf 27 | # 28 | 0041-005a # Somali doesn't use p, v or z 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/yap.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/yap.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Yapese (YAP) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c4 31 | 00e4 32 | 00cb 33 | 00eb 34 | 00d6 35 | 00f6 36 | -------------------------------------------------------------------------------- /fc-lang/om.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/om.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Oromo or Galla (OM) 25 | # 26 | # Orthography taken from http://www.ideography.co.uk/library/pdf/charsets.pdf 27 | # 28 | 0041-005a # Oromo doesn't use v or z 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/pap_aw.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/pap_aw.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Papiamento in Aruba (pap-AW) 25 | # 26 | # Sources: studying online newspapers, random wikipedia pages 27 | # 28 | 0041-005A 29 | 0061-007A 30 | 00D1 31 | 00F1 32 | -------------------------------------------------------------------------------- /fc-lang/ve.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ve.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Venda (ve) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 1e12-1e13 31 | 1e3c-1e3d 32 | 1e44-1e45 33 | 1e4a-1e4b 34 | 1e70-1e71 35 | -------------------------------------------------------------------------------- /fc-lang/bm.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/bm.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Bambara (bm) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0190 31 | 025b 32 | 014a 33 | 014b 34 | 019d 35 | 0272 36 | 0186 37 | 0254 38 | -------------------------------------------------------------------------------- /fc-lang/hne.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/hne.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Chhattisgarhi (hne) 25 | # 26 | # The government of India considers this a dialect of Hindi: 27 | # including Hindi until further information is found. 28 | include hi.orth 29 | -------------------------------------------------------------------------------- /fc-lang/sma.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/sma.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # South Sámi (SMA) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c4 31 | 00e4 32 | 00c5 33 | 00e5 34 | 00d6 35 | 00f6 36 | 00cf 37 | 00ef 38 | -------------------------------------------------------------------------------- /fc-lang/smj.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/smj.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Lule Sámi (SMJ) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c1 31 | 00e1 32 | 00c4 33 | 00e4 34 | 00c5 35 | 00e5 36 | 00d1 37 | 00f1 38 | -------------------------------------------------------------------------------- /fc-lang/haw.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/haw.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Hawaiian (HAW) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0100-0101 31 | 0112-0113 32 | 012a-012b 33 | 014c-014d 34 | 016a-016b 35 | 02bb 36 | -------------------------------------------------------------------------------- /fc-lang/bs.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/bs.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Bosnian (BS) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0106 31 | 0107 32 | 010c 33 | 010d 34 | 0110 35 | 0111 36 | 0160 37 | 0161 38 | 017d 39 | 017e 40 | -------------------------------------------------------------------------------- /fc-lang/ff.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ff.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Fulah (Fula) (ff) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0181 31 | 0253 32 | 018a 33 | 0257 34 | 014a 35 | 014b 36 | 019d 37 | 0272 38 | 01b3-01b4 39 | -------------------------------------------------------------------------------- /fc-lang/rn.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/rn.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Rundi (rn) 25 | # 26 | # Sources: 27 | # http://www.omniglot.com/writing/kirundi.php 28 | # 29 | # Q and X are not used. An apostrophe-like letter also exists. 30 | # 31 | 0041-005A 32 | 0061-007A 33 | -------------------------------------------------------------------------------- /fc-lang/sw.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/sw.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Swahili (SW) 25 | # 26 | # Orthography taken from http://www.ideography.co.uk/library/pdf/charsets.pdf 27 | # 28 | 0041-005a # Swahili doesn't use f, q or x and uses r only for loan words 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/ha.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ha.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Hausa (HA) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0181 31 | 0253 32 | 018a 33 | 0257 34 | 0198-0199 35 | 01b3 # used in Niger 36 | 01b4 # used in Niger 37 | -------------------------------------------------------------------------------- /fc-lang/ug.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ug.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Uighur (UG) 25 | # 26 | # Uighur is written in a varient of Perso-Arabic, but I haven't found 27 | # any references which define the variations. So, for now we'll use Arabic 28 | # fonts 29 | include ar.orth 30 | -------------------------------------------------------------------------------- /fc-lang/kw.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/kw.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Cornish (KW) 25 | # 26 | # Orthography from http://www.evertype.com/alphabets/cornish.pdf 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0100-0101 31 | 0112-0113 32 | 012a-012b 33 | 014c-014d 34 | 016a-016b 35 | 0232-0233 36 | -------------------------------------------------------------------------------- /fc-lang/mi.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/mi.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Maori (MI) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0100-0101 31 | 0112-0113 32 | 012a-012b 33 | 014c-014d 34 | 016a-016b 35 | 1e34-1e35 # Ngai Tahu specific 36 | -------------------------------------------------------------------------------- /fc-lang/su.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/su.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Sundanese (su) 25 | # 26 | # Sources: 27 | # * http://en.wikipedia.org/wiki/Sundanese_language 28 | # * http://www.omniglot.com/writing/sundanese.php 29 | # 30 | 0041-005A 31 | 0061-007A 32 | 00C9 33 | 00E9 34 | -------------------------------------------------------------------------------- /fc-lang/ms.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ms.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Malay (ms) 25 | # 26 | # Sources: 27 | # http://www.omniglot.com/writing/malay.htm 28 | # * CLDR exemplar set for Malay: 29 | # http://unicode.org/cldr/data/common/main/ms.xml 30 | # 31 | 0041-005A 32 | 0061-007A 33 | -------------------------------------------------------------------------------- /fc-lang/se.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/se.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # North Sámi (SE) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c1 31 | 00e1 32 | 010c-010d 33 | 0110-0111 34 | 014a-014b 35 | 0160-0161 36 | 0166-0167 37 | 017d-017e 38 | -------------------------------------------------------------------------------- /fc-lang/hz.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/hz.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Herero (hz) 25 | # 26 | # Source: 27 | # * http://www.omniglot.com/writing/herero.php 28 | # 29 | # C, Q, and X are not used. 30 | # 31 | 0041-005A 32 | 0061-007A 33 | 032F # used under S and Z 34 | 1E12-1E13 35 | 1E4A-1E4B 36 | -------------------------------------------------------------------------------- /fc-lang/ak.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ak.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Akan (ak) 25 | # 26 | # According to ISO 639-3, Akan is a macro-language of Twi and Fanti. 27 | # Information on the web indicates Twi and Fanti now have a unified 28 | # orthography. We include Twi. 29 | # 30 | include tw.orth 31 | -------------------------------------------------------------------------------- /fc-lang/en.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/en.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # English (EN) 25 | 0041-005a 26 | 0061-007a 27 | 00c0 28 | 00c7-00cb 29 | 00cf 30 | 00d1 31 | 00d4 32 | 00d6 33 | 00e0 34 | 00e7-00eb 35 | 00ef 36 | 00f1 37 | 00f4 38 | 00f6 39 | #2018-2019 # single quotes 40 | #201c-201d # double quotes 41 | -------------------------------------------------------------------------------- /fc-lang/fat.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/fat.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Fanti (fat) 25 | # 26 | # According to ISO 639-3, Akan is a macro-language of Twi and Fanti. 27 | # Information on the web indicates Twi and Fanti now have a unified 28 | # orthography. We include Twi. 29 | # 30 | include tw.orth 31 | -------------------------------------------------------------------------------- /fc-lang/fur.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/fur.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Friulian (FUR) 25 | # 26 | # Orthography from http://www.evertype.com/alphabets/friulian.pdf 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c0-00c2 31 | 00c8 32 | 00cc 33 | 00d2 34 | 00d9 35 | 00e0-00e2 36 | 00e8 37 | 00ec 38 | 00f2 39 | 00f9 40 | -------------------------------------------------------------------------------- /fc-lang/wo.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/wo.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Wolof (WO) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c0 31 | 00e0 32 | 00c3 33 | 00e3 34 | 00c9 35 | 00e9 36 | 00cb 37 | 00eb 38 | 00d1 39 | 00f1 40 | 014a-014b 41 | 00d3 42 | 00f3 43 | -------------------------------------------------------------------------------- /fc-lang/mg.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/mg.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Malagasy (MG) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c1 31 | 00e1 32 | #e010 # LATIN CAPITAL LETTER N WITH DIAERESIS 33 | #e011 # LATIN SMALL LETTER N WITH DIAERESIS 34 | 00d4 35 | 00f4 36 | -------------------------------------------------------------------------------- /fc-lang/smn.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/smn.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Inari Sámi (SMN) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c1 31 | 00e1 32 | 00c2 33 | 00e2 34 | 00c4 35 | 00e4 36 | 010c-010d 37 | 0110-0111 38 | 014a-014b 39 | 0160-0161 40 | 017d-017e 41 | -------------------------------------------------------------------------------- /fc-lang/ti_et.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ti_et.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Ethiopian Tigrinya (TI-ET) Ethiopic Convention 25 | # 26 | # The same as Ethiopic 27 | # 28 | include ti_er.orth 29 | 1220-1226 # `se-`so 30 | 1280-1286 # `he-`ho 31 | 1288 # hWe 32 | 128a-128d # hWi-hW 33 | 1340-1346 # `Se-`So 34 | -------------------------------------------------------------------------------- /fc-lang/tn.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/tn.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Tswana (TN) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # and http://www.inference.phy.cam.ac.uk/dasher/download/alphabets/alphabet.Tswana.xml 28 | # 29 | 0041-005a 30 | 0061-007a 31 | 00ca 32 | 00ea 33 | 00d4 34 | 00f4 35 | 0160-0161 36 | -------------------------------------------------------------------------------- /fc-lang/ml.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ml.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Malayalam (ml) 25 | # 26 | # Taken from the Unicode coverage of this language 27 | # 28 | 0d02-0d03 29 | 0d05-0d0c 30 | 0d0e-0d10 31 | 0d12-0d28 32 | 0d2a-0d39 33 | 0d3e-0d43 34 | 0d46-0d48 35 | 0d4a-0d4d 36 | 0d57 37 | 0d60-0d61 38 | #0d66-0d6f # Digits 39 | -------------------------------------------------------------------------------- /fc-lang/mo.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/mo.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Moldavian (MO) 25 | 0041-005a 26 | 0061-007a 27 | 00c2 28 | 00ce 29 | 00e2 30 | 00ee 31 | 0102-0103 32 | 0218-021b # Comma below forms (preferred over cedilla) 33 | 0401 34 | 0410-044f 35 | 0451 36 | #2019-201a # single quotes 37 | #201d-201e # double quotes 38 | -------------------------------------------------------------------------------- /fc-lang/pl.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/pl.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Polish (PL) 25 | # 26 | # Sources: 27 | # www.evertype.com 28 | # www.eki.ee/letter 29 | # 30 | 0041-005a 31 | 0061-007a 32 | 00d3 33 | 00f3 34 | 0104-0105 35 | 0106-0107 36 | 0118-0119 37 | 0141-0142 38 | 0143-0144 39 | 015a-015b 40 | 0179-017a 41 | 017b-017c 42 | -------------------------------------------------------------------------------- /fc-lang/pa_pk.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/pa_pk.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Panjabi/Punjabi in Pakistan (pa-PK) 25 | # 26 | # This file is kept for compatiblity for glibc: According to ISO 639-3, the 27 | # proper code for Pakistani Panjabi is 'lah'. See the file 'lah.orth' for 28 | # more information. 29 | include lah.orth 30 | -------------------------------------------------------------------------------- /fc-lang/vot.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/vot.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Orthography from http://www.everytype.com/alphabets/votic.pdf 25 | # 26 | # Votic (VOT) 27 | # 28 | # Sources: 29 | # www.evertype.com 30 | # 31 | 0041-005a 32 | 0061-007a 33 | 00c4 34 | 00d6 35 | 00dc 36 | 00e4 37 | 00f6 38 | 00fc 39 | 0160-0161 40 | 017d-017e 41 | -------------------------------------------------------------------------------- /fc-lang/am.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/am.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Amharic (AM) 25 | # 26 | # The same as Ethiopic 27 | # 28 | include gez.orth 29 | 1238-123f # xe-xWa 30 | 1268-126e # ve-vo 31 | 1278-127f # ce-cWa 32 | 1298-129f # Ne-NWa 33 | 12a8 # ea 34 | 12e0-12e8 # Ze-ZWa 35 | 1300-1307 # je-jWa 36 | 1328-132f # Ce-CWa 37 | -------------------------------------------------------------------------------- /fc-lang/ht.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ht.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Haitian/Haitian Creole (ht) 25 | # 26 | # Sources: 27 | # * http://www.omniglot.com/writing/haitiancreole.htm 28 | # * http://www.lecorde.com/creole/kreyol/index.php?page=Pronunciation 29 | # 30 | 0041-005A 31 | 0061-007A 32 | 00C8 33 | 00D2 34 | 00E8 35 | 00F2 36 | -------------------------------------------------------------------------------- /fc-lang/ss.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ss.orth 3 | # 4 | # Copyright © 2007 Dwayne Bailey and Translate.org.za 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Dwayne Bailey or Translate.org.za not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Dwayne Bailey and Translate.org.za makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # DWAYNE BAILEY AND TRANSLATE.ORG.ZA DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL DWAYNE BAILEY OR TRANSLATE.ORG.ZA BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Swati (SS) 25 | # 26 | # Orthography taken from http://www.inference.phy.cam.ac.uk/dasher/download/alphabets/alphabet.Swati.xml 27 | # 28 | 0041-005a 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/te.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/te.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Telugu (te) 25 | # 26 | # Taken from the Unicode coverage of this language 27 | # 28 | 0c01-0c03 29 | 0c05-0c0c 30 | 0c0e-0c10 31 | 0c12-0c28 32 | 0c2a-0c33 33 | 0c35-0c39 34 | 0c3e-0c44 35 | 0c46-0c48 36 | 0c4a-0c4d 37 | 0c55-0c56 38 | 0c60-0c61 39 | #0c66-0c6f # Digits 40 | -------------------------------------------------------------------------------- /fc-lang/az_ir.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/az_ir.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Azerbaijani in Iran (AZ-IR) 25 | # 26 | # Data from Roozbeh Pournader 27 | # 28 | # Iran's Azerbaijani uses Persian letters plus an obligatory HAMZA ABOVE 29 | # (only used over FARSI YEH). 30 | # 31 | include fa.orth 32 | 0654 # ARABIC HAMZA ABOVE 33 | -------------------------------------------------------------------------------- /fc-lang/lg.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/lg.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Ganda (lg) 25 | # 26 | # Sources: 27 | # * http://www.buganda.com/luganda.htm 28 | # * http://www.omniglot.com/writing/ganda.php 29 | # * http://sumale.vjf.cnrs.fr/phono/AfficheTableauOrtho2N.php?choixLangue=luganda 30 | # 31 | 0041-005A 32 | 0061-007A 33 | 014A-014B 34 | -------------------------------------------------------------------------------- /fc-lang/af.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/af.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Afrikaans (AF) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c8 31 | 00e8 32 | 00c9 33 | 00e9 34 | 00ca 35 | 00ea 36 | 00cb 37 | 00eb 38 | 00ce 39 | 00ee 40 | 00cf 41 | 00ef 42 | 00d4 43 | 00f4 44 | 00db 45 | 00fb 46 | 0149 47 | -------------------------------------------------------------------------------- /fc-lang/nr.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/nr.orth 3 | # 4 | # Copyright © 2007 Dwayne Bailey and Translate.org.za 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Dwayne Bailey or Translate.org.za not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Dwayne Bailey and Translate.org.za makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # DWAYNE BAILEY AND TRANSLATE.ORG.ZA DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL DWAYNE BAILEY OR TRANSLATE.ORG.ZA BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Ndebele, South (NR) 25 | # 26 | # Orthography taken from http://www.inference.phy.cam.ac.uk/dasher/download/alphabets/alphabet.Ndebele.xml 27 | # 28 | 0041-005a 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/prs.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/prs.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Dari/Eastern Farsi (prs) 25 | # 26 | # We assume that Afghan Persian uses the same orthography as Iranian 27 | # Persian, although the actual orthography is probably less strict than that 28 | # of the Iranian Academy of Persian Language and Literature. 29 | include fa.orth 30 | -------------------------------------------------------------------------------- /fc-lang/rm.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/rm.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Rhaeto-Romance (Romansch) (RM) 25 | # 26 | # Sources: 27 | # www.evertype.com 28 | # www.eki.ee/letter 29 | # 30 | 0041-005a 31 | 0061-007a 32 | 00c0 33 | 00c8 34 | 00c9 35 | 00cc 36 | 00ce 37 | 00d2 38 | 00d9 39 | 00e0 40 | 00e8 41 | 00e9 42 | 00ec 43 | 00ee 44 | 00f2 45 | 00f9 46 | -------------------------------------------------------------------------------- /fc-lang/ro.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ro.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Romanian (RO) 25 | # 26 | # Sources: 27 | # www.eki.ee/letter 28 | # 29 | 0041-005a 30 | 0061-007a 31 | 00c2 32 | 00ce 33 | 00e2 34 | 00ee 35 | 0102-0103 36 | 0218-021b # comma-below forms (preferred over cedilla) 37 | #2019-201a # single quotes 38 | #201d-201e # double quotes 39 | -------------------------------------------------------------------------------- /fc-lang/st.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/st.orth 3 | # 4 | # Copyright © 2007 Dwayne Bailey and Translate.org.za 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Dwayne Bailey or Translate.org.za not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Dwayne Bailey and Translate.org.za makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # DWAYNE BAILEY AND TRANSLATE.ORG.ZA DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL DWAYNE BAILEY OR TRANSLATE.ORG.ZA BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Sotho, Southern (ST) 25 | # 26 | # Orthography taken from http://www.inference.phy.cam.ac.uk/dasher/download/alphabets/alphabet.Sesotho.xml 27 | # 28 | 0041-005a 29 | 0061-007a 30 | -------------------------------------------------------------------------------- /fc-lang/kn.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/kn.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kannada (kn) 25 | # 26 | # Taken from the Unicode coverage of this language 27 | # 28 | 0c82-0c83 29 | 0c85-0c8c 30 | 0c8e-0c90 31 | 0c92-0ca8 32 | 0caa-0cb3 33 | 0cb5-0cb9 34 | 0cbe-0cc4 35 | 0cc6-0cc8 36 | 0cca-0ccd 37 | 0cd5-0cd6 38 | 0cde 39 | 0ce0-0ce1 40 | #0ce6-0cef # Digits 41 | -------------------------------------------------------------------------------- /fc-lang/my.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/my.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Burmese (Myanmar) (MY) 25 | # 26 | # Orthography from Unicode range (U+1000-U+1059) 27 | # 28 | # Consonants 29 | 1000-1020 30 | # Independent vowels 31 | 1021 32 | 1023-1027 33 | 1029-102a 34 | # Dependent vowel signs 35 | 102c-1032 36 | # Pali and Sanskrit extensions 37 | #1050-1059 38 | -------------------------------------------------------------------------------- /fc-lang/gu.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/gu.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Gujarati (gu) 25 | # 26 | # Taken from the Unicode coverage of this language 27 | # 28 | 0a81-0a83 29 | 0a85-0a8b 30 | 0a8d 31 | 0a8f-0a91 32 | 0a93-0aa8 33 | 0aaa-0ab0 34 | 0ab2-0ab3 35 | 0ab5-0ab9 36 | 0abc-0ac5 37 | 0ac7-0ac9 38 | 0acb-0acd 39 | 0ad0 40 | 0ae0 41 | #0ae6-0aef # Digits 42 | -------------------------------------------------------------------------------- /fc-lang/na.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/na.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Nauru (na) 25 | # 26 | # Sources: 27 | # * http://en.wikipedia.org/wiki/Nauruan_language 28 | # * http://www.geonames.de/alphmq.html 29 | # 30 | # V and X are not used. 31 | # 32 | 0041-005A 33 | 0061-007A 34 | 00C3 35 | 00D1 36 | 00D5 37 | 00E3 38 | 00F1 39 | 00F5 40 | 0168-0169 41 | -------------------------------------------------------------------------------- /fc-lang/qu.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/qu.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Quechua (qu) 25 | # 26 | # Sources: 27 | # * http://en.wikipedia.org/wiki/Quechua_alphabet 28 | # * http://www.omniglot.com/writing/quechua.htm 29 | # 30 | # Some basic Latin letters are not used, based on dialect 31 | # 32 | 0041-005A 33 | 0061-007A 34 | 00D1 35 | 00F1 36 | 02C8 37 | -------------------------------------------------------------------------------- /fc-lang/uk.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/uk.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Ukrainian (UK) 25 | # 26 | # Sources: 27 | # www.evertype.com 28 | # www.eki.ee/letter 29 | # 30 | #00ab 31 | #00bb 32 | #0401 # evertype.com 33 | 0404 34 | 0406 35 | 0407 36 | 0410-044f 37 | #0451 # evertype.com 38 | 0454 39 | 0456 40 | 0457 41 | 0490 42 | 0491 43 | #2039-203a # angle quotes 44 | -------------------------------------------------------------------------------- /fc-lang/ast.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ast.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Orthography from http://www.evertype.com/alphabets/asturian.pdf 25 | # 26 | # Asturian/Bable/Leonese/Asturleonese (ast) 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c1 31 | 00c9 32 | 00cd 33 | 00d1 34 | 00d3 35 | 00da 36 | 00dc 37 | 00e1 38 | 00e9 39 | 00ed 40 | 00f1 41 | 00f3 42 | 00fa 43 | 00fc 44 | -------------------------------------------------------------------------------- /fc-lang/mn_cn.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/mn_cn.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Mongolian in China (mn-CN) 25 | # 26 | # Taken from the Unicode coverage of this language 27 | # 28 | # Basic letters 29 | 1820-1842 30 | # Todo letters 31 | 1843-185c 32 | # Sibe letters 33 | 185d-1872 34 | # Manchu letters 35 | 1873-1877 36 | # Extensions for Sanskrit and Tibetan 37 | 1880-18a9 38 | -------------------------------------------------------------------------------- /fc-lang/cu.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/cu.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Old Church Slavonic (CU) 25 | # 26 | # Orthography from http://www.evertype.com/alphabets/old-church-slavonic.pdf 27 | # 28 | 0401-0402 29 | 0405-0406 30 | 0408 31 | 040b 32 | 040d 33 | 040f-0418 34 | 041a-042c 35 | 042e-044c 36 | 044e-0450 37 | 0452 38 | 0455-456 39 | 0458 40 | 045b 41 | 045d 42 | 045f-0479 43 | -------------------------------------------------------------------------------- /fc-lang/kj.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/kj.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kuanyama/Kwanyama (kj) 25 | # 26 | # Sources: 27 | # * http://www.omniglot.com/writing/oshiwambo.php 28 | # * http://www.panafril10n.org/wikidoc/pmwiki.php/PanAfrLoc/Oshiwambo 29 | # * http://wingolog.org/pub/hai-ti/hai-ti.pdf 30 | # 31 | # C, Q, and X are not used. 32 | # 33 | 0041-005A 34 | 0061-007A 35 | -------------------------------------------------------------------------------- /fc-lang/lv.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/lv.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Latvian (LV) 25 | # 26 | # Sources: 27 | # www.evertype.com 28 | # www.eki.ee/letter 29 | # 30 | 0041-005a 31 | 0061-007a 32 | 0100-0101 33 | 010c-010d 34 | 0112-0113 35 | 0122-0123 36 | 012a-012b 37 | 0136-0137 38 | 013b-013c 39 | 0145-0146 40 | 014c-014d 41 | 0156-0157 42 | 0160-0161 43 | 016a-016b 44 | 017d-017e 45 | -------------------------------------------------------------------------------- /fc-lang/kab.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/kab.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kabyle (kab) 25 | # 26 | # Sources: 27 | # http://www.omniglot.com/writing/kabyle.php 28 | # http://www.geonames.de/alphkl.html 29 | # 30 | 0041-005A 31 | 0061-007A 32 | 010C-010D 33 | 0190 34 | 0194 35 | 01E6-01E7 36 | 025B 37 | 0263 38 | 1E0C-1E0D 39 | 1E24-1E25 40 | 1E62-1E63 41 | 1E6C-1E6D 42 | 1E92-1E93 43 | -------------------------------------------------------------------------------- /fc-lang/ki.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ki.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kikuyu (KI) 25 | # 26 | # Orthography taken from http://www.ideography.co.uk/library/pdf/charsets.pdf 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0128 # LATIN CAPITAL LETTER I WITH TILDE 31 | 0129 # LATIN SMALL LETTER I WITH TILDE 32 | 0168 # LATIN CAPITAL LETTER U WITH TILDE 33 | 0169 # LATIN SMALL LETTER U WITH TILDE 34 | -------------------------------------------------------------------------------- /fc-lang/or.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/or.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Oriya (or) 25 | # 26 | # Taken from the Unicode coverage of this language 27 | # 28 | 0b01-0b03 29 | 0b05-0b0c 30 | 0b0f-0b10 31 | 0b13-0b28 32 | 0b2a-0b30 33 | 0b32-0b33 34 | 0b36-0b39 35 | 0b3c-0b43 36 | 0b47-0b48 37 | 0b4b-0b4d 38 | 0b56-0b57 39 | 0b5c-0b5d 40 | 0b5f-0b61 41 | #0b66-0b6f # Digits 42 | #0b70 # Symbol 43 | -------------------------------------------------------------------------------- /fc-lang/wen.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/wen.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Sorbian languages (lower and upper) (WEN) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 0106-0107 31 | 010c-010d 32 | 011a-011b 33 | 0141-0142 34 | 0143-0144 35 | 00d3 36 | 00f3 37 | 0154-0155 38 | 0158-0159 39 | 015a-015b 40 | 0160-0161 41 | 0179-017a 42 | 017d-017e 43 | -------------------------------------------------------------------------------- /fc-lang/jv.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/jv.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Javanese (jv) 25 | # 26 | # Sources: 27 | # http://www.omniglot.com/writing/javanese.htm 28 | # http://en.wikipedia.org/wiki/Javanese_language 29 | # 30 | # The historical Javanese script is not the main script anymore. Latin has 31 | # replaced it. 32 | # 33 | 0041-005A 34 | 0061-007A 35 | 00C8-00C9 36 | 00E8-00E9 37 | -------------------------------------------------------------------------------- /fc-lang/kk.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/kk.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kazakh (KK) 25 | # 26 | # Sources: 27 | # www.evertype.com 28 | # www.eki.ee/letter 29 | # 30 | #00ab 31 | #00bb 32 | #0401 33 | #0406 34 | 0410-044f 35 | #0451 36 | 0456 37 | 0492-0493 38 | 049a-049b 39 | 04a2-04a3 40 | #04ae-04af 41 | #04b0-04b1 42 | 04ba-04bb 43 | 04d8-04d9 44 | 04e8-04e9 45 | #2039-203a # angle quotes 46 | -------------------------------------------------------------------------------- /fc-lang/ks.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ks.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Kashmiri (ks) 25 | # 26 | # Kashmiri is written in Arabic in both India and Pakistan. The problem is, 27 | # Unicode 5.1 does not contain all the letters required in the orthography, 28 | # including Wavy Hamza Below and the Alef Maksura With Ring Below. We'll 29 | # just include Urdu for now. 30 | include ur.orth 31 | -------------------------------------------------------------------------------- /fc-lang/nn.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/nn.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Norwegian Nynorsk (NN) 25 | 0041-005a 26 | 0061-007a 27 | #00ab # double angle quotes 28 | #00bb # double angle quotes 29 | 00c0 30 | 00c4-00c6 31 | 00c9-00ca 32 | 00d2-00d4 33 | 00d6 34 | 00d8 35 | 00dc 36 | 00e0 37 | 00e4-00e6 38 | 00e9-00ea 39 | 00f2-00f4 40 | 00f6 41 | 00f8 42 | 00fc 43 | #2039-203a # single quotes 44 | -------------------------------------------------------------------------------- /fc-lang/lo.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/lo.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Lao (lo) 25 | # 26 | # Taken from the Unicode coverage of this language 27 | # 28 | 0e81-0e82 29 | 0e84 30 | 0e87-0e88 31 | 0e8a 32 | 0e8d 33 | 0e94-0e97 34 | 0e99-0e9f 35 | 0ea1-0ea3 36 | 0ea5 37 | 0ea7 38 | 0eaa-0eab 39 | 0ead-0eb9 40 | 0ebb-0ebd 41 | 0ec0-0ec4 42 | 0ec6 43 | 0ec8-0ecd 44 | #0ed0-0ed9 # Digits 45 | 0edc-0edd 46 | -------------------------------------------------------------------------------- /fc-lang/mn_mn.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/mn_mn.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Mongolian in Mongolia (mn-MN) 25 | # 26 | # Sources: 27 | # http://www.omniglot.com/writing/mongolian.htm 28 | # http://www.viahistoria.com/SilverHorde/main.html?research/MongolScripts.html 29 | # http://unicode.org/cldr/data/common/main/mn.xml 30 | # 31 | 0401 32 | 0410-044F 33 | 0451 34 | 04AE-04AF 35 | 04E8-04E9 36 | -------------------------------------------------------------------------------- /fc-lang/nso.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/nso.orth 3 | # 4 | # Copyright © 2007 Dwayne Bailey and Translate.org.za 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Dwayne Bailey or Translate.org.za not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Dwayne Bailey and Translate.org.za makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # DWAYNE BAILEY AND TRANSLATE.ORG.ZA DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL DWAYNE BAILEY OR TRANSLATE.ORG.ZA BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Northern Sotho (NSO) 25 | # 26 | # Orthography from http://www.inference.phy.cam.ac.uk/dasher/download/alphabets/alphabet.Tswana.xml 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00ca 31 | 00ea 32 | 00d4 33 | 00f4 34 | 0160-0161 35 | -------------------------------------------------------------------------------- /fc-lang/sc.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/sc.orth 3 | # 4 | # Copyright © 2009 Roozbeh Pournader 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of the author(s) not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. The author(s) make(s) no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIM(S) ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Sardinian (sc) 25 | # 26 | # Sources: 27 | # * http://www.omniglot.com/writing/sardinian.htm 28 | # * http://www.limbasarda.it/lingui/ling_alfa.html 29 | # 30 | # K, W, X, and Y are not used. 31 | 0041-005A 32 | 0061-007A 33 | 00C0 34 | 00C8 35 | 00CC 36 | 00D2 37 | 00D9 38 | 00E0 39 | 00E8 40 | 00EC 41 | 00F2 42 | 00F9 43 | -------------------------------------------------------------------------------- /fc-lang/zh_mo.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/zh_mo.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Chinese in Macau (ZH-MO) 25 | # 26 | # from Abel Cheung: 27 | # 28 | # a majority of Macau people speak Cantonese too, and also uses additional 29 | # traditional Chinese chars from Hong Kong (there are already some place names 30 | # that can't be represented in just chars used in Taiwan). 31 | # 32 | include zh_hk.orth 33 | -------------------------------------------------------------------------------- /fc-lang/bo.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/bo.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Tibetan (BO) 25 | # 26 | # Taken from the Unicode coverage of this language 27 | # 28 | 0f40-0f47 29 | 0f49-0f69 30 | 0f71-0f76 31 | 0f78 32 | 0f7a-0f7d 33 | 0f80-0f81 34 | 0f90-0f97 35 | 0f99-0fb9 36 | # Fixed-form subjoined consonants 37 | # These characters are used only for transliteration and transcription. 38 | #0fba-0fbc 39 | 40 | -------------------------------------------------------------------------------- /fc-lang/gl.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/gl.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Galician (GL) 25 | # 26 | # Sources: 27 | # www.evertype.com 28 | # www.eki.ee/letter 29 | # 30 | 0041-005a 31 | 0061-007a 32 | #00a1 33 | #00ab 34 | #00bb 35 | #00bf 36 | 00c1 37 | 00c9 38 | 00cd 39 | 00d1 40 | 00d3 41 | 00da 42 | 00dc 43 | 00e1 44 | 00e9 45 | 00ed 46 | 00f1 47 | 00f3 48 | 00fa 49 | 00fc 50 | #2019-201a # single qutoes 51 | -------------------------------------------------------------------------------- /fc-lang/gn.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/gn.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Guaraní (GN) 25 | # 26 | # Orthography from http://www.eki.ee/letter 27 | # 28 | 0041-005a 29 | 0061-007a 30 | 00c1 31 | 00e1 32 | 00e3 33 | 00c9 34 | 00e9 35 | 1ebd 36 | #e005 # LATIN SMALL LETTER G WITH TILDE (no UCS) 37 | 00cd 38 | 00ed 39 | 0129 40 | 00d1 41 | 00f1 42 | 00d3 43 | 00f3 44 | 00f5 45 | 00da 46 | 00fa 47 | 0169 48 | 1ef9 49 | -------------------------------------------------------------------------------- /fc-lang/lt.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/lt.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Lithuanian (LT) 25 | # 26 | # Sources: 27 | # www.evertype.com 28 | # www.eki.ee/letter 29 | # 30 | 0041-005a 31 | 0061-007a 32 | 0104-0105 33 | 010c-010d 34 | #0106-0109 35 | 0116-0117 36 | 0118-0119 37 | 012e-012f 38 | 0160-0161 39 | 016a-016b 40 | 0172-0173 41 | 017d-017e 42 | #2019-201a # single quotes 43 | #201d-201e # double quotes 44 | -------------------------------------------------------------------------------- /fc-lang/hi.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/hi.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Hindi (Devanagari script) (HI) 25 | # 26 | # From Unicode coverage for Devanagari 27 | # 28 | 0905-0914 # Independent vowels 29 | 0915-0939 # Consonants 30 | 093f-094c # Dependent vowel signs 31 | 094d # virama 32 | #0958-095f # Additional consonants 33 | #0960-0965 # Generic additions 34 | #0966-096f # Digits 35 | #0970 # Abbreviation sign 36 | -------------------------------------------------------------------------------- /fc-lang/ho.orth: -------------------------------------------------------------------------------- 1 | # 2 | # fontconfig/fc-lang/ho.orth 3 | # 4 | # Copyright © 2002 Keith Packard 5 | # 6 | # Permission to use, copy, modify, distribute, and sell this software and its 7 | # documentation for any purpose is hereby granted without fee, provided that 8 | # the above copyright notice appear in all copies and that both that 9 | # copyright notice and this permission notice appear in supporting 10 | # documentation, and that the name of Keith Packard not be used in 11 | # advertising or publicity pertaining to distribution of the software without 12 | # specific, written prior permission. Keith Packard makes no 13 | # representations about the suitability of this software for any purpose. It 14 | # is provided "as is" without express or implied warranty. 15 | # 16 | # THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 17 | # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 18 | # EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 19 | # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 20 | # DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 21 | # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 22 | # PERFORMANCE OF THIS SOFTWARE. 23 | # 24 | # Hiri Motu (HO) 25 | # 26 | # I found one sample of Hiri Motu text, a translation of the first part of 27 | # Genesis at 28 | # http://rosettaproject.org:8080/live/search/showpages?ethnocode=POM&doctype=gen&version=1&scale=six 29 | # 30 | # It appears to use only ASCII glyphs, so we'll go with that for now 31 | # 32 | 0041-005a 33 | 0061-007a 34 | --------------------------------------------------------------------------------