Jump to content

Module:StevenTest

Unchecked
From Wikipedia

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

local p = {}

function p.bylang( frame )
    local lang = frame.args[1]
    if lang == 'Polish' then
        return 'Dzień dobry!'
    end
    if lang == 'French' then
        return 'Bonjour!'
    end
    if lang == 'Spanish' then
        return '¡buenos días!'
    end    
    if lang == 'German' then
        return 'Guten morgen'
    end   
    return 'Please set a language.'
end

return p