Jump to content
Toggle menu
  • 8 articles
  • 75 files
  • 7 users
  • 37.8K edits
Neodyland Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Conversion-zh

From Neodyland Wiki
Revision as of 14:31, 8 October 2019 by commons>SunAfterRain (https://meta.wikimedia.org/w/index.php?title=Module:Conversion-zh&oldid=19400964)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Module documentation[ create · purge ]
This documentation is transcluded from Module:Conversion-zh/doc.
local l={}
local getArgs

local args
l.fallbackList={
	 ['zh']={'zh','zh-hans','zh-cn','zh-sg','zh-my','zh-hant','zh-tw','zh-hk','zh-mo'}
	,['zh-hans']={'zh-hans','zh-cn','zh-sg','zh-my','zh'}
	,['zh-hant']={'zh-hant','zh-tw','zh-hk','zh-mo','zh'}
	,['zh-cn']={'zh-cn','zh-hans','zh-my','zh-sg','zh'}
	,['zh-sg']={'zh-sg','zh-hans','zh-cn','zh-my','zh'}
	,['zh-my']={'zh-my','zh-hans','zh-cn','zh-sg','zh'}
	,['zh-tw']={'zh-tw','zh-hant','zh-hk','zh-mo','zh'}
	,['zh-hk']={'zh-hk','zh-hant','zh-tw','zh-mo','zh'}
	,['zh-mo']={'zh-mo','zh-hant','zh-tw','zh-hk','zh'}
}

function l._main(args, frame)
	local userlanguage=frame:callParserFunction{ name = 'int', args = {'lang'} }
	if ((userlanguage == 'zh') or 
		(userlanguage == 'zh-hans') or 
		(userlanguage == 'zh-hant') or 
		(userlanguage == 'zh-cn') or 
		(userlanguage == 'zh-sg') or 
		(userlanguage == 'zh-my') or 
		(userlanguage == 'zh-tw') or 
		(userlanguage == 'zh-hk') or 
		(userlanguage == 'zh-mo')) then
	else
		userlanguage = 'zh'
	end
	local fallback=l.fallbackList[userlanguage]
	for _,langArgName in ipairs(fallback)  do
		if 	args[langArgName] ~= nil then
			return args[langArgName]
		end
	end
	return ''
end

function l.main(frame)
	if not getArgs then
		getArgs = require('Module:Arguments').getArgs
	end
	args = getArgs(frame, {parentFirst=true})
        return l._main(args, frame)
end

return l
Cookies help us deliver our services. By using our services, you agree to our use of cookies.