summaryrefslogtreecommitdiff
path: root/src/GF/Text
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2009-12-08 07:32:46 +0000
committeraarne <aarne@chalmers.se>2009-12-08 07:32:46 +0000
commit0bafd45952a980d6875131ad630de43af123a73d (patch)
tree2d26e5a03de231da90328d5f730eb921f76e3186 /src/GF/Text
parent5fd6227314306d2a18af020334dd28c6539d954e (diff)
making Arabic minimal compile; strange chars remain
Diffstat (limited to 'src/GF/Text')
-rw-r--r--src/GF/Text/Transliterations.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/GF/Text/Transliterations.hs b/src/GF/Text/Transliterations.hs
index 1e7cc8492..e2747f506 100644
--- a/src/GF/Text/Transliterations.hs
+++ b/src/GF/Text/Transliterations.hs
@@ -130,9 +130,10 @@ transArabic = mkTransliteration "Arabic" allTrans allCodes where
" V A: A? w? A- y? A b t. t v g H K d " ++ -- 0621 - 062f
"W r z s C S D T Z c G " ++ -- 0630 - 063a
" f q k l m n h w y. y a. u. i. a u " ++ -- 0641 - 064f
- "i v2 o a: V+ V- i: a+" -- 0650 - 0657
+ "i v2 o a: V+ V- i: a+ " ++ -- 0650 - 0657
+ "A* " -- 0671 (used by AED)
allCodes = [0x0621..0x062f] ++ [0x0630..0x063a] ++
- [0x0641..0x064f] ++ [0x0650..0x0657]
+ [0x0641..0x064f] ++ [0x0650..0x0657] ++ [0x0671]
transPersian :: Transliteration
transPersian = (mkTransliteration "Persian/Farsi" allTrans allCodes)