Module:number list/data/sco

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

Number Cardinal Attributive Ordinal
1 ane ae first
2 twa second
3 three third
4 fower fourt
5 five fift
6 sax saxt
7 seeven seevent
8 echt echt
9 nine nint
10 ten tent
11 eleeven elevent
12 twal twalt
13 thirteen thirteent

local export = {numbers = {}}

export.additional_number_types = {
	{key = "attributive", after = "cardinal"},
}

local numbers = export.numbers

-- Delete any number types that don't apply.
numbers = {
	cardinal = "ane",
	attributive = "ae",
	ordinal = "first",
}

numbers = {
	cardinal = "twa",
	ordinal = "second",
}

numbers = {
	cardinal = "three",
	ordinal = "third",
}

numbers = {
	cardinal = "fower",
	ordinal = "fourt",
}

numbers = {
	cardinal = "five",
	ordinal = "fift",
}

numbers = {
	cardinal = "sax",
	ordinal = "saxt",
}

numbers = {
	cardinal = "seeven",
	ordinal = "seevent",
}

numbers = {
	cardinal = "echt",
	ordinal = "echt",
}

numbers = {
	cardinal = "nine",
	ordinal = "nint",
}

numbers = {
	cardinal = "ten",
	ordinal = "tent",
}

numbers = {
	cardinal = "eleeven",
	ordinal = "elevent",
}

numbers = {
	cardinal = "twal",
	ordinal = "twalt",
}

numbers = {
	cardinal = "thirteen",
	ordinal = "thirteent",
}

return export