Module:number list/data/kca-nor
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 Northern Khanty.
(edit)
Number | Cardinal | Ordinal |
---|---|---|
1 | и (i), ит (it) | оԓәӈмит (ołəṇmit) |
2 | кӑт (kăt), кӑтн (kătn), кӑтән (kătən) | кимәт (kimət) |
3 | хөԓәм (høłəm), хутум (hutum) | хөԓмит (høłmit) |
4 | њӑԓ (njăł), нят (njat) | њӑԓмит (njăłmit) |
5 | вэт (wet) | вэтмит (wetmit) |
6 | хөт (høt) | хөтмит (høtmit) |
7 | ԓапәт (łapət), тапыт (tapyt) | ԓапәтмит (łapətmit) |
8 | нивәԓ (niwəł), нигыт (nigyt) | нивәԓмит (niwəłmit) |
9 | йӑртйаӈ (jărtjaṇ), яръяӈ (jar”jaṇ) | йӑртйаӈмит (jărtjaṇmit) |
10 | йаӈ (jaṇ) | йаӈмит (jaṇmit) |
11 | ихущйаӈ (ihusjjaṇ), ихосъяӈ (ihos”jaṇ) | |
12 | кӑтхущйаӈ (kăthusjjaṇ) | |
13 | хөԓәмхущйаӈ (høłəmhusjjaṇ) | |
14 | њӑԓхущйаӈ (njăłhusjjaṇ) | |
15 | вэтхущйаӈ (wethusjjaṇ) | |
16 | хөтхущйаӈ (høthusjjaṇ) | |
17 | ԓапәтхущйаӈ (łapəthusjjaṇ) | |
18 | нивәԓхөс (niwəłhøs) | |
19 | йӑрхөс (jărhøs) | |
20 | хөс (høs) | |
30 | хөԓәм йаӈ (høłəm jaṇ) | |
40 | њӑԓ йаӈ (njăł jaṇ) | |
50 | вэт йаӈ (wet jaṇ) | |
60 | хөт йаӈ (høt jaṇ) | |
70 | ԓапәт йаӈ (łapət jaṇ) | |
80 | нивәԓ йаӈ (niwəł jaṇ) | |
90 | йăртйаӈ сот (jărtjaṇ sot) | |
100 | сот (sot) | |
300 | хөԓәмсот (høłəmsot) | |
400 | њӑԓ сот (njăł sot), нят сот (njat sot) | |
500 | вэтсот (wetsot) | |
900 | йӑрсот (jărsot) | |
1,000 | щурәс (sjurəs), сёрас (sjoras) |
local export = {numbers = {}}
local numbers = export.numbers
--[[-- Delete any number types that don't apply.
numbers[1] = {
numeral = "",
cardinal = "",
ordinal = "",
adverbial = "",
multiplier = "",
distributive = "",
collective = "",
fractional = "",
}]]
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 = "йаӈмит",
}
numbers[11] = {
cardinal = { "ихущйаӈ", "ихосъяӈ" },
}
numbers[12] = {
cardinal = "кӑтхущйаӈ",
}
numbers[13] = {
cardinal = "хөԓәмхущйаӈ",
}
numbers[14] = {
cardinal = "њӑԓхущйаӈ",
}
numbers[15] = {
cardinal = "вэтхущйаӈ",
}
numbers[16] = {
cardinal = "хөтхущйаӈ",
}
numbers[17] = {
cardinal = "ԓапәтхущйаӈ",
}
numbers[18] = {
cardinal = "нивәԓхөс",
}
numbers[19] = {
cardinal = "йӑрхөс",
}
numbers[20] = {
cardinal = "хөс",
}
numbers[30] = {
cardinal = "хөԓәм йаӈ",
}
numbers[40] = {
cardinal = "њӑԓ йаӈ",
}
numbers[50] = {
cardinal = "вэт йаӈ",
}
numbers[60] = {
cardinal = "хөт йаӈ",
}
numbers[70] = {
cardinal = "ԓапәт йаӈ",
}
numbers[80] = {
cardinal = "нивәԓ йаӈ",
}
numbers[90] = {
cardinal = "йăртйаӈ сот",
}
numbers[100] = {
cardinal = "сот",
}
numbers[300] = {
cardinal = "хөԓәмсот",
}
numbers[400] = {
cardinal = { "њӑԓ сот", "нят сот" }
}
numbers[500] = {
cardinal = "вэтсот",
}
numbers[900] = {
cardinal = "йӑрсот",
}
numbers[1000] = {
cardinal = { "щурәс", "сёрас" },
}
return export