Modul:mnc-Latn-translit
Penampilan
- Berikut merupakan pendokumenan yang dijana oleh Modul:pendokumenan/functions/translit. [sunting]
- Pautan berguna: senarai sublaman • pautan • transklusi • kes ujian • kotak pasir
Modul ini akan mentransliterasi Bahasa Manchu teks.
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:mnc-Latn-translit/testcases.
Functions
[sunting]tr(text, lang, sc)
- Transliterates a given piece of
text
written in the script specified by the codesc
, and language specified by the codelang
. - When the transliteration fails, returns
nil
.
local export = {}
local vowel = {
["a"] = "ᠠ",
["e"] = "ᡝ",
["i"] = "ᡳ",
["y"] = "ᡟ",
["o"] = "ᠣ",
["u"] = "ᡠ",
["ū"] = "ᡡ",
}
local consonant = {
["n"] = "ᠨ",
["ng"] = "ᠩ",
["k"] = "ᡴ",
["g"] = "ᡤ",
["h"] = "ᡥ",
["b"] = "ᠪ",
["p"] = "ᡦ",
["s"] = "ᠰ",
["š"] = "ᡧ",
["t"] = "ᡨ",
["d"] = "ᡩ",
["l"] = "ᠯ",
["m"] = "ᠮ",
["c"] = "ᠴ",
["j"] = "ᠵ",
["y"] = "ᠶ",
["r"] = "ᡵ",
["f"] = "ᡶ",
["w"] = "ᠸ",
["k'"] = "ᠺ",
["g'"] = "ᡬ",
["h'"] = "ᡭ",
["ts'"] = "ᡮ",
["ts"] = "ᡮᡟ",
["dz"] = "ᡯ",
["ž"] = "ᡰ",
["sy"] = "ᠰᡟ",
["c'"] = "ᡱ",
["c'y"] = "ᡱᡳ",
["j"] = "ᡷ",
["jy"] = "ᡷᡳ",
}
function export.tr(text)
if type(text) == "table" then
text = text:getParent().args[1]
end
text = mw.ustring.gsub(text, "ng", consonant)
text = mw.ustring.gsub(text, "ts", consonant)
text = mw.ustring.gsub(text, "dz", consonant)
text = mw.ustring.gsub(text, "[^aeiouūy]'?y?", consonant)
text = mw.ustring.gsub(text, ".", vowel)
return text
end
return export