模組:Affix/pseudo-loan

維基詞典,自由的多語言詞典
local export = {}

local debug_force_cat = false -- set to true for testing

local m_compound = require("Module:compound")

local pseudo_loan_by_source = {
	["ar"] = "阿拉伯語",
	["de"] = "德語",
	["en"] = "英語",
	["es"] = "西班牙語",
	["fr"] = "法語",
	["it"] = "意大利語",
	["ja"] = "日語",
	["la"] = "拉丁語",
}

local function get_pseudo_loan_text(lang, source, has_parts, nocap)
	local langcode = lang:getCode()
	local sourcecode = source:getCode()
	local function glossary_pseudo_loan_link(display)
		return "[[Appendix:Glossary#pseudo-loan|" .. display .. "]]"
	end
	local text
	if langcode == "ja" and sourcecode == "en" then
		text = "{{m|ja|和製英語}}," ..
			glossary_pseudo_loan_link("偽英語") .. ")"
		text = mw.getCurrentFrame():preprocess(text)
	elseif pseudo_loan_by_source[sourcecode] then
		text = "偽" .. pseudo_loan_by_source[sourcecode]
	else
		text = "偽" .. source:getCanonicalName()
	end
	if has_parts then
		text = text .. ",源自"
	end
	return text
end


function export.show_pseudo_loan(lang, source, sc, parts, sort_key, nocap, notext, nocat, lit, force_cat)
	local parts_formatted = {}
	local categories = {}

	if not nocat then
		table.insert(categories, "源自" .. source:getCanonicalName() .. "的偽借詞")
		table.insert(categories, "派生自" .. source:getCanonicalName() .. "的詞")
	end

	-- Make links out of all the parts
	for i, part in ipairs(parts) do
		table.insert(parts_formatted, m_compound.link_term(part, part.term,
			-- If the part is in a language other than the source, we need to pass `lang` here and not `source`,
			-- because the value is used as the destination language in derived-from categories. For example, in
			-- [[Ego-Shooter]], a German pseudo-loan from English but where the first part is from Latin, we'll wrongly
			-- get the page placed in 'English terms derived from Latin' if we always pass `source`. When the part is in
			-- the source language, we do need to pass `source` so the part gets linked correctly.
			part.lang and lang or source, sc, sort_key, force_cat or debug_force_cat, nocat))
	end

	local text_sections = {}
	if not notext then
		table.insert(text_sections, get_pseudo_loan_text(lang, source, #parts > 0, nocap))
	end
	table.insert(text_sections, m_compound.concat_parts(lang, parts_formatted, categories, nocat, sort_key, lit, force_cat or debug_force_cat))
	return table.concat(text_sections)
end


return export