Module:rad-IPA: Difference between revisions

m
ਕੋਈ ਸੋਧ ਸਾਰ ਨਹੀਂ
mNo edit summary
mNo edit summary
Line 824: Line 824:
-- tv and kv
-- tv and kv
if (p_current == "v") and (p_prev == "t" or p_prev == "k") then
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