Modul:mk-translit
Erscheinungsbild
This module will transliterate Macedonian text per WT:MK TR through the function tr.
--[[
Transliteration for Macedonian.
]]
local M={}
local tt={
["А"]='A', ["а"]='a', ["Б"]='B', ["б"]='b', ["В"]='V', ["в"]='v', ["Г"]='G', ["г"]='g', ["Ѓ"]='Ǵ', ["ѓ"]='ǵ',
["Д"]='D', ["д"]='d', ["Е"]='E', ["е"]='e', ["Ж"]='Ž', ["ж"]='ž', ["З"]='Z', ["з"]='z', ["Ѕ"]='Dz', ["ѕ"]='dz',
["И"]='I', ["и"]='i', ["Ј"]='J', ["ј"]='j', ["К"]='K', ["к"]='k', ["Л"]='L', ["л"]='l', ["Љ"]='Lj', ["љ"]='lj',
["М"]='M', ["м"]='m', ["Н"]='N', ["н"]='n', ["Њ"]='Nj', ["њ"]='nj', ["О"]='O', ["о"]='o', ["П"]='P', ["п"]='p',
["Р"]='R', ["р"]='r', ["С"]='S', ["с"]='s', ["Т"]='T', ["т"]='t', ["Ќ"]='Ḱ', ["ќ"]='ḱ', ["У"]='U', ["у"]='u',
["Ф"]='F', ["ф"]='f', ["Х"]='H', ["х"]='h', ["Ц"]='C', ["ц"]='c', ["Ч"]='Č', ["ч"]='č', ["Џ"]='Dž', ["џ"]='dž',
["Ш"]='Š', ["ш"]='š'
};
function M.tr(text)--translit any words or phrases
if type(text) == "table" then text = text.args[1] end
return (mw.ustring.gsub(text, '.', tt))
end
return M