Modul:etymology
Görünüş
Bu modulun sənədləşdirmə səhifəsi Modul:etymology/doc səhifəsində yaradıla bilər
local export = {}
local contentLanguage
local function capitalize(str)
contentLanguage = contentLanguage or mw.getContentLanguage()
return contentLanguage:ucfirst(str)
end
local contentLanguage
local function lower(str)
contentLanguage = contentLanguage or mw.getContentLanguage()
return contentLanguage:lcfirst(str)
end
--[[ If language is an etymology language, iterates through parent languages
until it finds a non-etymology language. ]]
function export.getNonEtymological(lang)
while lang:getType() == "etymology language" do
local parentCode = lang:getParentCode()
local parent = require("Module:languages").getByCode(parentCode)
or require("Module:etymology languages").getByCode(parentCode)
or require("Module:families").getByCode(parentCode)
lang = parent
-- mw.log(terminfo.lang:getCode() .. " " .. terminfo.lang:getType())
end
return lang
end
local function termError(terminfo)
if terminfo.lang:getType() == "family" then
if terminfo.term and terminfo.term ~= "-" then
require("Module:debug").track("etymology/family/has-term")
end
terminfo.term = "-"
end
return terminfo
end
local function createLink(terminfo, templateName)
local link = ""
if terminfo.term == "-" then
--[=[
[[Special:WhatLinksHere/Template:tracking/cognate/no-term]]
[[Special:WhatLinksHere/Template:tracking/derived/no-term]]
[[Special:WhatLinksHere/Template:tracking/borrowed/no-term]]
[[Special:WhatLinksHere/Template:tracking/calque/no-term]]
]=]
require("Module:debug").track(templateName .. "/no-term")
else
-- mw.log(terminfo.term)
link = " " .. require("Module:links").full_link(terminfo, "term", true)
end
return link
end
function export.format_etyl(lang, source, sort_key, categories)
local info = {}
-- [[Special:WhatLinksHere/Template:tracking/etymology/sortkey]]
if sort_key then
require("Module:debug").track("etymology/sortkey")
end
if not categories then
categories = {}
end
if source:getCode() == "und" then
info = {
display = "undetermined",
cat_name = "other languages",
}
elseif source:getCode() == "mul-tax" then
info = {
display = "[[w:taxonomic name|taxonomic name]]",
cat_name = "taxonomic names",
}
else
info.display = source:makeWikipediaLink()
if source:getType() == "family" then
info.cat_name = lower(source:getCategoryName())
else
info.cat_name = lower(source:getCanonicalName())
end
end
-- Add the categories, but only if there is a current language
if lang then
local m_utilities = require("Module:utilities")
if lang:getCode() == source:getCode() then
table.insert(categories, lang:getCanonicalName() .. " twice-borrowed terms")
else
table.insert(categories,
capitalize(lang:getCanonicalName() .. " dilində " .. info.cat_name .. " mənşəli sözlər"))
end
categories = m_utilities.format_categories(categories, lang, sort_key)
else
categories = ""
end
return "<span class=\"etyl\">" .. info.display .. categories .. "</span>"
end
-- Internal implementation of {{cognate|...}} template
function export.format_cognate(terminfo, sort_key)
return export.format_derived(nil, terminfo, sort_key, "cognate")
end
-- Internal implementation of {{derived|...}} template
function export.format_derived(lang, terminfo, sort_key, templateName)
local source = terminfo.lang
terminfo.lang = export.getNonEtymological(terminfo.lang)
terminfo = termError(terminfo)
local link = createLink(terminfo, templateName or "derived")
return export.format_etyl(lang, source, sort_key) .. link
end
-- Internal implementation of {{inherited|...}} template
function export.format_inherited(lang, terminfo, sort_key)
local source = terminfo.lang
terminfo = termError(terminfo)
terminfo.lang = export.getNonEtymological(terminfo.lang)
if not lang:hasAncestor(terminfo.lang) and mw.title.getCurrentTitle().nsText ~= "Template" then
error(terminfo.lang:getCanonicalName() .. " is not set as an ancestor of "
.. lang:getCanonicalName() .. ". See [[:Category:"
.. lang:getCategoryName() .. "]] for the ancestors of "
.. lang:getCanonicalName() .. ".")
end
local categories = {}
local link = createLink(terminfo, "inherited")
table.insert(categories, lang:getCanonicalName() .. " terms inherited from " .. source:getCanonicalName())
return export.format_etyl(lang, source, sort_key, categories) .. link
end
-- Internal implementation of {{borrowed|...}} template
function export.format_borrowed(lang, terminfo, sort_key, notext, learned)
local source = terminfo.lang
terminfo.lang = export.getNonEtymological(terminfo.lang)
terminfo = termError(terminfo)
local text = ""
local categories = {}
if lang:getCode() == source:getCode() then
table.insert(categories, lang:getCanonicalName() .. " twice-borrowed terms")
elseif source:getType() == "family" then
table.insert(categories, lang:getCanonicalName() .. " terms borrowed from " .. source:getCategoryName())
else
table.insert(categories, lang:getCanonicalName() .. " terms borrowed from " .. source:getCanonicalName())
end
if not notext then
if learned then
text = "[[learned borrowing|Learned borrowing]] from "
else
text = "[[Appendix:Glossary#loanword|Borrowing]] from "
end
end
if learned then
table.insert(categories, lang:getCanonicalName() .. " learnedly borrowed terms")
end
local link = createLink(terminfo, "borrowed")
return text .. export.format_etyl(lang, source, sort_key, categories) .. link
end
-- Internal implementation of {{calque|...}} template
function export.calque(lang, terminfo, sort_key, nocap, notext)
local result = ""
if not notext then
result = result .. "[[Appendix:Glossary#calque|" .. (nocap and "c" or "C") .. "alque]] of "
end
local source = terminfo.lang
terminfo.lang = export.getNonEtymological(terminfo.lang)
terminfo = termError(terminfo)
local categories = {}
if source:getType() == "family" then
table.insert(categories, lang:getCanonicalName() .. " terms calqued from " .. source:getCategoryName())
else
table.insert(categories, lang:getCanonicalName() .. " terms calqued from " .. source:getCanonicalName())
end
local link = createLink(terminfo, "calque")
result = result .. " " .. export.format_etyl(lang, source, sort_key, categories) .. link
return result
end
-- Internal implementation of {{semantic loan|...}} template
function export.format_semantic_loan(lang, terminfo, sort_key, nocap, notext)
if nocap then
require("Module:debug").track("semantic_loan/nocap")
end
local source = terminfo.lang
terminfo.lang = export.getNonEtymological(terminfo.lang)
terminfo = termError(terminfo)
local text = ""
local categories = {}
if source:getType() == "family" then
table.insert(categories, lang:getCanonicalName() .. " semantic loans from " .. source:getCategoryName())
else
table.insert(categories, lang:getCanonicalName() .. " semantic loans from " .. source:getCanonicalName())
end
if not notext then
text = "[[w:Semantic loan|" .. (nocap and "s" or "S") .. "emantic loan]] from "
end
local link = createLink(terminfo, "semantic_loan")
return text .. export.format_etyl(lang, source, sort_key, categories) .. link
end
-- Internal implementation of {{phono-semantic matching|...}} template
function export.psm(lang, terminfo, sort_key, nocap, notext)
if nocap then
require("Module:debug").track("psm/nocap")
end
local source = terminfo.lang
terminfo.lang = export.getNonEtymological(terminfo.lang)
terminfo = termError(terminfo)
local text = ""
local categories = {}
if source:getType() == "family" then
table.insert(categories, lang:getCanonicalName() .. " phono-semantic matchings ")
else
table.insert(categories, lang:getCanonicalName() .. " phono-semantic matchings ")
end
if not notext then
text = "[[w:Phono-semantic matching|" .. (nocap and "p" or "P") .. "hono-semantic matching]] of "
end
local link = createLink(terminfo, "psm")
return text .. export.format_etyl(lang, source, sort_key, categories) .. link
end
return export