summaryrefslogtreecommitdiff
path: root/examples/phrasebook/SentencesIta.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2010-04-05 16:36:38 +0000
committeraarne <aarne@chalmers.se>2010-04-05 16:36:38 +0000
commit2ced613d81b1fb93e3e60c974eee73a8872d7093 (patch)
tree1cf145a675fc1e69210b41810cf50688493236a1 /examples/phrasebook/SentencesIta.gf
parentc87fe6f0f6e95b5e9c1eddc7b83de4ce36b6958e (diff)
generalized and extended Phrasebook in many ways
Diffstat (limited to 'examples/phrasebook/SentencesIta.gf')
-rw-r--r--examples/phrasebook/SentencesIta.gf20
1 files changed, 18 insertions, 2 deletions
diff --git a/examples/phrasebook/SentencesIta.gf b/examples/phrasebook/SentencesIta.gf
index 5d1dc24a1..1646d8819 100644
--- a/examples/phrasebook/SentencesIta.gf
+++ b/examples/phrasebook/SentencesIta.gf
@@ -1,5 +1,21 @@
-concrete SentencesIta of Sentences = NumeralIta ** SentencesI
+concrete SentencesIta of Sentences = NumeralIta ** SentencesI - [
+ IFemale, YouFamFemale, YouPolFemale
+ ]
with
(DiffPhrasebook = DiffPhrasebookIta),
- (Syntax = SyntaxIta) ;
+ (Syntax = SyntaxIta),
+ (Symbolic = SymbolicIta),
+ (Lexicon = LexiconIta) **
+ open SyntaxIta, ExtraIta, Prelude in {
+
+ lin
+ IFemale =
+ {name = mkNP i8fem_Pron ; isPron = True ; poss = mkDet i_Pron} ;
+ YouFamFemale =
+ {name = mkNP youSg8fem_Pron ; isPron = True ; poss = mkDet youSg_Pron} ;
+ YouPolFemale =
+ {name = mkNP youPol8fem_Pron ; isPron = True ; poss = mkDet youPol_Pron};
+
+}
+