Module:languages/byEntryNameModule

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


return function(entryNameModule)
	local langs = {}
	
	for code, data in pairs(require("Module:languages/data/all")) do
		if data.entry_name == entryNameModule then
			langs = data
		elseif type(data.entry_name) == "table" then
			for script, entry_name_data in pairs(data.entry_name) do
				if entry_name_data == entryNameModule then
					langs = data
				end
			end
		end
	end
	
	local result = {}
	local i = 0
	for code, data in pairs(langs) do
		i = i + 1
		result = require("Module:languages").makeObject(code, data)
	end
	
	return result
end