View source for Module:languages/names/generate
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local export = {}
function export.show()
local ret = "return {"
for k, v in ipairs(mw.loadData("Module:languages/data")) do
ret = ret .. '\n\t["' .. v.name .. '"] = "' .. v.code .. '",'
end
ret = ret .. "\n}"
return ret
end
return export
000
1:0
Templates used on this page:
Return to Module:languages/names/generate.