Modul:WikidataIB/nolinks: Forskjell mellom sideversjoner

Fra Wikisida.no
Hopp til navigering Hopp til søk
m (Protected "Module:WikidataIB/nolinks": High-risk Lua module: conforming protection to Module:WikidataIB and allow extended confirmed editors to edit. Per request at RfPP ([Edit=Require extended confirmed access] (indefinite) [Move=Require extended confirmed access] (indefinite)))
m (8 sideversjoner ble importert)
 
(4 mellomliggende versjoner av 4 brukere er ikke vist)
Linje 40: Linje 40:
"Turkey",
"Turkey",
"United Kingdom",
"United Kingdom",
"UK",
"United States",
"United States",
"USA",
"Wales",
"Wales",
}
}

Siste sideversjon per 21. mar. 2024 kl. 21:05

Dokumentasjon for denne modulen kan opprettes på Modul:WikidataIB/nolinks/dok

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 = {
	"Australia",
	"Austria",
	"Belgium",
	"Canada",
	"China",
	"Denmark",
	"England",
	"France",
	"Germany",
	"Greece",
	"Hungary",
	"Iceland",
	"India",
	"Republic of Ireland",
	"Israel",
	"Italy",
	"Jamaica",
	"Japan",
	"Luxembourg",
	"Mexico",
	"Netherlands",
	"New Zealand",
	"Northern Ireland",
	"Norway",
	"Poland",
	"Portugal",
	"Russia",
	"Scotland",
	"South Africa",
	"Spain",
	"Sweden",
	"Switzerland",
	"Turkey",
	"United Kingdom",
	"UK",
	"United States",
	"USA",
	"Wales",
}

--[[
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