local export = {}
local tab = {
="A", ="B", ="V", ="G", ="D", ="Je", ="Jo", ="Ž", ="Z", ="I", ="J",
="K", ="L", ="M", ="N", ="Ŋ", ="O", ="Ö", ="P", ="R", ="S", ="T",
="U", ="Ü", ="F", ="X", ="H", ="C", ="Č", ="Š", ="Šč", ="ʺ", ="Y",
="ʹ", ="E", ="Ju", ="Ja",
='a', ='b', ='v', ='g', ='d', ='je', ='jo', ='ž', ='z', ='i', ='j',
='k', ='l', ='m', ='n', ='ŋ', ='o', ='ö', ='p', ='r', ='s', ='t',
='u', ='ü', ='f', ='x', ='h', ='c', ='č', ='š', ='šč', ='ʺ', ='y',
='ʹ', ='e', ='ju', ='ja',
}
function export.tr(text, lang, sc)
return (mw.ustring.gsub(text,'.',tab))
end
return export