From 8b3dcb53a9d0af614ba1adc19ae03a3fdc6fc10d Mon Sep 17 00:00:00 2001 From: aarne Date: Sat, 29 May 2010 10:38:12 +0000 Subject: [PATCH] non ho birra in Italian phrasebook --- examples/phrasebook/SentencesIta.gf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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} ; + }