模組:Accel/fr

維基詞典,自由的多語言詞典

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


return {generate = function (params, entry)
	if params.pos == "名詞" and params.form == "p" then
		entry.head = entry.make_head("名詞複數形式")
	elseif params.pos == "動詞" and params.form == "pp" then
		entry.head = "{{fr-past participle}}"
		entry.def = entry.make_def("past participle of")
	elseif params.pos == "動詞" and params.form == "ppr" then
		entry.head = entry.make_head("現在分詞")
		entry.def = entry.make_def("present participle of")
	end
end}