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
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:


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


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


Line 30: 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