mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 11:42:49 -06:00
change Food to Words in Phrasebook, since it's unpractical to have many small modules; added syntactic forms and words
This commit is contained in:
@@ -4,19 +4,30 @@ incomplete concrete SentencesI of Sentences = Numeral **
|
||||
Syntax
|
||||
in {
|
||||
lincat
|
||||
Sentence = Utt ;
|
||||
Sentence = S ;
|
||||
Question = QS ;
|
||||
Item = NP ;
|
||||
Kind = CN ;
|
||||
Quality = AP ;
|
||||
Object = NP ;
|
||||
Place = NP ;
|
||||
PlaceKind = CN ;
|
||||
Currency = CN ;
|
||||
Price = NP ;
|
||||
lin
|
||||
Is item quality = mkUtt (mkCl item quality) ;
|
||||
IsNot item quality = mkUtt (mkS negativePol (mkCl item quality)) ;
|
||||
WhetherIs item quality = mkUtt (mkQCl (mkCl item quality)) ;
|
||||
IWant obj = mkUtt (mkCl (mkNP i_Pron) want_V2 obj) ;
|
||||
ILike item = mkUtt (mkCl (mkNP i_Pron) like_V2 item) ;
|
||||
Is item quality = mkS (mkCl item quality) ;
|
||||
IsNot item quality = mkS negativePol (mkCl item quality) ;
|
||||
WhetherIs item quality = mkQS (mkQCl (mkCl item quality)) ;
|
||||
WhereIs place = mkQS (mkQCl where_IAdv place) ;
|
||||
IWant obj = mkS (mkCl (mkNP i_Pron) want_V2 obj) ;
|
||||
ILike item = mkS (mkCl (mkNP i_Pron) like_V2 item) ;
|
||||
DoYouHave kind =
|
||||
mkUtt (mkQCl (mkCl (mkNP youPol_Pron) have_V2 (mkNP kind))) ;
|
||||
mkQS (mkQCl (mkCl (mkNP youPol_Pron) have_V2 (mkNP kind))) ;
|
||||
|
||||
HowMuchCost item = mkQS (mkQCl how8much_IAdv (mkCl item cost_V)) ;
|
||||
ItCost item price = mkS (mkCl item cost_V2 price) ;
|
||||
AmountCurrency num curr = mkNP <num : Numeral> curr ;
|
||||
|
||||
ObjItem i = i ;
|
||||
ObjNumber n k = mkNP <n : Numeral> k ;
|
||||
|
||||
@@ -24,6 +35,12 @@ incomplete concrete SentencesI of Sentences = Numeral **
|
||||
That kind = mkNP that_Quant kind ;
|
||||
These kind = mkNP this_Quant plNum kind ;
|
||||
Those kind = mkNP that_Quant plNum kind ;
|
||||
The kind = mkNP the_Quant kind ;
|
||||
The kind = mkNP the_Quant kind ;
|
||||
Thes kind = mkNP the_Quant plNum kind ;
|
||||
SuchKind quality kind = mkCN quality kind ;
|
||||
Very quality = mkAP very_AdA quality ;
|
||||
Too quality = mkAP too_AdA quality ;
|
||||
ThePlace kind = mkNP the_Quant kind ;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user