diff options
| author | aarne <aarne@chalmers.se> | 2010-03-30 18:48:59 +0000 |
|---|---|---|
| committer | aarne <aarne@chalmers.se> | 2010-03-30 18:48:59 +0000 |
| commit | 5cb147fa19fdd348a24bc9d90fc8b5a6041530d8 (patch) | |
| tree | 73a42a9aa38df413443e2a8a730e8e669f70604d /examples/phrasebook/GreetingsIta.gf | |
| parent | de909a4e44419562ca4ba071e15cf9b8e00288be (diff) | |
simplified the treatment of politeness in Phrasebook
Diffstat (limited to 'examples/phrasebook/GreetingsIta.gf')
| -rw-r--r-- | examples/phrasebook/GreetingsIta.gf | 57 |
1 files changed, 29 insertions, 28 deletions
diff --git a/examples/phrasebook/GreetingsIta.gf b/examples/phrasebook/GreetingsIta.gf index 24a4d7a0e..1758722a5 100644 --- a/examples/phrasebook/GreetingsIta.gf +++ b/examples/phrasebook/GreetingsIta.gf @@ -1,36 +1,37 @@ -concrete GreetingsIta of Greetings = open Roles,Prelude in { +concrete GreetingsIta of Greetings = open Prelude in { lincat - Greeting = RolePhrase ; + Greeting = SS ; lin - GHello = roleNeutral "ciao" ; - GThanks = roleNeutral "grazie" ; - GHowAreYou = roleNeutral "come sta" ; - GPleaseGive = roleNeutral "per favore" ; - GExcuse = politeDistinct "scusi" "scusa" ; - GSorry = politeDistinct "scusimi" "scusami" ; ---- - GGoodbye = roleNeutral "arrivederci" ; - GBye = roleNeutral "ciao" ; - GWhatsYourName = - politeDistinct "come si chiama" "come ti chiami" ; --- GNiceToMeetYou = roleNeutral "piacevole" ; ---- --- GSeeYouSoon = roleNeutral "a poco tempo" ; ---- - GHelp = roleNeutral "aiuto" ; - GLookOut = roleNeutral "attenzione" ; - GGoodMorning = roleNeutral "buongiorno" ; - GGoodDay = roleNeutral "buongiorno" ; - GGoodEvening = roleNeutral "buona sera" ; - GGoodNight = roleNeutral "buona notte" ; - GImHungry = roleNeutral "ho fame" ; - GImThirsty = roleNeutral "ho sete" ; - GImTired = speakerDistinct "sono stanco" "sono stanca" ; - GImScared = roleNeutral "ho paura" ; - GIdontUnderstand = roleNeutral "non capisco" ; - GTheCheck = roleNeutral "il conto" ; + GHello = ss "ciao" ; + GThanks = ss "grazie" ; + GHowAreYou = ss "come sta" ; + GPleaseGive, GPleaseGivePol = ss "per favore" ; + GExcuse = ss "scusa" ; + GExcusePol = ss "scusi" ; + GSorry = ss "scusami" ; ---- + GSorryPol = ss "scusimi" ; ---- + GGoodbye = ss "arrivederci" ; + GBye = ss "ciao" ; + GWhatsYourName = ss "come si chiama" ; +-- GNiceToMeetYou = ss "piacevole" ; ---- +-- GSeeYouSoon = ss "a poco tempo" ; ---- + GHelp = ss "aiuto" ; + GLookOut = ss "attenzione" ; + GGoodMorning = ss "buongiorno" ; + GGoodDay = ss "buongiorno" ; + GGoodEvening = ss "buona sera" ; + GGoodNight = ss "buona notte" ; + GImHungry = ss "ho fame" ; + GImThirsty = ss "ho sete" ; + GImTired = ss "sono stanco" ; ---- + GImScared = ss "ho paura" ; + GIdontUnderstand = ss "non capisco" ; + GTheCheck = ss "il conto" ; - GYes = roleNeutral "sė" ; ---- si - GNo = roleNeutral "no" ; + GYes = ss "sė" ; ---- si + GNo = ss "no" ; } |
