summaryrefslogtreecommitdiff
path: root/examples/phrasebook/GreetingsFre.gf
blob: 567e256da7c0de231c5fa1d358d677e906daf34b (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
concrete GreetingsFre of Greetings = open Roles,Prelude in {

flags coding = utf8 ;

lincat 
  Greeting = SS ;

lin 
  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 t'appelles-tu" ;
  GWhatsYourNamePol = 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" ;
  GTheCheck = ss "l'addition" ;

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


}