local export = {}
local tt = {
="a", ="ā", ="b", ="v", ="g", ="d", ="e",
="ē", ="ë", ="ë̄", ="ž", ="z", ="i", ="ī",
="j", ="k", ="l", ="m", ="n", ="ň", ="o",
="ō", ="p", ="r", ="s", ="t", ="u", ="ū",
="f", ="h", ="c", ="č", ="š", ="ŝ", ="ʺ",
="y", ="ȳ", ="ʹ", ="è", ="è̄", ="û", ="û̄",
="â", ="â̄",
="A", ="Ā", ="B", ="V", ="G", ="D", ="E",
="Ē", ="Ë", ="Ë̄", ="Ž", ="Z", ="I", ="Ī",
="J", ="K", ="L", ="M", ="N", ="Ň", ="O",
="Ō", ="P", ="R", ="S", ="T", ="U", ="Ū",
="F", ="H", ="C", ="Č", ="Š", ="Ŝ", ="ʺ",
="Y", ="Ȳ", ="ʹ", ="È", ="È̄", ="Û", ="Û̄",
="Â", ="Â̄",
};
function export.tr(text)
return (mw.ustring.gsub(text, '.', tt))
end
return export