Module:bg-translit

Wiktionary වෙතින්

This module will transliterate බල්ගේරියානු භාෂාව 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:bg-translit/testcases.

Functions[සංස්කරණය]

tr(text, lang, sc)
Transliterates a given piece of text written in the script specified by the code sc, and language specified by the code lang.
When the transliteration fails, returns nil.

local export = {}
 
local tt = {
	["А"]='A', ["а"]='a', ["Б"]='B', ["б"]='b', ["В"]='V', ["в"]='v', ["Г"]='G', ["г"]='g', ["Д"]='D', ["д"]='d', 
	["Е"]='E', ["е"]='e', ["Ж"]='Ž', ["ж"]='ž', ["З"]='Z', ["з"]='z', ["И"]='I', ["и"]='i', ["Й"]='J', ["й"]='j', 
	["К"]='K', ["к"]='k', ["Л"]='L', ["л"]='l', ["М"]='M', ["м"]='m', ["Н"]='N', ["н"]='n', ["О"]='O', ["о"]='o', 
	["П"]='P', ["п"]='p', ["Р"]='R', ["р"]='r', ["С"]='S', ["с"]='s', ["Т"]='T', ["т"]='t', ["У"]='U', ["у"]='u', 
	["Ф"]='F', ["ф"]='f', ["Х"]='H', ["х"]='h', ["Ц"]='C', ["ц"]='c', ["Ч"]='Č', ["ч"]='č', ["Ш"]='Š', ["ш"]='š', 
	["Щ"]='Št', ["щ"]='št', ["Ъ"]='Ǎ', ["ъ"]='ǎ', ["Ю"]='Ju', ["ю"]='ju', ["Я"]='Ja', ["я"]='ja',
	["Ѐ"] = "È", ["ѐ"] = "è", ["Ѝ"] = "Ì", ["ѝ"]='ì',

	-- Pre-reform
	["Ѫ"]='Ǫ', ["ѫ"]='ǫ', ["Ѣ"]='Ě', ["ѣ"]='ě', ["Ь"]='ʹ', ["ь"]='ʹ',
	--?? used in old texts
	["Ы"]='Y', ["ы"]='y', ["Ѧ"]='Ę', ["ѧ"]='ę', ["Ѩ"]='Ję', ["ѩ"]='ję', ["Ѭ"]='Jǫ', ["ѭ"]='jǫ', ["Ꙗ"]='Ja', ["ꙗ"]='ja',
	-- Quotes
	['«']='“', ['»']='”',	
};

function export.tr(text, lang, sc)
	if mw.ustring.find(text, "[̀ЀѐЍѝ]") then
		require("Module:debug").track("bg-translit/grave")
	end
	text = mw.ustring.gsub(text, '(%w)[Ъъ]$', '%1')
	text = mw.ustring.gsub(text, '(%w)[Ъъ]%f[%c%p%s]', '%1')
	text = mw.ustring.gsub(text, '[Ьь]%f[ЕеОоЪъ]', { ["Ь"]='J', ["ь"]='j' })
	text = mw.ustring.gsub(text, '.', tt)
	return text
end

return export
"https://si.wiktionary.org/w/index.php?title=Module:bg-translit&oldid=27263" වෙතින් සම්ප්‍රවේශනය කෙරිණි