Module:Translit-redirect
local export = {}
local data = {
["pa"] = {
["debug_mode"] = true,
["Guru"] = {
["module"] = "Guru-translit",
},
["Deva"] = {
["module"] = "sa-translit",
},
["Arab"] = {
-- ["module"] = "pa-Arab-translit",
},
["pa-Arab"] = {
-- ["module"] = "pa-Arab-translit",
},
},
["khb"] = {
["Talu"] = {
["module"] = "Talu-translit",
},
["Lana"] = {
-- ["module"] = "Lana-translit",
},
["Thai"] = {
},
},
["qwm"] = {
["Latn"] = {
},
["Arab"] = {
},
["Armn"] = {
["module"] = "Armn-translit",
},
["error"] = "Huệ nương!",
},
["xpr"] = {
["Mani"] = {
["module"] = "Mani-translit",
},
["Latn"] = {
},
["Prti"] = {
},
["Phlv"] = {
},
["None"] = {
},
},
}
function export.tr(text, lang, sc, debug_mode)
local translit
if not sc then
sc = require("Module:scripts").findBestScript(text, require("Module:languages").getByCode(lang)):getCode()
end
local language_data = data[lang]
if language_data then
script_data = language_data[sc]
if script_data then
if script_data.module then
local success, translit_module = pcall(require, "Module:" .. script_data.module)
if success then
translit = translit_module.tr(text, lang, sc, debug_mode)
else
error(translit_module)
end
else
return nil
end
else
local err = language_data.error
if not err then
local canonical_names = mw.loadData("Module:languages/code to canonical name")
local script_names = mw.loadData("Module:scripts/code to canonical name")
err = script_names[sc] .. " is an invalid script for the " .. canonical_names[lang] .. " language."
end
error(err)
end
end
return translit
end
return export
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.