Module:head/languages/rad: Difference between revisions
< Module:head | languages
Jump to navigation
Jump to search
No edit summary |
TheNightAvl (talk | contribs) (Updated form lists) |
||
Line 1: | Line 1: | ||
return { | return { | ||
adjective = { | adjective = { | ||
{param = "cmp", label = "comparative"}, | |||
{param = "adv", label = "adverb"}, | {param = "adv", label = "adverb"}, | ||
}, | }, | ||
adverb = { | adverb = { | ||
{param = "cmp", label = "comparative"}, | |||
{param = "adj", label = "adjective"}, | {param = "adj", label = "adjective"}, | ||
}, | }, | ||
noun = { | noun = { | ||
{param = "gen", label = "genitive singular"}, | |||
{param = "dat", label = "dative singular"}, | |||
{param = "acc", label = "accusative singular"}, | |||
{param = "pl", label = "nominative plural"}, | |||
{param = "genpl", label = "short genitive plural"}, | |||
{param = "genpl-l", label = "long genitive plural"}, | |||
}, | |||
propnoun = { | |||
{param = "gen", label = "genitive singular"}, | |||
{param = "dat", label = "dative singular"}, | |||
{param = "acc", label = "accusative singular"}, | |||
{param = "pl", label = "nominative plural"}, | |||
{param = "genpl", label = "short genitive plural"}, | |||
{param = "genpl-l", label = "long genitive plural"}, | |||
}, | |||
pronoun = { | |||
{param = "gen", label = "genitive singular"}, | |||
{param = "dat", label = "dative singular"}, | |||
{param = "acc", label = "accusative singular"}, | |||
{param = "pl", label = "nominative plural"}, | |||
{param = "genpl", label = "short genitive plural"}, | |||
{param = "genpl-l", label = "long genitive plural"}, | |||
{param = "poss", label = "possessive"}, | |||
}, | |||
numeral = { | |||
{param = "acc", label = "accusative singular"}, | {param = "acc", label = "accusative singular"}, | ||
{param = "gen", label = "genitive singular"}, | {param = "gen", label = "genitive singular"}, | ||
{param = "dat", label = "dative singular"}, | {param = "dat", label = "dative singular"}, | ||
{param = "pl", label = "nominative plural"}, | {param = "pl", label = "nominative plural"}, | ||
{param = "genpl", label = "genitive plural"}, | {param = "genpl", label = "short genitive plural"}, | ||
{param = "genpl-l", label = "long genitive plural"}, | |||
}, | }, | ||
verb = { | verb = { | ||
{param = "npst-1s", label = "first-person non-past"}, | {param = "npst-1s", label = "first-person singular non-past"}, | ||
{param = "npst-2s", label = "second-person non-past"}, | {param = "npst-2s", label = "second-person singular non-past"}, | ||
{param = "npst-3s", label = "third-person non-past"}, | {param = "npst-3s", label = "third-person singular non-past"}, | ||
{param = "pst-1s", label = "first-person past"}, | {param = "npst-3p", label = "third-person plural non-past"}, | ||
{param = "pst-3s", label = "third-person past"}, | {param = "pst-1s", label = "first-person singular past"}, | ||
{param = " | {param = "pst-3s", label = "third-person singular past"}, | ||
{param = " | {param = "pst-3p", label = "third-person plural past"}, | ||
{param = "prespart", label = "present adverbial participle"}, | |||
{param = "pspart", label = "past adverbial participle"}, | |||
{param = "vn", label = "verbal noun"}, | {param = "vn", label = "verbal noun"}, | ||
} | } | ||
} | } |
Revision as of 12:05, 12 August 2023
Documentation for this module may be created at Module:head/languages/rad/documentation
return {
adjective = {
{param = "cmp", label = "comparative"},
{param = "adv", label = "adverb"},
},
adverb = {
{param = "cmp", label = "comparative"},
{param = "adj", label = "adjective"},
},
noun = {
{param = "gen", label = "genitive singular"},
{param = "dat", label = "dative singular"},
{param = "acc", label = "accusative singular"},
{param = "pl", label = "nominative plural"},
{param = "genpl", label = "short genitive plural"},
{param = "genpl-l", label = "long genitive plural"},
},
propnoun = {
{param = "gen", label = "genitive singular"},
{param = "dat", label = "dative singular"},
{param = "acc", label = "accusative singular"},
{param = "pl", label = "nominative plural"},
{param = "genpl", label = "short genitive plural"},
{param = "genpl-l", label = "long genitive plural"},
},
pronoun = {
{param = "gen", label = "genitive singular"},
{param = "dat", label = "dative singular"},
{param = "acc", label = "accusative singular"},
{param = "pl", label = "nominative plural"},
{param = "genpl", label = "short genitive plural"},
{param = "genpl-l", label = "long genitive plural"},
{param = "poss", label = "possessive"},
},
numeral = {
{param = "acc", label = "accusative singular"},
{param = "gen", label = "genitive singular"},
{param = "dat", label = "dative singular"},
{param = "pl", label = "nominative plural"},
{param = "genpl", label = "short genitive plural"},
{param = "genpl-l", label = "long genitive plural"},
},
verb = {
{param = "npst-1s", label = "first-person singular non-past"},
{param = "npst-2s", label = "second-person singular non-past"},
{param = "npst-3s", label = "third-person singular non-past"},
{param = "npst-3p", label = "third-person plural non-past"},
{param = "pst-1s", label = "first-person singular past"},
{param = "pst-3s", label = "third-person singular past"},
{param = "pst-3p", label = "third-person plural past"},
{param = "prespart", label = "present adverbial participle"},
{param = "pspart", label = "past adverbial participle"},
{param = "vn", label = "verbal noun"},
}
}