Modul:accel/cmn

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

return {generate = function (params, entry)
	if params.form == "pinyin-ts" then
		entry.pos_header = "Romanization"
		entry.head = "{{cmn-pinyin}}"
		entry.def = "{{pinyin reading of|" .. params.origin .. "}}"
	elseif params.form == "pinyin-t" then
		entry.pos_header = "Romanization"
		entry.head = "{{cmn-pinyin}}"
		-- the simplified form is passed through the gender parameter
		entry.def = "{{pinyin reading of|" .. params.origin .. "|" .. params.transliteration .. "}}"
	elseif params.form == "pinyin-s" then
		entry.pos_header = "Romanization"
		entry.head = "{{cmn-pinyin}}"
		-- the traditional form is passed through the gender parameter
		entry.def = "{{pinyin reading of|" .. params.transliteration .. "|" .. params.origin .. "}}"
	end
end}