Module:ábḫ-ipa/remake: Difference between revisions

no edit summary
No edit summary
No edit summary
 
(18 intermediate revisions by the same user not shown)
Line 25: Line 25:
local export = {}
local export = {}


local composer = {
local vowels = "[aäeɛʊiɪɔɐ" .. NONSYLL .. "]"
["s"] = "s",
local consonants = "[βðɺɕθʑɲjxɦDGPTKBmnpkɟt]"
}
 
local vowels = "[aäeɛʊiɪɔɐ]"
local tones = "[ˆˇ´]"
local tones = "[ˆˇ´]"


local rules = {
local start_rules = {
{"á", "a´"},
{"á", "a´"},
Line 41: Line 38:
{"(" .. vowels .. "ː?" .. tones .. "?)u", "%1ʊ" .. NONSYLL},
{"(" .. vowels .. "ː?" .. tones .. "?)u", "%1ʊ" .. NONSYLL},
{".", {
{"r", "ɺ"}, {"b", "β"}, {"g", "ɡ"}, {"o", "ɔ"}, {"a", "ä"}, {"s", "ɕ"}, {"z", "}, {"d", "ð"},
["r"] = "ɺ",
{"jh", "ʑ"}, {"j", "ɲ"}, {"y", "j"}, {"ḫ", "x"}, {"h", "ɦ"}, {"", "D"},  
["b"] = "β",
{"", "G"}, {"mp", "P"}, {"nt", "T"}, {"nk", "K"}, {"^mβ", "B"},
["g"] = "ɡ", -- double- to single-storey
["o"] = "ɔ",
["a"] = "ä",
["s"] = "ɕ",
["z"] = "θ",
}}, {"jh", "ʑ"}, {"j", "ɲ"}, {"y", "j"}, {"ḫ", "x"}, {"h", "ɦ"},
{"nd", "D"}, {"ng", "G"}, {"mp", "P"}, {"nt", "T"}, {"nk", "K"}, {"mb", "B"},




Line 61: Line 51:


local end_rules = {
local end_rules = {
{"", ""},
{"g", "f"},
}
}


local function syllable_and_stress(word)
local function syllable_and_stress(word)
word = word:gsub("(^[mnjɲβDGPpTtKkBθdɕʑxɦɺ]?" .. vowels .. "ː?" .. tones .. ")", "ˈ%1")
local syllables = {}
word = gsub(word, "(" .. consonants .. vowels .. ")", "·%1")
word = gsub(word, "^·", "")
syllables = split(word, "·")
if match(syllables[1], "^[mnjɲβDGPpTtKkBθðɕʑxɦɺ]?" .. vowels .. "ː?" .. tones) then
syllables[1] = "x" .. syllables[1] --table.insert(syllables, 1, "ˈ")
else
end
return word
return table.concat(syllables, "-")
end
end