Module:accel/fax

Hello, you have come here looking for the meaning of the word Module:accel/fax. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:accel/fax, but we will also tell you about its etymology, its characteristics and you will know how to say Module:accel/fax in singular and plural. Everything you need to know about the word Module:accel/fax you have here. The definition of the word Module:accel/fax will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:accel/fax, 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 Fala; see WT:ACCEL for an overview, and Module:accel for information on creating new rules.


return {generate = function (params, entry)
	
	-- an attempt to add dialect labels, ]
	local dialect = mw.ustring.match(params.form, "%|+$")
	local form = dialect and mw.ustring.gsub(params.form, dialect, "") or params.form
	
	-- special handling for female equivalents
	if params.pos == "noun" and form == "f" then
		entry.head = "{{fax-noun|f}}"
	elseif params.pos == "past participle" then
		entry.pos_head = "Participle"
		if form == "m|sg" then entry.head = "{{fax-past participle}}" end
		entry.def = "{{infl of|fax|" .. params.origin .. "||" .. form .. "}}"
	end
	
	if dialect then entry.def = "{{lb|fax" .. dialect .. "}} " .. entry.def end
end}