Module:number list/data/bar

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

Number Cardinal
0 null
1 oans, aans
2 zwoa, zwaa
3 drei
4 vier, viere
5 finf, finfe, fimf, fimfe
6 sechs, sechse
7 siebn, siebm, siebane
8 acht, åcht, åchte
9 nein, neine
10 zehn, zeah, zehne
11 ejf, ölf, ööf, ejfe, ölfe, öfe
12 zwejf, zwölf, zwööf, zwejfe, zwölfe, zwöfe

local export = {}

local numbers = {}
export.numbers = numbers

numbers = {
	cardinal = "null"
}

numbers = {
	cardinal = {"oans", "aans"}
}

numbers = {
	cardinal = {"zwoa", "zwaa"}
}

numbers = {
	cardinal = "drei"
}

numbers = {
	cardinal = {"vier", "viere"}
}

numbers = {
	cardinal = {"finf", "finfe", "fimf", "fimfe"}
}

numbers = {
	cardinal = {"sechs", "sechse"}
}

numbers = {
	cardinal = {"siebn", "siebm", "siebane"}
}

numbers = {
	cardinal = {"acht", "åcht", "åchte"}
}

numbers = {
	cardinal = {"nein", "neine"}
}

numbers = {
	cardinal = {"zehn", "zeah", "zehne"}
}

numbers = {
	cardinal = {"ejf", "ölf", "ööf", "ejfe", "ölfe", "öfe"}
}

numbers = {
	cardinal = {"zwejf", "zwölf", "zwööf", "zwejfe", "zwölfe", "zwöfe"}
}

local function unpack_ipairs(t)
	local i = 0
	return function()
		i = i + 1
		if t then
			return i, unpack(t)
		end
	end
end

return export