summaryrefslogtreecommitdiff
path: root/examples/phrasebook/SentencesCat.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2010-04-09 14:37:25 +0000
committeraarne <aarne@chalmers.se>2010-04-09 14:37:25 +0000
commitd505fa5b6737b6b78fb65161cea3c2ac175494ab (patch)
tree316a778a7869c6d264e2cb4850f032a39cdbe16b /examples/phrasebook/SentencesCat.gf
parent1903fe8bf99cf6f567669a803f4b725478309ad3 (diff)
generalized the Person category in Phrasebook to plurals, added some new Words
Diffstat (limited to 'examples/phrasebook/SentencesCat.gf')
-rw-r--r--examples/phrasebook/SentencesCat.gf13
1 files changed, 9 insertions, 4 deletions
diff --git a/examples/phrasebook/SentencesCat.gf b/examples/phrasebook/SentencesCat.gf
index 07d806ba1..e57f0c129 100644
--- a/examples/phrasebook/SentencesCat.gf
+++ b/examples/phrasebook/SentencesCat.gf
@@ -9,12 +9,17 @@ concrete SentencesCat of Sentences = NumeralCat ** SentencesI - [
lin
IFemale =
- {name = mkNP i8fem_Pron ; isPron = True ; poss = mkDet i_Pron} ;
+ {name = mkNP (ProDrop i8fem_Pron) ; isPron = True ; poss = mkQuant i_Pron} ;
YouFamFemale =
- {name = mkNP youSg8fem_Pron ; isPron = True ; poss = mkDet youSg_Pron} ;
+ {name = mkNP (ProDrop youSg8fem_Pron) ; isPron = True ; poss = mkQuant youSg_Pron} ;
YouPolFemale =
- {name = mkNP youPol8fem_Pron ; isPron = True ; poss = mkDet youPol_Pron};
+ {name = mkNP (ProDrop youPol8fem_Pron) ; isPron = True ; poss = mkQuant youPol_Pron};
+ IMale =
+ {name = mkNP (ProDrop i_Pron) ; isPron = True ; poss = mkQuant i_Pron} ;
+ YouFamMale =
+ {name = mkNP (ProDrop youSg_Pron) ; isPron = True ; poss = mkQuant youSg_Pron} ;
+ YouPolMale =
+ {name = mkNP (ProDrop youPol_Pron) ; isPron = True ; poss = mkQuant youPol_Pron} ;
}
-