Module:documentation/functions/Quotation

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


return function (title, cats, lang_code, data_suffix)
	local lang = require("Module:languages").getByCode(lang_code)
	if not lang then
		return "This module has an invalid language code in the title: <code>" .. lang_code .. "</code>."
	end
	local error_message = ""
	if not require("Module:Quotations").hasData then
		error_message = ' <code class="error">The language code ' .. lang_code
			.. " needs to be added to the <code>hasData</code> table in ].</code>"
	end
	-- Modules where data_suffix == "" could be put in "language modules" categories
	-- instead of "language data modules".
	cats:insert("Quotation data modules|" .. lang_code)
	cats:insert(lang:getCanonicalName() .. " data modules|Quotations")
	return "This module contains data for works in "
		.. lang:makeCategoryLink()
		.. " and is used to format the parameters of <code>{{]|" .. lang_code .. "|...}}</code>."
		.. error_message
end