Module:qay-translit: Difference between revisions

From Linguifex
Jump to navigation Jump to search
Created page with "local export = {} function export.tr(text, lang, sc) return mw.title.getCurrentTitle().text end return export"
 
No edit summary
Tag: Reverted
Line 2: Line 2:


function export.tr(text, lang, sc)
function export.tr(text, lang, sc)
return mw.title.getCurrentTitle().text
return text or mw.title.getCurrentTitle().text
end
end


return export
return export

Revision as of 13:18, 31 January 2025


This module will transliterate Ayeri language text. 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:qay-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 = {}

function export.tr(text, lang, sc)
	return text or mw.title.getCurrentTitle().text
end

return export