Module:labels: Difference between revisions

From Laenkea
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:


function export.make_labels(language, labels, nocat)
function export.make_labels(language, labels, nocat)
local function make_label(label_id, label)
local function make_label(label_id, label, language_name)
local categories = label["categories"]
local cat_out = ""
if categories ~= nil then
for _, cat in ipairs(categories) do
cat_out = cat_out .. "[[Category:" .. language_name .. " " .. cat .. "]]"
end
end
local display = label["display"]
local display = label["display"]
local glossary = label["glossary"]
local glossary = label["glossary"]
local wikipedia = label["Wikipedia"]
local wikipedia = label["Wikipedia"]
if display ~= nil then return display end
if display ~= nil then return display, cat_out end
if glossary ~= nil then
if glossary ~= nil then
local g_url = "Appendix:Glossary#" .. (type(glossary) == "string" and glossary or label_id)
local g_url = "Appendix:Glossary#" .. (type(glossary) == "string" and glossary or label_id)
return "[[" .. g_url .. "|" .. label_id .. "]]"
return "[[" .. g_url .. "|" .. label_id .. "]]", cat_out
end
end
if wikipedia ~= nil then
if wikipedia ~= nil then
return "[[w:" .. (type(wikipedia) == "string" and wikipedia or label_id) .. "]]"
return "[[w:" .. (type(wikipedia) == "string" and wikipedia or label_id) .. "]]", cat_out
end
end
return label_id
return label_id, cat_out
end
end
local l_data = mw.loadData("Module:labels/data")
local l_data = mw.loadData("Module:labels/data")
local ret = "(''"
local out = "(''"
local cats = {}
local cats = ""
local skip_comma = false
local skip_comma = false
for i, l_id in ipairs(labels) do
for i, l_id in ipairs(labels) do
Line 24: Line 31:
local label = l_data.labels[l_id]
local label = l_data.labels[l_id]
if i > 1 then
if i > 1 then
ret = ret .. (skip_comma and " " or ", ")
out = out .. (skip_comma and " " or ", ")
end
end
if label == null then
if label == null then
ret = ret .. l_id
out = out .. l_id
skip_comma = false
skip_comma = false
else
else
ret = ret .. make_label(l_id, label)
l_out, l_cats = make_label(l_id, label)
out = out .. l_out
cats = cats .. l_cats
skip_comma = label["omit_comma"] or false
skip_comma = label["omit_comma"] or false
end
end
end
end
ret = ret .. ")"
out = out .. ")"
return ret .. ((nocat and "") or table.concat(cats))
return out .. (nocat and "" or cats)
end
end



Revision as of 12:37, 6 August 2023

local export = {}

function export.make_labels(language, labels, nocat)
	local function make_label(label_id, label, language_name)
		local categories = label["categories"]
		local cat_out = ""
		if categories ~= nil then
			for _, cat in ipairs(categories) do
				cat_out = cat_out .. "[[Category:" .. language_name .. " " .. cat .. "]]"
			end
		end
		local display = label["display"]
		local glossary = label["glossary"]
		local wikipedia = label["Wikipedia"]
		if display ~= nil then return display, cat_out end
		if glossary ~= nil then
			local g_url = "Appendix:Glossary#" .. (type(glossary) == "string" and glossary or label_id)
			return "[[" .. g_url .. "|" .. label_id .. "]]", cat_out
		end
		if wikipedia ~= nil then
			return "[[w:" .. (type(wikipedia) == "string" and wikipedia or label_id) .. "]]", cat_out
		end
		return label_id, cat_out
	end
	local l_data = mw.loadData("Module:labels/data")
	local out = "(''"
	local cats = ""
	local skip_comma = false
	for i, l_id in ipairs(labels) do
		l_id = l_data.aliases[l_id] or l_id
		local label = l_data.labels[l_id]
		if i > 1 then
			out = out .. (skip_comma and " " or ", ")
		end
		if label == null then
			out = out .. l_id
			skip_comma = false
		else
			l_out, l_cats = make_label(l_id, label)
			out = out .. l_out
			cats = cats .. l_cats
			skip_comma = label["omit_comma"] or false
		end
	end
	out = out .. ")"
	return out .. (nocat and "" or cats)
end

function export.show(frame)
	local params = {
		[1] = {required = true},
		[2] = {required = true, list = true},
		["nocat"] = {type = "boolean"}
	}
	local args = require("Module:parameters").process(frame:getParent().args, params)
	local language = require("Module:languages").get_by_code(args[1])
	return export.make_labels(language, args[2], args["nocat"])
end

return export