Modul:utilities
Izgled
Dokumentaciju za ovaj modul možete napraviti na stranici Modul:utilities/dok
local languages = mw.loadData("Module:languages")
local export = {}
-- transliterate the text, if possible
function export.translit(lang, text)
-- TODO: the table's information should be moved to [[Module:languages]]
local translit_modules = {
["ae"] = "Module:Avst-translit",
["ady"] = "Module:ady-translit",
["el"] = "Module:el-translit",
["ru"] = "Module:ru-translit",
["ug"] = "Module:ug-translit",
["tg"] = "Module:tg-translit",
["ka"] = "Module:ka-translit",
["xcl"] = "Module:xcl-translit",
["axm"] = "Module:axm-translit",
["hy"] = "Module:hy-translit"
}
if translit_modules[lang] then
return require(translit_modules[lang]).tr(text)
end
end
-- Detect the script based on the first alphabetical characters of a string
function export.detect_script(text, lang)
-- list of characters that may occur at the beginning of a word
local chars_table = {
["Latn"] = "A-Za-z",
["Arab"] = "ءاآأإئؤبتثجچحخدذرزسشصضطظعغفقكلمنوهي",
["Armn"] = "Ա-֊",
["Beng"] = "ঁ-৺",
["Cyrl"] = "Ѐ-ӿ",
["Deva"] = "ँ-ॽ",
["fa-Arab"] = "کیٔ",
["Geor"] = "Ⴀ-ჼ",
["Goth"] = "𐌰-𐍊",
["Grek"] = "ʹ-Ͽ",
["Hebr"] = "א-ת",
["Khmr"] = "ក-៹",
["Laoo"] = "ກ-ໝ",
["Mong"] = "᠀-ᢪ",
["Mymr"] = "က-ၙ",
["Thai"] = "ก-ฺ",
["Sinh"] = "ං-෴",
["ug-Arab"] = "ۈۇې",
-- TODO
}
-- first try to detect the script based on the native scripts of the language
local scripts = languages[lang].scripts or {}
for i, script in ipairs(scripts) do
if chars_table[script] and mw.ustring.match(text, "[%[%*%d%p%s]-[" .. chars_table[script] .. "]") then
return script
end
end
-- not written in native scripts; check for all scripts
for script, chars in ipairs(chars_table) do
if mw.ustring.match(text, "[%[%d%p%s]-[" .. chars .. "]") then
return script
end
end
end
return export