Modul:Lua banner/config

Üdvözlöm, Ön a Modul:Lua banner/config szó jelentését keresi. A DICTIOUS-ban nem csak a Modul:Lua banner/config szó összes szótári jelentését megtalálod, hanem megismerheted az etimológiáját, a jellemzőit és azt is, hogyan kell a Modul:Lua banner/config szót egyes és többes számban mondani. Minden, amit a Modul:Lua banner/config szóról tudni kell, itt található. A Modul:Lua banner/config szó meghatározása segít abban, hogy pontosabban és helyesebben fogalmazz, amikor beszélsz vagy írsz. AModul:Lua banner/config és más szavak definíciójának ismerete gazdagítja a szókincsedet, és több és jobb nyelvi forráshoz juttat.

A modult a Modul:Lua banner/config/doc lapon tudod dokumentálni

local cfg = {} -- Don’t touch this line.

-- Subpage blacklist: these subpages will not be categorized (except for the
-- error category, which is always added if there is an error).
-- For example “Template:Foo/doc” matches the `doc = true` rule, so it will have
-- no categories. “Template:Foo” and “Template:Foo/documentation” match no rules,
-- so they *will* have categories. All rules should be in the
--    = true,
-- format.
cfg = {
	 = true,
	 = true,
	 = true,
	 = true,
	 = true,
}

-- Allow wishes: whether wishes for conversion to Lua are allowed.
-- If true, calls with zero parameters are valid, and considered to be wishes:
-- The box’s text is “This template should use Lua”, and cfg is
-- added. If false, such calls are invalid, an error message appears, and
-- cfg is added.
cfg = false

-- Default category: this category is added if the module call contains errors
-- (e.g. no module listed). A category name without namespace, or nil
-- to disable categorization (not recommended).
cfg = 'Hibásan használt Lua-sablonok'

-- Wish category: this category is added if no module is listed, and wishes are
-- allowed. (Not used if wishes are not allowed.) A category name without
-- namespace, or nil to disable categorization.
cfg = nil

-- Default category: this category is added if none of the below module_categories
-- matches the first module listed. A category name without namespace, or nil
-- to disable categorization.
cfg = 'Lua-alapú sablonok'

-- Module categories: one of these categories is added if the first listed module
-- is the listed module (e.g. {{Lua|Module:String}} adds
-- ].) Format:
--    = '<category name>'
-- where neither <module name> nor <category name> contains namespace. An empty
-- table (i.e. no module-based categorization) will suffice on smaller wikis.
cfg = {
}

return cfg -- Don’t touch this line.