Module:User:Isomorphyc/th-translit-draft

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

This is a private module sandbox of Isomorphyc, for their own experimentation. Items in this module may be added and removed at Isomorphyc's discretion; do not rely on this module's stability.


local export = {}

local m_pron = require("Module:th-pron")

function export.tr(text, lang, sc)
	return m_pron.translit(text, lang, sc, "paiboon", "translit-module"), export.trFull(text)
end

function export.trFull(text)
	return { orthographic = table.concat(m_pron.getCharSeqTbl(text)),  
		     phonemic = "phonemic-stub",
		     phonetic = "phonetic-stub" }
end

return export