Module:sw-IPA/data

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


local conversion = {}

local function copytable(orig)
    local copy
    if type(orig) == 'table' then
        copy = {}
        for orig_key, orig_value in pairs(orig) do
            copy = orig_value
        end
    else -- number, string, boolean, etc
        copy = orig
    end
    return copy
end

conversion.unguja = {
	 = "ɑ",
	 = "ɓ",
	 = "tʃ",
	 = "ɗ",
	 = "ð",
	 = "ɛ",
	 = "f",
	 = "ɠ",
	 = "ɣ",
	 = "h",
	 = "i",
	 = "ʄ",
	 = "k",
	 = "x",
	 = "l",
	 = "m",
	 = "ᵐb",
	 = "ᶬv",
	 = "n",
	 = "ⁿtʃ", -- in mwananchi
	 = "ⁿd",
	 = "ᵑɡ",
	 = "ŋ",
	 = "ⁿdʒ",
	 = "ɲ",
	 = "ⁿz",
	 = "ɔ",
	 = "p",
	 = "k",
	 = "ɾ",
	 = "s",
	 = "ʃ",
	 = "t",
	 = "θ",
	 = "u",
	 = "v",
	 = "w",
	 = "h",
	 = "h",
	 = "j",
	 = "z",
	 = "ˈ",
	 = ".",
	 = "",
	 = "",
	 = "",
	 = "",
	 = "ʷ",
	 = "",
}

conversion.kimvita = copytable(conversion.unguja)
conversion.kimvita._d = "̪"
conversion.kimvita._h = "ʰ"

conversion.arabic = copytable(conversion.unguja)
conversion.arabic.q = "q"
conversion.arabic.x = "x"
conversion.arabic.X = "ħ"
conversion.arabic = "ʕ"
conversion.arabic = "ː"
conversion.arabic = "ˤ"

return conversion