Module:fi-dial-map/Kettunen1940

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


local export = {}

function export.show(frame)
	local lines = {}
	
	for i = 1, 213 do
		local dataset_name = string.format("Kettunen1940_%03d", i)
		local load_ok, data = pcall(function() return mw.loadData("Module:fi-dialects/data/feature/" .. dataset_name) end)
		if load_ok then
			table.insert(lines, "# ]")
		else
			table.insert(lines, "# Map #" .. i .. " not imported yet")
		end
	end
	
	return table.concat(lines, "\n")
end

return export