Modul:Substantiv

Aus KGS-Wiki

Dieses Modul erzeugt lateinische Konjugationstabellen aus gegebenen Stämmen.

💬
Beispiel
  • {{subst:#invoke:Substantiv|render|metus|met|u|m|52}} für ein Substantiv mit Singular und Plural. Optional kann numeri=SP ergänzt werden, muss aber nicht
  • {{subst:#invoke:Substantiv|render|moenia|moen|i|n|51|numeri=P}} für ein Pluraletantum
  • {{subst:#invoke:Substantiv|render|aurum|aur|o|n|67|numeri=S}} für ein Singularetantum
Erläuterung
{{subst: Immer nur mit subst einbinden, damit die Formen im Seitenquelltext landen und für die Suchfunktion auffindbar sind.
#invoke:Substantiv| Name des Moduls
render| rufe die Funktion render auf
iter| Grundform
itiner| Stamm
k| Deklination (erlaubt sind a, e, i, k, o und u)
n| Genus (erlaubt sind m, f und n)
44| Optional: Lektion, in der die Vokabel eingeführt wird (Standard: 0, d.h. nicht in Campus enthalten)
numeri=SP Optional: Verfügbare Numeri
Erlaubte Werte
  • SP: Verb bildet Singular- und Pluralformen (Standard)
  • S: Verb bildet nur Singularformen
  • P: Verb bildet nur Pluralformen
👉
Hinweis

Dieses Modul sollte immer mit subst: eingebunden werden, damit alle Formen im durchsuchbaren Seitenquelltext landen und eine Suche nach ducum auch zu dux führt.

👉Testfälle


local p = {}

local KASUS  = {'Nominativ', 'Genitiv', 'Dativ', 'Akkusativ', 'Ablativ', 'Vokativ'}
local NUMERI = {S = 'Singular', P = 'Plural'}
local NABBRV = {S = 'Sg.', P = 'Pl.'}
local DEKLS = {
	o = {
		m = {
			S = {'', 'i', 'o', 'um', 'o', 'e'};
			P = {'i', 'orum', 'is', 'os', 'is'}
		};
		f = {
			S = {'', 'i', 'o', 'um', 'o'};
			P = {'i', 'orum', 'is', 'os', 'is'}
		};
		n = {
			S = {'', 'i', 'o', 'um', 'o'};
			P = {'a', 'orum', 'is', 'a', 'is'}
		};
		name = 'o-Deklination'
	};
	a = {
		m = {
			S = {'', 'ae', 'ae', 'am', 'ā'};
			P = {'ae', 'arum', 'is', 'as', 'is'}
		};
		f = {
			S = {'', 'ae', 'ae', 'am', 'ā'};
			P = {'ae', 'arum', 'is', 'as', 'is'}
		};
		n = {
			S = {'', 'ae', 'ae', 'am', 'ā'};
			P = {'ae', 'arum', 'is', 'as', 'is'}
		};
		name = 'a-Deklination'
	};
	k = {
		m = {
			S = {'', 'is', 'i', 'em', 'e'};
			P = {'es', 'um', 'ibus', 'es', 'ibus'}
		};
		f = {
			S = {'', 'is', 'i', 'em', 'e'};
			P = {'es', 'um', 'ibus', 'es', 'ibus'}
		};
		n = {
			S = {'', 'is', 'i', 'em', 'e'};
			P = {'a', 'um', 'ibus', 'a', 'ibus'}
		};
		name = '3. Deklination'
	};
	e = {
		m = {
			S = {'', 'ei', 'ei', 'em', 'e'};
			P = {'es', 'erum', 'ebus', 'es', 'ebus'}
		};
		f = {
			S = {'', 'ei', 'ei', 'em', 'e'};
			P = {'es', 'erum', 'ebus', 'es', 'ebus'}
		};
		n = {
			S = {'', 'ei', 'ei', 'em', 'e'};
			P = {'es', 'erum', 'ebus', 'es', 'ebus'}
		};
		name = 'e-Deklination'
	};
	i = {
		m = {
			S = {'', 'is', 'i', 'em', 'i'};
			P = {'es', 'ium', 'ibus', 'es', 'ibus'}
		};
		f = {
			S = {'', 'is', 'i', 'em', 'i'};
			P = {'es', 'ium', 'ibus', 'es', 'ibus'}
		};
		n = {
			S = {'', 'is', 'i', 'em', 'i'};
			P = {'ia', 'ium', 'ibus', 'ia', 'ibus'}
		};
		name = 'i-Deklination'
	};
	u = {
		m = {
			S = {'', 'ūs', 'ui', 'um', 'u'};
			P = {'ūs', 'uum', 'ibus', 'ūs', 'ibus'}
		};
		f = {
			S = {'', 'ūs', 'ui', 'um', 'u'};
			P = {'ūs', 'uum', 'ibus', 'ūs', 'ibus'}
		};
		n = {
			S = {'', 'ūs', 'ui', 'u', 'u'};
			P = {'ūa', 'uum', 'ibus', 'ūa', 'ibus'}
		};
		name = 'u-Deklination'
	}
}

function renderTemplate(name, params)
	local frame = mw.getCurrentFrame()
	local templateText
	if mw.isSubsting() then
		table.sort(params)
		templateText = '{{' .. name
		for k,v in pairs(params) do
			templateText = templateText .. '|' .. k .. '=' .. v
		end
		templateText = templateText .. '}}'
	else
		templateText = frame:expandTemplate({title=name, args=params})
	end
	return templateText 
end

function enclose(text)
    return tostring(mw.html.create('span'):attr('lang', 'la'):wikitext(text))
end

function bildeFormen(basic, stamm, dekl, genus, numeri)
	formen = {}
	for nk,_ in numeri:gmatch('.') do
		for kk,kv in pairs(DEKLS[dekl][genus][nk]) do
			if not formen[kk] then
				formen[kk] = {}
			end
			formen[kk][nk] = stamm .. kv
		end
	end
	formen[1][numeri:sub(1,1)] = basic
	if genus == 'n' then
		formen[4][numeri:sub(1,1)] = basic
	end
	if formen[6] and not basic:match("us$") then
		formen[6] = nil
	end
return formen
end

function renderFormen(formen, dekl)
	local table = ''
	table = table .. '{| class="wikitable mw-collapsible"\n'
	table = table .. '|+ [[' .. DEKLS[dekl].name .. ']]\n! '
	for nk,nv in pairs(formen[1]) do
			table = table .. ' !! [[' .. NUMERI[nk] .. ']]'
	end
	table = table .. '\n|-\n'
	for kk,kv in pairs(formen) do
		table = table .. '! [[' .. KASUS[kk] .. ']]\n'
		for nk,nv in pairs(kv) do
			table = table .. ' || ' .. enclose(nv) 
		end
		table = table .. '\n|-\n'
	end
	table = table .. '|}'
	return table
end

function p.render()
	local frame = mw.getCurrentFrame()
    local basic = frame.args[1] or frame:getParent().args[1] or 'exemplum'
    local stamm = frame.args[2] or frame:getParent().args[2] or 'exempl'
    local dekl  = frame.args[3] or frame:getParent().args[3] or 'o'
    local genus = frame.args[4] or frame:getParent().args[4] or 'n'
    local lekt  = frame.args[5] or frame:getParent().args[5] or '0'
    local numeri= frame.args.numeri or frame:getParent().numeri or 'SP'
    local formen = bildeFormen(basic, stamm, dekl, genus, numeri)
    if numeri ~= 'SP' then
    	genus = genus .. ' ' .. NABBRV[numeri]
    end
	local pagecontent = ''
	
    if not mw.isSubsting() then
    	pagecontent = pagecontent .. renderTemplate("Achtung", {"Dieses Modul sollte nur mit <code>{{subst:#invoke:Substantiv|...}}</code> eingebunden werden! "})
    end
    pagecontent = pagecontent .. "{{DISPLAYTITLE:" .. basic .. "}}\n"
    pagecontent = pagecontent .. renderTemplate("Thumbnailbox", {INHALT= renderTemplate("Wortwolke", {basic, ""})}) .. "\n"
    pagecontent = pagecontent .. ";[[Lernformen]]: " .. enclose(basic) .. ", " .. enclose(formen[2][numeri:sub(1,1)]) .. ", " .. genus .. renderTemplate("Campus-Lektion", {lekt})
    pagecontent = pagecontent .. '\n\n'
    pagecontent = pagecontent .. ";Bedeutungen\n\n"
    pagecontent = pagecontent .. ";Feste Wendungen\n\n"
    pagecontent = pagecontent .. ";Aufbau\n\n"
    pagecontent = pagecontent .. ";Verwandte Wörter\n\n"
    pagecontent = pagecontent .. ";In anderen Sprachen\n\n"
    if numeri == 'S' then
    	pagecontent = pagecontent .. renderTemplate("Singularetantum", {}) .. '\n'
    elseif numeri == 'P' then
    	pagecontent = pagecontent .. renderTemplate("Pluraletantum", {}) .. '\n'
    end
    pagecontent = pagecontent .. "== Formen ==\n\n"
    pagecontent = pagecontent .. renderFormen(formen, dekl)
    pagecontent = pagecontent .. '\n\n'
    pagecontent = pagecontent .. '== Weblinks ==\n\n'
    pagecontent = pagecontent .. '* ' .. renderTemplate('Navigium', {basic}) .. '\n'
    pagecontent = pagecontent .. '* ' .. renderTemplate('Georges', {basic}) .. '\n'
    pagecontent = pagecontent .. '[[Kategorie:Substantiv (Latein)/' .. basic:sub(1,1) .. ']]'
	return pagecontent
end

return p