本模块包含挪威語的新條目建立規則;有關概述,請參見en:WT:ACCEL,有關創建新規則的資訊,請參見en:Module:accel


return {generate = function (params, entry)
	local template = {
		['imperative'] = 'imperative of',
		['present'] = 'present tense of',
		['past'] = 'past tense of',
		['past-participle'] = 'past participle of'}
	
	if template[params.form] then
		entry.def = entry.make_def(template[params.form], (params.form == "imperative" and "|nocat=1" or ""))
	end
end}