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/GreetingsFre.gf | |
| parent | de909a4e44419562ca4ba071e15cf9b8e00288be (diff) | |
simplified the treatment of politeness in Phrasebook
Diffstat (limited to 'examples/phrasebook/GreetingsFre.gf')
| -rw-r--r-- | examples/phrasebook/GreetingsFre.gf | 55 |
1 files changed, 28 insertions, 27 deletions
diff --git a/examples/phrasebook/GreetingsFre.gf b/examples/phrasebook/GreetingsFre.gf index bc5b8e9a5..17946558c 100644 --- a/examples/phrasebook/GreetingsFre.gf +++ b/examples/phrasebook/GreetingsFre.gf @@ -3,36 +3,37 @@ concrete GreetingsFre of Greetings = open Roles,Prelude in { flags coding = utf8 ; lincat - Greeting = RolePhrase ; + Greeting = SS ; lin - GHello = roleNeutral "salut" ; - GThanks = roleNeutral "merci" ; - GHowAreYou = roleNeutral "comment ça va" ; - GPleaseGive = politeDistinct "s'il vous plaît" "s'il te plaît" ; - GExcuse = politeDistinct "excusez-moi" "excuse-moi" ; - GSorry = roleNeutral "pardon" ; - GGoodbye = roleNeutral "au revoir" ; - GBye = roleNeutral "au revoir" ; - GWhatsYourName = - politeDistinct "comment vous appelez-vous" "comment t'appelles-tu" ; - GNiceToMeetYou = speakerDistinct "enchanté" "enchantée" ; - GSeeYouSoon = roleNeutral "à bientôt" ; - GHelp = roleNeutral "au secours" ; - GLookOut = roleNeutral "attention" ; - GGoodMorning = roleNeutral "bonjour" ; - GGoodDay = roleNeutral "bonjour" ; - GGoodEvening = roleNeutral "bon soir" ; - GGoodNight = roleNeutral "bonne nuit" ; - GImHungry = roleNeutral "j'ai faim" ; - GImThirsty = roleNeutral "j'ai soif" ; - GImTired = speakerDistinct "je suis fatigué" "je suis fatiguée" ; - GImScared = roleNeutral "j'ai peur" ; - GIdontUnderstand = roleNeutral "je ne comprends pas" ; - GTheCheck = roleNeutral "l'addition" ; + GHello = ss "salut" ; + GThanks = ss "merci" ; + GHowAreYou = ss "comment ça va" ; + GPleaseGive = ss "s'il te plaît" ; + GPleaseGivePol = ss "s'il vous plaît" ; + GExcuse = ss "excuse-moi" ; + GExcusePol = ss "excusez-moi" ; + GSorry, GSorryPol = ss "pardon" ; + GGoodbye = ss "au revoir" ; + GBye = ss "au revoir" ; + GWhatsYourName = ss "comment vous appelez-vous" ; ---- + GNiceToMeetYou = ss "enchanté" ; + GSeeYouSoon = ss "à bientôt" ; + GHelp = ss "au secours" ; + GLookOut = ss "attention" ; + GGoodMorning = ss "bonjour" ; + GGoodDay = ss "bonjour" ; + GGoodEvening = ss "bon soir" ; + GGoodNight = ss "bonne nuit" ; + GImHungry = ss "j'ai faim" ; + GImThirsty = ss "j'ai soif" ; + GImTired = ss "je suis fatigué" ; ---- + GImScared = ss "j'ai peur" ; + GIdontUnderstand = ss "je ne comprends pas" ; + GTheCheck = ss "l'addition" ; - GYes = roleNeutral "oui" ; ---- si - GNo = roleNeutral "non" ; + GYes = ss "oui" ; ---- si + GNo = ss "non" ; } |
