local export = {}
local m_links = require("Module:links")
local m_languages = require("Module:languages")
local lang = m_languages.getByCode("zh")
local variety_list = {
"Classical", "Formal", "Argot", "Taxonomic",
"Mandarin", "Cantonese", "Gan", "Hakka", "Huizhou", "Jin",
"Min Bei", "Min Dong", "Min Nan", "Puxian Min",
"Pinghua", "Shehua", "Wu", "Xiang"
}
local variety_colour = {
["Classical"] = "FAF0F2",
["Formal"] = "FAF0F2",
["Argot"] = "FAF0F2",
["Taxonomic"] = "FAF0F2",
["Mandarin"] = "FAF5F0",
["Cantonese"] = "F0F5FA",
["Gan"] = "F0FAF3",
["Hakka"] = "FAF0F6",
["Huizhou"] = "FAF9F0",
["Jin"] = "F0F5FA",
["Min Bei"] = "F7FAF0",
["Min Dong"] = "F7FAF0",
["Min Nan"] = "F7FAF0",
["Puxian Min"] = "F7FAF0",
["Pinghua"] = "F0F5FA",
["Shehua"] = "FAF0F6",
["Wu"] = "F4F0FA",
["Xiang"] = "F0F2FA",
}
local special_note = {
["Classical"] = "[[w:Bahasa Cina Klasik|Cina Klasik]]",
["Formal"] = "Formal <small>([[w:Baihua|Cina Baku Bertulis]])</small>",
["Taxonomic"] = "Taxonomic name",
}
function export.main(frame)
local args = frame:getParent().args
local pagename = mw.title.getCurrentTitle().text
local target_page = args[1] or pagename
local resource_page = "Module:zh/data/dial-syn/" .. target_page
local variety_data = require("Module:zh/data/dial")
local m_syndata
if mw.title.new(resource_page).exists then
m_syndata = require(resource_page).list
else
return frame:expandTemplate{ title = "Template:zh-dial/uncreated", args = { target_page } }
end
local template = {
["Classical"] = {},
["Formal"] = {},
["Argot"] = {},
["Taxonomic"] = {},
["Mandarin"] = {},
["Cantonese"] = {},
["Gan"] = {},
["Hakka"] = {},
["Huizhou"] = {},
["Jin"] = {},
["Min Bei"] = {},
["Min Dong"] = {},
["Min Nan"] = {},
["Puxian Min"] = {},
["Pinghua"] = {},
["Shehua"] = {},
["Wu"] = {},
["Xiang"] = {},
}
local main_title = mw.ustring.gsub((target_page == pagename and pagename or '[[' .. target_page .. ']]'), "[0-9%-]", "")
local syn_table = { [=[
{| class="wikitable mw-collapsible mw-collapsed" style="margin:0; text-align:center;"
|-
! style="background:#FCFFFC; width:40em" colspan=3 | Sinonim dialek bagi <b><span class="Hani" lang="zh">]=] ..
main_title .. '</span></b> (“' .. m_syndata["meaning"] .. '”) ' ..
"[[Template:zh-dial-map/" .. target_page .. '|<small>[peta]</small>]]\n' .. [=[
|-
! style="background:#E8ECFA" | Kelainan
! style="background:#E8ECFA" | Lokasi
! style="background:#E8ECFA" | Perkataan]=] .. [=[
<div style="float: right; clear: right; font-size:60%"><span class="plainlinks">[]=] ..
tostring(mw.uri.fullUrl("Module:zh/data/dial-syn/" .. target_page, { ["action"] = "edit" })) ..
' sunting]</span></div>' }
m_syndata["meaning"] = nil
if m_syndata["note"] then
note = m_syndata["note"]
m_syndata["note"] = nil
end
if m_syndata["Formal"][1] == "" then
m_syndata["Formal"] = { target_page }
elseif m_syndata["Formal"][1] == "-" then
m_syndata["Formal"] = nil
end
for location, synonym_set in pairs(m_syndata) do
if synonym_set[1] ~= "" then
local formatted_synonyms = {}
for i, synonym in ipairs(synonym_set) do
local synonym_note = mw.text.split(synonym, ":")
local synonym_etym = mw.text.split(synonym_note[1], "_")
local syn, etym, note = synonym_etym[1], synonym_etym[2], synonym_note[2]
local synonym_link = m_links.full_link( {
term = syn .. (etym and string.format("#Etymology %s", etym) or ""),
alt = etym and (syn .. string.format("<sub>%s</sub>", etym)),
lang = lang
} )
note = note and ' <span style="font-size:60%"><i>' .. note .. '</i></span>' or ""
table.insert(formatted_synonyms, synonym_link .. note)
end
local location_data = variety_data[location] or error("No data for the location " .. location .. "!")
local location_name = mw.ustring.gsub(location_data.english or location, "(%(.*%))", "<small>%1</small>")
local location_link = location_data.link or location_name
table.insert(template[location_data.group],
{ location_data.order, location_name, location_link, formatted_synonyms })
end
end
for _, variety in ipairs(variety_list) do
local colour = variety_colour[variety]
if #template[variety] > 0 then
table.sort(template[variety], function(first, second) return first[1] < second[1] end)
for i, point_data in ipairs(template[variety]) do
table.insert(syn_table, "\n|-")
if i == 1 then
table.insert(syn_table, "\n!rowspan=" .. #template[variety] .. (special_note[variety] and " colspan=2" or "") ..
' style="background:#' .. colour .. '"| ' .. (special_note[variety] or variety))
end
table.insert(syn_table, ((point_data[2] and not special_note[variety]) and ('\n|style="background:#' .. colour .. '"| ' ..
'[[w:' .. point_data[3] .. '|' .. point_data[2] .. ']]') or '') ..
'\n|style="background:#' .. colour .. '"| ' ..
table.concat(point_data[4], ", "))
end
end
end
if note and note ~= "" then
table.insert(syn_table, '\n|-\n! style="background:#FFF7FB; padding-top:5px; padding-bottom: 5px" | ' ..
"<small>Note</small>\n| colspan=2|<small><i>" .. note .. "</i></small>")
end
table.insert(syn_table, '\n|}')
return table.concat(syn_table, "")
end
return export