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
 
Line 2: Line 2:
-- W is listed as a vowel because it exists in vowel clusters in roots
-- W is listed as a vowel because it exists in vowel clusters in roots
VOWELS = "aeiouw"
VOWELS = "aeiouw"
SIBILANTS = "zsʃ"


DEVOICED = "ktfsθʧqʃ"
DEVOICED = "ktfsθʧqʃ"
Line 31: Line 33:
}
}


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

Latest revision as of 21:16, 5 March 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