Module:utilities/data: Difference between revisions
Jump to navigation
Jump to search
Tag: Undo |
No edit summary |
||
Line 1: | Line 1: | ||
local data = {} | local data = {} | ||
-- Namespaces which format_categories will allow: (main), Appendix, Thesaurus, Citations, Reconstruction | |||
data.category_namespaces = require("Module:table").listToSet{0, 100, 110, 114, 118} | |||
} | |||
-- Script that should be applied to links in categories. | |||
-- | |||
data.catfix_scripts = { | data.catfix_scripts = { | ||
["ab"] = "Cyrl", | ["ab"] = "Cyrl", | ||
Line 39: | Line 11: | ||
["ary"] = "Arab", | ["ary"] = "Arab", | ||
["be"] = "Cyrl", | ["be"] = "Cyrl", | ||
["cmn"] ="Hani", | |||
["cu"] = "Cyrs", | ["cu"] = "Cyrs", | ||
["el"] = "Grek", | ["el"] = "Grek", | ||
["grc"] = " | ["grc"] = "Polyt", | ||
["he"] = "Hebr", | ["he"] = "Hebr", | ||
["hi"] = "Deva", | |||
["ja"] = "Jpan", | |||
["ka"] = "Geor", | ["ka"] = "Geor", | ||
["ko"] = "Kore", | |||
["mr"] = "Deva", | |||
["nan-hbl"] = "Hani", | |||
["orv"] = "Cyrs", | ["orv"] = "Cyrs", | ||
["ru"] = "Cyrl", | ["ru"] = "Cyrl", | ||
Line 49: | Line 27: | ||
["syl"] = "Sylo", | ["syl"] = "Sylo", | ||
["xfa"] = "Ital", | ["xfa"] = "Ital", | ||
["yue"] = "Hani", | |||
["zh"] = "Hani", | |||
["zle-ono"] = "Cyrs", | ["zle-ono"] = "Cyrs", | ||
[" | ["zle-ort"] = "Cyrs", | ||
--[[ | --[[ | ||
[""] = "", | [""] = "", | ||
]] | ]] | ||
} | } | ||
return data | return data |
Revision as of 09:36, 31 July 2024
- The following documentation is located at Module:utilities/data/doc.[edit]
- Useful links: root page • root page's subpages • links • transclusions • testcases • sandbox
local data = {}
-- Namespaces which format_categories will allow: (main), Appendix, Thesaurus, Citations, Reconstruction
data.category_namespaces = require("Module:table").listToSet{0, 100, 110, 114, 118}
-- Script that should be applied to links in categories.
data.catfix_scripts = {
["ab"] = "Cyrl",
["ae"] = "Avst",
["ar"] = "Arab",
["ary"] = "Arab",
["be"] = "Cyrl",
["cmn"] ="Hani",
["cu"] = "Cyrs",
["el"] = "Grek",
["grc"] = "Polyt",
["he"] = "Hebr",
["hi"] = "Deva",
["ja"] = "Jpan",
["ka"] = "Geor",
["ko"] = "Kore",
["mr"] = "Deva",
["nan-hbl"] = "Hani",
["orv"] = "Cyrs",
["ru"] = "Cyrl",
["sa"] = "Deva",
["syl"] = "Sylo",
["xfa"] = "Ital",
["yue"] = "Hani",
["zh"] = "Hani",
["zle-ono"] = "Cyrs",
["zle-ort"] = "Cyrs",
--[[
[""] = "",
]]
}
return data