Jump to content

မေႃႇၵျူး:th-translit

လုၵ်ႉတီႈ ဝိၵ်ႇသျိၼ်ႇၼရီႇ မႃး

This module will transliterate ၽႃႇသႃႇထႆး text per the Paiboon scheme.

The module should preferably not be called directly from templates or other modules. To use it from a template, use Lua error in မေႃႇၵျူး:template_parser at line 1031: bad argument #1 to 'find' (string expected, got table).. Within a module, use Module:languages#Language:transliterate.

For testcases, see Module:th-translit/testcases.

လၢႆးႁဵတ်းၵၢၼ်[မႄးထတ်း]

tr(text, lang, sc)
Transliterates a given piece of text written in the script specified by the code sc, and language specified by the code lang. When the transliteration fails, returns nil.

Lua error in မေႃႇၵျူး:module_categorization at line 173: This template should only be used in the Module namespace, not on page 'မေႃႇၵျူး:th-translit'..


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")
end

function export.tr1(text)
	return table.concat(m_pron.getCharSeqTbl(text))
end

return export