45,647
edits
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
local velar = "[kɡɣɫw]"; local palatal = "[ɲʧʃʎ]" | local velar = "[kɡɣɫw]"; local palatal = "[ɲʧʃʎ]" | ||
local consonants = "[ | local consonants = "[bkdhjlmnɲprɾstʃθβðɡɣzʧɫʎɓ]" | ||
local vowels = "[áéíóúaɑɐeɪɛiɔʊouwJąĄ" .. ADV .. RET .. CEN .. ACUTE .. "]" | local vowels = "[áéíóúaɑɐeɪɛiɔʊouwJąĄ" .. ADV .. RET .. CEN .. ACUTE .. "]" | ||
local voiced = "[ | local voiced = "[bdhʎjmnɲβðɡɣzɓ]" | ||
local function same(foo, bar) | local function same(foo, bar) | ||
Line 119: | Line 119: | ||
term = gsub(term, "a([^" .. CEN .. ADV .. RET .. "])", "a" .. CEN .. "%1") | term = gsub(term, "a([^" .. CEN .. ADV .. RET .. "])", "a" .. CEN .. "%1") | ||
term = gsub(term, "ą", "a" .. CEN .. NASAL); term = gsub(term, "Ą", "a" .. CEN .. NASAL .. "ː") | term = gsub(term, "ą", "a" .. CEN .. NASAL); term = gsub(term, "Ą", "a" .. CEN .. NASAL .. "ː") | ||
term = gsub(term, "ɓ", "β") -- soft mutation | |||
return term | return term |