มอดูล:number list/data/sat
- 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 สันถาลี.
(edit)
จำนวน | เลข | เชิงการนับ |
---|---|---|
1 | ᱑ | ᱢᱤᱫ (มิท) |
2 | ᱒ | ᱵᱟᱨ (พะร) |
3 | ᱓ | ᱯᱮ (เปะ) |
4 | ᱔ | ᱯᱳᱱ (โปะน), ᱯᱩᱱ (ปุน) |
5 | ᱕ | ᱢᱚᱬᱮ (ม็อ̂เณะ) |
6 | ᱖ | ᱛᱩᱨᱩᱭ (ตุรุย) |
7 | ᱗ | ᱮᱭᱟᱭ (เอะยะย) |
8 | ᱘ | ᱤᱨᱟᱹᱞ (อิเรอ̂ะล) |
9 | ᱙ | ᱟᱨᱮ (อะเระ) |
10 | ᱑᱐ | ᱜᱮᱞ (เคะล) |
local export = {numbers = {}}
local numbers = export.numbers
export.numeral_config = {
zero_codepoint = 0x1C50, -- ᱐, OL CHIKI DIGIT ZERO
}
-- This number list has yet to have the Santali word for zero.
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