Content deleted Content added
sandbox->live, per edit request |
Andy M. Wang (talk | contribs) uncontroversial sync to sandbox per edit request (adds another possible romanization) |
||
Line 2:
local p = {}
-- articles in which traditional Chinese preceeds simplified Chinese
local t1st = {
Line 26:
["j"] = "Jyutping",
["cy"] = "Cantonese Yale",
["sl"] = "Sidney Lau",
["poj"] = "Pe̍h-ōe-jī",
["zhu"] = "Zhuyin Fuhao",
Line 41 ⟶ 42:
["j"] = "Jyutping",
["cy"] = "Yale romanization of Cantonese",
["sl"] = "Sidney Lau romanisation",
["poj"] = "Pe̍h-ōe-jī",
["zhu"] = "Bopomofo",
Line 55 ⟶ 57:
["j"] = "yue-jyutping",
["cy"] = "yue",
["sl"] = "yue",
["poj"] = "nan",
["zhu"] = "zh-Bopo",
Line 65 ⟶ 68:
["j"] = true,
["cy"] = true,
["sl"] = true,
["poj"] = true,
}
Line 106 ⟶ 110:
-- based on setting/preference specify order
local orderlist = {"c", "s", "t", "p", "tp", "w", "j", "cy", "sl", "poj", "zhu", "l"}
if (t1) then
orderlist[2] = "t"
Line 114 ⟶ 118:
orderlist[4] = "j"
orderlist[5] = "cy"
orderlist[6] = "
orderlist[7] = "
orderlist[8] = "
orderlist[9] = "w"
end
|