Module:User:JohnC5/Sandbox2

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

𐬫ō⸱ 𐬘𐬀𐬥𐬀𐬙̰⸱ 𐬀žī𐬨⸱ 𐬛𐬀𐬵ā𐬐ə𐬨⸱


local export = {}

local mapping = {
	 = "𐬀", -- AVESTAN LETTER A 
	 = "𐬁", -- AVESTAN LETTER AA 
	 = "𐬂", -- AVESTAN LETTER AO 
	
	 = "𐬄", -- AVESTAN LETTER AN 
	
	 = "𐬆", -- AVESTAN LETTER AE 
	
	 = "𐬈", -- AVESTAN LETTER E 
	 = "𐬉", -- AVESTAN LETTER EE 
	 = "𐬊", -- AVESTAN LETTER O 
	 = "𐬋", -- AVESTAN LETTER OO 
	 = "𐬌", -- AVESTAN LETTER I 
	 = "𐬍", -- AVESTAN LETTER II 
	 = "𐬎", -- AVESTAN LETTER U 
	 = "𐬏", -- AVESTAN LETTER UU 
	
	 = "𐬐", -- AVESTAN LETTER KE 
	 = "𐬑", -- AVESTAN LETTER XE 
	
	 = "𐬔", -- AVESTAN LETTER GE 
	 = "𐬕", -- AVESTAN LETTER GGE 
	 = "𐬖", -- AVESTAN LETTER GHE 
	 = "𐬗", -- AVESTAN LETTER CE 
	 = "𐬘", -- AVESTAN LETTER JE 
	 = "𐬙", -- AVESTAN LETTER TE 
	 = "𐬚", -- AVESTAN LETTER THE 
	 = "𐬛", -- AVESTAN LETTER DE 
	 = "𐬜", -- AVESTAN LETTER DHE 
	
	 = "𐬞", -- AVESTAN LETTER PE 
	 = "𐬟", -- AVESTAN LETTER FE 
	 = "𐬠", -- AVESTAN LETTER BE 
	 = "𐬡", -- AVESTAN LETTER BHE 
	 = "𐬢", -- AVESTAN LETTER NGE 
	
	 = "𐬥", -- AVESTAN LETTER NE 
	 = "𐬦", -- AVESTAN LETTER NYE 
	 = "𐬧", -- AVESTAN LETTER NNE 
	 = "𐬨", -- AVESTAN LETTER ME 
	
	 = "𐬪", -- AVESTAN LETTER YYE 
	 = "𐬫", -- AVESTAN LETTER YE 
	 = "𐬬", -- AVESTAN LETTER VE 
	 = "𐬭", -- AVESTAN LETTER RE 
	 = "𐬮", -- AVESTAN LETTER LE 
	 = "𐬯", -- AVESTAN LETTER SE 
	 = "𐬰", -- AVESTAN LETTER ZE 
	 = "𐬱", -- AVESTAN LETTER SHE 
	 = "𐬲", -- AVESTAN LETTER ZHE 
	
	 = "𐬵", -- AVESTAN LETTER HE 
	 = "⸱",  -- WORD SEPARATOR MIDDLE DOT
}

local two_char_mapping ={
	 = "𐬃", -- AVESTAN LETTER AAO 
	 = "𐬅", -- AVESTAN LETTER AAN 
	 = "𐬇", -- AVESTAN LETTER AEE 
	 = "𐬒", -- AVESTAN LETTER XYE 
	 = "𐬓", -- AVESTAN LETTER XVE
	 = "𐬝", -- AVESTAN LETTER TTE 
	 = "𐬣", -- AVESTAN LETTER NGYE 
	 = "𐬤", -- AVESTAN LETTER NGVE
	 = "𐬩", -- AVESTAN LETTER HME 
	 = "𐬳", -- AVESTAN LETTER SHYE 
	 = "𐬴", -- AVESTAN LETTER SSHE 
}

function export.tr(text)
	text = string.gsub(text, "..", two_char_mapping) -- transliterate letters
	text = string.gsub(text, ".", mapping) -- transliterate letters
	return text
end

function export.run()
	return export.tr("yō. janat̰. ažīm. dahākəm.")	
end

return export