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


VOWELS = "aeiou"
VOWELS = "aeiouyw"


DEVOICED = "ktfs"
DEVOICED = "ktfs"

Revision as of 01:05, 10 December 2023

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

VOWELS = "aeiouyw"

DEVOICED = "ktfs"
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, DEVOICED, VOICED, DEVOICING, H_DEVOICNG, VVC