summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsFre.gf
blob: bc5b8e9a5d8b5fc58f61f7c5ea66690fff66e2db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
concrete GreetingsFre of Greetings = open Roles,Prelude in {

flags coding = utf8 ;

lincat 
  Greeting = RolePhrase ;

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" ;

  GYes = roleNeutral "oui" ; ---- si
  GNo = roleNeutral "non" ;


}