Module:Political party/P
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 |
---|---|---|---|---|---|---|---|
Partito Orizon | #FFD400 | PO | Orizon | AAA | AA | AAA | |
Party for Democracy and Socialism (Pinang) | #8B008B | PDS | PDS | Failed | Failed | Failed | |
Party of Progress and Prosperity | #008000 | PPP | PPP | Failed | Failed | Failed | |
Party of the Radical Left (Pinang) | #cc0000 | PRL | PRL | Failed | Failed | Failed | |
Penn National Party | #FAEE6D | N | AAA | AAA | AAA | ||
People's Democracy (Pinang) | #FF0000 | People's Democracy | AA | Failed | Failed | ||
People's Party (Wyvern) | #B40404 | P | People's | Failed | Failed | Failed | |
Pinang Communist Party | #FF0000 | PCP | AA | Failed | Failed | ||
Pinangese Labour | #ED1C25 | PL | Labour | AA | Failed | Failed | |
Pink Gandalf Party (Pinang) | #ffc0cb | PGP | AAA | AA | AAA | ||
Popular Front & Liberals (Juclandia) | #6D4092 | FP&L | Popular Front & Liberals | Failed | Failed | Failed | |
Popular Unity (Georgienstine) | #FE2EF7 | PU | Popular Unity | AA | Failed | AA | |
Popular Unity Front (Juclandia) | #6D4092 | FRUNIP | Popular Unity | Failed | Failed | Failed | |
Populares (Bonumland) | #002478 | Populares | Populares (Bonumland) | Failed | Failed | Failed | |
Populares-Conservatives Party (Penn) | #8000FF | PC | Populares-Conservatives | Failed | Failed | Failed | |
Primia! Sancratosia | #180F5E | PS | Primia! | Failed | Failed | Failed |
-- Constant data used by [[Module:Political party]]
local alternate = {
["People's (CE)"] = "Culverian People's Party",
}
local full = {
["Partito Orizon"] = {abbrev = "PO", color = "#FFD400", shortname = "Orizon",},
["Party for Democracy and Socialism (Pinang)"] = {abbrev = "PDS", color = "#8B008B", shortname = "PDS",},
["Party of the Radical Left (Pinang)"] = {abbrev = "PRL", color = "#cc0000", shortname = "PRL",},
["Party of Progress and Prosperity"] = {abbrev = "PPP", color = "#008000", shortname = "PPP",},
["Penn National Party"] = {abbrev = "N", color = "#FAEE6D", shortname = "",},
["People's Democracy (Pinang)"] = {abbrev = "", color="#FF0000", shortname = "People's Democracy",},
["People's Party (Wyvern)"] = {abbrev = "P", color = "#B40404", shortname = "People's",},
["Pinang Communist Party"] = {abbrev = "PCP", color = "#FF0000", shortname = "",},
["Pinangese Labour"] = {abbrev = "PL", color = "#ED1C25", shortname = "Labour",},
["Pink Gandalf Party (Pinang)"] = {abbrev = "PGP", color = "#ffc0cb", shortname = "",},
["Populares (Bonumland)"] = {abbrev = "Populares", color = "#002478", shortname = "Populares (Bonumland)",},
["Popular Front & Liberals (Juclandia)"] = {abbrev = "FP&L", color = "#6D4092", shortname = "Popular Front & Liberals",},
["Popular Unity (Georgienstine)"] = {abbrev = "PU", color = "#FE2EF7", shortname = "Popular Unity",},
["Popular Unity Front (Juclandia)"] = {abbrev = "FRUNIP", color = "#6D4092", shortname = "Popular Unity",},
["Populares-Conservatives Party (Penn)"] = {abbrev = "PC", color = "#8000FF", shortname = "Populares-Conservatives",},
["Primia! Sancratosia"] = {abbrev = "PS", color = "#180F5E", shortname = "Primia!",},
}
return {
full = full,
alternate = alternate,
}