Модул:translations

Документација модула[прикажи] [уреди] [историја] [освежи]

This module is used for the translation templates {{t}} and {{t+}}. It contains a single function which is invoked by these templates. See their documentation for more information.

local require = require
local load_data = mw.loadData

local param_process = require("Модул:parameters").process
local m_params_data = load_data("Модул:parameters/data")

local export = {}

-- Implements {{t}} and {{t+}}.
function export.show(frame)
	local args = param_process(
		frame:getParent().args,
		m_params_data.translations.show,
		nil,
		"translations",
		"show"
	)
	
	local terminfo = {
		lang = require("Модул:languages").getByCode(args[1], 1, "allow etym"),
		sc = args.sc and require("Модул:scripts").getByCode(args.sc, "sc"),
		term = args[2] or mw.title.getCurrentTitle().namespace == 10 and "term",
		alt = args.alt,
		id = args.id,
		genders = args[3],
		tr = args.tr,
		ts = args.ts,
		lit = args.lit,
		interwiki = frame.args.interwiki,
	}
	
	return export.show_terminfo(terminfo)
end

local function interwiki(terminfo, lang, langcode, term, m_links, m_data)
	-- Don't show interwiki link if the term contains links (for SOP translations)
	if term:find("[[", nil, true) then
		terminfo.interwiki = false
		return
	end
	
	local wmlangs
	local interwiki_langcode = m_data.interwiki_langs[langcode]
	if interwiki_langcode then
		wmlangs = {require("Модул:wikimedia languages").getByCode(interwiki_langcode)}
	else
		wmlangs = lang:getWikimediaLanguages()
	end
	
	-- Don't show the interwiki link if the language is not recognised by Wikimedia.
	if #wmlangs == 0 then
		terminfo.interwiki = false
		return
	end
	
	local wmlangcode = wmlangs[1]:getCode()
	if m_data.ignore_caps[wmlangcode] then
		term = term
			:gsub("%f[%^\\]%^", "")
			:gsub("\\^", "^")
	end
	
	local sc = terminfo.sc
	
	local target_page = m_links.getLinkPage(term, lang, sc)
	
	local interwiki_link = m_links.language_link{
		lang = lang,
		sc = sc,
		term = wmlangcode .. ":" .. target_page,
		alt = "(" .. wmlangcode .. ")",
		tr = "-"
	}
	
	terminfo.interwiki = tostring(mw.html.create("span")
		:addClass("tpos")
		:wikitext(" " .. interwiki_link))
end

function export.show_terminfo(terminfo)
	local lang = terminfo.lang
	-- Translations must be for mainspace languages
	if not lang:hasType("regular") then
		error("Translations must be for attested and approved main-namespace languages.")
	end
	
	local langcode = lang:getCode()
	local term = terminfo.term
	local m_links = require("Модул:links")
	local m_data
	
	-- Check if there is a term. Don't show the interwiki link if there is nothing to link to.
	if term then
		m_data = load_data("Модул:translations/data")
		-- Track translations for particular languages
		if m_data.tracked[langcode] then
			require("Модул:debug/track")("translations/" .. langcode)
		end
		
		if terminfo.interwiki then
			interwiki(terminfo, lang, langcode, term, m_links, m_data)
		end
	else
		-- Track entries that don't provide a term.
		local track = require("Модул:debug/track")
		track("translations/no term")
		track("translations/no term/" .. langcode)
	end
	
	if lang then
		m_data = m_data or load_data("Модул:translations/data")
		if m_data.need_super[langcode] then
			local tr = terminfo.tr
			terminfo.tr = tr and tr:gsub("(%d%-?%d?)", "<sup>%1</sup>")
		end
	end
	
	return m_links.full_link(terminfo, "translation", true)
end

-- Implements {{trans-top}} and part of {{trans-top-also}}.
local function top(args, title, navhead, html_create)
	local insert = table.insert
	
	local column_width = (args["column-width"] == "wide" or args["column-width"] == "narrow") and "-" .. args["column-width"] or ""
	
	local div = html_create("div")
		:addClass("NavFrame")
		:node(navhead)
		:tag("div")
			:addClass("NavContent")
			:tag("table")
				:addClass("translations")
				:attr("role", "presentation")
				:css("width", "100%")
				:attr("data-gloss", title or "")
				:tag("tr")
					:tag("td")
						:addClass("translations-cell multicolumn-list" .. column_width)
						:css("background-color", "#ffffe0")
						:css("vertical-align", "top")
						:css("text-align", "left")
						:attr("colspan", "3")
						:allDone()
	
	local id = args.id or title
	div = id and div:attr("id", "Преводи-" .. id) or div
	div = tostring(div)
	
	local categories = {}
	
	if not title and mw.title.getCurrentTitle().namespace == 0 then
		insert(categories, "Translation table header lacks gloss")
	end
	
	local pagename = load_data("Модул:headword/data").encoded_pagename
		:gsub("/translations$", function(m)
			insert(categories, "Translation subpages")
			return ""
		end)
	
	if #categories > 0 then
		categories = require("Модул:utilities").format_categories(
			categories,
			require("Модул:languages").getByCode("en"),
			nil,
			pagename
		)
	else
		categories = ""
	end
	
	return (div:gsub("</td></tr></table></div></div>$", "")) .. categories
end

-- Entry point for {{trans-top}}.
function export.top(frame)
	local args = param_process(
		frame:getParent().args,
		m_params_data.translations.top,
		nil,
		"translations",
		"top"
	)
	
	local title = args[1]
	title = title and require("Модул:links").remove_links(title)
	
	local html_create = mw.html.create
	local navhead = html_create("div")
		:addClass("NavHead")
		:css("text-align", "left")
		:css("cursor", "pointer")
		:wikitext(title or "Преводи")
		
	return top(args, title, navhead, html_create)
end

-- Implements {{trans-bottom}}.
function export.bottom(frame)
	-- Check nothing is being passed as a parameter.
	param_process(
		frame:getParent().args,
		m_params_data.translations.bottom,
		nil,
		"translations",
		"bottom"
	)
	return "</table></div></div>"
end

-- Implements {{trans-see}} and part of {{trans-top-also}}.
local function see(args, see_text, html_create)
	local table = table
	local insert = table.insert
	
	local navhead = html_create("div")
		:addClass("NavHead")
		:css("text-align", "left")
		:wikitext(args[1] .. " ")
		:tag("span")
			:css("font-weight", "normal")
			:wikitext("— ")
			:tag("i")
				:wikitext(see_text)
				:allDone()
	
	local data = {}
	data.id = args["id"] and "Преводи-" .. args["id"]
	
	local terms = {}
	if #args[2] == 0 then
		table.insert(args[2], args[1])
	end
	
	local plain_link = require("Модул:links").plain_link
	for i, term in ipairs(args[2]) do
		data.term = args[2][i]
		insert(terms, plain_link(data, false))
	end
	
	return navhead:wikitext(table.concat(terms, ",&lrm; "))
end

-- Entry point for {{trans-see}}.
function export.see(frame)
	local args = param_process(
		frame:getParent().args,
		m_params_data.translations.see,
		nil,
		"translations",
		"see"
	)
	local html_create = mw.html.create
	local navhead = see(args, "see ", html_create)
	return tostring(html_create("div")
		:addClass("pseudo NavFrame")
		:node(navhead))
end

-- Entry point for {{trans-top-also}}.
function export.top_also(frame)
	local args = param_process(
		frame:getParent().args,
		m_params_data.translations.top_also,
		nil,
		"translations",
		"top_also"
	)
	
	local title = args[1]
	title = title and require("Модул:links").remove_links(title)
	
	local html_create = mw.html.create
	local navhead = see(args, "see also ", html_create)
	return top(args, title, navhead, html_create)
end
	
return export