Modül:yi-alfabeçeviri

Merhaba, buraya Modül:yi-alfabeçeviri kelimesinin anlamını aramaya geldiniz. DICTIOUS'da Modül:yi-alfabeçeviri kelimesinin tüm sözlük anlamlarını bulmakla kalmayacak, aynı zamanda etimolojisini, özelliklerini ve Modül:yi-alfabeçeviri kelimesinin tekil ve çoğul olarak nasıl söylendiğini de öğreneceksiniz. Modül:yi-alfabeçeviri kelimesi hakkında bilmeniz gereken her şey burada. Modül:yi-alfabeçeviri kelimesinin tanımı, konuşurken veya metinlerinizi yazarken daha kesin ve doğru olmanıza yardımcı olacaktır. XXX'in ve diğer kelimelerin tanımını bilmek, kelime dağarcığınızı zenginleştirir ve size daha fazla ve daha iyi dilsel kaynaklar sağlar.
Modül belgelemesi


local export = {}

local tt = {
	 = "q",
	 = "o",
	 = "a",
	 = "b",
	 = "b",
	 = "v",
	 = "g",
	 = "g",
	 = "g",
	 = "d",
	 = "d",
	 = "d",
	 = "H",
	 = "w",
	 = "u",
	 = "v",
	 = "v",
	 = "oy",
	 = "oy",
	 = "z",
	 = "kh",
	 = "t",
	 = "y",
	 = "i",
	 = "i",
	 = "ey",
	 = "ey",
	 = "ay",
	 = "ay",
	 = "ay",
	 = "k",
	 = "kh",
	 = "kh",
	 = "k",
	 = "kh",
	 = "kh",
	 = "l",
	 = "m",
	 = "m",
	 = "n",
	 = "n",
	 = "s",
	 = "e",
	 = "p",
	 = "F",
	 = "f",
	 = "p",
	 = "f",
	 = "f",
	 = "ts",
	 = "ts",
	 = "k",
	 = "r",
	 = "sh",
	 = "sh",
	 = "s",
	 = "t",
	 = "s",
	 = "s",
	 = "-",
	 = "'",
	 = "\"",
}

-- in precedence order
local tokens = {
	"ייַ",
	"אָ",
	"אַ",
	"בּ",
	"בֿ",
	"גּ",
	"גֿ",
	"דּ",
	"דֿ",
	"וּ",
	"וו",
	"יִ",
	"יִ",
	"יי",
	"ײַ",
	"וי",
	"כּ",
	"כֿ",
	"ךּ",
	"ךֿ",
	"פּ",
	"פֿ",
	"ףּ",
	"ףֿ",
	"שׁ",
	"שׂ",
	"תּ",
	"תֿ",
	"א",
	"ב",
	"ג",
	"ד",
	"ה",
	"ו",
	"ױ",
	"װ",
	"ז",
	"ח",
	"ט",
	"י",
	"ײ",
	"ײַ",
	"כ",
	"ך",
	"ל",
	"מ",
	"ם",
	"נ",
	"ן",
	"ס",
	"ע",
	"פ",
	"ף",
	"צ",
	"ץ",
	"ק",
	"ר",
	"ש",
	"ת",
	"־",
	"׳",
	"״",
}

hebrew_only_tokens = {
	"בֿ",
	"ח",
	"כּ",
	"שׂ",
	"ת",
}

function export.tr(text, lang, sc)
	local hebrew_only = false
	for _, token in ipairs(hebrew_only_tokens) do
		if string.find(text, token) ~= nil then
			hebrew_only = true
			break
		end
	end
	
	for _, token in ipairs(tokens) do
		text = string.gsub(text, token, tt)
	end
	
	local suffix = text ~= '-' and string.sub(text, 1, 1) == '-'
	local prefix = text ~= '-' and string.sub(text, -1, -1) == '-'
	
	if suffix then
		text = string.gsub(text, "^-", "-q")
	end
	if prefix then
		text = string.gsub(text, "-$", "q-")
	end
	text = string.gsub(text, "()y$", "%1i")
	text = string.gsub(text, "()y()", "%1i%2")
	text = string.gsub(text, "()y()", "%1i%2") -- repeated to handle overlapping cases
	text = string.gsub(text, "()w", "%1u")
    hebrew_only = hebrew_only or (string.find(text, "w") ~= nil)
	text = string.gsub(text, "w", "v")
    hebrew_only = hebrew_only or (string.find(text, "F") ~= nil)
	text = string.gsub(text, "F$", "p")
	text = string.gsub(text, "F()", "p%1")
	text = string.gsub(text, "F", "f")
	text = string.gsub(text, "zsh", "zh")
	if suffix then
		text = string.gsub(text, "^%-q", "-")
	end
	if prefix then
		text = string.gsub(text, "q%-$", "-")
	end
	text = string.gsub(text, "q(y)", "%1")
	text = string.gsub(text, "q()", "%1")
    hebrew_only = hebrew_only or (string.find(text, "q") ~= nil)
	text = string.gsub(text, "q", "a")
	hebrew_only = hebrew_only or (string.find(text, "H") ~= nil) or (string.find(text, "H$") ~= nil)
	text = string.gsub(text, "H", "h")
	
	local categories = ""
	if hebrew_only then
		local namespace = mw.title.getCurrentTitle().nsText
		if namespace == "" or namespace == "Appendix" then
			categories = "]"
		end
	end
	
    return text .. categories
end

return export