Module:ii-translit: Difference between revisions
Jump to navigation
Jump to search
m Protected "Module:ii-translit": (bot) automatically protect highly visible templates/modules (reference score: 1497+ >= 1000) ([Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite)) |
m 1 revision imported |
(No difference)
| |
Latest revision as of 12:00, 21 April 2026
- The following documentation is generated by Module:documentation/functions/translit. [edit]
- Useful links: subpage list • links • transclusions • testcases • sandbox
This module will transliterate Nuosu 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:ii-translit/testcases.
Functions
tr(text, lang, sc)- Transliterates a given piece of
textwritten in the script specified by the codesc, and language specified by the codelang. - When the transliteration fails, returns
nil.
local export = {}
local gsub = mw.ustring.gsub
local convert = mw.loadData("Module:ii-translit/data")
function export.tr(text, lang, sc)
text = gsub(text:gsub("%^", ""), "[^%s*]", " %0")
text = gsub(text, " ([%Aꀕ])", "%1") -- Iteration mark appends "w" onto previous syllable.
return (gsub(text, "%S", convert))
end
return export