Module:anui-pron: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 59: Line 59:
{"(" .. glottalic .. ")([" .. front_vowel .. "])",
{"(" .. glottalic .. ")([" .. front_vowel .. "])",
function(s1, s2)
function(s1, s2)
return same(s1, s2) and s1 .. "ː˦" or modal_to_oral[s1] .. modal_to_oral[s2] .. "˦"
return same(s1, s2) and s1 .. "ː˦" or s1 .. modal_to_glottal[s2] .. "˦"
end
end
},
},
{"(" .. glottalic .. ")([" .. back_vowel .. "])",
{"(" .. glottalic .. ")([" .. back_vowel .. "])",
function(s1, s2)
function(s1, s2)
return same(s1, s2) and s1 .. "ː˨" or modal_to_oral[s1] .. modal_to_oral[s2] .. "˨"
return same(s1, s2) and s1 .. "ː˨" or s1 .. modal_to_glottal[s2] .. "˨"
end
end
},
},