This module contains data on specific varieties of Undetermined, for use by {{dialect synonyms}}
. The actual synonyms themselves are contained in submodules.
Synonyms (testing module) of Module:dialect synonyms/und | |||
---|---|---|---|
view map; edit data | |||
Column A | Column B | Column C | Column D |
Group A - foo | 1 | ||
2 | |||
3 | |||
4 | |||
Group B - bar | Lorem | Ipsum | |
Dolor | Sit | ||
Amet | |||
Group C - fallbacks | Fallback to module name | ||
This is example data for Module:dialect synonyms. | |||
Fun facts: wikipedia:List of common misconceptions. |
local export = {}
export.title = "Synonyms (testing module) of %s"
export.columns = {
"Column A",
"Column B",
"Column C",
"Column D",
}
export.notes = {
"This is example data for ].",
"Fun facts: ].",
}
export.varieties = {
{
name = "A",
text_display = "Group A - ]",
colour = 'var(--wikt-palette-red-1)',
{
name = "1",
link = "One (disambiguation)",
colspan = 2,
code = "zh",
},
{
name = "2",
link = "Two (disambiguation)",
colspan = 2,
code = "ko",
},
{
name = "3",
link = "Three (disambiguation)",
colspan = 2,
},
{
name = "4",
link = "Four (disambiguation)",
colspan = 2,
nolink = true,
},
},
{
name = "B",
text_display = "Group B - ]",
colour = 'var(--wikt-palette-yellow-1)',
{
name = "Lorem",
{
name = "Ipsum",
},
},
{
name = "Dolor",
{
name = "Sit",
},
{
name = "Amet",
},
},
},
{
name = "C",
text_display = "Group C - ]s",
colour = 'var(--wikt-palette-blue-1)',
default = "module name",
{
name = "Fallback to module name",
default = "module name",
colspan = 2,
},
},
}
return export