summaryrefslogtreecommitdiff
path: root/examples/phrasebook/SentencesIta.gf
diff options
context:
space:
mode:
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};
+
+}
+