Module:number list/data/ha

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

export.additional_number_types = {
	{ key = "cardinal_ar", display = "Arabic-derived cardinal", after = "cardinal" }
}

local numbers = {}
export.numbers = numbers

local base_numbers = {
	 = "sifìr̃ī",
	 = "ɗaya",
	 = "biyu",
	 = "ukù",
	 = "huɗu",
	 = "bìyar̃",
	 = "shidà",
	 = "bakwài",
	 = "takwàs",
	 = "tar̃à",
	 = "gōmà"
}

local arabic_tens = {
	 = "àshìr̃in",
	 = "tàlā̀tin",
	 = "àr̃bà'in",
	 = "hàmsin",
	 = "sìttin",
	 = "sàbà'in",
	 = "tàmā̀nin",
	 = {"càsà'in", "tìs'in"}
}

for num, word in pairs(base_numbers) do
	numbers = {
		cardinal = word
	}
end

for i = 2, 9 do
	local tens = i * 10
	numbers = {
		cardinal = "gṑmiyā " .. base_numbers,
		cardinal_ar = arabic_tens
	}
end

numbers = {
	cardinal = "ɗàrī"
}

numbers = {
	cardinal = "dubū",
	cardinal_ar = "alìf"
}

return export