Module:Finnish translation/Block value
Jump to navigation
Jump to search
local p = {}
local lcl = require('Module:Language category link').main
function p.value( f )
local args = f
if f == mw.getCurrentFrame() then
args = require( 'Module:ProcessArgs' ).merge( true )
end
local block = mw.text.trim( args[1] or '' ):lower()
local argType = args.type
local values = mw.loadData( 'Module:Finnish translation/' .. argType .. ' values' )
local value = values[block]
local category = ''
if not value then
value = values[block:gsub( 's$', '' )]
if not value then
value = '[[Template:Finnish translation/' .. argType .. '-arvot#Puuttuva arvo|?]]'
local title = mw.title.getCurrentTitle()
if not args.nocat and title.namespace == 0 and not title.isSubpage then
category = lcl('Puuttuva ' .. argType.lower())
end
end
end
return value .. category
end
return p