Module:Gthv-translit

From Linguifex
Revision as of 14:18, 6 July 2025 by Sware (talk | contribs) (Created page with "local export = {} local tt = { ["È"]='Ɛ́', ["è"]='ɛ́', ["Ê"]='Ɛ̈', ["ê"]='ɛ̈', ["Ò"]='Ɔ́', ["ò"]='ɔ́', ["Ô"]='Ɔ̈', ["ô"]='ɔ̈', }; 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 text in the Gothevian script. It is used to transliterate Gothevian. 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:Gthv-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 = {
	["È"]='Ɛ́', ["è"]='ɛ́', ["Ê"]='Ɛ̈', ["ê"]='ɛ̈', ["Ò"]='Ɔ́', ["ò"]='ɔ́', ["Ô"]='Ɔ̈', ["ô"]='ɔ̈',
};

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

return export