Modul:Political party/Z

Fra Wikipedia, den frie encyklopedi
Moduldokumentasjon

Updating this submodule[rediger kilde]

Mal:Transcluded section 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[rediger kilde]

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[rediger kilde]

Political party namecolorabbrevshortnameIs color valid?Contrast normal textContrast unvisited linkContrast visited link
ZANU–PF#008000ZANU–PFFailedFailedFailed
Zabaltzen#C8402BFailedFailedFailed
Zac Goldsmith Team#2DA0D2AAAFailedAA
Zaker Party#089B4BAAFailedFailed
Zambia Democratic Congress#984ea3ZADECOFailedFailedFailed
Zambian African National Congress#FFCC00AAAAAAAA
Zambians for Empowerment and DevelopmentblueFailedFailedFailed
Zamoran People's Union#339933AAFailedFailed
Zaragoza en Común#BA1227ZGZFailedFailedFailed
ZaresorangeAAAFailedAAA
Zehut#6AC7DFAAAFailedAAA
Zenith Labour Party#f5ec00ZLPAAAAAAAA
Zero Cuts#00862AFailedFailedFailed
Zero Tolerance Policing ex Chief#DDDDDDAAAAAAAA
Zeynab Society#01c3ffAAAFailedAAA
Zimbabwe African National Union#008000ZANUFailedFailedFailed
Zimbabwe African National Union – Ndonga#FFD700ZANU–NdongaAAAAAAAA
Zimbabwe African People's Union#010100ZAPUFailedFailedFailed
Zimbabwe Unity Movement#B22222ZUMFailedFailedFailed
Zionist Union#013068FailedFailedFailed
Zmena zdola#FECE00Zmena zdola, DÚAAAAAAAA
Zomi Congress for Democracy#CC232AZCDFailedFailedFailed
Zoram Nationalist Party#0000FFZNPFailedFailedFailed
Zoram People's Movement#FFF700ZPMAAAAAAAAA
ZvenoblackFailedFailedFailed


-- Constant data used by [[Module:Political party]]

local alternate = {
	["ZANU-PF"] = "ZANU–PF", -- dash differences
	["Zatlers' Reform Party"] = "Reform Party (Latvia)",
	["Zimbabwe African National Union-Patriotic Front"] = "ZANU–PF",
	["Zimbabwe African National Union – Patriotic Front"] = "ZANU–PF",
	["Zionist Organisation Mizrachi"] = "Mizrachi (political party)",
}

local full = {
	["Zabaltzen"] = {abbrev = "", color = "#C8402B", shortname = "",},
	["Zac Goldsmith Team"] = {abbrev = "", color = "#2DA0D2", shortname = "",},
	["ZANU–PF"] = {abbrev = "ZANU–PF", color = "#008000", shortname = "",},
	["Zaker Party"] = {abbrev = "", color = "#089B4B", shortname = "",},
	["Zambia Democratic Congress"] = {abbrev = "ZADECO", color = "#984ea3", shortname = "",},
	["Zambian African National Congress"] = {abbrev = "", color = "#FFCC00", shortname = "",},
	["Zambians for Empowerment and Development"] = {abbrev = "", color = "blue", shortname = "",},
	["Zamoran People's Union"] = {abbrev = "", color = "#339933", shortname = "",},
	["Zaragoza en Común"] = {abbrev = "ZGZ", color = "#BA1227", shortname = "",},
	["Zares"] = {abbrev = "", color = "orange", shortname = "",},
	["Zehut"] = {abbrev = "", color = "#6AC7DF", shortname = "",},
	["Zenith Labour Party"] = {abbrev = "ZLP", color = "#f5ec00", shortname = "",},
	["Zero Cuts"] = {abbrev = "", color = "#00862A", shortname = "",},
	["Zero Tolerance Policing ex Chief"] = {abbrev = "", color = "#DDDDDD", shortname = "",},
	["Zeynab Society"] = {abbrev = "", color = "#01c3ff", shortname = "",},
	["Zimbabwe African National Union – Ndonga"] = {abbrev = "ZANU–Ndonga", color = "#FFD700", shortname = "",},
	["Zimbabwe African National Union"] = {abbrev = "ZANU", color = "#008000", shortname = "",},
	["Zimbabwe African People's Union"] = {abbrev = "ZAPU", color = "#010100", shortname = "",},
	["Zimbabwe Unity Movement"] = {abbrev = "ZUM", color = "#B22222", shortname = "",},
	["Zionist Union"] = {abbrev = "", color = "#013068", shortname = "",},
	["Zmena zdola"] = {abbrev = "", color = "#FECE00", shortname = "Zmena zdola, DÚ",},
	["Zomi Congress for Democracy"] = {abbrev = "ZCD", color = "#CC232A", shortname = "",},
	["Zoram Nationalist Party"] = {abbrev = "ZNP", color = "#0000FF", shortname = "",},
	["Zoram People's Movement"] = {abbrev = "ZPM", color = "#FFF700", shortname = "",},
	["Zveno"] = {abbrev = "", color = "black", shortname = "",},
}

return {
	full = full,
	alternate = alternate,
}