Module:User:Benwing2/etymology/templates/inherited

Hello, you have come here looking for the meaning of the word Module:User:Benwing2/etymology/templates/inherited. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Benwing2/etymology/templates/inherited, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Benwing2/etymology/templates/inherited in singular and plural. Everything you need to know about the word Module:User:Benwing2/etymology/templates/inherited you have here. The definition of the word Module:User:Benwing2/etymology/templates/inherited will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Benwing2/etymology/templates/inherited, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

This is a private module sandbox of Benwing2, for their own experimentation. Items in this module may be added and removed at Benwing2's discretion; do not rely on this module's stability.


local export = {}

local etymology_module = "Module:User:Benwing2/etymology"
local etymology_templates_internal_module = "Module:User:Benwing2/etymology/templates/internal"

function export.inherited(frame)
	local args, lang, term, sources = require(etymology_templates_internal_module).parse_2_lang_args(frame, nil, "no family")
	if sources then
		-- Because this doesn't really make sense.
		error("] doesn't support multiple comma-separated sources")
	end
	return require(etymology_module).format_inherited {
		lang = lang,
		terminfo = term,
		sort_key = args,
		nocat = args,
	}
end

return export