Module talk:dialect synonyms
Add topicAppearance
Latest comment: 2 years ago by Fish bowl in topic data representation - brevity
clean method for implementing dialect-specific transliteration
[edit]@Erutuon See title, and Module:ko-dial-syn#L-139.
I thought that I could set up an etymology-only code and pass on that code to a translit module (rather than having special translit rules in specific modules like Module:ko-dial-syn), but I suppose that doesn't happen if one uses getNonEtymological()
.
—Suzukaze-c (talk) 12:19, 2 February 2021 (UTC)
data representation - brevity
[edit]local export = {}
export.gloss = "scissors"
export.syns = {
-- Standardised
["SK_standard"] = { "가위" },
["NK_standard"] = { "가위" },
}
return export
↓
local w = {}
w.gloss = "scissors"
w["SK_standard"] = { "가위" },
w["NK_standard"] = { "가위" },
return w
🤔