Module:Chak-utilities/data

From The Languages of David J. Peterson
Jump to navigation Jump to search

Documentation for this module may be created at Module:Chak-utilities/data/documentation

-- W is listed as a vowel because it exists in vowel clusters in roots
VOWELS = "aeiouw"

SIBILANTS = "zsʃ"

DEVOICED = "ktfsθʧqʃ"
VOICED = "gdvzðʤ"

DEVOICING = {
	["g"] = "k",
	["d"] = "t",
	["v"] = "f",
	["z"] = "s",
	["ð"] = "θ",
	["ʤ"] = "ʧ",
}

H_DEVOICING = {
	["g"] = "k",
	["d"] = "t",
	["v"] = "f",
	["z"] = "z",
	["ð"] = "θ",
}

VvC = {
	["a"] = "au",
	["e"] = "ef",
	["i"] = "if",
	["o"] = "uu",
	["u"] = "uu",
}

return VOWELS, SIBILIANTS, DEVOICED, VOICED, DEVOICING, H_DEVOICNG, VVC