Module:Sandbox: Difference between revisions

From Donate
Jump to navigation Jump to search
Content deleted Content added
No edit summary
No edit summary
Line 44: Line 44:


end
end

return p

Revision as of 19:44, 11 October 2019

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

local p = {}

function p.get_langlinks( frame )

    -- supported languages
    local lang_list = { 'ca', 'da', 'de', 'es', 'es-419', 'fr', 'he', 'hu', 'it', 'ja', 'lv', 'nb', 'nl', 'pl', 'pt', 'pt-br', 'ro', 'ru', 'sk', 'sv', 'uk', 'zh-hans' }
    local output = '<ul>'

    local root = 'Problems donating'

    for i, lang in ipairs(lang_list) do
        local title = root .. '/' .. lang
        local p = mw.title.new( title )
        if p.exists then
            output = output .. string.format('<li lang="%s" style="white-space: nowrap;">[[%s|{{#language:%s}}]]</li>', lang, title, lang)
        end
    end

    return output

end

function p.get_langtable( frame )

    -- supported languages
    local lang_list = { "ca", "da", "de", "es", "es-419", "fr", "he", "hu", "it", "ja", "lv", "nb", "nl", "pl", "pt", "pt-br", "ro", "ru", "sk", "sv", "uk", "zh-hans" }
    local output = ""

    for i, lang in ipairs(lang_list) do
    	output = output .. string.gsub([==[
|-
! scope="row" | {{#language:~LANG~}}
| [[Thank You/~LANG~]]
| [[Ways to Give/~LANG~]]
| [[Problems donating/~LANG~]]
| [[Cancel or change recurring giving/~LANG~]]
| [[Matching Gifts/~LANG~]]
| [[FAQ/~LANG~]]
| [[Tax deductibility/~LANG~]]
]==], '~LANG~', lang)
    end

    return output

end

return p