Module:number list/data/fur

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

Number Cardinal Ordinal
0 nule, zero
1 un prin
2 doi, dôs secont
3 trê tierç
4 cuatri cuart
5 cinc cuint
6 sîs sest
7 siet setim
8 vot otâf
9 nûf novesim
10 dîs diesim, decim

local export = {}

local numbers = {}
export.numbers = numbers

numbers = {
	cardinal = { "nule", "zero" }
}

numbers = {
	cardinal = "un",
	ordinal = { "prin" },
}

numbers = {
	cardinal = { "doi", "dôs" },
	ordinal = { "secont" },
}

numbers = {
	cardinal = "trê",
	ordinal = { "tierç" },
}

numbers = {
	cardinal = "cuatri",
	ordinal = { "cuart" },
}

numbers = {
	cardinal = "cinc",
	ordinal = { "cuint" },
}

numbers = {
	cardinal = "sîs",
	ordinal = { "sest" },
}

numbers = {
	cardinal = "siet",
	ordinal = { "setim" },
}

numbers = {
	cardinal = "vot",
	ordinal = { "otâf" },
}

numbers = {
	cardinal = "nûf",
	ordinal = { "novesim" },
}

numbers = {
	cardinal = "dîs",
	ordinal = { "diesim", "decim" },
}

return export