Module:number list/data/km

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

Number Numeral Cardinal Ordinal
0 សូន្យ (soun)
1 មួយ (muəy) ទីមួយ (tii muəy)
2 ពីរ (pii) ទីពីរ (tiipii)
3 បី (bəy) ទីបី (tiibəy)
4 បួន (buən) ទីបួន (tiibuən)
5 ប្រាំ (pram) ទីប្រាំ (tiiprŏəm)
6 ប្រាំមួយ (pram muəy) ទីប្រាំមួយ (tiiprŏəmmuəy)
7 ប្រាំពីរ (pram pii) ទីប្រាំពីរ (tiiprŏəmpii)
8 ប្រាំបី (pram bəy) ទីប្រាំបី (tiiprŏəmbəy)
9 ប្រាំបួន (pram buən) ទីប្រាំបួន (tiiprŏəmbuən)
10 ១០ ដប់ (dɑp) ទីដប់ (tii dɑp)

local export = {numbers = {}}

local numbers = export.numbers

export.numeral_config = {
	zero_codepoint = 0x17E0, -- ០, KHMER DIGIT ZERO
}

-- Delete any number types that don't apply.
numbers = {
	cardinal = "សូន្យ",
}

numbers = {
	cardinal = "មួយ",
	ordinal = "ទីមួយ",
}

numbers = {
	cardinal = "ពីរ",
	ordinal = "ទីពីរ",
}

numbers = {
	cardinal = "បី",
	ordinal = "ទីបី",
}

numbers = {
	cardinal = "បួន",
	ordinal = "ទីបួន",
}

numbers = {
	cardinal = "ប្រាំ",
	ordinal = "ទីប្រាំ",
}

numbers = {
	cardinal = "ប្រាំមួយ",
	ordinal = "ទីប្រាំមួយ",
}

numbers = {
	cardinal = "ប្រាំពីរ",
	ordinal = "ទីប្រាំពីរ",
}

numbers = {
	cardinal = "ប្រាំបី",
	ordinal = "ទីប្រាំបី",
}

numbers = {
	cardinal = "ប្រាំបួន",
	ordinal = "ទីប្រាំបួន",
}

numbers = {
	cardinal = "ដប់",
	ordinal = "ទីដប់",
}

return export