Module talk:dialect synonyms

From Wiktionary, the free dictionary
(Redirected from Template talk:dialect synonyms)
Latest comment: 1 year ago by Fish bowl in topic data representation - brevity
Jump to navigation Jump to search

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)Reply

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

🤔

Fish bowl (talk) 03:41, 17 June 2022 (UTC)Reply