Hello, you have come here looking for the meaning of the word . In DICTIOUS you will not only get to know all the dictionary meanings for the word , but we will also tell you about its etymology, its characteristics and you will know how to say in singular and plural. Everything you need to know about the word you have here. The definition of the word will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

This module uses three parameters, frontness, roundedness and coda value.

  • Frontness: Whether the lemma is a front-voweled or a back-voweled word.
    • Use |f if the last vowel of a word is either e, é, i, ö or ü. Use |b if the last vowel is an a, ï, o or u.
  • Roundedness: Whether the lemma is a rounded-voweled or an unrounded-voweled word
    • Use |a if the last vowel of a word is either a, e, é, ï or i. Use |u if the last vowel is an o, ö, u or ü.
  • Coda value: Whether the lemma ends with a consonant or a vowel.
    • Use |c if the word ends with a consonant, use |v if it ends with a vowel.

Consider these examples if you are confused:


local export = {}

local full_link = require("Module:links").full_link
local lang = require("Module:languages").getByCode("oui")
local sc = require("Module:scripts").getByCode("Ougr")

local function link(term, tr)
	return full_link({
		term = term,
		lang = lang,
		sc = sc,
		tr = tr
	})
end

local wikicode = mw.getCurrentFrame():expandTemplate {
	title = 'inflection-table-top',
	args = {
		title = 'Declension of %s',
		palette = 'grey',
		tall = 'yes',
		class = "tr-alongside"
	}
}

wikicode = wikicode .. [=[
! 
! singular
! definite plural
|-
! nominative
| %s
| %s
|-
! genitive
| %s
| %s
|-
! dative
| %s
| %s
|-
! accusative
| %s, %s
| %s, %s
|-
! locative
| %s
| %s
|-
! ablative
| %s
| %s
|-
! instrumental
| %s
| %s
|-
! equative
| %s
|
|-
! directive
| %s, %s
|
|-
! similative
| %s 
|
]=]

wikicode = wikicode .. mw.getCurrentFrame():expandTemplate {
	title = 'inflection-table-bottom',
}

function export.show(frame)
	
	local params = {
		 = { required = true },
		 = { required = true },
		 = { required = true },
		 = {},
		 = {},
	}

	local args = require("Module:parameters").process(frame:getParent().args, params, nil)
	
	local lemma = args.pagename or mw.loadData("Module:headword/data").pagename
	local f = args:lower() == "f" -- "f" (front) or "b" (back)
	local a = args:lower() == "a" -- "a" or "u"
	local c = args:lower() == "c" -- "c" (consonant) or "v" (vowel)
	local tr = args
	

	return string.format(wikicode,
		link(lemma, "-"), -- title
		link(lemma), -- nominative singular
		link(lemma .. "𐾁𐽰𐽾"), -- nominative plural
		link((a and (lemma .. "𐽺𐽶𐽺𐽷")) or (lemma .. "𐽺𐽳𐽺𐽷")), -- genitive singular
		link(lemma .. "𐾁𐽰𐽾𐽺𐽶𐽺𐽷"), -- genitive plural
		link(f and (lemma .. "𐽷𐽰") or (lemma .. "𐽲𐽰")), -- dative singular
		link(f and (lemma .. "𐾁𐽰𐽾𐽷𐽰") or (lemma .. "𐾁𐽰𐽾𐽲𐽰")), -- dative plural
		link(f and (c and (a and (lemma .. "𐽶𐽷") or (lemma .. "𐽳𐽷")) or (lemma .. "𐽷")) or (c and (a and (lemma .. "𐽶𐽲") or (lemma .. "𐽳𐽲")) or (lemma .. "𐽲"))), -- accusative singular 1
		link(lemma .. "𐽺𐽶"), -- accusative singular 2
		link(f and (lemma .. "𐾁𐽰𐽾𐽶𐽷") or (lemma .. "𐾁𐽰𐽾𐽶𐽲")), -- accusative plural 1
		link(lemma .. "𐾁𐽰𐽾𐽺𐽶"), -- accusative plural 2
		link(f and (lemma .. "𐽸𐽰") or (lemma .. "𐾀𐽰")), -- locative singular
		link(f and (lemma .. "𐾁𐽰𐽾𐽸𐽰") or (lemma .. "𐾁𐽰𐽾𐾀𐽰")), -- locative plural
		link(f and (lemma .. "𐽸𐽶𐽺") or (lemma .. "𐾀𐽶𐽺")), -- ablative singular
		link(f and (lemma .. "𐾁𐽰𐽾𐽸𐽶𐽺") or (lemma .. "𐾁𐽰𐽾𐾀𐽶𐽺")), -- ablative plural
		link((c and (a and (lemma .. "𐽶𐽺") or (lemma .. "𐽳𐽺"))) or (lemma .. "𐽺")), -- instrumental singular
		link(lemma .. "𐾁𐽰𐽾𐽶𐽺"), -- instrumental plural
		link(lemma .. "𐽽𐽰"), -- equative singular
		link(f and (lemma .. "𐽷𐽰𐽾𐽳") or (lemma .. "𐽲𐽰𐽾𐽳")), -- directive singular 1
		link(lemma .. "𐽾𐽰"), -- directive singular 2 
		link(lemma .. "𐾁𐽰𐽶𐽳") -- similative singular
	)
end

return export