Module:number list/data/acw

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

This module contains data on various types of numbers in Hijazi Arabic.

Number Numeral Cardinal Ordinal Fractional
0 ٠ صفر
1 ١ واحد أول
2 ٢ اتنين تاني نص
3 ٣ تلاتة تالت تلت
4 ٤ أربعة رابع ربع
5 ٥ خمسة خامس خمس
6 ٦ ستة سادس سدس
7 ٧ سبعة سابع سبع
8 ٨ تمانية تامن تمن
9 ٩ تسعة تاسع تسع
10 ١٠ عشرة عاشر عشر
100 ١٠٠ مية
200 ٢٠٠ ميتين
1,000 ١٬٠٠٠ ألف
2,000 ٢٬٠٠٠ ألفين
10,000 ١٠٬٠٠٠ عشرة آلاف
100,000 ١٠٠٬٠٠٠ مية ألف
1,000,000 (106) ١٬٠٠٠٬٠٠٠ مليون
1,000,000,000 (109) ١٬٠٠٠٬٠٠٠٬٠٠٠ مليار

local export = {}

local numbers = {}
export.numbers = numbers

export.numeral_config = {
	zero_codepoint = 0x660, -- ٠, ARABIC-INDIC DIGIT ZERO
	thousands_separator = "٬",
}

numbers = {
	cardinal = "صفر"
}

numbers = {
	cardinal = "واحد",
	ordinal = "أول"
}

numbers = {
	cardinal = "اتنين",
	ordinal = "تاني",
	fractional = "نص"

}

numbers = {
	cardinal = "تلاتة",
	ordinal = "تالت",
	fractional = "تلت"
}

numbers = {
	cardinal = "أربعة",
	ordinal = "رابع",
	fractional = "ربع"
}

numbers = {
	cardinal = "خمسة",
	ordinal = "خامس",
	fractional = "خمس"
}

numbers = {
	cardinal = "ستة",
	ordinal = "سادس",
	fractional = "سدس"
}

numbers = {
	cardinal = "سبعة",
	ordinal = "سابع",
	fractional = "سبع"
}

numbers = {
	cardinal = "تمانية",
	ordinal = "تامن",
	fractional = "تمن"
}

numbers = {
	cardinal = "تسعة",
	ordinal = "تاسع",
	fractional = "تسع"
}

numbers = {
	cardinal = "عشرة",
	ordinal = "عاشر",
	fractional = "عشر"
}

numbers = {
	cardinal = "مية"
}

numbers = {
	cardinal = "ميتين"
}

numbers = {
	cardinal = "ألف"
}

numbers = {
	cardinal = "ألفين"
}
 
 numbers = {
	cardinal = "عشرة آلاف"
}

numbers = {
	cardinal = "مية ألف"
}

numbers = {
	cardinal = "مليون"
}


numbers = {
	cardinal = "مليار "
}

return export