Modul:documentation/functions/zh dial or syn

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

return function(title, cats)
	local type_of_data, character = title.fullText:match("^Module:zh/data/dial%-(%l+)/(.+)$")
	if character then
		local what, where
		if type_of_data == "pron" then
			what = "the pronunciation"
			where = "dialects"
		elseif type_of_data == "syn" then
			what = "synonyms"
			where = "dialects and varieties"
		end
		
		if what then
			local link = require("Module:links").full_link{
				lang = require "Module:languages".getByCode("zh"),
				term = character,
			}
			return ("This module contains data on %s of %s in %s of Chinese.")
				:format(what, link, where)
		end
	end
end