Jump to content

Module:Dialect

Ɛfi Wikipedia

Documentation for this module may be created at Module:Dialect/doc

local p = {}

function p.dialect(frame)
	dialect = frame.args[1]

	if (dialect == "Akuapem") then
		return "Wɔakyerɛw nsɛm yi wɔ '''Akuapem''' kasa mu"
	end

	if (dialect == 'Asante') then
		return "Wɔatwerɛ nsɛm wei ɛwɔ '''Asante''' kasa mu"
	end

	if (dialect == 'Fante') then
		return "W'akyerew nsɛm yi wɔ '''Fante''' kasa mu"
	end

	return "You must specfy a valid dialect. The possible valid parameters are: Akuapem, Asante, Fante."
end

return p