Module:category tree/poscatboiler/data/word of the day

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

This data submodule defines part of Wiktionary's category structure.

For an introduction to the poscatboiler system and a description of how to add or modify categories, see Module:category tree/poscatboiler/data/documentation.


local raw_categories = {}
local raw_handlers = {}



-----------------------------------------------------------------------------
--                                                                         --
--                              RAW CATEGORIES                             --
--                                                                         --
-----------------------------------------------------------------------------


raw_categories = {
	description = "Categories with foreign words of day in various languages.",
	additional = "{{{umbrella_msg}}}",
	parents = {
		"Category:Foreign word of the day archive",
	},
	breadcrumb = "Foreign words of the day by language",
	hidden = true,
}



-----------------------------------------------------------------------------
--                                                                         --
--                                RAW HANDLERS                             --
--                                                                         --
-----------------------------------------------------------------------------


table.insert(raw_handlers, function(data)
	local langname = data.category:match("^Foreign words of the day in (.*)$")
	if langname then
		local lang = require("Module:languages").getByCanonicalName(langname, true)
		return {
			lang = lang:getCode(),
			description = "Foreign words of the day in " .. lang:makeCategoryLink() .. ".",
			parents = {
				{name = "Foreign words of the day by language", sort = langname},
			},
			breadcrumb = langname,
			hidden = true,
		}
	end
end)


return {RAW_CATEGORIES = raw_categories, RAW_HANDLERS = raw_handlers}