summaryrefslogtreecommitdiff
path: root/examples/phrasebook
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2010-05-29 10:38:12 +0000
committeraarne <aarne@chalmers.se>2010-05-29 10:38:12 +0000
commit8b3dcb53a9d0af614ba1adc19ae03a3fdc6fc10d (patch)
treeb487e55dd3c852fda9b6ebc32f6f9a3731b3e1a4 /examples/phrasebook
parente9ec8c69aa57b1f0a0e7f3bbb288774722c88eef (diff)
non ho birra in Italian phrasebook
Diffstat (limited to 'examples/phrasebook')
-rw-r--r--examples/phrasebook/SentencesIta.gf5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/phrasebook/SentencesIta.gf b/examples/phrasebook/SentencesIta.gf
index d76107579..157e18b2f 100644
--- a/examples/phrasebook/SentencesIta.gf
+++ b/examples/phrasebook/SentencesIta.gf
@@ -1,6 +1,6 @@
concrete SentencesIta of Sentences = NumeralIta ** SentencesI - [
IFemale, YouFamFemale, YouPolFemale, IMale, YouFamMale, YouPolMale,
- mkPerson, Superlative
+ mkPerson, Superlative, SHaveNoMass
]
with
(Syntax = SyntaxIta),
@@ -26,6 +26,8 @@ concrete SentencesIta of Sentences = NumeralIta ** SentencesI - [
YouPolMale =
{name = mkNP (ProDrop youPol_Pron) ; isPron = True ; poss = PossFamQuant youPol_Pron} ;
+ SHaveNoMass p k = mkS negativePol (mkCl p.name (ComplCN have_V2 k)) ;
+
oper
CNPlace : Type = {name : CN ; at : Prep ; to : Prep } ;
@@ -46,6 +48,7 @@ concrete SentencesIta of Sentences = NumeralIta ** SentencesI - [
mkPerson : Pron -> {name : NP ; isPron : Bool ; poss : Quant} = \p ->
{name = mkNP p ; isPron = True ; poss = PossFamQuant p} ;
+
}