local export = {}
local tt = {
="ā", ="b", ="v", ="ɣ", ="d", ="e", ="ë", ="ž",
="z", ="i", ="j", ="k", ="l", ="m", ="n", ="o",
="p", ="r", ="s", ="t", ="w", ="f", ="x", ="c",
="č", ="š", ="š̍", ="”", ="ə", ="’", ="ă", ="ju",
="jā", ="ʾ", ="Ā", ="B", ="V", ="Ɣ", ="D", ="E",
="Ë", ="Ž", ="Z", ="I", ="J", ="K", ="L", ="M",
="N", ="O", ="P", ="R", ="S", ="T", ="W", ="F",
="X", ="C", ="Č", ="Š", ="Š̍", ="”", ="Ə", ="’",
="Ă", ="Ju", ="Jā", ="ʾ"};
local triQuadrigraphs = {
= 'q°',
= 'Q°',
= 'ġ°',
= 'ʒ°',
= 'ẑ°',
= 'Q',
= 'q',
= 'q°',
= 'ḳ°',
= 'ṗ°',
= 'ṭ°',
= 'χ°',
= 'ŝ°',
= 'ṣ̂°',
= 'g°',
= 'Ġ°',
= 'Ʒ°',
= 'Ẑ°',
= 'Q°',
= 'Ḳ°',
= 'Ṗ°',
= 'Ṭ°',
= 'Χ°',
= 'Ŝ°',
= 'Ṣ̂°',
}
local digraphs = {
= 'ɡ’',
= 'ġ',
= 'ǯ̍',
= 'ʒ',
= 'ẑ',
= 'ž̍',
= 'k°',
= 'q',
= 'č̣̍',
= 'ł',
= 'ḷ',
= 'ṗ',
= 'ṣ̣',
= 'ṭ',
= 'f̣',
= 'x°',
= 'χ',
= 'ḥ',
= 'c°',
= 'c̣',
= 'č̣',
= 'č̍°',
= 'č',
= 'ŝ',
= 'ṣ̂',
= 'ʾ°',
= '՚̍',
= 'G°',
= 'ɡ’',
= 'Ġ',
= 'Ǯ̍',
= 'Ʒ',
= 'Ẑ',
= 'Ž̍',
= 'K°',
= 'Q',
= 'Č̣̍',
= 'Ł',
= 'Ḷ',
= 'Ṗ',
= 'Ṣ̣',
= 'Ṭ',
= 'F̣',
= 'X°',
= 'Χ',
= 'Ḥ',
= 'C°',
= 'C̣',
= 'Č̣',
= 'Č̍°',
= 'Č',
= 'Ŝ',
= 'Ṣ̂',
}
function export.tr(text, lang, sc)
local str_gsub = string.gsub
local UTF8char = '*'
-- Convert capital to lowercase palochka. Lowercase is found in tables
-- above.
text = str_gsub(text, mw.ustring.char(0x4C0), mw.ustring.char(0x4CF))
for comb, repl in pairs(triQuadrigraphs) do
text = str_gsub(text, comb, repl)
end
for comb, repl in pairs(digraphs) do
text = str_gsub(text, comb, repl)
end
return (str_gsub(text, UTF8char, tt))
end
return export