45,645
edits
No edit summary |
No edit summary |
||
Line 63: | Line 63: | ||
{"(·" .. consonants .. ")e$", "%1ə"}, {"a", "ä"}, | {"(·" .. consonants .. ")e$", "%1ə"}, {"a", "ä"}, | ||
{"ʤ", "d͡ʒ"}, {"ʧ", "t͡ʃ"}, | |||
} | } | ||
Line 113: | Line 114: | ||
term = syllabify(term) | term = syllabify(term) | ||
for _, | for _, rule in ipairs(phonetic_rules) do | ||
term = gsub(term, | term = gsub(term, rule[1], rule[2]) | ||
end | end | ||