Module:number list/data/km
Jump to navigation
Jump to search
- The following documentation is generated by Module:documentation. [edit]
- Useful links: root page • root page’s subpages • links • transclusions • testcases • sandbox
This module contains data on various types of numbers in Khmer.
(edit)
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[0] = {
cardinal = "សូន្យ",
}
numbers[1] = {
cardinal = "មួយ",
ordinal = "ទីមួយ",
}
numbers[2] = {
cardinal = "ពីរ",
ordinal = "ទីពីរ",
}
numbers[3] = {
cardinal = "បី",
ordinal = "ទីបី",
}
numbers[4] = {
cardinal = "បួន",
ordinal = "ទីបួន",
}
numbers[5] = {
cardinal = "ប្រាំ",
ordinal = "ទីប្រាំ",
}
numbers[6] = {
cardinal = "ប្រាំមួយ",
ordinal = "ទីប្រាំមួយ",
}
numbers[7] = {
cardinal = "ប្រាំពីរ",
ordinal = "ទីប្រាំពីរ",
}
numbers[8] = {
cardinal = "ប្រាំបី",
ordinal = "ទីប្រាំបី",
}
numbers[9] = {
cardinal = "ប្រាំបួន",
ordinal = "ទីប្រាំបួន",
}
numbers[10] = {
cardinal = "ដប់",
ordinal = "ទីដប់",
}
return export