Nui's grammar error reports implemented in PhrasebookTha

This commit is contained in:
aarne
2011-12-01 21:58:42 +00:00
parent 61951cd43d
commit efd2596be3
5 changed files with 61 additions and 49 deletions

View File

@@ -279,6 +279,18 @@ concrete WordsEng of Words = SentencesEng **
Pineapple = mkCN (mkN "pineapple") ;
Coke = mkCN (mkN "coke") ;
IceCream = mkCN (mkN "ice cream") ;
Salad = mkCN (mkN "salad") ;
OrangeJuice = mkCN (mkN "orange juice") ;
Lemonade = mkCN (mkN "lemonade") ;
Beach = mkPlace "beach" "on" ;
ItsRaining = mkCl (progressiveVP (mkVP L.rain_V0)) ;
ItsCold = mkCl (mkVP L.cold_A) ;
ItsWarm = mkCl (mkVP L.warm_A) ;
ItsWindy = mkCl (mkVP (P.mkA "windy")) ;
SunShine = mkCl (mkNP the_Det L.sun_N) (progressiveVP (mkVP shine_V)) ;
Smoke = mkVP (P.mkV "smoke") ;
}