Skip to content

Commit

Permalink
Fixing Marathi mapping where "aani" was not working
Browse files Browse the repository at this point in the history
  • Loading branch information
navaneeth committed Jun 15, 2015
1 parent 10f08d6 commit a9ac7de
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions schemes/mr
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ visarga "H" => "\u{0903}"

vowels "a" => "अ",
["aa", "A"] => ["आ", "ा"],
["AAA", ["aaa"]] => ["आऽऽ", "ाऽऽ"],
["AAA", ["aaa", "a"]] => ["आऽऽ", "ाऽऽ"],
["ae", ["a"]] => "ॲ",
["i",["e"]] => ["इ", "ि"],
["ee", "I", "ii"] => ["ई", "ी"],
Expand All @@ -51,7 +51,7 @@ vowels "a" => "अ",
["ou", "au", ["ow"]] => ["औ", "ौ"],
["aw", ["ou", "au"]] => ["ऑ", "ॉ"],
["N", "M"] => ["अं" ,"ं"],
"aH" => ["अः", "ः"]
"aH" => ["अः", "ः"]

list :can_make_cluster do
consonants "k" => "क",
Expand All @@ -61,11 +61,11 @@ consonants "k" => "क",
"g" => "ग",
["G"] => ["\u{095A}", "ग#{$nukta}"],
["gh",["g"]] => "घ",
"ng" => "ङ",
"ng" => "ङ",

"ch" => "च",
["Ch", ["ch"]] => "छ",
"j" => "ज",
"j" => "ज",
"z" => "ज#{$nukta}",
["jh", ["j"]] => "झ",
"nj" => "ञ",
Expand All @@ -76,13 +76,13 @@ consonants "k" => "क",
["dd", ["D"]] => ["\u{095C}", "ड#{$nukta}"],
"Dh" => "ढ",
["DH", ["Dh"]] => ["\u{095D}", "ढ#{$nukta}"],
"NN" => "ण",
["NN", ["n"]] => "ण",

"t" => "त",
["th", ["t"]] => "थ",
"d" => "द",
["dh", ["d"]] => "ध",
"n" => "न",
"n" => "न",
["NNN", ["n"]] => ["ऩ", "न#{$nukta}"],

["p"] => "प",
Expand Down Expand Up @@ -113,7 +113,7 @@ can_make_cluster.each do |c1|
consonants ["#{c1.pattern}#{c2.pattern}"] => ["#{c1.value1}#{$virama}#{c2.value1}"]
else
consonants [["#{c1.pattern}#{c2.pattern}"]] => ["#{c1.value1}#{$virama}#{c2.value1}"]
end
end
end
end

Expand Down Expand Up @@ -283,7 +283,7 @@ consonants(combine get_consonants, ["*a"] => ["*1"])

symbols ["om"] => "ॐ"

symbols({:priority => :low}, ["aan", "aam"] => $an)
symbols({:priority => :low}, [["aan", "aam"]] => $an)

numbers "0" => "०",
"1" => "१",
Expand Down

0 comments on commit a9ac7de

Please sign in to comment.