Module:Country alias/data: Difference between revisions
Jump to navigation
Jump to search
Costa Fiero (talk | contribs) No edit summary |
mNo edit summary |
||
(11 intermediate revisions by 5 users not shown) | |||
Line 66: | Line 66: | ||
name = "Cassier", | name = "Cassier", | ||
"File:Flag of Cassier.png", | "File:Flag of Cassier.png", | ||
}, | |||
CHA = { | |||
name = "Champania", | |||
"File:Champanois Invictus Committee Flag.svg", | |||
}, | }, | ||
GAP = { | GAP = { | ||
Line 75: | Line 79: | ||
"Flag_of_Hennehouwe.png" | "Flag_of_Hennehouwe.png" | ||
}, | }, | ||
AIC = { | |||
name = "Invictus Athletes from Champania", | |||
"File:Invictus-flag.svg", | |||
}, | |||
IDE = { | |||
name = "Île d'Émeraude", | |||
"File:Ile d'Emeraude.png" | |||
}, | |||
IMA = { | |||
name = "Imagua and the Assimas", | |||
"File:ImaguaFlag.png" | |||
}, | |||
MON = { | |||
name = "Montecara", | |||
"Montecara.png" | |||
}, | |||
NUV = { | NUV = { | ||
name = "Nuvania", | name = "Nuvania", | ||
Line 83: | Line 103: | ||
"Paretianflag.png" | "Paretianflag.png" | ||
}, | }, | ||
RWI = { | |||
name = "Rwizikuru", | name = "Rwizikuru", | ||
"RwizikuruFlag.PNG" | "RwizikuruFlag.PNG" | ||
}, | |||
SCL = { | |||
name = "Sainte-Chloé", | |||
"SCflag.png" | |||
}, | }, | ||
SEN = { | SEN = { |
Latest revision as of 23:18, 27 July 2022
Documentation for this module may be created at Module:Country alias/data/doc
-- Constant data used by [[Module:Country alias]].
local countryAliases = {
-- Countries with identical definitions.
ANG_CGF = "AIA",
ATG = "ANT",
BHR = "BHN",
BRN = "BHN",
CUW = "CUR",
FRO = "FAR",
GUE = "GGY",
HOL = "NED",
IOA = "AOI",
IRN = "IRI",
JEY = "JER",
LIB = "LBN",
MSR = "MNT",
NGU = "PNG",
NIC = "NCA",
NFK = "NFI",
OMN = "OMA",
ROT = "ROA",
ROU = "ROM",
SHN = "SHE",
SWK = "SAR",
SIN = "SGP",
SAF = "RSA",
SAU = "KSA",
TON = "TGA",
TTO = "TRI",
TCI = "TCA",
TKS = "TCA",
TMP = "TLS",
}
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",
},
},
AMA = {
name = "Amathia",
"File:Flag of Belarus (1918, 1991–1995).svg",
},
ARD = {
name = "Ardesia",
"File:Ardesiaflag.png",
},
AUK = {
name = "Aucuria",
"File:RepAucuriaFlag.png",
},
CAS = {
name = "Cassier",
"File:Flag of Cassier.png",
},
CHA = {
name = "Champania",
"File:Champanois Invictus Committee Flag.svg",
},
GAP = {
name = "Gapolania",
"Gapolania_flag.png"
},
HEN = {
name = "Hennehouwe",
"Flag_of_Hennehouwe.png"
},
AIC = {
name = "Invictus Athletes from Champania",
"File:Invictus-flag.svg",
},
IDE = {
name = "Île d'Émeraude",
"File:Ile d'Emeraude.png"
},
IMA = {
name = "Imagua and the Assimas",
"File:ImaguaFlag.png"
},
MON = {
name = "Montecara",
"Montecara.png"
},
NUV = {
name = "Nuvania",
"Flag of Navunia.png"
},
PAR = {
name = "Paretia",
"Paretianflag.png"
},
RWI = {
name = "Rwizikuru",
"RwizikuruFlag.PNG"
},
SCL = {
name = "Sainte-Chloé",
"SCflag.png"
},
SEN = {
name = "Senria",
"SenriaFlag.png"
},
SOR = {
name = "Soravia",
"Flag of Narozalica.png"
},
LAV = {
name = "Lavana",
"FlagofLavana.png",
},
TEN = {
name = "Tengaria",
"TengariaFlag.png"
},
VIT = {
name = "Vitosium",
"VitosiumFlag.png",
},
VIN = {
name = "Vinalia",
"ProperVinalianFlag.png",
},
}
return {
countryAliases = countryAliases,
countries = countries,
}