Module:User:Per utramque cavernam/el-transcript

Hello, you have come here looking for the meaning of the word Module:User:Per utramque cavernam/el-transcript. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Per utramque cavernam/el-transcript, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Per utramque cavernam/el-transcript in singular and plural. Everything you need to know about the word Module:User:Per utramque cavernam/el-transcript you have here. The definition of the word Module:User:Per utramque cavernam/el-transcript will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Per utramque cavernam/el-transcript, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local export = {}
local U = mw.ustring.char
local gsub = mw.ustring.gsub

local tt = {
	 = "a",   = "á",   = "v",   = "g",   = "d",
	 = "e",   = "é",   = "z",   = "ī",   = "ī́",
	 = "th",  = "i",   = "í",   = "ï",   = "ḯ",
	 = "k",   = "l",   = "m",   = "n",   = "x",
	 = "o",   = "ó",   = "p",   = "r",   = "s",
	 = "s",   = "t",   = "y",   = "ý",   = "ÿ",
	 = "ÿ́",   = "f",   = "ch",  = "ps",  = "ō",
	 = "ṓ",
	 = "A",   = "Á",   = "V",   = "G",   = "D",
	 = "E",   = "É",   = "Z",   = "Ī",   = "Ī́",
	 = "Th",  = "I",   = "Í",   = "K",   = "L",
	 = "M",   = "N",   = "X",   = "O",   = "Ó",
	 = "P",   = "R",   = "S",   = "T",   = "Y",
	 = "Ý",   = "F",   = "Ch",  = "Ps",  = "Ō",
	 = "Ṓ",
	 = "?",   = ";"
}

function export.tr(text, lang, sc)
	for regex, replacement in pairs(tt) do
		text = gsub(text, regex, replacement)
	end
	
	return text
end

return export