mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-19 17:59:32 -06:00
51 lines
1.6 KiB
Plaintext
51 lines
1.6 KiB
Plaintext
--# -path=.:present
|
|
|
|
concrete DisambPhrasebookEng of Phrasebook = PhrasebookEng -
|
|
[
|
|
IMale, IFemale,
|
|
YouFamMale, YouFamFemale,
|
|
YouPolMale, YouPolFemale,
|
|
LangNat, -- CitiNat,
|
|
GExcuse, GExcusePol,
|
|
GSorry, GSorryPol,
|
|
GPleaseGive, GPleaseGivePol,
|
|
GNiceToMeetYou, -- GNiceToMeetYouPol,
|
|
PYes, PYesToNo, ObjMass
|
|
]
|
|
** open SyntaxEng, ParadigmsEng, Prelude in {
|
|
lin
|
|
IMale = mkP i_Pron "(male)" ;
|
|
IFemale = mkP i_Pron "(female)" ;
|
|
YouFamMale = mkP youSg_Pron "(familiar,male)" ;
|
|
YouFamFemale = mkP youSg_Pron "(familiar,female)" ;
|
|
YouPolMale = mkP youPol_Pron "(polite,male)" ;
|
|
YouPolFemale = mkP youPol_Pron "(polite,female)" ;
|
|
|
|
LangNat nat = mkNP nat.lang (ParadigmsEng.mkAdv "(language)") ;
|
|
-- CitiNat nat = nat.prop ;
|
|
|
|
GExcuse = fam "excuse me" ;
|
|
GExcusePol = pol "excuse me" ;
|
|
GSorry = fam "sorry" ;
|
|
GSorryPol = pol "sorry" ;
|
|
GPleaseGive = fam "please" ;
|
|
GPleaseGivePol = pol "please" ;
|
|
GNiceToMeetYou = fam "nice to meet you" ;
|
|
-- GNiceToMeetYouPol = pol "nice to meet you" ;
|
|
|
|
PYes = mkPhrase (lin Utt (ss "yes (answer to positive question)")) ;
|
|
PYesToNo = mkPhrase (lin Utt (ss "yes (answer to negative question)")) ;
|
|
|
|
ObjMass x = mkNP (mkNP x) (ParadigmsEng.mkAdv "(a portion of)") ;
|
|
|
|
oper
|
|
fam : Str -> SS = \s -> postfixSS "(familiar)" (ss s) ;
|
|
pol : Str -> SS = \s -> postfixSS "(polite)" (ss s) ;
|
|
|
|
mkP : Pron -> Str -> {name : NP ; isPron : Bool ; poss : Quant} = \p,s ->
|
|
{name = mkNP (mkNP p) (ParadigmsEng.mkAdv s) ;
|
|
isPron = False ; -- to show the disambiguation
|
|
poss = SyntaxEng.mkQuant youSg_Pron
|
|
} ;
|
|
}
|