blob: 50d04b4bf64fef9cff0bc29e2b4235e3d1993faa (
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
|
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 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" ;
}
|