Module:Template translation

Revision as of 15:54, 5 October 2025 by Qv1et (talk | contribs) (Try to fix error)

Documentation for this module may be created at Module:Template translation/doc

-- Dummy "Template translation" module to avoid errors
local p = {}

-- Some templates call "checkTranslation"
function p.checkTranslation(frame)
    -- Return nothing, but no error
    return ''
end

-- Some templates call "layout"
function p.layout(frame)
    -- Return nothing, but no error
    return ''
end

-- Some templates call "main" (rare, but safe to include)
function p.main(frame)
    return ''
end

-- Must return a table to avoid "nil value" errors
return p