Module:languages/by name: Difference between revisions

From Linguifex
Jump to navigation Jump to search
No edit summary
m 1 revision imported
 
(No difference)

Latest revision as of 11:59, 21 April 2026



local export = {}

for code, data in pairs(require("Module:languages/data/all")) do
	export[data[1]] = code
	
	if data.otherNames then
		for i, otherName in pairs(data.otherNames) do
			if not export[otherName] then
				export[otherName] = code
			end
		end
	end

	if data.aliases then
		for i, alias in pairs(data.aliases) do
			if not export[alias] then
				export[alias] = code
			end
		end
	end
end

return export