Module:typing-aids/data/skr

Hello, you have come here looking for the meaning of the word Module:typing-aids/data/skr. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:typing-aids/data/skr, but we will also tell you about its etymology, its characteristics and you will know how to say Module:typing-aids/data/skr in singular and plural. Everything you need to know about the word Module:typing-aids/data/skr you have here. The definition of the word Module:typing-aids/data/skr will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:typing-aids/data/skr, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.


local data = {}

local U = require("Module:string/char")

local consonants = "𑊄𑊅𑊆𑊈𑊊𑊋𑊌𑊏𑊐𑊑𑊒𑊔𑊕𑊖𑊗𑊘𑊙𑊚𑊛𑊜𑊝𑊟𑊠𑊢𑊣𑊤𑅰𑊦𑊧"
local consonant = ""
local acute = U(0x301)		-- combining acute

data = {
	-- Vowels and modifiers. Do the diphthongs and diaereses first.
	{"ai", "𑊁"},
	{"au", "𑊂"},
	{"ä", "𑊀"},
	-- {"ö", ""},
	{"ï", "𑊁"},
	{"ü", "𑊂"},
	{"a", "𑊀"},
	{"ā", "𑊀"},
	{"i", "𑊁"},
	{"ī", "𑊁"},
	{"u", "𑊂"},
	{"ū", "𑊂"},
	{"e", "𑊃"},
	-- {"o", ""},
	{"(𑊀)()", "%1%2"},		-- a-i, a-u for 𑊀𑊁, 𑊀𑊂; must follow rules for "ai", "au"

	-- Two-letter consonants must go before h.
	{"kh", "𑊅"},
	{"gh", "𑊈"},
	-- {"ch", "𑊋"},
	{"jh", ""},
	{"ṭh", "𑊑"},
	{"ḍh", "𑊔"},
	{"th", "𑊗"},
	{"dh", "𑊙"},
	{"ph", "𑊜"},
	{"bh", "𑊟"},
	{"h", "𑊦"},

	-- Other stops.
	{"k", "𑊄"},
	{"g", "𑊆"},
	{"c", "𑊊"},
	{"j", "𑊌"},
	{"ṭ", "𑊐"},
	{"ḍ", "𑊒"},
	{"ṛ", "𑊧"},
	{"t", "𑊖"},
	{"d", "𑊘"},
	{"p", "𑊛"},
	{"b", "𑊝"},

	-- Nasals.
	{"ñ", "𑊏"},
	{"ṇ", "𑊕"},
	{"n", "𑊚"},
	{"m", "𑊠"},

	-- Remaining consonants.
	{"y", "𑊌"},
	{"r", "𑊢"},
	{"l", "𑊣"},
	{"v", "𑊤"},
	-- {"ś", ""},
	{"s", "𑊥"},
	-- {"ṣ", ""},
	-- {"ṃ", ""},

}

-- This must go last, after independent vowels are converted to diacritics, or "aï", "aü" won't work.
table.insert(data, {"(" .. consonant .. ")𑊀", "%1"})

-- ] to ]
data = {
	 = {
		 = "ā",
		 = "ī",
		 = "ū",
		 = "ñ",
		 = "ṭ",
		 = "ḍ",
		 = "ṇ",
		 = "ś",
		 = "ṣ",
		 = "ṃ",
		 = acute,
	},
	 = {
		 = "ṛ",
	},
}

return data