10,794
edits
TheNightAvl (talk | contribs) mNo edit summary |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 824: | Line 824: | ||
-- tv and kv | -- tv and kv | ||
if | if p_current == "v" and (p_prev == "t" or p_prev == "k") then | ||
p_Convert("f") | p_Convert("f") | ||
-- mw.log("[" .. p_prev .. "][v] → [" .. p_prev .. "][f] in position " .. i .. ".") | -- mw.log("[" .. p_prev .. "][v] → [" .. p_prev .. "][f] in position " .. i .. ".") | ||
end | |||
-- j + [i] | |||
local i_initial = { ["i"] = true, ["iː"] = true, ["iːː"] = true, ["ie"] = true, ["iːe"] = true, } | |||
if p_current == "j" and i_initial[p_next] then | |||
table.remove(working_phones, i) | |||
-- mw.log("[j] removed from position ".. i .. ".") | |||
p_current = working_phones[i] | |||
end | end | ||