Module:Chak-utilities/data: Difference between revisions

From The Languages of David J. Peterson
Jump to navigation Jump to search
No edit summary
No edit summary
Tag: Manual revert
 
(One intermediate revision by the same user not shown)
(No difference)

Latest revision as of 17:01, 21 July 2024

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