Add pronoun schema
This commit is contained in:
parent
b81849a63a
commit
995f49ae14
|
@ -66,7 +66,7 @@ function generateList(data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateTable(schemas, pos, forms) {
|
function generateTable(schemas, pos, forms) {
|
||||||
let schema = schemas.find(schema => schema.pos === pos);
|
let schema = schemas.find(schema => schema.pos.includes(pos));
|
||||||
|
|
||||||
// No schema was provided by the server - fallback to a list
|
// No schema was provided by the server - fallback to a list
|
||||||
if(!schema)
|
if(!schema)
|
||||||
|
|
|
@ -1,6 +1,107 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"pos": "noun",
|
"pos": ["pron"],
|
||||||
|
"rows": [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"rowspan": 1,
|
||||||
|
"colspan": 1,
|
||||||
|
"display": "case"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"display": "singular"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"display": "nominative"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"tags": ["nominative", "singular"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"display": "vocative"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"tags": ["vocative", "singular"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"display": "genitive"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"tags": ["genitive", "singular"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"display": "dative"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"tags": ["dative", "singular"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"display": "accusative"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"tags": ["accusative", "singular"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"display": "instrumental"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"tags": ["instrumental", "singular"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"display": "locative"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"colspan": 1,
|
||||||
|
"rowspan": 1,
|
||||||
|
"tags": ["locative", "singular"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pos": ["noun"],
|
||||||
"rows": [
|
"rows": [
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
|
@ -141,7 +242,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"pos": "adj",
|
"pos": ["adj"],
|
||||||
"ignoreUnused": [
|
"ignoreUnused": [
|
||||||
["dative", "feminine", "singular"],
|
["dative", "feminine", "singular"],
|
||||||
["instrumental", "feminine", "singular"],
|
["instrumental", "feminine", "singular"],
|
||||||
|
@ -349,7 +450,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"pos": "verb",
|
"pos": ["verb"],
|
||||||
"rows": [
|
"rows": [
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue