Module:Political party/C: Difference between revisions

From IxWiki
Jump to navigation Jump to search
(Created page with "local alternate = { ["6Car"] = "Citizen Party (Cartadania)", } local full = { ["Centrisma Party (Cartadania)"] = {abbrev = "CEN", color = "#BDD7EE", shortname = "Centrisma",}, ["Citizen Party (Cartadania)"] = {abbrev = "CTZ", color = "#5B9BD5", shortname = "Citizen",}, } return { full = full, alternate = alternate, }")
 
mNo edit summary
Line 5: Line 5:


local full = {
local full = {
["Communist Party (Cartadania)"] = {abbrev = "CCP", color = "#FF0000", shortname = "Pacom",},
["Centrisma Party (Cartadania)"] = {abbrev = "CEN", color = "#BDD7EE", shortname = "Centrisma",},
["Centrisma Party (Cartadania)"] = {abbrev = "CEN", color = "#BDD7EE", shortname = "Centrisma",},
["Citizen Party (Cartadania)"] = {abbrev = "CTZ", color = "#5B9BD5", shortname = "Citizen",},
["Citizen Party (Cartadania)"] = {abbrev = "CTZ", color = "#5B9BD5", shortname = "Citizen",},

Revision as of 03:36, 10 September 2023

Documentation for this module may be created at Module:Political party/C/doc

local alternate = {
	["6Car"] = "Citizen Party (Cartadania)",
}


local full = {
	["Communist Party (Cartadania)"] = {abbrev = "CCP", color = "#FF0000", shortname = "Pacom",},
	["Centrisma Party (Cartadania)"] = {abbrev = "CEN", color = "#BDD7EE", shortname = "Centrisma",},
	["Citizen Party (Cartadania)"] = {abbrev = "CTZ", color = "#5B9BD5", shortname = "Citizen",},
}

return {
	full = full,
	alternate = alternate,
}