Module:number list/data/nxq

Hello, you have come here looking for the meaning of the word Module:number list/data/nxq. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:number list/data/nxq, but we will also tell you about its etymology, its characteristics and you will know how to say Module:number list/data/nxq in singular and plural. Everything you need to know about the word Module:number list/data/nxq you have here. The definition of the word Module:number list/data/nxq will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:number list/data/nxq, 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 Naxi.

Number Cardinal
0 liq
1 ddee, ddeeq
2 ni, niq
3 seeq, serl
4 lu, lul, ddu
5 wa
6 chual
7 sherq
8 hol
9 ggv
10 ceiq, cerq, zerq
100 xi
1,000 dvq
10,000 mee

local export = {}

local numbers = {}
export.numbers = numbers

numbers = {
	cardinal = "liq",
}

numbers = {
	cardinal = {"ddee", "ddeeq"},
}

numbers = {
	cardinal = {"ni", "niq"},
}

numbers = {
	cardinal = {"seeq", "serl"},
}

numbers = {
	cardinal = {"lu", "lul", "ddu"},
}

numbers = {
	cardinal = "wa",
}

numbers = {
	cardinal = "chual",
}

numbers = {
	cardinal = "sherq",
}

numbers = {
	cardinal = "hol",
}

numbers = {
	cardinal = "ggv",
}

numbers = {
	cardinal = {"ceiq", "cerq", "zerq"},
}

numbers = {
	cardinal = "xi",
}

numbers = {
	cardinal = "dvq",
}

numbers = {
	cardinal = "mee",
}

return export