local p ={}

--[[
The values here are the English sitelinks for items that should not be linked.
These 36 are not definitive and may be altered to suit.
--]]
p.items = {
    "Alemanha",
    "Austrália",
    "África do Sul",
    "Áustria",
    "Bélgica",
    "Canadá",
    "China",
    "Dinamarca",
    "Escócia",
    "Espanha",
    "Estados Unidos",
    "França",
    "Grécia",
    "Hungria",
    "Inglaterra",
    "Irlanda do Norte",
    "Islândia",
    "Israel",
    "Itália",
    "Índia",
    "Jamaica",
    "Japão",
    "Luxemburgo",
    "México",
    "Noruega",
    "Nova Zelândia",
    "País de Gales",
    "Países Baixos",
    "Polónia",
    "Portugal",
    "RU",
    "Reino Unido",
    "República da Irlanda",
    "Rússia",
    "Suécia",
    "Suíça",
    "Turquia",
    "USA",
}

--[[
This provides a convenient way to create a test whether an item is on the list.
--]]
p.itemsindex = {}
for i, v in ipairs(p.items) do
    p.itemsindex[v] = true
end

return p