Module:User:Suzukaze-c/dial-syn/data/zh:regional

From Wiktionary, the free dictionary
Jump to navigation Jump to search

This is a private module sandbox of Suzukaze-c, for their own experimentation. Items in this module may be added and removed at Suzukaze-c's discretion; do not rely on this module's stability.


local export = {}

local d = require("Module:User:Suzukaze-c/dial-syn/data")

export.varieties = {
	{
		name = "Local",
		colour = "pink",
	},
	{
		name = "Mainland China",
		text_display = "[[w:Mainland China|Mainland China]]",
		colour = d.colours[1],
	},
	{
		name = "Taiwan",
		text_display = "[[w:Taiwanese Mandarin|Taiwan]]",
		colour = d.colours[3],
	},
	{
		name = "Hong Kong",
		text_display = "[[w:Hong Kong|Hong Kong]]",
		colour = d.colours[2],
	},
	{
		name = "Macau",
		text_display = "[[w:Macau|Macau]]",
		colour = d.colours[4],
	},
	{
		name = "Malaysia",
		text_display = "[[w:Malaysian Mandarin|Malaysia]]",
		colour = d.colours[6],
	},
	{
		name = "Singapore",
		text_display = "[[w:Singaporean Mandarin|Singapore]]",
		colour = d.colours[5],
	},
	{
		name = "Historical",
		colour = "pink",
	},
}

return export