Module:User:Wyang/desired

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


local export = {}
local data = mw.loadData("Module:User:Wyang/desired/data")

function export.catch_em_all2()
	result = {}
	i, j = 0, 4586
	while i < 200 do
		while not data do
			j = j + 1
		end
		local readings = data
		if not mw.title.new(readings).exists then
			table.insert(result, " = { \"" .. readings .. "\", \"" .. readings .. "\", " .. readings .. " },")
			i = i + 1
		end
		j = j + 1
	end
	return "<pre>" .. table.concat(result, "\n") .. "</pre>"
end
	
function export.catch_em_all()
	result = { "List of Chinese entries to add, sorted by importance. Showing the first 300 uncreated words.\n\n==List==\n<small>(There are errors.)</small>\n<center>\n{| class=\"wikitable sortable\" style=\"text-align:center; font-size: 120%\"\n|-\n!Word!!Readings!!Count" }
	i, j = 0, 1
	while i < 200 do
		while not data do
			j = j + 1
		end
		local readings = data
		if not mw.title.new(readings):getContent() then
			table.insert(result, "\n|-\n|style=\"background-color:#cfe8f7\"|<span lang=\"zh\" class=\"Hani\" style=\"font-size:140%\"> ..
				"]]</span>\n|style=\"background-color:#FFFDD0\"|" .. mw.ustring.gsub(mw.ustring.gsub(readings, "(+):(+)", "<b>%1</b>: <i>%2</i>"), "|", "<br>") .. "\n|" .. readings)
			i = i + 1
		end
		j = j + 1
	end
	
	return table.concat(result) .. "\n|}\n</center>"
end

return export