1
0
forked from GitHub/gf-core

Major changes in Dutch: word order fixes, add particle verbs, fixes in verb smart paradigms

This commit is contained in:
inari
2014-06-19 09:54:48 +00:00
parent 158519624e
commit 8508b8be01
7 changed files with 97 additions and 67 deletions

View File

@@ -34,7 +34,7 @@ concrete CatDut of Cat =
-- Verb
VP = ResDut.VP ;
VPSlash = ResDut.VP ** {c2 : Preposition} ;
VPSlash = ResDut.VP ** {c2 : Preposition * Bool} ;
Comp = {s : Agr => Str} ;
-- Adjective
@@ -73,9 +73,10 @@ concrete CatDut of Cat =
V, VS, VQ, VA = ResDut.VVerb ;
VV = VVerb ** {isAux : Bool} ;
V2, V2A, V2S, V2Q = VVerb ** {c2 : Preposition} ;
V2V = VVerb ** {c2 : Preposition ; isAux : Bool} ;
V3 = VVerb ** {c2, c3 : Preposition} ;
V2, V2A, V2S, V2Q = VVerb ** {c2 : Preposition * Bool} ;
V2V = VVerb ** {c2 : Preposition * Bool ; isAux : Bool} ;
V3 = VVerb ** {c2, c3 : Preposition * Bool} ;
-- Preposition * Bool: True if there is a preposition (info needed for word order)
A = Adjective ;
A2 = Adjective ** {c2 : Preposition} ;