45,646
edits
No edit summary |
No edit summary |
||
Line 162: | Line 162: | ||
western = gsub(western, rule[1], rule[2]) | western = gsub(western, rule[1], rule[2]) | ||
end | end | ||
local ipa1 = (western ~= phonetic) and "\n** " .. m_IPA.format_IPA_multiple({{pron='[' .. western .. ']', q="Western"}}) or "" | local ipa1 = (western ~= phonetic) and "\n** " .. m_IPA.format_IPA_multiple(lang, {{pron='[' .. western .. ']', q={"Western"}}}) or "" | ||
local surgut = phonetic | local surgut = phonetic | ||
Line 168: | Line 168: | ||
surgut = gsub(surgut, rule[1], rule[2]) | surgut = gsub(surgut, rule[1], rule[2]) | ||
end | end | ||
local ipa2 = (surgut ~= phonetic) and "\n** " .. m_IPA.format_IPA_multiple(lang,{{pron='[' .. surgut .. ']', q="Surgut"}}) or "" | local ipa2 = (surgut ~= phonetic) and "\n** " .. m_IPA.format_IPA_multiple(lang, {{pron='[' .. surgut .. ']', q={"Surgut"}}}) or "" | ||
return "* " .. m_IPA.format_IPA_full | return "* " .. m_IPA.format_IPA_full{lang = lang, items = {{pron='[' .. phonetic .. ']'}}} .. ipa1 .. ipa2 | ||
end | end | ||
return export | return export |