Module:Political party/N
Updating this submodule
The political parties contained in this module are split into alphabetised lists based on the first character of the name (for example, "Labour Party (UK)" would be under /L). The /1 subpage is for any party that does not start with the western letters A-Z (including numbers and accented characters).
Within each data submodule are two local groups: local alternate
and local full
. The alternate group is for alternate names of a party. The following is an example of alternate names for the Labour Party (UK):
local alternate = {
....
["Labour and Co-operative"] = "Labour Party (UK)",
["Labour Co-operative"] = "Labour Party (UK)",
...
}
The first entry in square brackets is the alternate name, and the second entry only in quotes is the name found in the full
group, seen below. Note that the alternate name of a party should be stored in its corresponding letter-based subpage; "Alabama Democratic Party" is listed in /A even though it is an alternate name for "Democratic Party (US)" (which is stored in /D).
Table values
local full = {
....
["Labour Party (UK)"] = {abbrev = "Lab", color = "#E4003B", shortname = "Labour",},
...
}
There are three values stored for each party:
- The abbreviation (
abbrev
). - The color of the party (
color
), which can either be a hex triplet or a basic color name. - A shorter name for the party (
shortname
).
If a name value is not stored for a party, the module will attempt to return the other "short" name variant before returning the input. Thus, if abbrev
is stored but shortname
is not, regardless of which value is asked for it will return the abbrev
value.
Color values
Political party name | color | abbrev | shortname | Is color valid? | Contrast normal text | Contrast unvisted link | Contrast visted link |
---|---|---|---|---|---|---|---|
National Fatherland Party of Atovia | #843C41 | NFPA | Fatherland | Failed | Failed | Failed | |
National Liberal Party of Mercia | #FFEE00 | NLP | NLP | AAA | AAA | AAA | |
National Liberty Party (Ashukovo) | #005099 | NLP | National Liberty | Failed | Failed | Failed | |
National Party (Pinang) | #009EE0 | National Party | AA | Failed | AA | ||
National Party of Ashukovo | orange | NPA | National | AAA | Failed | AAA | |
National Party of Bepistan | #00CCFF | NPB | National | AAA | AA | AAA | |
National Party of St.Charlie | blue | NPSC | NPSC | Failed | Failed | Failed | |
National People's Congress (Vishwamitra) | #00BFFF | NPC | AAA | Failed | AAA | ||
National Republican Front (Colorado) | #002768 | NRF | NRFNR | Failed | Failed | Failed | |
National Republican Party (Felsenia) | #518d3f | NRP | Republican | AA | Failed | Failed | |
National Snagovist Front | #167754 | NSF | National Snagovist | Failed | Failed | Failed | |
Nationalist Party of Baustralia | #273c75 | Nat | Nationalist | Failed | Failed | Failed | |
Nationalist Party of Georgienstine | #000080 | NPG | Nationalist | Failed | Failed | Failed | |
New Democracy (Juclandia) | #006633 | ND | New Democracy | Failed | Failed | Failed | |
New Democratic Party (Atovia) | #EB1C31 | NDP | New Democratic | AA | Failed | Failed | |
New Democratic Party (Ebenthal) | #E25822 | ND | New Democrats | AA | Failed | Failed | |
New Democratic Party (Georgienstine) | #8F00FF | NDP | New Democratic | Failed | Failed | Failed | |
New Horizon Party | #58111A | New Hor | New Horizon | Failed | Failed | Failed | |
New Progressive Party (Georgienstine) | #03A800 | NPP | New Progressive | AA | Failed | AA | |
None of These Candidates | #000000 | NoTC | None of These Candidates | Failed | Failed | Failed | |
Nova ideas per Sancratosia | #00692B | NIS | Nova ideas | Failed | Failed | Failed | |
Nuclear So-and-so Party | #00FFFF | NUC | Nuclear | AAA | AA | AAA |
-- Constant data used by [[Module:Political party]]
local alternate = {
["Nationalist (BU)"] = "Nationalist Party of Baustralia",
["New Horizon"] = "New Horizon Party",
}
local full = {
["National Fatherland Party of Atovia"] = {abbrev = "NFPA", color = "#843C41", shortname = "Fatherland",},
["National Liberal Party of Mercia"] = {abbrev = "NLP", color = "#FFEE00", shortname = "NLP",},
["National Liberty Party (Ashukovo)"] = {abbrev = "NLP", color = "#005099", shortname = "National Liberty",},
["National Party of Ashukovo"] = {abbrev = "NPA", color = "orange", shortname = "National",},
["National Party of Bepistan"] = {abbrev = "NPB", color = "#00CCFF", shortname = "National",},
["National Party of St.Charlie"] = {abbrev = "NPSC", color = "blue", shortname = "NPSC",},
["National People's Congress (Vishwamitra)"] = {abbrev = "NPC", color = "#00BFFF", shortname = "",},
["National Republican Front (Colorado)"] = {abbrev = "NRF", color = "#002768", shortname = "NRFNR",},
["National Republican Party (Felsenia)"] = {abbrev = "NRP", color = "#518d3f", shortname = "Republican",},
["National Snagovist Front"] = {abbrev = "NSF", color = "#167754", shortname = "National Snagovist",},
["National Party (Pinang)"] = {abbrev = "", color="#009EE0", shortname = "National Party",},
["New Democracy (Juclandia)"] = {abbrev = "ND", color = "#006633", shortname = "New Democracy",},
["New Democratic Party (Atovia)"] = {abbrev = "NDP", color = "#EB1C31", shortname = "New Democratic",},
["New Democratic Party (Ebenthal)"] = {abbrev = "ND", color = "#E25822", shortname = "New Democrats",},
["New Horizon Party"] = {abbrev = "New Hor", color = "#58111A", shortname = "New Horizon",},
["New Progressive Party (Georgienstine)"] = {abbrev = "NPP", color = "#03A800", shortname = "New Progressive",},
["None of These Candidates"] = {abbrev = "NoTC", color = "#000000", shortname = "None of These Candidates",},
["Nova ideas per Sancratosia"] = {abbrev = "NIS", color = "#00692B", shortname = "Nova ideas",},
["Nuclear So-and-so Party"] = {abbrev = "NUC", color = "#00FFFF", shortname = "Nuclear",},
["Nationalist Party of Baustralia"] = {abbrev = "Nat", color = "#273c75", shortname = "Nationalist",},
["Nationalist Party of Georgienstine"] = {abbrev = "NPG", color = "#000080", shortname = "Nationalist",},
["New Democratic Party (Georgienstine)"] = {abbrev = "NDP", color = "#8F00FF", shortname = "New Democratic",},
}
return {
full = full,
alternate = alternate,
}