Module:kxv-translit

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

This module will transliterate Kuvi language text. It is also used to transliterate Kui (India), Manda (India), and Pengo. The module should preferably not be called directly from templates or other modules. To use it from a template, use {{xlit}}. Within a module, use Module:languages#Language:transliterate.

For testcases, see Module:kxv-translit/testcases.

Functions

tr(text, lang, sc)
Transliterates a given piece of text written in the script specified by the code sc, and language specified by the code lang.
When the transliteration fails, returns nil.

Testcases

Module:kxv-IPA/testcases:

All tests passed. (refresh)

TextExpectedActualComments
test_translit_kuvi:
Passedଅଡୁoḍuoḍuindependent ଅ is o
Passedଓଡୁoḍuoḍuindependent ଓ is o
Passedଅ୕ଡୁōḍuōḍuindependent ଅ୕ is ō
Passedଓଓଡୁōḍuōḍuindependent ଓଓ is ō
Passedଆକୁakuakuindependent ଆ is a
Passedଆ୕କୁākuākuindependent ଆ୕ is ā
Passedଆଆକୁākuākuindependent ଆଆ is ā
Passedଏସ୍କିeskieskiindependent ଏ is e
Passedଏ୕ସ୍କିēskiēskiindependent ଏ୕ is ē
Passedଏଏସ୍କିēskiēskiindependent ଏଏ is ē
Passedକଡିkoḍikoḍidependent ଅ/ଓ is o
Passedକ୕ଡିkōḍikōḍidependent ଅ୕ is ō
Passedକୋଓଡିkōḍikōḍidependent ଓଓ is ō
Passedବାଲାbalabaladependent ଆ is a
Passedବା୕ଲାbālabāladependent ଆ୕ is ā
Passedବଆଲାbālabāladependent ଆଆ is ā
Passedମେଣ୍ଡାmeṇḍameṇḍadependent ଏ is e
Passedମେ୕ଣ୍ଡାmēṇḍamēṇḍadependent ଏ୕ is ē
Passedମେଏଣ୍ଡାmēṇḍamēṇḍadependent ଏଏ is ē
Passedଇଇīīindependent ଇଇ is ī
Passedଉଉūūindependent ଉଉ is ū
Passedକିଇdependent ଇଇ is ī
Passedକୁଉdependent ଉଉ is ū
Passedକୁଃଏkuʔekuʔeglottal stop ʔ
Passedବିସେୟିଁbiseyĩbiseyĩchandrabindu

local export = {}
local gsub = mw.ustring.gsub

local consonants = {
	--common
	="k", ="kh", ="g", ="gh", ="ṅ",
	="c", ="ch", ="j", ="jh", ="ñ", 
	="ṭ", ="ṭh", ="ḍ", ="ḍh", ="ṇ", 
	="t", ="th", ="d", ="dh", ="n", 
	="p", ="ph", ="b", ="bh", ="m",
	="j", ="y", ="r", ="l", ="ḷ",
	="v", ="w", ="ś", ="ṣ", ="s", ="h",
	--nuktas
	="q", ="x", ="ġ", ="z", ="ź",
	="ṛ", ="ṛh", ="f",
}

local diacritics = {
	="a", ="i", ="ī", ="u", ="ū", ="ru", ="rū", 
	="lu", ="lū", ="e", ="oi", ="oi", ="o", ="ou", ="ou",
	="",
}

local tt = {
	-- vowels
	="o", ="a", ="i", ="ī", ="u", ="ū", ="ru", ="rū",
	="lu", ="lū", ="e", ="oi", ="o", ="ou",
	-- chandrabindu    
	="̃", --until a better method is found
	-- anusvara    
	="ṁ", --until a better method is found
	-- visarga    
	="ʔ",
	-- avagraha
	="’",
	--numerals
	="0", ="1", ="2", ="3", ="4", ="5", ="6", ="7", ="8", ="9",
	="¼", ="½", ="¾", ="¹⁄₁₆", ="⅛", ="³⁄₁₆",
	--punctuation        
	=".", --danda
}

function export.tr(text, lang, sc)
	text = gsub(
		text,
		"(଼?)"..
		"(?)",
		function(c, d)
			if not consonants then
				return c
			end
			if d == "" then
				return consonants .. "o"
			else
				return consonants .. diacritics
			end
		end)

	text = mw.ustring.gsub(text, ".", tt)
	
	-- anusvara
	text = gsub(text, 'ṁ()', 'ṅ%1')
	text = gsub(text, 'ṁ()', 'ñ%1')
	text = gsub(text, 'ṁ()', 'ṇ%1')
	text = gsub(text, 'ṁ()', 'n%1')
	text = gsub(text, 'ṁ()', 'm%1')

	-- long vowels
	text = gsub(text, '()%1', '%1̄') -- VV → V̄ 
	text = gsub(text, '()୕', '%1̄')
	text = gsub(text, 'oa', 'ā') 
	text = gsub(text, 'aā', 'ā')

	return mw.ustring.toNFC(text)
	
end
 
return export