Module:dialect synonyms/slr
පෙනුම
- පහත දැක්වෙන උපදෙස්, Module:documentation මගින් ජනනය කොට ඇත. [සංස්කරණය කරන්න]
- ප්රයෝජනවත් සබැඳි: root page • root page’s subpages • සබැඳි • transclusions • testcases • sandbox
This module contains data on specific varieties of Salar, for use by {{dialect synonyms}}. The actual synonyms themselves are contained in submodules.
Language data module structure
[සංස්කරණය]export.title— optional; table title template (e.g. "Regional synonyms of %s").export.columns— optional; list of column headers for location hierarchy (e.g. {"Dialect group", "Dialect", "Location"}).export.notes— optional; table of note keys to text.export.sources— optional; table of source keys to text.export.note_aliases— optional; alias map for notes.export.varieties— required; nested table of variety nodes. Each node must havename; array part holds children. Node keys can includetext_display,color,code,wikidata,lat,long, and language-specific keys (e.g.persian,armenian,chinese).
| Dialectal varieties | |||
|---|---|---|---|
| view map; edit data | |||
| Regional | Group | Subgroup | Words |
| Qinghai | Xunhua | Jiezi | — |
| Mengda | — | ||
| Hualong | — | ||
| Xinjiang | Ili Salar | — | |
local export = {}
export.title = "Dialectal synonyms of %s"
export.columns = {
"Regional",
"Group",
"Subgroup",
"Words",
}
export.varieties = {
{
name = "Qinghai",
colour = "var(--wikt-palette-green-1)",
{
name = "Xunhua",
{
name = "Jiezi",
colour = "var(--wikt-palette-blue-1)",
},
{
name = "Mengda",
text_display = "Mengda",
latitude = 40.569167,
longitude = 48.400833
},
},
{
name = "Hualong",
colspan = 2,
}
},
{
name = "Xinjiang",
{
name = "Ili Salar",
text_display = "Ili Salar",
colspan = 2,
latitude = 40.630278,
longitude = 48.641389
},
}
}
return export