Module:Country alias/data
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Country alias/data/doc
-- Constant data used by [[Module:Country alias]].
local countries = {
EXA = { -- example for testing
name = "Example Country",
{1951, "Flag1951.svg"}, -- year <= 1951
{1995, "Flag1995.svg"}, -- 1951 < year <= 1995
"Flag of test.svg", -- otherwise
["Paralympics"] = "Paralympics.svg",
["Summer Olympics"] = {
[1948] = "SO1948.svg",
[1952] = "SO1952.svg",
[1980] = "SO1980.svg",
},
["Winter Olympics"] = {
[1956] = "WO1956.svg",
[1964] = "WO1964.svg",
},
},
ETM = {
name = "Electrum",
"Flag of Electrum.png",
},
GRF = {
name = "Græntfjall",
"Flag of Græntfjall.png",
},
HAN = {
name = "Hannasea",
"Flag of Hannasea.png",
},
KRY = {
name = "Krytenia",
"Flag of Krytenia.png",
},
KSK = {
name = "Kelssek",
"Flag of Kelssek.png",
},
OME = {
name = "Omerica",
"Flag of Omerica.svg",
},
SAL = {
name = "Saltstead",
"Flag of Saltstead.svg",
},
TLI = {
name = "The Licentian Isles",
"Flag of The Licentian Isles.png",
},
TMB = {
name = "Tumbra",
"Flag of Tumbra.png",
},
ZZX = {
name = "Mixed team",
"Olympic flag.svg",
},
}
return {
countryAliases = countryAliases,
countries = countries,
}