Module:tevo-translit

From Linguifex
Revision as of 22:08, 28 May 2026 by Melinoë (talk | contribs) (Created page with "local export = {} local tt = { ["ê"]='ॊ', ["é"]='ॅ॔', ["ē"]='ॉ', ["ei"]='ॆ', ["éi"]='ॆ॔', ["êi"]='ै॔', ["ēi"]='ै', [""]='', } function export.tr(text, lang, sc) text = mw.ustring.gsub(text, '.', tt) return text end return export")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This module will transliterate Ancient Tevvic language text. It is also used to transliterate Middle Tevvic and Tevvic. The module should preferably not be called directly from templates or other modules. To use it from a template, use {{xlit}}. Within a module, use Module:languages#Language:transliterate.

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

Functions

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.

local export = {}
 
local tt = {
	["ê"]='ॊ',
	["é"]='ॅ॔',
	["ē"]='ॉ',
	["ei"]='ॆ',
	["éi"]='ॆ॔',
	["êi"]='ै॔',
	["ēi"]='ै',
	[""]='',
}

function export.tr(text, lang, sc)
	text = mw.ustring.gsub(text, '.', tt)
	return text
end

return export