Browse Source

Merge pull request #4 from libris/az-missing-chars

Add missing mappings for Azerbaijani in Cyrillic script -- Thanks!
Matt Miller 11 months ago
parent
commit
93b02996f7
1 changed files with 17 additions and 0 deletions
  1. 17 0
      scriptshifter/tables/data/azerbaijani.yml

+ 17 - 0
scriptshifter/tables/data/azerbaijani.yml

@@ -7,14 +7,21 @@ roman_to_script:
   map:
     "A\u0306": "\u04D8"
     "a\u0306": "\u04D9"
+    "G": "\u0413"
+    "g": "\u0433"
     # Included to handle typos
     "GH": "\u0492"
     "Gh": "\u0492"
     "gh": "\u0493"
     # Included to handle typos
     "gH": "\u0493"
+    "ZH": "\u0416"
+    "Zh": "\u0416"
+    "zh": "\u0436"
     "I\u0310": "\u0408"
+    "I": "\u0418"
     "i\u0310": "\u0458"
+    "i": "\u0438"
     "G\u0307": "\u049C"
     "g\u0307": "\u049D"
     "O\u0307": "\u04E8"
@@ -25,13 +32,21 @@ roman_to_script:
     "h\u0307": "\u04BB"
     "J": "\u04B8"
     "j": "\u04B9"
+    "Y": "\u042B"
+    "y": "\u044B"
 
 script_to_roman:
   map:
     "\u04D8": "A\u0306"
     "\u04D9": "a\u0306"
+    "\u0413": "G"
+    "\u0433": "g"
     "\u0492": "Gh"
     "\u0493": "gh"
+    "\u0416": "Zh"
+    "\u0436": "zh"
+    "\u0418": "I"
+    "\u0438": "i"
     "\u0408": "I\u0310"
     "\u0458": "i\u0310"
     "\u049C": "G\u0307"
@@ -44,3 +59,5 @@ script_to_roman:
     "\u04BB": "h\u0307"
     "\u04B8": "J"
     "\u04B9": "j"
+    "\u042B": "Y"
+    "\u044B": "y"