Module:number list/data/tab
- පහත දැක්වෙන උපදෙස්, Module:documentation මගින් ජනනය කොට ඇත. [සංස්කරණය කරන්න]
- ප්රයෝජනවත් සබැඳි: root page • root page’s subpages • සබැඳි • transclusions • testcases • sandbox
This module contains data on various types of numbers in Tabasaran.
(edit)
Number | Cardinal |
---|---|
1 | саб (sab) |
2 | кьюб (q̇jub) |
3 | шубуб (šubub) |
4 | юкьуб (juq̇ub) |
5 | хьуб (xub) |
6 | йирхьуб (jirxub) |
7 | ургуб (urgub) |
8 | мержиб (meržib), миржуб (miržub) |
9 | урчӏвуб (urč̣vub) |
10 | йицӏуб (jic̣ub) |
11 | йицӏисаб (jic̣isab) |
12 | йицӏикьюб (jic̣iq̇jub) |
13 | йицӏишубуб (jic̣išubub) |
14 | йицӏиюкьуб (jic̣ijuq̇ub) |
15 | йицӏихьуб (jic̣ixub) |
16 | йицӏийирхьуб (jic̣ijirxub) |
17 | йицӏиургуб (jic̣iurgub) |
18 | йицӏимиржуб (jic̣imiržub) |
19 | йицӏиурчӏвуб (jic̣iurč̣vub) |
20 | къаб (q̄ab) |
27 | къабна ургуб (q̄abna urgub) |
30 | сумчӏур (sumč̣ur) |
32 | сумчӏурна кьюб (sumč̣urna q̇jub) |
40 | ягъчӏвур (jaġč̣vur) |
50 | хьуцӏур (xuc̣ur) |
60 | йирхьцӏур (jirxc̣ur), шубуб къаб (šubub q̄ab) |
70 | ургуцӏур (urguc̣ur) |
80 | миржицӏур (miržic̣ur), юкъубкъаб (juq̄ubq̄ab) |
90 | урчӏвуцӏур (urč̣vuc̣ur), урчӏвцӏур (urč̣vc̣ur) |
100 | варж (varž) |
200 | кьюдварж (q̇judvarž) |
300 | шубудварж (šubudvarž) |
400 | юкьудварж (juq̇udvarž) |
500 | хьудварж (xudvarž) |
600 | йирхьудварж (jirxudvarž) |
700 | ургудварж (urgudvarž) |
800 | миржидварж (miržidvarž) |
900 | урчӏвудварж (urč̣vudvarž) |
1,000 | агъзур (aġzur) |
--[[
Sources:
* http://www.vestnik.adygnet.ru/files/2012.3/2020/gasanova2012_3.pdf
* http://tavasporan.flybb.ru/topic40.html
* http://www.dslib.net/jazyki-kavkaza/morfologicheskij-stroj-tabasaranskogo-jazyka-problema-literaturnoj-normy.html
* https://ibt.org.ru/ftpmirror/pub/ebook/TBN/TBN/1-%D0%AD%D0%B2%D0%B5%D0%BB,%202018/Gen.pdf (Genesis in Tabasaran)
* https://vk.com/gafar_public?w=wall-158438640_42
--]]
local export = {numbers = {}}
local numbers = export.numbers
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 = "йицӏуб",
}
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[27] = {
cardinal = "къабна ургуб",
}
numbers[30] = {
cardinal = "сумчӏур",
}
numbers[32] = {
cardinal = "сумчӏурна кьюб",
}
numbers[40] = {
cardinal = "ягъчӏвур",
}
numbers[50] = {
cardinal = "хьуцӏур",
}
numbers[60] = {
cardinal = {"йирхьцӏур", "шубуб къаб"},
}
numbers[70] = {
cardinal = "ургуцӏур",
}
numbers[80] = {
cardinal = {"миржицӏур", "юкъубкъаб"},
}
numbers[90] = {
cardinal = {"урчӏвуцӏур", "урчӏвцӏур"},
}
numbers[100] = {
cardinal = "варж",
}
numbers[200] = {
cardinal = "кьюдварж",
}
numbers[300] = {
cardinal = "шубудварж",
}
numbers[400] = {
cardinal = "юкьудварж",
}
numbers[500] = {
cardinal = "хьудварж",
}
numbers[600] = {
cardinal = "йирхьудварж",
}
numbers[700] = {
cardinal = "ургудварж",
}
numbers[800] = {
cardinal = "миржидварж",
}
numbers[900] = {
cardinal = "урчӏвудварж",
}
numbers[1000] = {
cardinal = "агъзур",
}
return export