Saltar para o conteúdo

Módulo:Wd/Testes/i18n

Origem: Wikipédia, a enciclopédia livre.
-- The values and functions in this submodule should be localized per wiki.

local p = {}

function p.init(aliasesP)
    p = {
        ["errors"] = {
            ["unknown-data-type"]          = "Tipo de dados desconhecido ou não suportado '$1'.",
            ["missing-required-parameter"] = "Não há parâmetros necessários definidos, necessitando de pelo menos um",
            ["extra-required-parameter"]   = "Parâmetro '$1' deve ser definido como opcional",
            ["no-function-specified"]      = "Você deve especificar uma função para chamar",  -- equal to the standard module error message
            ["main-called-twice"]          = 'A função "main" não pode ser chamado duas vezes',
            ["no-such-function"]           = 'A função "$1" não existe',  -- equal to the standard module error message
            ["malformed-reference"]        = "Erro: Não é possível apresentar a referência correctamente. Ver [[Módulo:wd/doc#Referências|a documentação]] para detalhes."
        },
        ["info"] = {
            ["edit-on-wikidata"] = "Edite isto no Wikidata"
        },
        ["numeric"] = {
            ["decimal-mark"] = ",",
            ["delimiter"]    = "."
        },
        ["datetime"] = {
            ["prefixes"] = {
                ["decade-period"] = ""
            },
            ["suffixes"] = {
                ["decade-period"] = "s",
                ["millennium"]    = " milênio",
                ["century"]       = " século",
                ["million-years"] = " milhão de anos",
                ["billion-years"] = " bilhão de anos",
                ["year"]          = " ano",
                ["years"]         = " anos"
            },
            ["julian-calendar"] = "Calendário Juliano",  -- linked page title
            ["julian"]          = "Juliano",
            ["BCE"]             = "a.C.",
            ["CE"]              = "d.C.",
            ["common-era"]      = "Era comun"  -- linked page title
        },
        ["coord"] = {
            ["latitude-north"] = "N",
            ["latitude-south"] = "S",
            ["longitude-east"] = "E",
            ["longitude-west"] = "W",
            ["degrees"]        = "°",
            ["minutes"]        = "'",
            ["seconds"]        = '"',
            ["separator"]      = ", "
        },
        ["values"] = {
            ["unknown"] = "desconhecido",
            ["none"]    = "nenhum"
        },
        ["cite"] = {
            ["version"] = "3",  -- increment this each time the below parameters are changed to avoid conflict errors
            ["web"] = {
                -- <= left side: all allowed reference properties for *web page sources* per https://www.wikidata.org/wiki/Help:Sources
                -- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite web]] (if non-existent, keep empty i.e. "")
                [aliasesP.statedIn]         = "website",
                [aliasesP.referenceURL]     = "url",
                [aliasesP.publicationDate]  = "data",
                [aliasesP.retrieved]        = "acessodata",
                [aliasesP.title]            = "título",
                [aliasesP.archiveURL]       = "arquivourl",
                [aliasesP.archiveDate]      = "arquivodata",
                [aliasesP.language]         = "língua",
                [aliasesP.author]           = "autor",  -- existence of author1, author2, author3, etc. is assumed
                [aliasesP.authorNameString] = "autor",
                [aliasesP.publisher]        = "publicado",
                [aliasesP.quote]            = "citação",
                [aliasesP.pages]            = "páginas"  -- extra option
            },
            ["q"] = {
                -- <= left side: all allowed reference properties for *sources other than web pages* per https://www.wikidata.org/wiki/Help:Sources
                -- => right side: corresponding parameter names in (equivalent of) [[:en:Template:Cite Q]] (if non-existent, keep empty i.e. "")
                [aliasesP.statedIn]                = "1",
                [aliasesP.pages]                   = "páginas",
                [aliasesP.column]                  = "em",
                [aliasesP.chapter]                 = "capítulo",
                [aliasesP.sectionVerseOrParagraph] = "seção",
                ["external-id"]                    = "id",  -- used for any type of database property ID
                [aliasesP.title]                   = "título",
                [aliasesP.publicationDate]         = "data",
                [aliasesP.retrieved]               = "acessodata"
            }
        }
    }

    p.getOrdinalSuffix = function(num)
        if tostring(num):sub(-2,-2) == '1' then
            return ".º"  -- 10th, 11th, 12th, 13th, ... 19th
        end

        num = tostring(num):sub(-1)

        if num == '1' then
            return ".º"
        elseif num == '2' then
            return ".º"
        elseif num == '3' then
            return ".º"
        else
            return ".º"
        end
    end

    p.addDelimiters = function(n)
        local left, num, right = string.match(n, "^([^%d]*%d)(%d*)(.-)$")

        if left and num and right then
            return left .. (num:reverse():gsub("(%d%d%d)", "%1" .. p['numeric']['delimiter']):reverse()) .. right
        else
            return n
        end
    end

    return p
end

return p