মডিউল:languages/JSON

উইকিঅভিধান, মুক্ত অভিধান থেকে

এই মডিউলের জন্য মডিউল:languages/JSON/নথি-এ নথিপত্র তৈরি করা হয়ে থাকতে পারে

local export = {}

function export.getByCode(frame)
	local args = frame.args
	local langcode = args[1] or error("Language code has not been specified. Please pass parameter 1 to the module invocation.")
	local lang = require("Module:languages").getByCode(langcode) or error("Language code not found")
	
	return lang:toJSON()
end

return export