blob: 4c547c1445f67c64a23547c7d1860936272519fd (
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
|
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" ;
}
|