blob: 35f6cf9afcb6cf6dcb2673d90f2d58bee0ee2d57 (
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
|
concrete GreetingsNor of Greetings = open Prelude in {
lincat
Greeting = SS ;
lin
GBye = ss "hade" ;
GCheers = ss "skål" ; -- google translate !
-- GDamn = ss "fan" ; ?
GExcuse, GExcusePol = ss "unnskyld" ;
GGoodDay = ss "god dag" ;
GGoodEvening = ss "god kveld" ;
GGoodMorning = ss "god morgen" ;
GGoodNight = ss "god natt" ;
GGoodbye = ss "ha det bra" ;
GHello = ss "hei" ;
GHelp = ss "hjelp" ;
GHowAreYou = ss "hvordan går det" ;
GLookOut = ss "se opp" ; -- google translate !
GNiceToMeetYou, GNiceToMeetYouPol = ss "hyggelig å treffe deg" ;
GPleaseGive, GPleaseGivePol = ss "vær så snill" ;
GSeeYouSoon = ss "se deg snart" ; -- google translate !
GSorry, GSorryPol = ss "beklager" ;
GThanks = ss "takk" ;
GTheCheck = ss "regningen" ;
}
|