diff options
| author | aarne <aarne@chalmers.se> | 2017-06-14 12:32:17 +0000 |
|---|---|---|
| committer | aarne <aarne@chalmers.se> | 2017-06-14 12:32:17 +0000 |
| commit | d51cbb0f1a5b313c3ee4ab1897be0bb1e04886f7 (patch) | |
| tree | 53b5852804d51fdd3bf61b5e0abc9a9ec5d75297 /src/compiler/GF/Text | |
| parent | ecbe747cbcea774e2739c2c745174b2a854b9a7c (diff) | |
added Arabic question mark to arabic and persian transliterations, as well as the zero-width non-joiner U+200C to persian"
Diffstat (limited to 'src/compiler/GF/Text')
| -rw-r--r-- | src/compiler/GF/Text/Transliterations.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler/GF/Text/Transliterations.hs b/src/compiler/GF/Text/Transliterations.hs index 4c706bf73..7645fc158 100644 --- a/src/compiler/GF/Text/Transliterations.hs +++ b/src/compiler/GF/Text/Transliterations.hs @@ -174,9 +174,9 @@ transArabic = mkTransliteration "Arabic" allTrans allCodes where "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 - "A* " -- 0671 (used by AED) + "A* q?" -- 0671 (used by AED) allCodes = [0x0621..0x062f] ++ [0x0630..0x063a] ++ - [0x0641..0x064f] ++ [0x0650..0x0657] ++ [0x0671] + [0x0641..0x064f] ++ [0x0650..0x0657] ++ [0x0671,0x061f] transPersian :: Transliteration transPersian = (mkTransliteration "Persian/Farsi" allTrans allCodes) @@ -186,10 +186,10 @@ transPersian = (mkTransliteration "Persian/Farsi" allTrans allCodes) "W r z s C S D T Z c G " ++ -- 0630 - 063a " f q - l m n h v - y. a. u. i. a u " ++ -- 0640 - 064f "i v2 o a: V+ V- i: a+ " ++ -- 0650 - 0657 - "p c^ J k g y " + "p c^ J k g y q? Z0" allCodes = [0x0621..0x062f] ++ [0x0630..0x063a] ++ [0x0641..0x064f] ++ [0x0650..0x0657] ++ - [0x067e,0x0686,0x0698,0x06a9,0x06af,0x06cc] + [0x067e,0x0686,0x0698,0x06a9,0x06af,0x06cc,0x061f,0x200c] transNepali :: Transliteration transNepali = mkTransliteration "Nepali" allTrans allCodes where |
