This module contains data on various types of numbers in กัจฉ์.

จำนวน เลข เชิงการนับ
1 હિકડ઼ો (หิกโฑ̱)
2 ()
3 ત્રે (ตฺเร)
4 ચાર (จาร)
5 પંજ (ปํช)
6 ()
7 સત (สต)
8 અઠ (อฐ)
9 નોં (โนํ)
10 ૧૦ ડૉ (ฑอ̂)

local export = {numbers = {}}

export.numeral_config = {
	zero_codepoint = 0xAE6, -- ૦, GUJARATI DIGIT ZERO
	Indic_separator = ",",
}

local numbers = export.numbers

numbers[1] = {
	cardinal = "હિકડ઼ો",
}

numbers[2] = {
	cardinal = "બ",
}

numbers[3] = {
	cardinal = "ત્રે",
}

numbers[4] = {
	cardinal = "ચાર",
}

numbers[5] = {
	cardinal = "પંજ",
}

numbers[6] = {
	cardinal = "છ",
}

numbers[7] = {
	cardinal = "સત",
}

numbers[8] = {
	cardinal = "અઠ",
}

numbers[9] = {
	cardinal = "નોં",
}

numbers[10] = {
	cardinal = "ડૉ",
}

return export