Module:number list/data/orv

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

Number Numeral Cardinal Ordinal Adverbial Multiplier Collective
1 а҃ единъ (jedinŭ) пьрвъ (pĭrvŭ) единошьдꙑ (jedinošĭdy) единакъ (jedinakŭ)
2 в҃ дъва (dŭva) въторъ (vŭtorŭ) дъвашьдꙑ (dŭvašĭdy) дъвоꙗкъ (dŭvojakŭ)
3 г҃ три (tri) треть (tretĭ) тришьдꙑ (trišĭdy)
4 д҃ четꙑре (četyre) четвьртъ (četvĭrtŭ) четꙑрешьдꙑ (četyrešĭdy) четверо (četvero)
5 е҃ пѧть (pętĭ) пѧтъ (pętŭ) пѧтеро (pętero)
6 ѕ҃ шесть (šestĭ) шестъ (šestŭ)
7 з҃ седмь (sedmĭ) седмъ (sedmŭ)
8 и҃ осмь (osmĭ) осмъ (osmŭ)
9 ѳ҃ девѧть (devętĭ) девѧтъ (devętŭ)
10 і҃ десѧть (desętĭ) десѧтъ (desętŭ) десѧтеро (desętero)

local export = {numbers = {}}

local numbers = export.numbers


export.numbers = {
	numeral = "а҃",
	cardinal = "единъ",
	ordinal = "пьрвъ",
	adverbial = "единошьдꙑ",
	multiplier = "единакъ",
}

export.numbers = {
	numeral = "в҃",
	cardinal = "дъва",
	ordinal = "въторъ",
	adverbial = "дъвашьдꙑ",
	multiplier = "дъвоꙗкъ",
}

export.numbers = {
	numeral = "г҃",
	cardinal = "три",
	ordinal = "треть",
	adverbial = "тришьдꙑ",
}

export.numbers = {
	numeral = "д҃",
	cardinal = "четꙑре",
	ordinal = "четвьртъ",
	adverbial = "четꙑрешьдꙑ",
	collective = "четверо",
}

export.numbers = {
	numeral = "е҃",
	cardinal = "пѧть",
	ordinal = "пѧтъ",
	collective = "пѧтеро",
}

export.numbers = {
	numeral = "ѕ҃",
	cardinal = "шесть",
	ordinal = "шестъ",
}

export.numbers = {
	numeral = "з҃",
	cardinal = "седмь",
	ordinal = "седмъ",
}

export.numbers = {
	numeral = "и҃",
	cardinal = "осмь",
	ordinal = "осмъ",
}

export.numbers = {
	numeral = "ѳ҃",
	cardinal = "девѧть",
	ordinal = "девѧтъ",
}

export.numbers = {
	numeral = "і҃",
	cardinal = "десѧть",
	ordinal = "десѧтъ",
	collective = "десѧтеро",
}

return export