This module will transliterate text in the Coptic script. It is used to transliterate Coptic, Nobiin, and Old Nubian.
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:Copt-translit/testcases.
tr(text, lang, sc)
text
written in the script specified by the code sc
, and language specified by the code lang
.nil
.local export = {}
local chars = {
= "A", = "a",
= "B", = "b",
= "G", = "g",
= "D", = "d",
= "E", = "e",
= "Z", = "z",
= "Ē", = "ē",
= "Th", = "th",
= "I", = "i",
= "K", = "k",
= "L", = "l",
= "M", = "m",
= "N", = "n", = "N", = "n", = "n", = "N", = "n",
= "Ŋ", = "ŋ",
= "Ñ", = "ñ",
= "W", = "w",
= "Ks", = "ks",
= "O", = "o",
= "P", = "p",
= "R", = "r",
= "S", = "s",
= "T", = "t",
= "U", = "u",
= "Ph", = "ph",
= "Kh", = "kh",
= "Ps", = "ps",
= "Ō", = "ō", = "Ō", = "ō",
= "Š", = "š", = "Š", = "š", = "Š", = "š",
= "F", = "f",
= "X", = "x", = "X", = "x", = "X", = "x",
= "H", = "h", = "h", = "h", = "h", = "h",
= "Č", = "č", = "Č", = "č", = "Č", = "č",
= "C", = "c", = "C", = "c",
= "J", = "j",
= "Ti", = "ti",
= "Q", = "q",
= "Ç", = "ç", = "Ç", = "ç",
= "Ḫ", = "ḫ",
= "ḥ", = "ḥ", = "ḥ", = "ḥ",
= "ʿ", = "ʿ",
= "ke",
= "pros",
= "stauros",
= "taur",
= "cōis",
}
function export.tr(text, lang, sc)
return (mw.ustring.gsub(text, '.', chars))
end
return export