Modul:documentation/functions/translit

Üdvözlöm, Ön a Modul:documentation/functions/translit szó jelentését keresi. A DICTIOUS-ban nem csak a Modul:documentation/functions/translit 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:documentation/functions/translit szót egyes és többes számban mondani. Minden, amit a Modul:documentation/functions/translit szóról tudni kell, itt található. A Modul:documentation/functions/translit szó meghatározása segít abban, hogy pontosabban és helyesebben fogalmazz, amikor beszélsz vagy írsz. AModul:documentation/functions/translit é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:documentation/functions/translit/doc lapon tudod dokumentálni

return function (title, cats)
	-- Check that the title begins in a language or script code.
	-- If so, expand {{translit module documentation}} with that code
	-- as the first parameter.
	local code = title.text:match("^(+)%-")
	
	if not (code and require("Module:languages").getByCode(code)) then
		code = title.text:match("^(%u%l%l%l)%-")
		if not require("Module:scripts").getByCode(code) then
			return
		end
	end
	
	return mw.getCurrentFrame():expandTemplate {
		title = "translit module documentation",
		args = { code },
	}
end