ข้ามไปเนื้อหา

มอดูล:Runr-translit

จาก วิกิพจนานุกรม พจนานุกรมเสรี

This module will transliterate text in the อักษรรูน. It is used to transliterate อังกฤษเก่า, นอร์สดั้งเดิม, เยอรมันสูงเก่า, and นอร์สเก่า. 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:Runr-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 letters = {}

-- Elder futhark
letters["gmq-pro"] = {
	["ᚠ"]='f',
	["ᚢ"]='u',
	["ᚦ"]='þ',
	["ᚨ"]='a',
	["ᚱ"]='r',
	["ᚲ"]='k',
	["ᚷ"]='g',
	["ᚹ"]='w',
	["ᚺ"]='h', ["ᚻ"]='h',
	["ᚾ"]='n',
	["ᛁ"]='i',
	["ᛃ"]='j',
	["ᛇ"]='ï',
	["ᛈ"]='p',
	["ᛉ"]='z',
	["ᛊ"]='s', ["ᛋ"]='s',
	["ᛏ"]='t',
	["ᛒ"]='b',
	["ᛖ"]='e',
	["ᛗ"]='m',
	["ᛚ"]='l',
	["ᛜ"]='ŋ', ["ᛝ"]="ŋ",
	["ᛟ"]='o',
	["ᛞ"]='d',
}

-- Anglo-Saxon futhorc
letters["ang"] = {
	["ᚠ"]="f",
	["ᚢ"]="u",
	["ᚦ"]="þ",
	["ᚩ"]="ó",
	["ᚱ"]="r",
	["ᚳ"]="c",
	["ᚷ"]="ȝ",["ᚸ"]="g",
	["ᚹ"]="w",
	["ᚺ"]='h', ["ᚻ"]='h',
	["ᚾ"]="n",
	["ᛁ"]="i",
	["ᛄ"]="j",
	["ᛇ"]="eo",
	["ᛈ"]="p",
	["ᛉ"]="x",
	["ᛋ"]="s",
	["ᛏ"]="t",
	["ᛒ"]="b",
	["ᛖ"]="e",
	["ᛗ"]="m",
	["ᛚ"]="l",
	["ᛜ"]='ŋ', ["ᛝ"]="ŋ",
	["ᛟ"]="œ",
	["ᛞ"]="d",
	["ᚪ"]="a",
	["ᚫ"]="æ",
	["ᚣ"]="y",
	["ᛡ"]="io",
	["ᛠ"]="ea",
}

-- Younger futhark
letters["non"] = {
	["ᚠ"]="f",
	["ᚢ"]="u",
	["ᚦ"]="þ",
	["ᚬ"]="ą",
	["ᚱ"]="r",
	["ᚴ"]="k",
	["ᚼ"]="h", ["ᚽ"]="h",
	["ᚾ"]="n", ["ᚿ"]="n",
	["ᛅ"]="a", ["ᛆ"]="a",
	["ᛋ"]="s", ["ᛌ"]="s",
	["ᛏ"]="t", ["ᛐ"]="t",
	["ᛒ"]="b", ["ᛓ"]="b",
	["ᛘ"]="m", ["ᛙ"]="m",
	["ᛚ"]="l",
	["ᛦ"]="ʀ", ["ᛧ"]="ʀ",
}

function export.tr(text, lang, sc)
	if letters[lang] then
		return (mw.ustring.gsub(text, ".", letters[lang]))
	end

	return nil
end

return export