blob: c7fb0a6ca23cb1e4d74c35e27a82fa8ec935415e (
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
|
concrete GreetingsDut of Greetings = open Prelude in {
lincat
Greeting = SS ;
lin
GBye = ss "doei" ;
GCheers = ss "proost" ;
GDamn = ss "verdomme" ;
GExcuse, GExcusePol = ss "pardon" ;
GGoodDay = ss "goedendag" ;
GGoodEvening = ss "goedenavond" ;
GGoodMorning = ss "goedemorgen" ;
GGoodNight = ss "goedenacht" ;
GGoodbye = ss "tot ziens" ;
GHello = ss "hallo" ;
GHelp = ss "help" ;
GHowAreYou = ss "hoe gaat het" ;
GLookOut = ss "kijk uit" ;
GNiceToMeetYou = ss "leuk je te ontmoeten" ;
GNiceToMeetYouPol = ss "leuk je u ontmoeten" ;
GPleaseGive, GPleaseGivePol = ss "alstublieft" ;
GSeeYouSoon = ss "tot ziens" ;
GSorry = ss "sorry";
GSorryPol = ss "mijn verontschuldiging" ;
GThanks = ss "dank je wel" ;
GTheCheck = ss "rekening" ;
GCongratulations = ss "gefeliciteerd";
GHappyBirthday = ss "gelukkige verjaardag" ;
GGoodLuck = ss "veel geluk" ;
}
|