Jump to content

Module:Sandbox/Quantum10000-2

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Quantum10000 (talk | contribs) at 16:39, 20 July 2023 (Created page with 'p.declension = function(frame) local pos = frame.args.input local word = frame.args.word local def = frame.args.def -- nu-n=>n, ku-k=>k if pos == "na" then pos = [=[{| class=wikitable |+ Declension of ''"]=] .. word .. [=['' (]=] .. def .. [=[) ! ! Singular!!Plural |- ! nominative | {{Tooltip|]=] .. word .. [=[|]=] .. def .. [=[}} | {{Tooltip|]=] .. word .. [=[ak|]=] .. def .. [=[ (plural)}} |- ! locative | {{Tooltip|]=] .. word...'). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
p.declension = function(frame)
	local pos = frame.args.input
	local word = frame.args.word
	local def = frame.args.def

	-- nu-n=>n, ku-k=>k
	if pos == "na" then
		pos = [=[{| class=wikitable
		|+ Declension of ''"]=] .. word .. [=['' (]=] .. def .. [=[)
		! 
		! Singular!!Plural
		|-
		! nominative
		| {{Tooltip|]=] .. word .. [=[|]=] .. def .. [=[}}
		| {{Tooltip|]=] .. word .. [=[ak|]=] .. def .. [=[ (plural)}}
		|-
		! locative
		| {{Tooltip|]=] .. word .. [=[ung|]=] .. def .. [=[}}
		| {{Tooltip|]=] .. word .. [=[ung|]=] .. def .. [=[ (plural)}}
		|-
		! diminutive
		| {{Tooltip|]=] .. word .. [=[ush|]=] .. def .. [=[}}
		| {{Tooltip|]=] .. word .. [=[ush'shak|]=] .. def .. [=[ (plural)}}
		|-
		! obviative
		| {{Tooltip|]=] .. word .. [=[al|]=] .. def .. [=[ (obv)}}
		| {{Tooltip|]=] .. word .. [=[al|]=] .. def .. [=[ (plural obv)}}
		|-
		|}]=]
	end

	return pos
end

return p