Module:accel/fr

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

This module contains new entry creation rules for French; see WT:ACCEL for an overview, and Module:accel for information on creating new rules.


return {generate = function (params, entry)
	if params.pos == "verb" and params.form == "pp" then
		entry.head = "{{fr-past participle}}"
		entry.def = entry.make_def("past participle of")
	elseif params.pos == "verb" and params.form == "ppr" then
		entry.head = entry.make_head("present participle")
		entry.def = entry.make_def("present participle of")
	-- special handling for female equivalents
	elseif params.pos == "noun" and params.form == "f" then
		entry.head = "{{fr-noun|f}}"
		-- definition already correct
	end
end}