summaryrefslogtreecommitdiff
path: root/examples/phrasebook/SentencesFin.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2010-05-26 21:30:04 +0000
committeraarne <aarne@chalmers.se>2010-05-26 21:30:04 +0000
commit48070392e8e9fc375de6cf6f408a8b41377b8d10 (patch)
tree80568203558b9817f94ce5226d7d87beb008070a /examples/phrasebook/SentencesFin.gf
parent26fad2dfe283ffb8a2bf6f526900f90fbbfd30d8 (diff)
fixes in partitives in Phrasebook
Diffstat (limited to 'examples/phrasebook/SentencesFin.gf')
-rw-r--r--examples/phrasebook/SentencesFin.gf7
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/phrasebook/SentencesFin.gf b/examples/phrasebook/SentencesFin.gf
index 625890046..61533b35c 100644
--- a/examples/phrasebook/SentencesFin.gf
+++ b/examples/phrasebook/SentencesFin.gf
@@ -1,5 +1,5 @@
concrete SentencesFin of Sentences = NumeralFin ** SentencesI -
- [Is,NameNN,
+ [Is, NameNN, ObjMass,
IFemale, YouFamFemale, YouPolFemale, IMale, YouFamMale, YouPolMale
] with
(Syntax = SyntaxFin),
@@ -15,5 +15,8 @@ concrete SentencesFin of Sentences = NumeralFin ** SentencesI -
YouFamMale, YouFamFemale =
{name = mkNP (ProDrop youSg_Pron) ; isPron = True ; poss = mkQuant youSg_Pron} ;
YouPolMale, YouPolFemale =
- {name = mkNP (ProDrop youPol_Pron) ; isPron = True ; poss = mkQuant youPol_Pron};
+ {name = mkNP (ProDrop youPol_Pron) ; isPron = True ; poss = mkQuant youPol_Pron} ;
+
+ ObjMass = PartCN ;
+
}