This module will transliterate Chagatai 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:chg-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 data = {}
data = {
-- consonants and vowel
= "m", = "n", = "d", = "t",
= "g", = "ğ", = "i", = "o",
= "c", = "ç", = "j", = "ş",
= "s", = "y", = "l", = "h",
= "q", = "k", = "e", = "ü",
= "ö", = "u", = "w", = "f",
= "ä", = "ñ", = "g", = "z",
= "r", = "ı",
-- punctuation
="?",
=",",
}