10,794
edits
TheNightAvl (talk | contribs) mNo edit summary |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 1,356: | Line 1,356: | ||
-- phonetic /a/ backing -- | -- phonetic /a/ backing -- | ||
if syllables[i]["nucleus"] == "a" and | if syllables[i]["nucleus"] == "a" and syllables[i+1] then | ||
if syllables[i+1]["nucleus"] == "æː" then | |||
syllables[i]["nucleus"] = "ä" | |||
end | |||
elseif syllables[i]["nucleus"] == "a" and syllables[i-1] then | |||
if syllables[i-1]["nucleus"] == "æː" then | |||
syllables[i]["nucleus"] = "ä" | |||
end | |||
end | end | ||