Module:Hrkt-translit/data/xug


-- [[Kunigami]] transliteration data
local glottal = "\1"

return require("Module:Hrkt-translit").process_data{
	rom = {
		["か"] = "kha", ["き"] = "khi", ["く"] = "khu", ["け"] = "khe", ["こ"] = "kho",
		["た"] = "tha", ["て"] = "the", ["と"] = "tho",
	},
	digraph = { ["ん"] = { [glottal] = glottal .. "n" } },
	tr_gem = {
		["ch"] = "t", [glottal .. "ch"] = "t",
		["y"] = glottal, [glottal .. "y"] = glottal,
		["w"] = glottal, [glottal .. "w"] = glottal,
	},
	tr_semivoicing = {
		["u"] = "u~",
		["kh"] = "k",
		["s"] = "c", -- ?= consonant [θ]
		["th"] = "t", ["ch"] = glottal .. "ch", ["ts"] = glottal .. "ts",
		["n"] = glottal .. "n",
		["h"] = "ph", ["f"] = "ph",
		["m"] = glottal .. "m",
		["y"] = glottal .. "y",
		["r"] = glottal .. "r",
		["w"] = glottal .. "w",
	},
}