1
0
forked from GitHub/gf-rgl
This commit is contained in:
Thomas Hallgren
2017-08-20 22:20:03 +02:00
2 changed files with 31 additions and 1 deletions

View File

@@ -171,4 +171,20 @@ abstract Extend = Cat ** {
UttVPShort : VP -> Utt ; -- have fun, as opposed to "to have fun" UttVPShort : VP -> Utt ; -- have fun, as opposed to "to have fun"
ComplSlashPartLast : VPSlash -> NP -> VP ; ComplSlashPartLast : VPSlash -> NP -> VP ;
-- Romance
DetNPFem : Det -> NP ;
iFem_Pron : Pron ; -- je (suis vieille)
youFem_Pron : Pron ; -- tu (es vieille)
weFem_Pron : Pron ; -- nous (sommes vieilles)
youPlFem_Pron : Pron ; -- vous (êtes vieilles)
theyFem_Pron : Pron ; -- elles (sont vieilles)
youPolFem_Pron : Pron ; -- vous (êtes vieille)
-- German
UttAccNP : NP -> Utt ; -- mich
UttDatNP : NP -> Utt ; -- mir
UttAccIP : NP -> Utt ; -- wen
UttDatIP : NP -> Utt ; -- wem
} }

View File

@@ -76,4 +76,18 @@ lin
CompQS = variants {} ; -- QS -> Comp ; -- (the question is) who sleeps CompQS = variants {} ; -- QS -> Comp ; -- (the question is) who sleeps
CompVP = variants {} ; -- Ant -> Pol -> VP -> Comp ; -- (she is) to go CompVP = variants {} ; -- Ant -> Pol -> VP -> Comp ; -- (she is) to go
DetNPFem = DetNP ;
iFem_Pron = i_Pron ;
youFem_Pron = youSg_Pron ;
weFem_Pron = we_Pron ;
youPlFem_Pron = youPl_Pron ;
theyFem_Pron = they_Pron ;
youPolFem_Pron = youPol_Pron ;
UttAccNP = UttNP ;
UttDatNP = UttNP ;
UttAccIP = UttIP ;
UttDatIP = UttIP ;
} }